import React from 'react' import $ from 'jquery' import moment from 'moment' import Picture from '@/manageCenter/publicComponent/picture' import '@/manageCenter/financialManage/distribute/public.less' import '@/manageCenter/financialManage/distribute/shouKuan.less' import OrderDetail from '../../order/orderNew/changeComponent/orderDetail' import ResolutionDetail from '@/resolutionDetail' import {Button, Form, Input, Select, Spin, Table, message, DatePicker, Modal, Radio, Cascader, Popconfirm, Switch, Tabs, Col, Icon, Upload, Tag, Row, } from 'antd' import Assign from '@/manageCenter/publicComponent/assign' import { areaSelect } from '@/NewDicProvinceList' import { ChooseList } from '../../order/orderNew/chooseList' import OrderRiZi from '@/orderRiZi.jsx' import './table.less' import {getMaterialStatus, getUrgentStatus, getProcessStatus, getApproval, getTaskStatus, getLiquidationStatus, splitUrl, getboutique, ShowModal, getRefundStatus, getProjectName} from '@/tools' import {cuiJieDian,projectStatusCascader } from '@/dataDic.js' import ShowModalDiv from '@/showModal.jsx'; import NowProjectStatus from '../../../common/nowProjectStatus'; import DeclarationProgress from '../../../../component/common/declarationProgress'; import CheckProject from '../../components/checkProject'; import NewSupplier from './newSupplier'; import ImgList from "../../../common/imgList"; import OperationPayNode from "./operationPayNode"; import PatentSchedule from './patentSchedule'; import ProjectDetailsReadOnly from "../../../common/projectDetailsReadOnly"; const confirm = Modal.confirm const FormItem = Form.Item const { TabPane } = Tabs const { TextArea } = Input const { Option } = Select const PicturesWall = React.createClass({ getInitialState() { return { fileList: [], } }, handleChange(info) { let fileList = info.fileList this.setState({ fileList, }) this.props.fileList(fileList) }, componentWillReceiveProps(nextProps) { this.state.fileList = nextProps.pictureUrl this.state.pojectApplicationUrl = undefined }, render() { const { fileList } = this.state return (
注意
, content: (当前的项目状态为{text},保存后将触发对应的催款节点!!!您确定保存?
), okText: '确定', okType: 'danger', cancelText: '取消', onOk() { fn() }, onCancel() {}, }) }, // 项目发起外包 sureOut(startType) { if (this.state.startType !== 0 && this.state.startType !== 1) { message.warning('请选择类型') return } //0正常 1专利 2软著 3审计 if (this.state.projectType === 1) { //专利 if (this.state.patentType === -1) { message.warning('请选择专利类型') return } if (this.state.patentNameType === -1) { message.warning('请选择专利类型名称') return } if (this.state.patentNameType == 3) { if (!this.state.patentName) { message.warning('请填写专利名称') return } } } if (!this.state.outsourceRemarks) { message.warning('备注不能为空') return } //refundStatus 0-待审核 ,1-审核通过,2-审核拒绝 //类型为供应商时不需要发起原因 //this.state.startType 0外包 1供应商 if(!this.state.reason && (this.state.refundStatus === 2 || typeof this.state.refundStatus === 'undefined') && this.state.startType !== 1){ message.warning('发起原因不能为空') return } // if (!this.state.pictureUrl && !Array.isArray(this.state.pictureUrl)) { // message.warning('合同扫描件不能为空') // return // } // if(this.state.pictureUrl.length === 0){ // message.warning('合同扫描件不能为空') // return // } let _this = this; let ajaxObj = null; confirm({ title: startType === 0 ? '确定要发起外包吗?' : '确定要提交供应商信息吗?', content: startType === 0 ? '高于总部价格,费用个人承担' : '确定提交供应商信息后,不可修改', onOk() { return new Promise((resolve, reject) => { _this.setState({ sureOutLoading: true, }) let data = { tid: _this.state.id, orderNo: _this.state.orderNo, type: 1, //分类 0订单 1项目 startType: _this.state.startType, //支付类型 0外包 1供应商 false 0 companyName: _this.state.companyName, amount: _this.state.amount, outsourceRemarks: _this.state.outsourceRemarks, unitNumber: _this.state.unitNumber, unitPrice: _this.state.unitPrice, id: _this.state.refundStatus === 2 ? _this.state.mid : undefined,//被拒绝外包申请时,需要传id } if(_this.state.startType !== 0){ data.actualOfficial = _this.state.containOfficialFees;//0实际已缴费 1实际未缴费 } //refundStatus 0-待审核 ,1-审核通过,2-审核拒绝 审核被驳回时和第一次发起外包时,要填写发起原因 //this.state.startType 0外包 1供应商 //类型为外包时不需要传 发起原因 if((_this.state.refundStatus === 2 || typeof _this.state.refundStatus === 'undefined') && _this.state.startType !== 1){ data.reason = _this.state.reason } if (_this.state.projectType === 1) { data.patentType = _this.state.patentType; data.patentNameType = _this.state.patentNameType; if (_this.state.patentNameType == 3) { data.patentName = _this.state.patentName; } } if (_this.state.pictureUrl && Array.isArray(_this.state.pictureUrl) && _this.state.pictureUrl.length !== 0){ data.pictureUrl = _this.getUrl(_this.state.pictureUrl).length ? _this.getUrl(_this.state.pictureUrl) : '' } ajaxObj = $.ajax({ method: 'POST', dataType: 'json', crossDomain: false, url: globalConfig.context + '/api/admin/outsourceOrg/outsourceProjectAudit', data: data, }).done( async function (data) { _this.setState({ sureOutLoading: false, }) if (!data.error.length) { resolve(); message.success('提交成功!') _this.waiDetail(); _this.thirdTable(_this.state.tid); _this.getSelectOutsourceLog(_this.state.tid); if(_this.state.paySubject.length === 0 ){ await _this.xiangqing(_this.state.tid); // 获取Csort await _this.getCsortData(localStorage.getItem('cSort')) await _this.payNodeTable(_this.state.tid); }else{ _this.payNodeTable(_this.state.tid) } } else { message.warning(data.error[0].message); reject(); } }.bind(_this) ) }).catch((err) => console.log(err)); }, onCancel() { ajaxObj ? ajaxObj.abort() : ''; _this.setState({ sureOutLoading: false, }) }, }); }, callback(e) { this.setState({ activeKey: e, }) if (e == 3) { this.orderDetailData(this.state.orderNo) this.xiangmu(this.state.orderNo) this.jiedian(this.state.orderNo) this.jiedianNew(this.state.orderNo) } }, getOrgCodeUrlWai(e) { this.setState({ pictureUrl: e }) }, getUrl(url) { let theorgCodeUrl = [] if (url.length) { let picArr = [] url.map(function (item) { if (item.response && item.response.data && item.response.data.length) { picArr.push(item.response.data) } }) theorgCodeUrl = picArr.join(',') } return theorgCodeUrl }, waiDetail() { let url = window.location.href.substring(7) this.setState({ waiDetailLoading: true, }) let ajaxObj = $.ajax({ method: 'get', dataType: 'json', crossDomain: false, url: globalConfig.context + '/api/admin/outsourceOrg/orderOutsourceDtails', data: { tid: this.state.id, orderNo: this.state.orderNo, }, }).done( function (data) { if (!data.error.length && data.data) { if(!isNaN(parseFloat(data.data.unitNumber))){ this.setState({ oldInfor: { companyName:data.data.companyName, unitPrice:data.data.unitPrice, unitNumber:data.data.unitNumber, amount:data.data.amount, outsourceRemarks:data.data.outsourceRemarks, refundStatus: data.data.refundStatus, pictureUrl: data.data.pictureUrl ? splitUrl( data.data.pictureUrl, ',', globalConfig.avatarHost + '/upload', url ) : [], //图片地址 }, }) }else{ this.setState({ oldInfor: {}, }) } this.setState({ containOfficialFees: data.data.actualOfficial,//官费类型 0实际已缴费 1实际未缴费 startType: data.data.startType, //类型 patentType: data.data.patentType, //专利类型 patentNameType: data.data.patentNameType, //专利名称类型 patentName: data.data.patentName, //专利名称 outsourceRemarks: data.data.outsourceRemarks, remarks: data.data.remarks, companyName: data.data.companyName, amount: data.data.amount, mid: data.data.id, unitPrice: data.data.unitPrice, refundStatus: data.data.refundStatus, unitNumber: data.data.unitNumber, //如果存在 证明是以前的旧数据 pictureUrl: data.data.pictureUrl ? splitUrl( data.data.pictureUrl, ',', globalConfig.avatarHost + '/upload', url ) : [], //图片地址 createTimes: data.data.createTimes, auditTimes: data.data.auditTimes, },()=>{ this.setState({ waiDetailLoading: false, }) }) } else if (data.error && data.error.length) { message.warning(data.error[0].message); this.setState({ waiDetailLoading: false, }) } else if (!data.data) { this.setState({ refundStatus: undefined, waiDetailLoading: false, }) } }.bind(this) ) this.setState({ orderOutsourceDtailsAjaxObj: ajaxObj }) }, rizhi() { this.setState({ loading: true, }) $.ajax({ method: 'get', dataType: 'json', crossDomain: false, url: '/api/admin/newOrder/selectOrderLog', data: { orderNo: this.state.orderNo, }, success: function (data) { let theArr = [] let thisData = data.data if (!thisData.length) { if (data.error && data.error.length) { message.warning(data.error[0].message) } thisData = {} } else { for (let i = 0; i < data.data.length; i++) { let thisdata = data.data[i] theArr.push({ processName: thisdata.processName, adminName: thisdata.adminName, createDate: thisdata.createDate, remarks: thisdata.remarks, }) } } this.setState({ dataSourceY: theArr, }) }.bind(this), }).always( function () { this.setState({ loading: false, }) }.bind(this) ) }, closeOrderLog() { this.setState({ avisible: false, }) }, getOrderLog() { this.setState({ avisible: true, }) this.rizhi() }, async orderChange(key) { this.setState({ activeKey: key, }) if (key === '3') { this.orderDetailData(this.state.orderNo) this.xiangmu(this.state.orderNo) this.jiedian(this.state.orderNo) this.jiedianNew(this.state.orderNo) }else if (key === '2') { this.waiDetail(); this.thirdTable(this.state.tid); if(this.state.paySubject.length === 0 ){ await this.xiangqing(this.state.tid); // 获取Csort await this.getCsortData(localStorage.getItem('cSort')) await this.payNodeTable(this.state.tid); }else{ await this.payNodeTable(this.state.tid) } this.getSelectOutsourceLog(this.state.tid); }else if(key === "1"){ this.xiangqing(this.state.tid); } }, //节点列表 jiedian(orderNos) { $.ajax({ method: 'get', dataType: 'json', crossDomain: false, url: globalConfig.context + '/api/admin/newOrder/selectOrderDun', data: { orderNo: orderNos, }, success: function (data) { let theArr = [] let thisData = [] if (data.error.length || data.data.list == '') { if (data.error && data.error.length) { message.warning(data.error[0].message) } } else { for (let i = 0; i < data.data.length; i++) { thisData = data.data[i] theArr.push({ key: i, dunSubject: thisData.dunSubject ? thisData.dunSubject.toString() : '', //催款科目 id: thisData.id, //节点Id money: thisData.money, //催款金额 dunStatus: thisData.dunStatus, //催款状态 }) } this.setState({ jiedian: theArr, }) } }.bind(this), }) }, jiedianNew(orderNos) { $.ajax({ method: 'get', dataType: 'json', crossDomain: false, url: globalConfig.context + '/api/admin/newOrderDun/selectListNewOrderDun', data: { orderNo: orderNos, }, success: function (data) { if (data.error && data.error.length) { message.warning(data.error[0].message) } else { let theArr = [] let thisData = [] let arr = data.data || [] let totalCui = 0 for (let i = 0; i < arr.length; i++) { thisData = arr[i] totalCui += +thisData.money theArr.push({ key: i, dunSubject: thisData.dunSubject ? thisData.dunSubject.toString() : '', //催款科目 id: thisData.id, //节点Id tid: thisData.tid, //节点指定的第三方id money: thisData.money, //催款金额 // orderNo: record ? record.orderNo : this.props.datauser.orderNo, commodityName: thisData.commodityName, projectType: thisData.projectType, dunTypeName: thisData.dunTypeName, status: thisData.status, waitDay: thisData.waitDay, effectiveCount: thisData.effectiveCount, startDate: thisData.startDate, dunType: thisData.dunType, appropriationRatio: thisData.appropriationRatio, customizeName: thisData.customizeName, customizeTimes: thisData.customizeTimes, }) } if (!totalCui) { totalCui = 0 } totalCui = (Math.round(totalCui * 1000000) / 1000000).toFixed(6) this.setState({ jiedianNew: theArr, totalCui, }) } }.bind(this), }).always( function () { this.setState({ loading: false, }) }.bind(this) ) }, orderDetailData(orderNos) { this.setState({ loading: true, }) $.ajax({ method: 'get', dataType: 'json', crossDomain: false, url: globalConfig.context + '/api/admin/newOrder/getOrderNewDetail', data: { orderNo: orderNos, }, success: function (data) { if (data.error.length || data.data.list == '') { if (data.error && data.error.length) { message.warning(data.error[0].message) this.setState({ loading: false, }) } } else { let thisdata = data.data this.setState({ loading: false, userName: thisdata.userName, primaryOrderNo: thisdata.primaryOrder, additionalOrder: thisdata.additionalOrder, contractNo: thisdata.contractNo, orderData: thisdata, isAddition: thisdata.additionalOrder ? true : false, contractPictureUrl: thisdata.contractPictureUrl ? splitUrl( thisdata.contractPictureUrl, ',', globalConfig.avatarHost + '/upload' ) : [], }) } }.bind(this), }) }, //点击新增供应商 addcontactNew() { this.state.contactListNew.push({ key: this.state.contactListNew.length, money: '', dunSubject: undefined, orderNo: this.state.orderNo, dunTarget: this.state.kehuId, }) this.setState({ contactListNew: this.state.contactListNew, cuiFlag: true, }) }, //查看第三方信息表格 thirdTable(id) { this.setState({ thirdInfoLoading: true, }) let ajaxObj = $.ajax({ method: 'get', dataType: 'json', crossDomain: false, url: globalConfig.context + '/api/admin/company/selectCompany', data: { tid: id, }, success: function (data) { if (data.error && data.error.length) { message.warning(data.error[0].message) } else { let companyNameArr = []; let theArr = []; let thisData = []; let arr = data.data || []; let allTotalAmount = 0; let type = 0; let startType = 0; let patentNameType = 0; for (let i = 0; i < arr.length; i++) { thisData = arr[i] allTotalAmount = (allTotalAmount * 10000 + thisData.totalAmount * 10000) / 10000 companyNameArr.push(thisData.companyName); thisData.key = i; type=thisData.patentType; thisData.patentType = thisData.type; theArr.push(thisData); startType=thisData.startType; patentNameType= thisData.patentNameType } if (!allTotalAmount) { allTotalAmount = 0 } for(let d=0;d*/} {/* 首次派单项目,需上传协议,第2次起,同项目,只需写外包公司*/} {/*
*/} {/*图片建议:要清晰。
*/} {/**/} {/* {*/} {/* this.state.startType === 0 ? "提示:高于总部价格,费用个人承担" : "确定提交供应商信息,提交后,不可修改"*/} {/* }*/} {/*
*/} {/**/} {/* 首次派单项目,需上传协议,第2次起,同项目,只需写外包公司*/} {/*
*/} {/*图片建议:要清晰。
*/} {/**/} {/* {*/} {/* this.state.startType === 0 ? "提示:高于总部价格,费用个人承担" : "确定提交供应商信息,提交后,不可修改"*/} {/* }*/} {/*
*/} {/*累计工时(小时):{this.state.recordHour}