|
@@ -68,7 +68,6 @@ module.exports = app => {
|
|
|
' WHERE la.`sid` = ? and la.`status` = ? and la.`times` = ?' +
|
|
|
' ORDER BY `order` DESC';
|
|
|
const sqlParam = [stageId, status, times ? times: 1];
|
|
|
- if (stageId === 1400) console.log(this.db.format(sql, sqlParam));
|
|
|
return await this.db.queryOne(sql, sqlParam);
|
|
|
}
|
|
|
|
|
@@ -499,7 +498,6 @@ module.exports = app => {
|
|
|
}
|
|
|
|
|
|
async _checkNo(pid, stageId, checkData, times) {
|
|
|
- console.log('checkData', checkData);
|
|
|
const time = new Date();
|
|
|
// 整理当前流程审核人状态更新
|
|
|
const audit = await this.getDataByCondition({ sid: stageId, times, status: auditConst.status.checking });
|