Explorar o código

资金模块-解决核销单问题

huangx %!s(int64=7) %!d(string=hai) anos
pai
achega
50328b128f

+ 2 - 1
applications/money/money-server/src/main/resources/mapper/VerificationListMapper.xml

@@ -46,7 +46,8 @@
 
     </resultMap>
     <sql id="Base_Column_List">
-    vc_id, vc_code, vc_kind, vc_date, vc_vendid, vc_vendcode ,vc_custcode ,vc_custid ,vc_amount1
+    vc_id, vc_code, vc_kind, vc_date, vc_vendid, vc_vendcode ,vc_custcode ,vc_custid ,vc_amount1,
+    vc_status,vc_statuscode,vc_vendname,vc_custname
   </sql>
     <select id="selectVerificationListByCondition"  resultMap="BaseResultMap">
         select

+ 2 - 3
frontend/saas-web/app/view/money/verification/QueryPanel.js

@@ -101,7 +101,7 @@ Ext.define('saas.view.money.verification.QueryPanel', {
             text: '单据日期',
             dataIndex: 'vc_date',
             xtype: 'datecolumn',
-            width: 120
+            width: 100
         },{
             text: '审核状态',
             dataIndex: 'vc_status',
@@ -109,7 +109,7 @@ Ext.define('saas.view.money.verification.QueryPanel', {
         },{
             text: '业务类型',
             dataIndex: 'vc_kind',
-            width: 110
+            width: 100
         }, {
             text: '客户编号',
             dataIndex: 'vc_custcode',
@@ -131,7 +131,6 @@ Ext.define('saas.view.money.verification.QueryPanel', {
             dataIndex: 'vc_amount1',
             xtype: 'numbercolumn',
             width: 100,
-            flex: 1,
             renderer : function(v) {
                 var arr = (v + '.').split('.');
                 var xr = (new Array(arr[1].length > 2 ? 2 : arr[1].length)).fill('0');