Browse Source

【界面标准化】【供应商资料、客户资料】

rainco 7 years ago
parent
commit
2077a99eaa

+ 2 - 2
frontend/saas-web/app/view/core/dbfind/types/EmployeeDbfindTrigger.js

@@ -42,11 +42,11 @@ Ext.define('saas.view.core.dbfind.types.EmployeeDbfindTrigger', {
         dataIndex: "em_name",
         width: 110
     }, {
-        text: "类型",
+        text: "人员状态",
         dataIndex: "em_class",
         width: 100,
     }, {
-        text: "手机",
+        text: "联系电话",
         dataIndex: "em_mobile",
         width: 110,
     }, {

+ 2 - 2
frontend/saas-web/app/view/document/bankinformation/Window.js

@@ -28,7 +28,7 @@ Ext.define('saas.view.document.bankinformation.Window', {
             },
             flex: 1
         },{
-            text: '当前余额',
+            text: '当前余额(元)',
             dataIndex: 'bk_thisamount',
             xtype: 'numbercolumn',
             renderer : function(v) {
@@ -72,7 +72,7 @@ Ext.define('saas.view.document.bankinformation.Window', {
                 xtype:'numberfield',
                 name:'bk_beginamount',
                 allowBlank:false,
-                fieldLabel:'期初(元)',
+                fieldLabel:'期初金额(元)',
                 hideTrigger: true,
                 mouseWheelEnabled: false,
                 minValue: 0,

+ 3 - 2
frontend/saas-web/app/view/document/customer/BasePanel.js

@@ -87,11 +87,12 @@ Ext.define('saas.view.document.customer.BasePanel', {
         }, 
         {
             text : "客户名称", 
-            width : 250.0, 
+            width : 200.0, 
             dataIndex : "cu_name"
         }, {
             text : "状态", 
             dataIndex : "cu_status", 
+            align: 'center',
             width : 80.0
         }, {
             text : "类型", 
@@ -113,7 +114,7 @@ Ext.define('saas.view.document.customer.BasePanel', {
                 return Ext.util.Format.number(v, '0');
             }
         }, {
-            text: '应收余额',
+            text: '应收余额(元)',
             xtype: 'numbercolumn',
             dataIndex: 'cu_leftamount',
             width: 120,

+ 6 - 3
frontend/saas-web/app/view/document/customer/FormPanel.js

@@ -100,10 +100,11 @@ Ext.define('saas.view.document.customer.FormPanel', {
         xtype : "numberfield", 
         hideTrigger:true,
         name : "cu_beginaramount", 
-        fieldLabel : "期初应收", 
+        fieldLabel : "期初应收(元)", 
         allowBlank : true, 
         columnWidth : 0.25,
         decimalPrecision: 2,
+        thousandSeparator: ',',
         minValue:0,
         group: '交易信息',
         renderer : function(v) {
@@ -113,10 +114,11 @@ Ext.define('saas.view.document.customer.FormPanel', {
         xtype : "numberfield", 
         hideTrigger:true,
         name : "cu_beginprerecamount", 
-        fieldLabel : "期初预收", 
+        fieldLabel : "期初预收(元)", 
         allowBlank : true, 
         columnWidth : 0.25,
         decimalPrecision: 2,
+        thousandSeparator: ',',
         minValue:0,
         group: '交易信息',
         renderer : function(v) {
@@ -125,11 +127,12 @@ Ext.define('saas.view.document.customer.FormPanel', {
     },{
         xtype:'textfield',
         name : "cu_leftamount", 
-        fieldLabel : "应收余额", 
+        fieldLabel : "应收余额(元)", 
         allowBlank : true, 
         readOnly:true,
         columnWidth : 0.25,
         decimalPrecision: 2,
+        thousandSeparator: ',',
         group: '交易信息',
         renderer : function(v) {
             return saas.util.BaseUtil.numberFormat(v, 2, true);

+ 2 - 1
frontend/saas-web/app/view/document/vendor/BasePanel.js

@@ -81,10 +81,11 @@ Ext.define('saas.view.document.vendor.BasePanel', {
         }, {
             text : "供应商名称", 
             dataIndex : "ve_name", 
-            width : 250.0
+            width : 200.0
         }, {
             text : "状态", 
             dataIndex : "ve_status", 
+            align: 'center',
             width : 80.0
         }, {
             text : "类型", 

+ 6 - 3
frontend/saas-web/app/view/document/vendor/FormPanel.js

@@ -106,10 +106,11 @@ Ext.define('saas.view.document.vendor.FormPanel', {
         xtype : "numberfield", 
         hideTrigger:true,
         name : "ve_beginapamount", 
-        fieldLabel : "期初应付",
+        fieldLabel : "期初应付(元)",
         allowBlank : true, 
         columnWidth : 0.25,
         decimalPrecision: 2,
+        thousandSeparator: ',',
         minValue:0,
         group: '交易信息',
         renderer : function(v) {
@@ -119,10 +120,11 @@ Ext.define('saas.view.document.vendor.FormPanel', {
         xtype : "numberfield", 
         hideTrigger:true, 
         name : "ve_beginprepayamount", 
-        fieldLabel : "期初预付", 
+        fieldLabel : "期初预付(元)", 
         allowBlank : true, 
         columnWidth : 0.25,
         decimalPrecision: 2,
+        thousandSeparator: ',',
         minValue:0,
         group: '交易信息',
         renderer : function(v) {
@@ -131,12 +133,13 @@ Ext.define('saas.view.document.vendor.FormPanel', {
     },{  
         xtype : "numberfield", 
         name : "ve_leftamount", 
-        fieldLabel : "应付余额", 
+        fieldLabel : "应付余额(元)", 
         allowBlank : true, 
         readOnly:true,
         ignore:true,
         columnWidth : 0.25,
         decimalPrecision: 2,
+        thousandSeparator: ',',
         group: '交易信息',
         renderer : function(v) {
             return saas.util.BaseUtil.numberFormat(v, 2, true);

+ 1 - 1
frontend/saas-web/app/view/document/warehouse/DataList.js

@@ -25,7 +25,7 @@ Ext.define('saas.view.document.warehouse.DataList', {
     etc:{
         warehouse:{
             columns: [{
-                text: '编号',
+                text: '仓库编号',
                 dataIndex: 'wh_code',
                 width: 150
             },{

+ 4 - 4
frontend/saas-web/app/view/home/charts/KeyData.js

@@ -32,7 +32,7 @@ Ext.define('saas.view.home.charts.KeyData', {
         showIcon: true,
         icon: 'storageTotal',
         name: 'storageTotal',
-        label: '库存总额',
+        label: '库存总额(元)',
         value: '0',
         viewType: 'stock-report-datalist',
         title: '物料库存数量金额表查询',
@@ -42,7 +42,7 @@ Ext.define('saas.view.home.charts.KeyData', {
         showIcon: true,
         icon: 'receiveTotal',
         name: 'receiveTotal',
-        label: '应收总额',
+        label: '应收总额(元)',
         value: '0',
         viewType: 'monry-report-totalrecdetail',
         title: '应收总账查询',
@@ -52,7 +52,7 @@ Ext.define('saas.view.home.charts.KeyData', {
         showIcon: true,
         icon: 'payTotal',
         name: 'payTotal',
-        label: '应付总额',
+        label: '应付总额(元)',
         value: '0',
         viewType: 'monry-report-totalpaydetail',
         title: '应付总账查询',
@@ -62,7 +62,7 @@ Ext.define('saas.view.home.charts.KeyData', {
         showIcon: true,
         icon: 'balanceTotal',
         name: 'balanceTotal',
-        label: '账户余额',
+        label: '账户余额(元)',
         value: '0',
         viewType: 'document-bankinformation-datalist',
         title: '资金账户查询',

+ 1 - 1
frontend/saas-web/app/view/money/report/PayDetail.js

@@ -71,7 +71,7 @@ Ext.define('saas.view.money.report.PayDetail', {
             return saas.util.BaseUtil.numberFormat(v, 2, true);
         }
     }, {
-        text: '应付余额',
+        text: '应付余额(元)',
         xtype: 'numbercolumn',
         exportFormat: 'Amount',
         dataIndex: 'pd_remain',

+ 1 - 1
frontend/saas-web/app/view/money/report/RecDetail.js

@@ -72,7 +72,7 @@ Ext.define('saas.view.money.report.RecDetail', {
             return saas.util.BaseUtil.numberFormat(v, 2, true);
         }
     }, {
-        text: '应收余额',
+        text: '应收余额(元)',
         xtype: 'numbercolumn',
         exportFormat: 'Amount',
         dataIndex: 'rd_remain',

+ 1 - 1
frontend/saas-web/app/view/money/report/TotalPayDetail.js

@@ -124,7 +124,7 @@ Ext.define('saas.view.money.report.TotalPayDetail', {
             }
         }]
     }, {
-        text: '应付余额',
+        text: '应付余额(元)',
         dataIndex: 'vm_endamount-vm_endpreamount',
         exportFormat: 'Amount',
         xtype: 'numbercolumn',