Browse Source

金额统一添加“(元)”标识

rainco 7 năm trước cách đây
mục cha
commit
0439a98099
29 tập tin đã thay đổi với 64 bổ sung64 xóa
  1. 5 5
      frontend/saas-web/app/view/core/dbfind/types/OriOrderMutiDbfindTrigger.js
  2. 1 1
      frontend/saas-web/app/view/document/bankinformation/DataList.js
  3. 2 2
      frontend/saas-web/app/view/document/bankinformation/Window.js
  4. 1 1
      frontend/saas-web/app/view/home/infoCardList/Payment.js
  5. 1 1
      frontend/saas-web/app/view/home/infoCardList/PurchaseIn.js
  6. 2 2
      frontend/saas-web/app/view/home/infoCardList/Recment.js
  7. 1 1
      frontend/saas-web/app/view/home/infoCardList/UnauditCheckIn.js
  8. 2 2
      frontend/saas-web/app/view/home/infoCardList/UnauditSaleOut.js
  9. 1 1
      frontend/saas-web/app/view/money/fundtransfer/FormPanel.js
  10. 1 1
      frontend/saas-web/app/view/money/fundtransfer/QueryPanel.js
  11. 2 2
      frontend/saas-web/app/view/money/othreceipts/FormPanel.js
  12. 3 3
      frontend/saas-web/app/view/money/othreceipts/QueryPanel.js
  13. 2 2
      frontend/saas-web/app/view/money/othspendings/FormPanel.js
  14. 3 3
      frontend/saas-web/app/view/money/othspendings/QueryPanel.js
  15. 2 2
      frontend/saas-web/app/view/money/payBalance/FormPanel.js
  16. 1 1
      frontend/saas-web/app/view/money/payBalance/QueryPanel.js
  17. 8 8
      frontend/saas-web/app/view/money/recBalance/FormPanel.js
  18. 1 1
      frontend/saas-web/app/view/money/recBalance/QueryPanel.js
  19. 2 2
      frontend/saas-web/app/view/money/report/AccountDetails.js
  20. 2 2
      frontend/saas-web/app/view/money/report/CustomerCheck.js
  21. 2 2
      frontend/saas-web/app/view/money/report/ProfitDetail.js
  22. 2 2
      frontend/saas-web/app/view/money/report/VendorCheck.js
  23. 5 5
      frontend/saas-web/app/view/money/verification/FormPanel.js
  24. 1 1
      frontend/saas-web/app/view/money/verification/QueryPanel.js
  25. 3 3
      frontend/saas-web/app/view/purchase/report/Purchase.js
  26. 1 1
      frontend/saas-web/app/view/purchase/report/PurchasePay.js
  27. 3 3
      frontend/saas-web/app/view/sale/report/Sale.js
  28. 2 2
      frontend/saas-web/app/view/sale/report/SaleProfit.js
  29. 2 2
      frontend/saas-web/app/view/sale/report/SaleRec.js

+ 5 - 5
frontend/saas-web/app/view/core/dbfind/types/OriOrderMutiDbfindTrigger.js

