|
@@ -26,7 +26,7 @@ module.exports = app => {
|
|
|
|
|
|
async getStageData(stage) {
|
|
|
const data = await this.getAllDataByCondition({ where: { sid: stage.id } });
|
|
|
- if (!stage.readOnly) return data;
|
|
|
+ if (!stage.readOnly || stage.status === auditConst.status.checked) return data;
|
|
|
|
|
|
for (const d of data) {
|
|
|
const his = d.shistory ? JSON.parse(d.shistory) : [];
|