Browse Source

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

MaiXinRong 4 years ago
parent
commit
f76353bd60
2 changed files with 13 additions and 0 deletions
  1. 6 0
      app/public/js/ledger.js
  2. 7 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.refresh();
+            }
+            if (checkList) {
+                checkList.spread.refresh();
+            }
         }
     });
     const stdLibCellDoubleClick = function (e, info) {

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

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