|
@@ -669,10 +669,12 @@ let rptArchiveObj = {
|
|
}
|
|
}
|
|
if (PAGE_SHOW.closeArchiveSignature) {
|
|
if (PAGE_SHOW.closeArchiveSignature) {
|
|
currentRptPageRst.items.forEach((pageItem, pageIdx) => {
|
|
currentRptPageRst.items.forEach((pageItem, pageIdx) => {
|
|
- txtSignCells[pageIdx].forEach((txtCell) => {
|
|
|
|
- pageItem.cells.push(txtCell);
|
|
|
|
- });
|
|
|
|
- txtSignCells[pageIdx] = null;
|
|
|
|
|
|
+ if (txtSignCells[pageIdx]) {
|
|
|
|
+ txtSignCells[pageIdx].forEach((txtCell) => {
|
|
|
|
+ pageItem.cells.push(txtCell);
|
|
|
|
+ });
|
|
|
|
+ txtSignCells[pageIdx] = null;
|
|
|
|
+ }
|
|
});
|
|
});
|
|
txtSignCells = null;
|
|
txtSignCells = null;
|
|
}
|
|
}
|