|
@@ -732,6 +732,7 @@ module.exports = app => {
|
|
|
const checkAgainAuditor = flowAuditors.map(x => {
|
|
|
return {
|
|
|
tender_id: tenderId, times, audit_order: x.audit_order + 1, audit_id: x.audit_id,
|
|
|
+ audit_type: x.audit_type, audit_ledger_id: x.audit_ledger_id,
|
|
|
begin_time: time, end_time: time, opinion: '',
|
|
|
status: x.audit_id === accountId ? auditConst.status.checkAgain : auditConst.status.checkSkip,
|
|
|
}
|
|
@@ -739,6 +740,7 @@ module.exports = app => {
|
|
|
const checkingAuditor = flowAuditors.map(x => {
|
|
|
return {
|
|
|
tender_id: tenderId, times, audit_order: x.audit_order + 2, audit_id: x.audit_id,
|
|
|
+ audit_type: x.audit_type, audit_ledger_id: x.audit_ledger_id,
|
|
|
begin_time: time, end_time: null, opinion: '', status: auditConst.status.checking,
|
|
|
};
|
|
|
});
|