// kptp 财务管理-省内特批
import React from "react";
import $ from "jquery/src/ajax";
import "./public.less";
import {
Form,
Button,
Input,
Select,
Spin,
Table,
message,
Modal,
Upload,
Tabs,
Popconfirm,
Tooltip,
} from "antd";
import {
getProvinceA,
getInvoiceStatus,
getprovince,
getStatus,
getPeople,
splitUrl,
ShowModal,
getProcessStatus,
} from "@/tools";
import { ChooseList } from "../../../../component/manageCenter/order/orderNew/chooseList";
import ShowModalDiv from "@/showModal.jsx";
const FormItem = Form.Item;
const { TabPane } = Tabs;
import OrderDesc from "../../financialManage/orderDetail/orderDesc";
import ImgList from "../../../common/imgList";
import { getProjectName } from "../../../tools";
import DepartmentList from "../../../common/departmentList";
import LogPopup from "../../../common/logPopup";
const inSpecial = React.createClass({
loadData(pageNo) {
this.state.data = [];
this.setState({
loading: true,
});
$.ajax({
method: "get",
dataType: "json",
crossDomain: false,
url:
globalConfig.context +
"/api/admin/orderInvoice/approvalOrderInvoiceList",
data: {
pageNo: pageNo || 1,
pageSize: this.state.pagination.pageSize,
name: this.state.nameSearch, //客户名称
userName: this.state.userName,
status: this.state.status,
orderNo: this.state.orderNoSearch,
orderDep: this.state.departmenttList,
type: 0,
approval: this.state.processStatus,
},
success: function (data) {
ShowModal(this);
let theArr = [];
if (!data.data || !data.data.list) {
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,
status: thisdata.status,
unitName: thisdata.unitName,
orderNo: thisdata.orderNo,
name: thisdata.name,
examineName: thisdata.examineName,
processStatus: thisdata.processStatus,
projectStatus: thisdata.projectStatus,
amount: thisdata.amount,
sumAmount: thisdata.sumAmount,
createTime: thisdata.createTime
? new Date(thisdata.createTime).toLocaleString()
: "",
settlementAmount: thisdata.settlementAmount,
notAmount: thisdata.notAmount,
approval: thisdata.approval,
});
}
}
this.state.pagination.current = data.data.pageNo;
this.state.pagination.total = data.data.totalCount;
if (data.data && data.data.list && !data.data.list.length) {
this.state.pagination.current = 0;
this.state.pagination.total = 0;
}
this.setState({
totalPage: data.data.totalPage,
dataSource: theArr,
pagination: this.state.pagination,
});
}.bind(this),
}).always(
function () {
this.setState({
loading: false,
});
}.bind(this)
);
},
invoiceData() {
this.setState({
loading: true,
});
$.ajax({
method: "get",
dataType: "json",
crossDomain: false,
url:
globalConfig.context + "/api/admin/orderInvoice/selectByIdOrderInvoice",
data: {
id: this.state.id,
},
success: function (data) {
let thisdata = data.data;
this.setState({
orderNo: thisdata.orderNo,
type: thisdata.type,
// status: thisdata.status,
remarks: thisdata.remarks,
invoiceType: thisdata.invoiceType,
unitName: thisdata.unitName,
taxNumber: thisdata.taxNumber,
amount: thisdata.amount,
banks: thisdata.banks,
content: thisdata.content,
unitAddress: thisdata.unitAddress,
invoiceRemarks: thisdata.invoiceRemarks,
unitMobile: thisdata.unitMobile,
contractNo: thisdata.contractNo,
post: thisdata.post,
addressee: thisdata.addressee,
addresseeMobile: thisdata.addresseeMobile,
addresseeProvince: thisdata.addresseeProvince,
addresseeCity: thisdata.addresseeCity,
addresseeArea: thisdata.addresseeArea,
alreadyAmount: thisdata.alreadyAmount,
recipientAddress: thisdata.recipientAddress,
orgCodeUrl: thisdata.voucherUrl
? splitUrl(
thisdata.voucherUrl,
",",
globalConfig.avatarHost + "/upload"
)
: [],
});
}.bind(this),
}).done(
function () {
this.setState({
loading: false,
});
}.bind(this)
);
},
getInitialState() {
return {
searchMore: true,
assignVisible: false,
releaseDate: [],
totalPage: 0,
boHuivisible: false,
selectedRowKeys: [],
selectedRows: [],
//开票状态
//用户名称搜索
// userName: "",
contractNo: "",
loading: false,
reason: "",
foo: 0,
// 子组件改变的表格title数组
changeList: undefined,
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: "id",
key: "id",
// fixed: "left"
},
{
title: "客户",
dataIndex: "unitName",
key: "unitName",
// width: 100,
render: (text) => {
return (