import React from 'react';
import ReactDom from 'react-dom';
import ajax from 'jquery/src/ajax/xhr.js';
import $ from 'jquery/src/ajax';
import { Form, Radio, Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker, Checkbox, Modal, Upload, Popconfirm, Tabs } from 'antd';
import NewService from "./addService.jsx";
import moment from 'moment';
import '../../userMangagement.less';
import { intentProgress, transactionProgress, contractProgress, projectProgress, orderType, orderStage, orderState, paymentState, specially, specialBatchState, projectState, orderChannel, approvedState, lock, paymentMethod, transactionChannel } from '../../../../dataDic.js';
import {
getIntentProgress,
getTransactionProgress,
getProjectState,
getContractProgress,
getProjectProgress,
splitUrl,
getOrderType,
getOrderStage,
getOrderState,
getPaymentState,
getOrderChannel,
getApprovedState,
getLock,
getPaymentMethod,
getTransactionChannel,
ShowModal
} from "../../../../tools.js";
import ShowModalDiv from "@/showModal.jsx";
import { ChooseList } from "../../orderNew/chooseList";
const { TabPane } = Tabs
const MyService = Form.create()(React.createClass({
loadData(pageNo) {
this.state.data = [];
this.setState({
loading: true
});
$.ajax({
method: "post",
dataType: "json",
crossDomain: false,
url: globalConfig.context + '/api/admin/order/listServiceOrder',
data: {
pageNo: pageNo || 1,
pageSize: this.state.pagination.pageSize,
buyerName: this.state.customerName,
orderNo: this.state.orderNo,
startDate: this.state.releaseDate[0],
endDate: this.state.releaseDate[1],
projectStage: this.state.projectProgress,
liquidationStatus: this.state.settlementState, //结算
orderStatus: this.state.orderStatusSearch,
approval: this.state.approval,
orderChannel: this.state.orderChannelSearch,
intention: this.state.intentOrder ? 1 : 0,
formal: this.state.formalOrder ? 1 : 0,
},
success: function (data) {
ShowModal(this);
let theArr = [];
if (!data.data) {
if (data.error && data.error.length) {
message.warning(data.error[0].message);
};
} else {
for (let i = 0; i < data.data.list.length; i++) {
let thisdata = data.data.list[i];
theArr.push({
key: i,
id: thisdata.id,
orderNo: thisdata.orderNo,//订单编号
orderType: thisdata.orderType,//订单类型
orderStatus: thisdata.orderStatus,
liquidationStatus: thisdata.liquidationStatus,
createTime: thisdata.createTime,
buyerName: thisdata.buyerName,
signTotalAmount: thisdata.signTotalAmount,
projectStage: thisdata.projectStage,
approval: thisdata.approval,
orderChannel: thisdata.orderChannel,
salesmanName: thisdata.salesmanName,
active: thisdata.active,
signTime: thisdata.signTime,
financeName: thisdata.financeName
});
};
this.state.pagination.current = data.data.pageNo;
this.state.pagination.total = data.data.totalCount;
};
if (!data.data.list.length) {
this.state.pagination.current = 0
this.state.pagination.total = 0
}
this.setState({
pageNo: pageNo,
dataSource: theArr,
pagination: this.state.pagination,
selectedRowKeys: [],
});
}.bind(this),
}).always(function () {
this.setState({
loading: false
});
}.bind(this));
},
getInitialState() {
return {
datauser: {},
selectedRowKeys: [],
releaseDate: [],
signBillState: false,
signBillVisible: false,
selectedRows: [],
searchMore: true,
loading: false,
intentOrder: true,
formalOrder: true,
pagination: {
defaultCurrent: 1,
defaultPageSize: 10,
showQuickJumper: true,
pageSize: 10,
onChange: function (page) {
this.loadData(page);
}.bind(this),
showTotal: function (total) {
return '共' + total + '条数据';
}
},
columns: [
{
title: '订单编号',
dataIndex: 'orderNo',
key: 'orderNo'
}, {
title: '订单类型',
dataIndex: 'orderType',
key: 'orderType',
render: text => { return getOrderType(text) }
}, {
title: '下单时间',
dataIndex: 'createTime',
key: 'createTime'
}, {
title: '签单时间',
dataIndex: 'signTime',
key: 'signTime'
}, {
title: '订单客户',
dataIndex: 'buyerName',
key: 'buyerName',
render: (text) => {
return (text && text.length > 8 ? text.substr(0, 8) + '...' : text)
}
}, {
title: '实际下单金额(万元)',
dataIndex: 'signTotalAmount',
key: 'signTotalAmount'
}, {
title: '结算状态',
dataIndex: 'liquidationStatus',
key: 'liquidationStatus',
render: text => { return getPaymentState(text) }
}, {
title: '订单状态',
dataIndex: 'orderStatus',
key: 'orderStatus',
render: text => { return getOrderState(text) }
}, {
title: '项目状态',
dataIndex: 'projectStage',
key: 'projectStage',
render: text => { return getProjectState(text) }
}, {
title: '是否特批',
dataIndex: 'approval',
key: 'approval',
render: text => { return getApprovedState(text) }
}, {
title: '订单外联',
dataIndex: 'orderChannel',
key: 'orderChannel',
render: text => { return getOrderChannel(text) }
}, {
title: '订单负责人',
dataIndex: 'salesmanName',
key: 'salesmanName'
}, {
title: '财务负责人',
dataIndex: 'financeName',
key: 'financeName'
},
{
title: '操作',
dataIndex: 'active',
key: 'active',
render: (text, record, index) => {
return
{text.confirmIntention &&
{ this.admissibleOrderOk(record) }} onCancel={(e) => { this.admissibleOrderCancel(record) }} okText="同意" cancelText="拒绝">
}
{/*{text.applySign&&
} */}
{text.applyForCancel &&
{ this.cancelOrder(record) }} okText="确认" cancelText="取消">
}
{text.applyRevoke &&
{ this.scrapOrder(record) }} okText="确认" cancelText="取消">
}
{text.applyLock &&
{ this.lockOrder(record) }} okText="确认" cancelText="取消">
}
{text.agreeRefund &&
{ this.refundOk(record) }} okText="确认" cancelText="取消">
}
{text.refuseRefund &&
{ this.refundCancel(record) }} okText="确认" cancelText="取消">
}
{text.applyUnLock &&
{ this.unlockOrder(record) }} okText="确认" cancelText="取消">
}
}
}
],
dataSource: [],
};
},
//是否退款
refundCancel(record) {
this.refund(record, 0)
},
refundOk(record) {
this.refund(record, 1)
},
refund(record, index) {
this.setState({
signBillVisible: false,
selectedRowKeys: [],
loading: true,
userDetaile: false
});
$.ajax({
method: "get",
dataType: "json",
crossDomain: false,
url: globalConfig.context + '/api/admin/order/confirmRefund',
data: {
orderNo: record.orderNo,
confirm: index
}
}).done(function (data) {
if (!data.error.length) {
message.success('操作成功!');
this.setState({
loading: false,
showDesc: false
});
}
this.loadData(this.state.pageNo);
}.bind(this));
},
//受理订单
admissibleOrderOk(e) {
this.admissibleOrder(e, true)
},
admissibleOrderCancel(e) {
this.admissibleOrder(e, false)
},
admissibleOrder(record, index) {
this.setState({
signBillVisible: false,
selectedRowKeys: [],
loading: true,
userDetaile: false
});
$.ajax({
method: "POST",
dataType: "json",
crossDomain: false,
url: globalConfig.context + '/api/admin/order/confirmIntention',
data: {
orderNo: record.orderNo,
confirm: index
}
}).done(function (data) {
if (!data.error.length) {
message.success('操作成功!');
this.setState({
loading: false,
showDesc: false
});
} else {
message.warning(data.error[0].message);
this.setState({
showDesc: true
})
};
this.loadData(this.state.pageNo);
}.bind(this));
},
//取消订单
cancelOrder(e) {
this.operation(e, 3)
},
//作废订单
scrapOrder(e) {
this.operation(e, 2)
},
//锁定订单
lockOrder(e) {
this.operation(e, 0)
},
//解锁订单
unlockOrder(e) {
this.operation(e, 1)
},
//签单
signBill(ids) {
this.setState({
uid: ids,
signBillVisible: true
})
},
componentWillMount() {
this.loadData();
let data = localStorage.getItem('newData');
if (data != '{}' && data) {
var newData = JSON.parse(data);
this.tableRowClick(newData);
};
},
tableRowClick(record, index) {
this.state.userDetaile = true;
this.state.datauser = record;
this.setState({
signBillVisible: false,
signBillState: true,
showDesc: true
});
localStorage.setItem('newData', '{}');
},
//列表各种骚操作
operation(record, index) {
this.setState({
selectedRowKeys: [],
loading: true,
showDesc: false
});
$.ajax({
method: "get",
dataType: "json",
crossDomain: false,
url: globalConfig.context + '/api/admin/order/lockOrRevokeOrder',
data: {
orderNo: record.orderNo,
operatorType: index
}
}).done(function (data) {
if (!data.error.length) {
message.success('操作成功!');
this.setState({
loading: false,
});
} else {
message.warning(data.error[0].message);
};
this.loadData(this.state.pageNo);
}.bind(this));
},
addClick() {
this.state.userDetaile = false;
this.setState({
signBillVisible: false,
showDesc: true
});
},
closeDesc(e, s) {
this.state.userDetaile = false;
this.state.signBillVisible = false;
this.state.showDesc = e;
if (s) {
this.loadData(this.state.pageNo);
};
},
searchSwitch() {
this.setState({
signBillVisible: false,
searchMore: !this.state.searchMore
});
},
search() {
this.setState({
signBillVisible: false
})
this.loadData();
},
reset() {
this.setState({
signBillVisible: false
})
this.state.orderNo = '';
this.state.customerName = '';
this.state.releaseDate[0] = undefined;
this.state.releaseDate[1] = undefined;
this.state.projectProgress = undefined;
this.state.settlementState = undefined;
this.state.orderStatusSearch = undefined;
this.state.orderChannelSearch = undefined;
this.state.approval = undefined;
this.state.formalOrder = true;
this.state.intentOrder = true;
this.loadData();
},
changeList(arr) {
const newArr = [];
this.state.columns.forEach(item => {
arr.forEach(val => {
if (val === item.title) {
newArr.push(item);
}
});
});
this.setState({
changeList: newArr
});
},
render() {
const FormItem = Form.Item;
const formItemLayout = {
labelCol: { span: 8 },
wrapperCol: { span: 14 },
};
const rowSelection = {
selectedRowKeys: this.state.selectedRowKeys,
onChange: (selectedRowKeys, selectedRows) => {
this.setState({
selectedRows: selectedRows.slice(-1),
selectedRowKeys: selectedRowKeys.slice(-1)
});
},
onSelectAll: (selected, selectedRows, changeRows) => {
this.setState({
selectedRowKeys: []
})
},
};
const hasSelected = this.state.selectedRowKeys.length > 0;
const { RangePicker } = DatePicker;
return (
{ this.setState({ showModal: false }) }} />
科技服务订单
);
}
}));
export default MyService;