|
@@ -48,21 +48,21 @@ const IntentionCustomer = Form.create()(React.createClass({
|
|
|
id:thisdata.id,//ID
|
|
|
contractNo: thisdata.contractNo,
|
|
|
orderNo: thisdata.orderNo,//订单编号
|
|
|
- totalAmount:thisdata.totalAmount,//签单金额
|
|
|
- settlementAmount:thisdata.settlementAmount,//已收款
|
|
|
- accountsReceivable:thisdata.accountsReceivable,//应收款
|
|
|
- uncollectedAmount:thisdata.uncollectedAmount,//应收款
|
|
|
- orderStatus:thisdata.orderStatus,//订单状态
|
|
|
- projectStatus:thisdata.projectStatus,//项目状态
|
|
|
- liquidationStatus:thisdata.liquidationStatus,//结算状态
|
|
|
- signDate:thisdata.signDate,//签单时间
|
|
|
- userName:thisdata.userName,//客户名称
|
|
|
- salesmanName:thisdata.salesmanName,//营销员名称
|
|
|
- dunSubject:thisdata.dunSubject,//催收科目
|
|
|
- startDate:thisdata.startDate,//催收启动时间
|
|
|
+ totalAmount:thisdata.totalAmount,//签单金额
|
|
|
+ settlementAmount:thisdata.settlementAmount,//已收款
|
|
|
+ accountsReceivable:thisdata.accountsReceivable,//应收款
|
|
|
+ uncollectedAmount:thisdata.uncollectedAmount,//应收款
|
|
|
+ appropriationRatio:thisdata.appropriationRatio,//拨款比例
|
|
|
+ orderStatus:thisdata.orderStatus,//订单状态
|
|
|
+ projectStatus:thisdata.projectStatus,//项目状态
|
|
|
+ liquidationStatus:thisdata.liquidationStatus,//结算状态
|
|
|
+ signDate:thisdata.signDate,//签单时间
|
|
|
+ userName:thisdata.userName,//客户名称
|
|
|
+ salesmanName:thisdata.salesmanName,//营销员名称
|
|
|
+ dunSubject:thisdata.dunSubject,//催收科目
|
|
|
+ startDate:thisdata.startDate,//催收启动时间
|
|
|
depName:thisdata.depName,//部门名称
|
|
|
- contractNo:thisdata.contractNo,
|
|
|
- dunStatus: thisdata.dunStatus == 0 ? "未触发" : "已触发"
|
|
|
+ dunStatus: thisdata.dunStatus == 0 ? "未触发" : "已触发"
|
|
|
});
|
|
|
};
|
|
|
this.state.pagination.total = data.data.totalCount;
|
|
@@ -220,6 +220,11 @@ const IntentionCustomer = Form.create()(React.createClass({
|
|
|
dataIndex: "uncollectedAmount",
|
|
|
key: "uncollectedAmount"
|
|
|
},
|
|
|
+ {
|
|
|
+ title: "拨款比例",
|
|
|
+ dataIndex: "appropriationRatio",
|
|
|
+ key: "appropriationRatio"
|
|
|
+ },
|
|
|
{
|
|
|
title: "结算状态",
|
|
|
dataIndex: "liquidationStatus",
|
|
@@ -422,7 +427,7 @@ const IntentionCustomer = Form.create()(React.createClass({
|
|
|
endTime: this.state.releaseDate[1]?this.state.releaseDate[1]:undefined,
|
|
|
depId: this.state.departmenttSearch ? this.state.departmenttSearch : undefined,//订单部门
|
|
|
specially:1,
|
|
|
- pageSize: 9999,
|
|
|
+ pageSize: 9999999,
|
|
|
newStatus: this.state.newStatus
|
|
|
}
|
|
|
window.location.href=(globalConfig.context+'/api/admin/newOrder/exportOrderDunData?'+$.param(data));
|