|
@@ -419,6 +419,9 @@ const rptCustomObj = (function () {
|
|
|
reloadReportData(result);
|
|
|
$('#audit-select').modal('hide');
|
|
|
rptArchiveObj.toggleBtn(true);
|
|
|
+ if (PAGE_SHOW.showArchive) {
|
|
|
+ rptArchiveObj.showArchivedItem(zTreeOprObj.currentNode);
|
|
|
+ }
|
|
|
});
|
|
|
};
|
|
|
|
|
@@ -507,6 +510,7 @@ const rptCustomObj = (function () {
|
|
|
hintObj.hide();
|
|
|
if (resolve) {
|
|
|
resolve(data);
|
|
|
+ rptArchiveObj.toggleBtn(false);
|
|
|
} else {
|
|
|
postData('/report/cDefine', data, function (result) {
|
|
|
reloadReportData(result);
|
|
@@ -519,6 +523,9 @@ const rptCustomObj = (function () {
|
|
|
$('#gather-select-count').html(data[sGatherSelect].tenders.length);
|
|
|
$('#gather-select').modal('hide');
|
|
|
rptArchiveObj.toggleBtn(true);
|
|
|
+ if (PAGE_SHOW.showArchive) {
|
|
|
+ rptArchiveObj.showArchivedItem(zTreeOprObj.currentNode);
|
|
|
+ }
|
|
|
});
|
|
|
}
|
|
|
};
|
|
@@ -554,6 +561,9 @@ const rptCustomObj = (function () {
|
|
|
$('#stage-select-count').html(data[sStageSelect].stages.length);
|
|
|
$('#stage-select').modal('hide');
|
|
|
rptArchiveObj.toggleBtn(true);
|
|
|
+ if (PAGE_SHOW.showArchive) {
|
|
|
+ rptArchiveObj.showArchivedItem(zTreeOprObj.currentNode);
|
|
|
+ }
|
|
|
});
|
|
|
}
|
|
|
};
|