Browse Source

原单价显示问题

MaiXinRong 2 năm trước cách đây
mục cha
commit
25f2cb42d0
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      app/public/js/shares/sjs_setting.js

+ 2 - 2
app/public/js/shares/sjs_setting.js

@@ -92,7 +92,7 @@ const sjsSettingObj = (function () {
             col.showImage = r.showImage;
         }
     };
-    setOrgPriceCol = function (cols, rela) {
+    const setOrgPriceCol = function (cols, rela) {
         for (const r of rela) {
             const col = _.find(cols, {field: r.field});
             if (col) {
@@ -103,6 +103,6 @@ const sjsSettingObj = (function () {
     return {
         setFxTreeStyle, FxTreeStyle, setGridSelectStyle,
         setTpThousandthFormat, setThousandthFormat, setTpColsThousandthFormat,
-        setPropValue, set3FCols, setQcCols, setOrgPriceCol
+        setPropValue, set3FCols, setQcCols, setOrgPriceCol,
     };
 })();