|
@@ -382,7 +382,7 @@ $(document).ready(() => {
|
|
|
}
|
|
|
html.push('<td>', p.check ? `已解锁` : `<a name="ledger-unlock" lid="${p.ledger_id}" href="javascript: void(0);">解锁</a>`, lockedHint, '</td>');
|
|
|
html.push('<td>', p.company, '</td>');
|
|
|
- if (stage.status === auditConst.status.checking && !checkUsed(stageTree, stagePos, p.node)) {
|
|
|
+ if ((stage.status === auditConst.status.checking || stage.status === auditConst.status.checkNoPre) && !checkUsed(stageTree, stagePos, p.node)) {
|
|
|
html.push('<td>', '本期未计量', '</td>');
|
|
|
} else if (p.check && p.confirm) {
|
|
|
html.push('<td>', moment(p.confirm_time).format('YYYY-MM-DD HH:mm') + ' ' + `<a name="ledger-unconfirm" href="javascript: void(0);" lid="${p.ledger_id}">重新审批</a>`, '</td>');
|