Browse Source

台账分解,拖动工具栏spr,右侧数据检查,错误列表刷新问题
计量台账,异同

MaiXinRong 4 years ago
parent
commit
0966ae3588
2 changed files with 12 additions and 0 deletions
  1. 6 0
      app/public/js/ledger.js
  2. 6 0
      app/public/js/stage.js

+ 6 - 0
app/public/js/ledger.js

@@ -2046,6 +2046,12 @@ $(document).ready(function() {
             if (searchLedger) {
                 searchLedger.spread.refresh();
             }
+            if (errorList && errorList.spread) {
+                errorList.spread.refresh();
+            }
+            if (checkList && checkList.spread) {
+                errorList.spread.refresh();
+            }
         }
     });
     const stdLibCellDoubleClick = function (e, info) {

+ 6 - 0
app/public/js/stage.js

@@ -1710,6 +1710,9 @@ $(document).ready(() => {
                 detail.spread.refresh();
             }
             if (checkedChanges) checkedChanges.refresh();
+            if (errorList && errorList.spread) {
+                errorList.spread.refresh();
+            }
         }
     });
 
@@ -1888,6 +1891,9 @@ $(document).ready(() => {
             if (detail) {
                 detail.spread.refresh();
             }
+            if (errorList && errorList.spread) {
+                errorList.spread.refresh();
+            }
             if (checkedChanges) checkedChanges.refresh();
             window.getSelection ? window.getSelection().removeAllRanges() : document.selection.empty();
         }