Quellcode durchsuchen

物料出入库明细按照物料编号分组,分组列头展示:物料名称(物料编号);采购验退明细:”关联验收序号号“改为“关联验收序号“

rainco vor 7 Jahren
Ursprung
Commit
e3526a8847

+ 1 - 1
frontend/saas-web/app/view/purchase/purchaseOut/QueryPanel.js

@@ -209,7 +209,7 @@ Ext.define('saas.view.purchase.purchaseOut.QueryPanel', {
                 dataIndex: 'pi_iocode',
                 width: 150
             },{
-                text: '关联验收序号',
+                text: '关联验收序号',
                 dataIndex: 'iodetno',
                 width: 150
             },{

+ 10 - 10
frontend/saas-web/app/view/stock/report/Prodiodetail.js

@@ -7,8 +7,8 @@ Ext.define('saas.view.stock.report.Prodiodetail', {
 
     viewName: 'stock-report-prodiodetail',
   //  按物料分组
-    groupField: 'pr_detail',
-    groupHeaderTpl: '物料名称: {[values.rows[0].data.pr_detail]}',
+    groupField: 'pd_prodcode',
+    groupHeaderTpl: '物料: {[values.rows[0].data.pr_detail]}({[values.rows[0].data.pd_prodcode]})',
     listUrl: '/api/storage/report/prodioDetail',
     defaultCondition: null,
     reportTitle: '物料出入库明细表',
@@ -63,14 +63,6 @@ Ext.define('saas.view.stock.report.Prodiodetail', {
         text: '单据类型',
         dataIndex: 'pi_class',
         width: 110
-    }, {
-        text: '客户/供应商编号',
-        dataIndex: 'bizcode',
-        width: 150
-    }, {
-        text: '客户/供应商名称',
-        dataIndex: 'bizname',
-        width: 250
     }, {
         text: '日期',
         dataIndex: 'pi_date',
@@ -142,6 +134,14 @@ Ext.define('saas.view.stock.report.Prodiodetail', {
         text: '备注',
         dataIndex: 'pd_remark',
         width: 250
+    }, {
+        text: '客户/供应商编号',
+        dataIndex: 'bizcode',
+        width: 150
+    }, {
+        text: '客户/供应商名称',
+        dataIndex: 'bizname',
+        width: 250
     }]
 
 });