Browse Source

单据流水号长度 不显示小数位

zhuth 7 years ago
parent
commit
d6858122b6
1 changed files with 4 additions and 1 deletions
  1. 4 1
      frontend/saas-web/app/view/sys/maxnumbers/DataList.js

+ 4 - 1
frontend/saas-web/app/view/sys/maxnumbers/DataList.js

@@ -119,7 +119,10 @@ Ext.define('saas.view.sys.maxnumbers.DataList', {
         text : '流水长度', 
         dataIndex : 'mn_number',
         xtype: 'numbercolumn',
-        width : 110.0 
+        width : 110.0,
+        renderer: function(v) {
+            return saas.util.BaseUtil.numberFormat(v, 0, false);
+        }
     }, {
         dataIndex: '',
         flex: 1