@@ -37,19 +37,19 @@ Ext.define('saas.view.core.dbfind.types.OriOrderMutiDbfindTrigger', {
         "dataIndex": "sl_kind",
         "width": 110
     }, {
-        "text": "单据金额",
+        "text": "单据金额(元)",
         "dataIndex": "sl_orderamount",
         "width": 110,
         xtype: 'numbercolumn'
     }, {
-        "text": "已核销金额",
+        "text": "已核销金额(元)",
         "dataIndex": "sl_yamount",
-        "width": 110,
+        "width": 120,
         xtype: 'numbercolumn'
     }, {
-        "text": "未核销金额",
+        "text": "未核销金额(元)",
         "dataIndex": "sl_namount",
-        "width": 110,
+        "width": 120,
         xtype: 'numbercolumn'
     },{
         "text": "单据日期",

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

@@ -35,7 +35,7 @@ Ext.define('saas.view.document.bankinformation.DataList', {
                 dataIndex: 'bk_type',
                 flex: 1,
             },{
-                text: '期初金额',
+                text: '期初金额(元)',
                 dataIndex: 'bk_beginamount',
                 xtype: 'numbercolumn',
                 renderer : function(v) {

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

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

+ 1 - 1
frontend/saas-web/app/view/home/infoCardList/Payment.js

@@ -135,7 +135,7 @@ Ext.define('saas.view.home.infoCardList.Payment', {
             return Ext.util.Format.number(v, '0');
         },
     }, {
-        text: '金额',
+        text: '金额(元)',
         dataIndex: 'pd_total',
         xtype: 'numbercolumn',
         width: 110,

+ 1 - 1
frontend/saas-web/app/view/home/infoCardList/PurchaseIn.js

@@ -107,7 +107,7 @@ Ext.define('saas.view.home.infoCardList.PurchaseIn', {
             return Ext.util.Format.number(v, '0');
         },
     }, {
-        text: '金额',
+        text: '金额(元)',
         dataIndex: 'pd_total',
         xtype: 'numbercolumn',
         width: 110,

+ 2 - 2
frontend/saas-web/app/view/home/infoCardList/Recment.js

@@ -39,7 +39,7 @@ Ext.define('saas.view.home.infoCardList.Recment', {
         dataIndex: 'pi_sacode',
         width: 150
     },{
-        text: '总金额',
+        text: '总金额(元)',
         dataIndex: 'pi_total',
         xtype:'numbercolumn',
         width: 110
@@ -116,7 +116,7 @@ Ext.define('saas.view.home.infoCardList.Recment', {
             return Ext.util.Format.number(v, format);
         }
     }, {
-        text: '金额',
+        text: '金额(元)',
         dataIndex: 'pd_ordertotal',
         xtype:'numbercolumn',
         width: 110,

+ 1 - 1
frontend/saas-web/app/view/home/infoCardList/UnauditCheckIn.js

@@ -135,7 +135,7 @@ Ext.define('saas.view.home.infoCardList.UnauditCheckIn', {
             return Ext.util.Format.number(v, '0');
         },
     }, {
-        text: '金额',
+        text: '金额(元)',
         dataIndex: 'pd_total',
         xtype: 'numbercolumn',
         hidden: true,

+ 2 - 2
frontend/saas-web/app/view/home/infoCardList/UnauditSaleOut.js

@@ -39,7 +39,7 @@ Ext.define('saas.view.home.infoCardList.UnauditSaleOut', {
         dataIndex: 'pi_sacode',
         width: 150
     },{
-        text: '总金额',
+        text: '总金额(元)',
         dataIndex: 'pi_total',
         xtype:'numbercolumn',
         width: 110
@@ -113,7 +113,7 @@ Ext.define('saas.view.home.infoCardList.UnauditSaleOut', {
             return Ext.util.Format.number(v, format);
         }
     }, {
-        text: '金额',
+        text: '金额(元)',
         dataIndex: 'pd_ordertotal',
         xtype:'numbercolumn',
         width: 110,

+ 1 - 1
frontend/saas-web/app/view/money/fundtransfer/FormPanel.js

@@ -122,7 +122,7 @@ Ext.define('saas.view.money.fundtransfer.FormPanel', {
                 ignore:true,
                 width : 150.0
             }, {
-                text : "本次转出金额", 
+                text : "本次转出金额(元)", 
                 xtype: 'numbercolumn',
                 dataIndex : "ftd_nowbalance",
                 width : 150.0,

+ 1 - 1
frontend/saas-web/app/view/money/fundtransfer/QueryPanel.js

@@ -99,7 +99,7 @@ Ext.define('saas.view.money.fundtransfer.QueryPanel', {
             dataIndex: 'ftd_inbankname',
             width: 150
         }, {
-            text: '金额',
+            text: '金额(元)',
             xtype: 'numbercolumn',
             dataIndex: 'ftd_nowbalance',
             width: 110,

+ 2 - 2
frontend/saas-web/app/view/money/othreceipts/FormPanel.js

@@ -113,7 +113,7 @@ Ext.define('saas.view.money.othreceipts.FormPanel', {
                     }
                 }
             }, {
-                text : "金额", 
+                text : "金额(元)", 
                 xtype: 'numbercolumn',
                 dataIndex : "ord_nowbalance", 
                 width : 110.0,
@@ -147,7 +147,7 @@ Ext.define('saas.view.money.othreceipts.FormPanel', {
     }, {
         xtype : "numberfield", 
         name : "or_amount", 
-        fieldLabel : "收款金额",
+        fieldLabel : "收款金额(元)",
         readOnly:true
     },{
         xtype : "textfield", 

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

@@ -117,7 +117,7 @@ Ext.define('saas.view.money.othreceipts.QueryPanel', {
             dataIndex: 'or_bankname',
             width: 150
         }, {
-            text: '收款金额',
+            text: '收款金额(元)',
             xtype: 'numbercolumn',
             dataIndex: 'or_amount',
             width: 110,
@@ -159,7 +159,7 @@ Ext.define('saas.view.money.othreceipts.QueryPanel', {
             dataIndex: 'or_bankname',
             width: 150
         }, {
-            text: '收款金额',
+            text: '收款金额(元)',
             xtype: 'numbercolumn',
             dataIndex: 'or_amount',
             width: 110,
@@ -179,7 +179,7 @@ Ext.define('saas.view.money.othreceipts.QueryPanel', {
             dataIndex: 'ord_type',
             width: 110
         } ,{
-            text: '明细金额',
+            text: '明细金额(元)',
             dataIndex: 'ord_nowbalance',
             width: 110
         } ,{

+ 2 - 2
frontend/saas-web/app/view/money/othspendings/FormPanel.js

@@ -113,7 +113,7 @@ Ext.define('saas.view.money.othspendings.FormPanel', {
                     }
                 }
             }, {
-                text : "金额", 
+                text : "金额(元)", 
                 xtype: 'numbercolumn',
                 dataIndex : "osd_nowbalance", 
                 width : 110.0,
@@ -147,7 +147,7 @@ Ext.define('saas.view.money.othspendings.FormPanel', {
     },{
         xtype : 'numberfield',
         name : 'os_amount',
-        fieldLabel : '付款金额',
+        fieldLabel : '付款金额(元)',
         readOnly:true
     },{
         xtype : "textfield", 

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

@@ -115,7 +115,7 @@ Ext.define('saas.view.money.othspendings.QueryPanel', {
             dataIndex: 'os_bankname',
             width: 150
         },{
-            text: '付款金额',
+            text: '付款金额(元)',
             dataIndex: 'os_amount',
             width: 110,
             renderer : function(v) {
@@ -157,7 +157,7 @@ Ext.define('saas.view.money.othspendings.QueryPanel', {
             dataIndex: 'os_bankname',
             width: 150
         },{
-            text: '付款金额',
+            text: '付款金额(元)',
             dataIndex: 'os_amount',
             width: 110,
             renderer : function(v) {
@@ -176,7 +176,7 @@ Ext.define('saas.view.money.othspendings.QueryPanel', {
             dataIndex: 'osd_type',
             width: 110
         }, {
-            text: '明细金额',
+            text: '明细金额(元)',
             dataIndex: 'osd_nowbalance',
             width: 110
         },{

+ 2 - 2
frontend/saas-web/app/view/money/payBalance/FormPanel.js

@@ -71,7 +71,7 @@ Ext.define('saas.view.money.payBalance.FormPanel', {
     }, {
         xtype: 'hidden',
         name: 'pb_pdamount',
-        fieldLabel: '付款金额'
+        fieldLabel: '付款金额(元)'
     }, {
         xtype: "hidden",
         name: "pb_pbdamount",
@@ -89,7 +89,7 @@ Ext.define('saas.view.money.payBalance.FormPanel', {
     }, {
         xtype: 'hidden',
         name: 'pb_havebalance',
-        fieldLabel: '已核销金额'
+        fieldLabel: '已核销金额(元)'
     }, {
         xtype: "detailGridField",
         storeModel: 'saas.model.money.PayBalance1',

+ 1 - 1
frontend/saas-web/app/view/money/payBalance/QueryPanel.js

@@ -134,7 +134,7 @@ Ext.define('saas.view.money.paybalance.QueryPanel', {
             dataIndex: 'pd_bankname',
             width: 110
         },{
-            text: '付款金额',
+            text: '付款金额(元)',
             xtype: 'numbercolumn',
             dataIndex: 'pd_amount',
             width: 120,

+ 8 - 8
frontend/saas-web/app/view/money/recBalance/FormPanel.js

@@ -59,11 +59,11 @@ Ext.define('saas.view.money.recBalance.FormPanel', {
     }, {
         xtype: 'hidden',
         name: 'rb_rbdamount',
-        fieldLabel: '本次核销金额'
+        fieldLabel: '本次核销金额(元)'
     },{
         xtype: 'hidden',
         name: 'rb_rdamount',
-        fieldLabel: '本次付款金额',
+        fieldLabel: '本次付款金额(元)',
     },  {
         xtype: "datefield",
         name: "rb_date",
@@ -88,7 +88,7 @@ Ext.define('saas.view.money.recBalance.FormPanel', {
     }, {
         xtype: 'hidden',
         name: 'rb_havebalance',
-        fieldLabel: '已核销金额'
+        fieldLabel: '已核销金额(元)'
     }, {
         xtype: "detailGridField",
         storeModel: 'saas.model.money.RecBalance1',
@@ -127,7 +127,7 @@ Ext.define('saas.view.money.recBalance.FormPanel', {
                 xtype:'bandinfoDbfindTrigger'
             }
         }, {
-            text: "收款金额",
+            text: "收款金额(元)",
             xtype: 'numbercolumn',
             dataIndex: "rd_amount",
             width : 110.0,
@@ -239,7 +239,7 @@ Ext.define('saas.view.money.recBalance.FormPanel', {
             xtype: 'datecolumn',
             width:110
         }, {
-            text: "单据金额",
+            text: "单据金额(元)",
             xtype: 'numbercolumn',
             dataIndex: "rbd_amount",
             width:110,
@@ -257,7 +257,7 @@ Ext.define('saas.view.money.recBalance.FormPanel', {
                 return Ext.util.Format.number(v, format);
             }
         }, {
-            text: "已核销金额",
+            text: "已核销金额(元)",
             xtype: 'numbercolumn',
             dataIndex: "sl_yamount",
             width:110,
@@ -276,7 +276,7 @@ Ext.define('saas.view.money.recBalance.FormPanel', {
                 return Ext.util.Format.number(v, format);
             }
         }, {
-            text: "未核销金额",
+            text: "未核销金额(元)",
             xtype: 'numbercolumn',
             dataIndex: "sl_namount",
             width:110,
@@ -295,7 +295,7 @@ Ext.define('saas.view.money.recBalance.FormPanel', {
                 return Ext.util.Format.number(v, format);
             }
         }, {
-            text: "本次核销金额",
+            text: "本次核销金额(元)",
             xtype: 'numbercolumn',
             dataIndex: "rbd_nowbalance",
             width:140,

+ 1 - 1
frontend/saas-web/app/view/money/recBalance/QueryPanel.js

@@ -125,7 +125,7 @@ Ext.define('saas.view.money.recBalance.QueryPanel', {
             dataIndex: 'rd_bankname',
             width: 100
         },{
-            text: '收款金额',
+            text: '收款金额(元)',
             xtype: 'numbercolumn',
             dataIndex: 'rd_amount',
             width: 100,

+ 2 - 2
frontend/saas-web/app/view/money/report/AccountDetails.js

@@ -80,7 +80,7 @@ Ext.define('saas.view.money.report.AccountDetails', {
         xtype: 'datecolumn',
         width: 110
     }, {
-        text: '本期核销金额',
+        text: '本期核销金额(元)',
         dataIndex: 'pbd_nowbalance',
         exportFormat: 'Amount',
         xtype: 'numbercolumn',
@@ -92,7 +92,7 @@ Ext.define('saas.view.money.report.AccountDetails', {
             return Ext.util.Format.number(v, format);
         }
     }, {
-        text: '总金额',
+        text: '总金额(元)',
         dataIndex: 'sl_orderamount',
         xtype: 'numbercolumn',
         exportFormat: 'Amount',

+ 2 - 2
frontend/saas-web/app/view/money/report/CustomerCheck.js

@@ -114,7 +114,7 @@ Ext.define('saas.view.money.report.CustomerCheckCheck', {
             return Ext.util.Format.number(v, '0');
         }
     }, {
-        text: '金额',
+        text: '金额(元)',
         xtype: 'numbercolumn',
         exportFormat: 'Amount',
         width: 110,
@@ -145,7 +145,7 @@ Ext.define('saas.view.money.report.CustomerCheckCheck', {
             return Ext.util.Format.number(v, format);
         }
     }, {
-        text: '不含税金额',
+        text: '不含税金额(元)',
         width: 150,
         xtype: 'numbercolumn',
         exportFormat: 'Amount',

+ 2 - 2
frontend/saas-web/app/view/money/report/ProfitDetail.js

@@ -70,7 +70,7 @@ Ext.define('saas.view.money.report.ProfitDetail', {
             return Ext.util.Format.number(v, format);
         }
     }, {
-        text: '不含税金额',
+        text: '不含税金额(元)',
         dataIndex: 'netamount',
         exportFormat: 'Amount',
         xtype: 'numbercolumn',
@@ -82,7 +82,7 @@ Ext.define('saas.view.money.report.ProfitDetail', {
             return Ext.util.Format.number(v, format);
         },
     }, {
-        text: '成本金额',
+        text: '成本金额(元)',
         dataIndex: 'costamount',
         exportFormat: 'Amount',
         xtype: 'numbercolumn',

+ 2 - 2
frontend/saas-web/app/view/money/report/VendorCheck.js

@@ -124,7 +124,7 @@ Ext.define('saas.view.money.report.VendorCheck', {
             return Ext.util.Format.number(v, '0');
         }
     }, {
-        text: '金额',
+        text: '金额(元)',
         xtype: 'numbercolumn',
         exportFormat: 'Amount',
         dataIndex: 'pd_total',
@@ -155,7 +155,7 @@ Ext.define('saas.view.money.report.VendorCheck', {
             return Ext.util.Format.number(v, format);
         }
     }, {
-        text: '不含税金额',
+        text: '不含税金额(元)',
         dataIndex: 'pd_nettotal',
         exportFormat: 'Amount',
         xtype: 'numbercolumn',

+ 5 - 5
frontend/saas-web/app/view/money/verification/FormPanel.js

@@ -381,7 +381,7 @@ Ext.define('saas.view.money.verification.FormPanel', {
             }, {
                 xtype: 'hidden',
                 name: 'vc_amount1',
-                fieldLabel: '核销金额'
+                fieldLabel: '核销金额(元)'
             }, {
                 xtype: "hidden",
                 name: "vc_amount2",
@@ -419,7 +419,7 @@ Ext.define('saas.view.money.verification.FormPanel', {
             }, {
                 xtype: 'hidden',
                 name: 'vc_amount1',
-                fieldLabel: '核销金额'
+                fieldLabel: '核销金额(元)'
             }, {
                 xtype: "hidden",
                 name: "vc_amount2",
@@ -474,7 +474,7 @@ Ext.define('saas.view.money.verification.FormPanel', {
             }, {
                 xtype: 'hidden',
                 name: 'vc_amount1',
-                fieldLabel: '核销金额'
+                fieldLabel: '核销金额(元)'
             }, {
                 xtype: "hidden",
                 name: "vc_amount2",
@@ -528,7 +528,7 @@ Ext.define('saas.view.money.verification.FormPanel', {
             }, {
                 xtype: 'hidden',
                 name: 'vc_amount1',
-                fieldLabel: '核销金额'
+                fieldLabel: '核销金额(元)'
             }, {
                 xtype: "hidden",
                 name: "vc_amount2",
@@ -582,7 +582,7 @@ Ext.define('saas.view.money.verification.FormPanel', {
             }, {
                 xtype: 'hidden',
                 name: 'vc_amount1',
-                fieldLabel: '核销金额'
+                fieldLabel: '核销金额(元)'
             }, {
                 xtype: "hidden",
                 name: "vc_amount2",

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

@@ -119,7 +119,7 @@ Ext.define('saas.view.money.verification.QueryPanel', {
             dataIndex: 'vc_vendname',
             width: 130
         }, {
-            text: '核销金额',
+            text: '核销金额(元)',
             dataIndex: 'vc_amount1',
             xtype: 'numbercolumn',
             width: 100,

+ 3 - 3
frontend/saas-web/app/view/purchase/report/Purchase.js

@@ -140,7 +140,7 @@ Ext.define('saas.view.purchase.report.Purchase', {
             return Ext.util.Format.number(v, '0');
         }
     }, {
-        text: '金额',
+        text: '金额(元)',
         dataIndex: 'pd_total',
         exportFormat: 'Amount',
         width: 110,
@@ -171,7 +171,7 @@ Ext.define('saas.view.purchase.report.Purchase', {
             return Ext.util.Format.number(v, format);
         }
     }, {
-        text: '不含税金额',
+        text: '不含税金额(元)',
         exportFormat: 'Amount',
         width: 150,
         dataIndex: 'pd_taxtotal',
@@ -202,7 +202,7 @@ Ext.define('saas.view.purchase.report.Purchase', {
             return Ext.util.Format.number(v, format);
         }
     }, {
-        text: '收货金额',
+        text: '收货金额(元)',
         dataIndex: 'pd_pdaccepttotal',
         exportFormat: 'Amount',
         width: 110,

+ 1 - 1
frontend/saas-web/app/view/purchase/report/PurchasePay.js

@@ -53,7 +53,7 @@ Ext.define('saas.view.purchase.report.PurchasePay', {
         dataIndex: 'pbd_slkind',
         width: 110
     }, {//∑求和
-        text: '采购金额',
+        text: '采购金额(元)',
         xtype: 'numbercolumn',
         exportFormat: 'Amount',
         dataIndex: 'pbd_amount',

+ 3 - 3
frontend/saas-web/app/view/sale/report/Sale.js

@@ -143,7 +143,7 @@ Ext.define('saas.view.sale.report.Sale', {
             return Ext.util.Format.number(v, '0');
         }
     }, {//∑金额
-        text: '金额',
+        text: '金额(元)',
         xtype: 'numbercolumn',
         exportFormat: 'Amount',
         dataIndex: 'sd_total',
@@ -161,7 +161,7 @@ Ext.define('saas.view.sale.report.Sale', {
             return Ext.util.Format.number(v, format);
         }
     }, {
-        text: '不含税金额',
+        text: '不含税金额(元)',
         xtype: 'numbercolumn',
         exportFormat: 'Amount',
         width: 150,
@@ -191,7 +191,7 @@ Ext.define('saas.view.sale.report.Sale', {
             return Ext.util.Format.number(v, format);
         }
     }, {
-        text: '出货金额',
+        text: '出货金额(元)',
         dataIndex: 'sd_pdsendqtytotal',
         exportFormat: 'Amount',
         width: 110,

+ 2 - 2
frontend/saas-web/app/view/sale/report/SaleProfit.js

@@ -122,7 +122,7 @@ Ext.define('saas.view.sale.report.SaleProfit', {
             return Ext.util.Format.number(v, '0');
         }
     }, {
-        text: '含税金额',
+        text: '含税金额(元)',
         dataIndex: 'pd_ordertotal',
         xtype: 'numbercolumn',
         renderer: function(v) {
@@ -156,7 +156,7 @@ Ext.define('saas.view.sale.report.SaleProfit', {
             return Ext.util.Format.number(v, format);
         }
     }, {
-        text: '成本金额',
+        text: '成本金额(元)',
         dataIndex: 'pd_total',
         exportFormat: 'Amount',
         xtype: 'numbercolumn',

+ 2 - 2
frontend/saas-web/app/view/sale/report/SaleRec.js

@@ -56,7 +56,7 @@ Ext.define('saas.view.sale.report.SaleRec', {
         text: '类型',
         dataIndex: 'rbd_slkind'
     }, {
-        text: '销售金额',
+        text: '销售金额(元)',
         xtype: 'numbercolumn',
         exportFormat: 'Amount',
         dataIndex: 'rbd_amount',
@@ -67,7 +67,7 @@ Ext.define('saas.view.sale.report.SaleRec', {
             return Ext.util.Format.number(v, format);
         }
     }, {
-        text: '收款金额',
+        text: '收款金额(元)',
         xtype: 'numbercolumn',
         exportFormat: 'Amount',
         dataIndex: 'rbd_nowbalance',