Browse Source

前端字段调整

guq 7 years ago
parent
commit
1ebdc9cdca

+ 6 - 2
frontend/saas-web/app/view/sale/saleIn/QueryPanel.js

@@ -151,7 +151,7 @@ Ext.define('saas.view.sale.saleIn.QueryPanel', {
             text: '明细序号',
             dataIndex: 'pd_detno',
             xtype: 'numbercolumn',
-            width: 80
+            width: 100
         }, {
             text: '关联销售单号',
             dataIndex: 'pd_ordercode',
@@ -160,7 +160,11 @@ Ext.define('saas.view.sale.saleIn.QueryPanel', {
             text: '订单序号',
             dataIndex: 'pd_orderdetno',
             xtype:'numbercolumn',
-            width: 80
+            width: 100,
+            renderer : function(v) {
+                var format = '0'
+                return Ext.util.Format.number(v, format);
+            }
         }, {
             text: '物料编号',
             dataIndex: 'pd_prodcode',

+ 6 - 2
frontend/saas-web/app/view/sale/saleOut/QueryPanel.js

@@ -152,7 +152,7 @@ Ext.define('saas.view.sale.saleout.QueryPanel', {
             text: '明细序号',
             dataIndex: 'pd_detno',
             xtype: 'numbercolumn',
-            width: 80
+            width: 100
         }, {
             text: '关联销售单号',
             dataIndex: 'pd_ordercode',
@@ -161,7 +161,11 @@ Ext.define('saas.view.sale.saleout.QueryPanel', {
             text: '订单序号',
             dataIndex: 'pd_orderdetno',
             xtype:'numbercolumn',
-            width: 80
+            width: 100,
+            renderer : function(v) {
+                var format = '0'
+                return Ext.util.Format.number(v, format);
+            }
         }, {
             text: '物料编号',
             dataIndex: 'pd_prodcode',