|
@@ -144,7 +144,6 @@ const approvedOutsourcing = React.createClass({
|
|
|
signTotalAmount: thisdata.signTotalAmount,
|
|
|
outsourceAmount: thisdata.outsourceAmount,
|
|
|
financeName: thisdata.financeName,
|
|
|
- outsourceAmount: thisdata.outsourceAmount,
|
|
|
backStatus: thisdata.backStatus,
|
|
|
orderReceivables: thisdata.orderReceivables,
|
|
|
orderArrears: thisdata.orderArrears,
|
|
@@ -276,6 +275,9 @@ const approvedOutsourcing = React.createClass({
|
|
|
dataIndex: "outsourceAmount",
|
|
|
key: "outsourceAmount",
|
|
|
className: "title-table",
|
|
|
+ render: (text) => {
|
|
|
+ return isNaN(parseFloat(text)) ? text : parseFloat(text);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "签单日期",
|
|
@@ -294,36 +296,54 @@ const approvedOutsourcing = React.createClass({
|
|
|
dataIndex: "signTotalAmount",
|
|
|
key: "signTotalAmount",
|
|
|
className: "title-table",
|
|
|
+ render: (text) => {
|
|
|
+ return isNaN(parseFloat(text)) ? text : parseFloat(text);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "开票金额(万元)",
|
|
|
dataIndex: "invoiceAmount",
|
|
|
key: "invoiceAmount",
|
|
|
className: "title-table",
|
|
|
+ render: (text) => {
|
|
|
+ return isNaN(parseFloat(text)) ? text : parseFloat(text);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "已收款(万元)",
|
|
|
dataIndex: "actuallyTotalAmount",
|
|
|
key: "actuallyTotalAmount",
|
|
|
className: "title-table",
|
|
|
+ render: (text) => {
|
|
|
+ return isNaN(parseFloat(text)) ? text : parseFloat(text);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "应收款(万元)",
|
|
|
dataIndex: "orderReceivables",
|
|
|
key: "orderReceivables",
|
|
|
className: "title-table",
|
|
|
+ render: (text) => {
|
|
|
+ return isNaN(parseFloat(text)) ? text : parseFloat(text);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "欠款(万元)",
|
|
|
dataIndex: "orderArrears",
|
|
|
key: "orderArrears",
|
|
|
className: "title-table",
|
|
|
+ render: (text) => {
|
|
|
+ return isNaN(parseFloat(text)) ? text : parseFloat(text);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "最近收款(万元)",
|
|
|
dataIndex: "finalReceivables",
|
|
|
key: "finalReceivables",
|
|
|
className: "title-table",
|
|
|
+ render: (text) => {
|
|
|
+ return isNaN(parseFloat(text)) ? text : parseFloat(text);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "最近收款时间",
|
|
@@ -898,21 +918,33 @@ const approvedOutsourcing = React.createClass({
|
|
|
title: "签单金额(万元)",
|
|
|
dataIndex: "signTotalAmount",
|
|
|
key: "signTotalAmount",
|
|
|
+ render: (text) => {
|
|
|
+ return isNaN(parseFloat(text)) ? text : parseFloat(text);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "开票金额(万元)",
|
|
|
dataIndex: "invoiceAmount",
|
|
|
key: "invoiceAmount",
|
|
|
+ render: (text) => {
|
|
|
+ return isNaN(parseFloat(text)) ? text : parseFloat(text);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "已收款(万元)",
|
|
|
dataIndex: "actuallyTotalAmount",
|
|
|
key: "actuallyTotalAmount",
|
|
|
+ render: (text) => {
|
|
|
+ return isNaN(parseFloat(text)) ? text : parseFloat(text);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "最近收款(万元)",
|
|
|
dataIndex: "finalReceivables",
|
|
|
key: "finalReceivables",
|
|
|
+ render: (text) => {
|
|
|
+ return isNaN(parseFloat(text)) ? text : parseFloat(text);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "最近收款时间",
|