|
@@ -92,12 +92,54 @@ export default {
|
|
|
width: 120,
|
|
|
className: 'replacecolor'
|
|
|
},
|
|
|
- {
|
|
|
- title: '金额',
|
|
|
- dataIndex: 'disbursedOriginalmoney',
|
|
|
+ {
|
|
|
+ title: '美元',
|
|
|
+ dataIndex: 'disbursedOriginalmoney',
|
|
|
width: 120,
|
|
|
- className: 'replacecolor'
|
|
|
- },
|
|
|
+ className: 'replacecolor' ,
|
|
|
+ customRender: (text, record, index) => {
|
|
|
+ if(text!==''&&text){
|
|
|
+ return Number(text).toFixed(2)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '人民币(不含税)',
|
|
|
+ dataIndex: 'disbursedLocalmoney',
|
|
|
+ width: 120, className: 'replacecolor',
|
|
|
+ customRender: (text, record, index) => {
|
|
|
+ if(text!==''&&text){
|
|
|
+ return Number(text).toFixed(2)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '人民币(税额)',
|
|
|
+ dataIndex: 'shuiemoney',
|
|
|
+ width: 120,
|
|
|
+ className: 'replacecolor',
|
|
|
+ customRender: (text, record, index) => {
|
|
|
+ if(text!==''&&text){
|
|
|
+ return Number(text).toFixed(2)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '人民币(价税合计)',
|
|
|
+ dataIndex: 'iNatMoney',
|
|
|
+ width: 120,
|
|
|
+ className: 'replacecolor',
|
|
|
+ customRender: (text, record, index) => {
|
|
|
+ if(text!==''&&text){
|
|
|
+ return Number(text).toFixed(2)
|
|
|
+ }
|
|
|
+ }, },
|
|
|
+ // {
|
|
|
+ // title: '金额',
|
|
|
+ // dataIndex: 'disbursedOriginalmoney',
|
|
|
+ // width: 120,
|
|
|
+ // className: 'replacecolor'
|
|
|
+ // },
|
|
|
{
|
|
|
title: '供应商',
|
|
|
dataIndex: 'processUnit',
|