1
This commit is contained in:
@@ -34,7 +34,6 @@ module.exports = {
|
|||||||
* description: 获取成功
|
* description: 获取成功
|
||||||
*/
|
*/
|
||||||
'POST /apply/list': async (ctx) => {
|
'POST /apply/list': async (ctx) => {
|
||||||
try {
|
|
||||||
const models = Framework.getModels();
|
const models = Framework.getModels();
|
||||||
const { apply_records, op } = models;
|
const { apply_records, op } = models;
|
||||||
const body = ctx.getBody();
|
const body = ctx.getBody();
|
||||||
@@ -103,10 +102,6 @@ module.exports = {
|
|||||||
rows: result.rows,
|
rows: result.rows,
|
||||||
list: result.rows
|
list: result.rows
|
||||||
});
|
});
|
||||||
} catch (error) {
|
|
||||||
console.error('获取投递记录列表失败:', error);
|
|
||||||
return ctx.fail('获取投递记录列表失败: ' + error.message);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -128,7 +123,6 @@ module.exports = {
|
|||||||
* description: 获取成功
|
* description: 获取成功
|
||||||
*/
|
*/
|
||||||
'GET /apply/statistics': async (ctx) => {
|
'GET /apply/statistics': async (ctx) => {
|
||||||
try {
|
|
||||||
const models = Framework.getModels();
|
const models = Framework.getModels();
|
||||||
const { apply_records } = models;
|
const { apply_records } = models;
|
||||||
const { sn_code } = ctx.query;
|
const { sn_code } = ctx.query;
|
||||||
@@ -161,10 +155,6 @@ module.exports = {
|
|||||||
successRate: totalCount > 0 ? ((successCount / totalCount) * 100).toFixed(2) : 0,
|
successRate: totalCount > 0 ? ((successCount / totalCount) * 100).toFixed(2) : 0,
|
||||||
interviewRate: totalCount > 0 ? ((interviewCount / totalCount) * 100).toFixed(2) : 0
|
interviewRate: totalCount > 0 ? ((interviewCount / totalCount) * 100).toFixed(2) : 0
|
||||||
});
|
});
|
||||||
} catch (error) {
|
|
||||||
console.error('获取投递统计失败:', error);
|
|
||||||
return ctx.fail('获取投递统计失败: ' + error.message);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -186,7 +176,6 @@ module.exports = {
|
|||||||
* description: 获取成功
|
* description: 获取成功
|
||||||
*/
|
*/
|
||||||
'GET /apply/detail': async (ctx) => {
|
'GET /apply/detail': async (ctx) => {
|
||||||
try {
|
|
||||||
const models = Framework.getModels();
|
const models = Framework.getModels();
|
||||||
const { apply_records } = models;
|
const { apply_records } = models;
|
||||||
// 支持 applyId 和 id 两种参数名(向后兼容)
|
// 支持 applyId 和 id 两种参数名(向后兼容)
|
||||||
@@ -204,10 +193,6 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return ctx.success(record);
|
return ctx.success(record);
|
||||||
} catch (error) {
|
|
||||||
console.error('获取投递记录详情失败:', error);
|
|
||||||
return ctx.fail('获取投递记录详情失败: ' + error.message);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -229,7 +214,6 @@ module.exports = {
|
|||||||
* description: 获取成功
|
* description: 获取成功
|
||||||
*/
|
*/
|
||||||
'GET /apply/trend': async (ctx) => {
|
'GET /apply/trend': async (ctx) => {
|
||||||
try {
|
|
||||||
const models = Framework.getModels();
|
const models = Framework.getModels();
|
||||||
const { apply_records, op } = models;
|
const { apply_records, op } = models;
|
||||||
const { sn_code } = ctx.query;
|
const { sn_code } = ctx.query;
|
||||||
@@ -281,10 +265,6 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return ctx.success(trendData);
|
return ctx.success(trendData);
|
||||||
} catch (error) {
|
|
||||||
console.error('获取投递趋势数据失败:', error);
|
|
||||||
return ctx.fail('获取投递趋势数据失败: ' + error.message);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1069,10 +1069,46 @@ class TaskQueue {
|
|||||||
runningCount: 0
|
runningCount: 0
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// 辅助函数:从任务参数中提取职位和公司信息
|
||||||
|
const extractJobInfo = (taskData) => {
|
||||||
|
let jobTitle = null;
|
||||||
|
let companyName = null;
|
||||||
|
|
||||||
|
// 尝试从 taskParams 中提取
|
||||||
|
if (taskData.taskParams) {
|
||||||
|
let params = null;
|
||||||
|
try {
|
||||||
|
params = typeof taskData.taskParams === 'string'
|
||||||
|
? JSON.parse(taskData.taskParams)
|
||||||
|
: taskData.taskParams;
|
||||||
|
} catch (e) {
|
||||||
|
// 解析失败,忽略
|
||||||
|
}
|
||||||
|
|
||||||
|
if (params) {
|
||||||
|
jobTitle = params.jobTitle || params.job_title || null;
|
||||||
|
companyName = params.companyName || params.company_name || params.brandName || params.brand_name || null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 如果 taskName 中包含职位信息(格式:投递简历 - 职位名 @ 公司名)
|
||||||
|
if (!jobTitle || !companyName) {
|
||||||
|
const taskName = taskData.taskName || taskData.task_name || '';
|
||||||
|
const match = taskName.match(/投递简历[::]\s*(.+?)\s*@\s*(.+?)(?:\s*\(|$)/);
|
||||||
|
if (match) {
|
||||||
|
if (!jobTitle) jobTitle = match[1].trim();
|
||||||
|
if (!companyName) companyName = match[2].trim();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return { jobTitle, companyName };
|
||||||
|
};
|
||||||
|
|
||||||
// 获取当前执行的任务(优先从内存状态获取,如果没有则从数据库查询)
|
// 获取当前执行的任务(优先从内存状态获取,如果没有则从数据库查询)
|
||||||
let currentTask = null;
|
let currentTask = null;
|
||||||
if (status.currentTask) {
|
if (status.currentTask) {
|
||||||
const taskData = status.currentTask;
|
const taskData = status.currentTask;
|
||||||
|
const { jobTitle, companyName } = extractJobInfo(taskData);
|
||||||
currentTask = {
|
currentTask = {
|
||||||
taskId: taskData.id,
|
taskId: taskData.id,
|
||||||
taskName: taskData.taskName || taskData.task_name || taskData.taskType || taskData.task_type || '未知任务',
|
taskName: taskData.taskName || taskData.task_name || taskData.taskType || taskData.task_type || '未知任务',
|
||||||
@@ -1080,7 +1116,9 @@ class TaskQueue {
|
|||||||
status: 'running',
|
status: 'running',
|
||||||
progress: taskData.progress || 0,
|
progress: taskData.progress || 0,
|
||||||
currentStep: taskData.currentStep || taskData.current_step || '',
|
currentStep: taskData.currentStep || taskData.current_step || '',
|
||||||
startTime: taskData.startTime || taskData.start_time || taskData.created_time
|
startTime: taskData.startTime || taskData.start_time || taskData.created_time,
|
||||||
|
jobTitle: jobTitle,
|
||||||
|
companyName: companyName
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
// 如果内存中没有,从数据库查询当前运行的任务
|
// 如果内存中没有,从数据库查询当前运行的任务
|
||||||
@@ -1096,6 +1134,11 @@ class TaskQueue {
|
|||||||
|
|
||||||
if (runningTask) {
|
if (runningTask) {
|
||||||
const taskData = runningTask.toJSON();
|
const taskData = runningTask.toJSON();
|
||||||
|
// 确保 taskParams 字段名正确(可能是 taskParams 或 task_params)
|
||||||
|
if (!taskData.taskParams && taskData.task_params) {
|
||||||
|
taskData.taskParams = taskData.task_params;
|
||||||
|
}
|
||||||
|
const { jobTitle, companyName } = extractJobInfo(taskData);
|
||||||
currentTask = {
|
currentTask = {
|
||||||
taskId: taskData.id,
|
taskId: taskData.id,
|
||||||
taskName: taskData.taskName || taskData.task_name || taskData.taskType || taskData.task_type || '未知任务',
|
taskName: taskData.taskName || taskData.task_name || taskData.taskType || taskData.task_type || '未知任务',
|
||||||
@@ -1103,7 +1146,9 @@ class TaskQueue {
|
|||||||
status: 'running',
|
status: 'running',
|
||||||
progress: taskData.progress || 0,
|
progress: taskData.progress || 0,
|
||||||
currentStep: taskData.currentStep || taskData.current_step || '',
|
currentStep: taskData.currentStep || taskData.current_step || '',
|
||||||
startTime: taskData.startTime || taskData.start_time || taskData.created_time
|
startTime: taskData.startTime || taskData.start_time || taskData.created_time,
|
||||||
|
jobTitle: jobTitle,
|
||||||
|
companyName: companyName
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@@ -1241,6 +1286,28 @@ class TaskQueue {
|
|||||||
// 改进日志输出,显示更详细的任务信息
|
// 改进日志输出,显示更详细的任务信息
|
||||||
if (summary.currentTask) {
|
if (summary.currentTask) {
|
||||||
const task = summary.currentTask;
|
const task = summary.currentTask;
|
||||||
|
|
||||||
|
// 构建任务标识信息
|
||||||
|
let taskIdentifier = task.taskName || task.taskType || '未知任务';
|
||||||
|
|
||||||
|
// 如果是投递简历任务,显示具体的职位和公司信息
|
||||||
|
if (task.jobTitle || task.companyName) {
|
||||||
|
const jobInfo = [];
|
||||||
|
if (task.jobTitle) {
|
||||||
|
jobInfo.push(task.jobTitle);
|
||||||
|
}
|
||||||
|
if (task.companyName) {
|
||||||
|
// 截断过长的公司名称
|
||||||
|
const companyName = task.companyName.length > 20
|
||||||
|
? task.companyName.substring(0, 20) + '...'
|
||||||
|
: task.companyName;
|
||||||
|
jobInfo.push(companyName);
|
||||||
|
}
|
||||||
|
if (jobInfo.length > 0) {
|
||||||
|
taskIdentifier = `投递职位: ${jobInfo.join(' @ ')}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const progressInfo = task.progress !== null && task.progress !== undefined
|
const progressInfo = task.progress !== null && task.progress !== undefined
|
||||||
? `进度: ${task.progress}%`
|
? `进度: ${task.progress}%`
|
||||||
: '';
|
: '';
|
||||||
@@ -1249,9 +1316,10 @@ class TaskQueue {
|
|||||||
: '';
|
: '';
|
||||||
const detailInfo = [progressInfo, stepInfo].filter(Boolean).join(', ');
|
const detailInfo = [progressInfo, stepInfo].filter(Boolean).join(', ');
|
||||||
const detailStr = detailInfo ? ` (${detailInfo})` : '';
|
const detailStr = detailInfo ? ` (${detailInfo})` : '';
|
||||||
|
|
||||||
// 使用总待执行数(包括当前任务的剩余步骤)
|
// 使用总待执行数(包括当前任务的剩余步骤)
|
||||||
const totalCount = summary.totalPendingCount !== undefined ? summary.totalPendingCount : summary.pendingCount;
|
const totalCount = summary.totalPendingCount !== undefined ? summary.totalPendingCount : summary.pendingCount;
|
||||||
console.log(`[任务队列] 已发送任务状态摘要到 ${sn_code}: 当前任务=${task.taskName || task.taskType || '未知任务'}${detailStr}, 待执行=${totalCount}个`);
|
console.log(`[任务队列] 已发送任务状态摘要到 ${sn_code}: 当前任务=${taskIdentifier}${detailStr}, 待执行=${totalCount}个`);
|
||||||
} else {
|
} else {
|
||||||
console.log(`[任务队列] 已发送任务状态摘要到 ${sn_code}: 当前任务=无, 待执行=${summary.pendingCount}个`);
|
console.log(`[任务队列] 已发送任务状态摘要到 ${sn_code}: 当前任务=无, 待执行=${summary.pendingCount}个`);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user