contractYxy.js 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443
  1. import React from "react";
  2. import { Button, Input, Spin, Table, message, Form, Modal, Tabs, } from "antd";
  3. import $ from "jquery/src/ajax";
  4. import {
  5. getNewOrderStatus,
  6. getProcessStatusNew,
  7. splitUrl,
  8. getjiedian,
  9. getboutique,
  10. getCuikuan,
  11. getProjectStatus,
  12. getContractChangeStatus,
  13. ShowModal,
  14. getType
  15. } from "@/tools.js";
  16. import "./customer.less";
  17. import { SearchInput } from "./changeComponent/searchInput.js";
  18. import { ChangeDetail } from "./changeComponent/changeDetailYxy.js";
  19. import AddOrders from "./addorders.js";
  20. import OrderDetail from "./changeComponent/orderDetail";
  21. import ChangeApply from "./changeComponent/changeApply";
  22. import { ChooseList } from "./chooseList.jsx";
  23. import ShowModalDiv from "@/showModal.jsx";
  24. import OrderRiZi from "@/orderRiZi.jsx";
  25. import {getProjectName} from "../../../tools";
  26. import ProjectDetailsReadOnly from "../../../common/projectDetailsReadOnly";
  27. const contractChange = Form.create()(
  28. React.createClass({
  29. loadData(pageNo) {
  30. this.setState({
  31. loading: true
  32. });
  33. $.ajax({
  34. method: "get",
  35. dataType: "json",
  36. crossDomain: false,
  37. url: globalConfig.context + "/api/admin/orderChange/orderChangeList",
  38. data: {
  39. pageNo: pageNo || 1,
  40. pageSize: this.state.pagination.pageSize,
  41. userName: this.state.searchData.userNameSearch,
  42. processState: this.props.processState,
  43. timeType: this.state.searchData.timeTypeSearch,
  44. startTime: this.state.searchData.releaseDate[0],
  45. endTime: this.state.searchData.releaseDate[1],
  46. salesmanName: this.state.searchData.salesmanNameSearch,
  47. complete: this.state.searchData.completeSearch || 1,
  48. depId: this.state.searchData.depIdSearch,
  49. orderNo: this.state.searchData.orderNoSearch,
  50. contractNo: this.state.searchData.contractNoSearch,
  51. type: this.state.searchData.changeSearch
  52. },
  53. success: function (data) {
  54. ShowModal(this);
  55. let theArr = [];
  56. if (data.error.length || data.data.list == "") {
  57. if (data.error && data.error.length) {
  58. message.warning(data.error[0].message);
  59. }
  60. } else {
  61. for (let i = 0; i < data.data.list.length; i++) {
  62. let thisdata = data.data.list[i];
  63. theArr.push({
  64. key: i,
  65. orderNo: thisdata.orderNo,
  66. createTimes: thisdata.createTimes,
  67. nickname: thisdata.nickname,
  68. orderType: thisdata.orderType,
  69. establishTimes: thisdata.establishTimes,
  70. orderStatus: thisdata.orderStatus,
  71. totalAmount: thisdata.totalAmount,
  72. settlementAmount: thisdata.settlementAmount,
  73. arrears: thisdata.arrears,
  74. salesmanName: thisdata.salesmanName,
  75. depName: thisdata.depName,
  76. processState: thisdata.processState,
  77. type: thisdata.type,
  78. status: thisdata.status,
  79. id: thisdata.id,
  80. contractNo: thisdata.contractNo,
  81. processStateText: getProcessStatusNew(
  82. thisdata.processState,
  83. thisdata.status
  84. )
  85. });
  86. }
  87. this.state.pagination.total = data.data.totalCount;
  88. this.state.pagination.current = data.data.pageNo;
  89. }
  90. if (data.data && data.data.list && !data.data.list.length) {
  91. this.state.pagination.total = 0;
  92. }
  93. this.setState({
  94. dataSource: theArr,
  95. pageNo: pageNo,
  96. pagination: this.state.pagination
  97. });
  98. }.bind(this)
  99. }).always(
  100. function () {
  101. this.setState({
  102. loading: false
  103. });
  104. }.bind(this)
  105. );
  106. },
  107. getInitialState() {
  108. return {
  109. page: 1,
  110. searchData: {
  111. releaseDate: []
  112. },
  113. declarationBatch: 1,
  114. dataInfor: {},
  115. primaryOrderData: {}, //原订单数据
  116. orderData: {}, //现订单数据
  117. pictureUrl: [],
  118. voucherUrl: [],
  119. buttonStatusA: true,
  120. attachmentUrl: [],
  121. proceedsData: {},
  122. proTotal: 0,
  123. invTotal: 0,
  124. contractData: {},
  125. // 回收退票数据
  126. refundInvoice: [],
  127. RefundInvoice: [],
  128. paginations: false,
  129. activeKey: "a",
  130. confirmLoading: false,
  131. aloading: false,
  132. pagination: {
  133. defaultCurrent: 1,
  134. defaultPageSize: 10,
  135. showQuickJumper: true,
  136. pageSize: 10,
  137. onChange: function (page) {
  138. this.loadData(page);
  139. }.bind(this),
  140. showTotal: function (total) {
  141. return "共" + total + "条数据";
  142. }
  143. },
  144. columns: [
  145. {
  146. title: "合同编号",
  147. dataIndex: "contractNo",
  148. key: "contractNo"
  149. },
  150. {
  151. title: "订单编号",
  152. dataIndex: "orderNo",
  153. key: "orderNo"
  154. },
  155. {
  156. title: "客户名称",
  157. dataIndex: "nickname",
  158. key: "nickname"
  159. },
  160. {
  161. title: "订单部门",
  162. dataIndex: "depName",
  163. key: "depName"
  164. },
  165. {
  166. title: "订单类型",
  167. dataIndex: "orderType",
  168. key: "orderType",
  169. render: text => {
  170. return text ? "科技项目" : "认证项目";
  171. }
  172. },
  173. {
  174. title: "下单时间",
  175. dataIndex: "establishTimes",
  176. key: "establishTimes"
  177. },
  178. {
  179. title: "订单状态",
  180. dataIndex: "orderStatus",
  181. key: "orderStatus",
  182. render: text => {
  183. return getNewOrderStatus(text);
  184. }
  185. },
  186. {
  187. title: "合同额(万元)",
  188. dataIndex: "totalAmount",
  189. key: "totalAmount"
  190. },
  191. {
  192. title: "已付额(万元)",
  193. dataIndex: "settlementAmount",
  194. key: "settlementAmount"
  195. },
  196. {
  197. title: "欠款(万元)",
  198. dataIndex: "arrears",
  199. key: "arrears"
  200. },
  201. {
  202. title: "订单负责人",
  203. dataIndex: "salesmanName",
  204. key: "salesmanName"
  205. },
  206. {
  207. title: "变更类型",
  208. dataIndex: "type",
  209. key: "type",
  210. render: text => {
  211. return getType(text);
  212. }
  213. },
  214. {
  215. title: "审核状态",
  216. dataIndex: "processStateText",
  217. key: "processStateText"
  218. },
  219. {
  220. title: "提交时间",
  221. dataIndex: "createTimes",
  222. key: "createTimes"
  223. }
  224. ],
  225. dataSource: [],
  226. // 传递给子组件的
  227. dataProps: [],
  228. columnsX: [
  229. {
  230. title: "业务项目名称",
  231. dataIndex: "commodityName",
  232. key: "commodityName"
  233. },
  234. {
  235. title: "项目类别",
  236. dataIndex: "cname",
  237. key: "cname"
  238. },
  239. {
  240. title: "项目数量",
  241. dataIndex: "commodityQuantity",
  242. key: "commodityQuantity"
  243. },
  244. {
  245. title: "金额(万元)",
  246. dataIndex: "commodityPrice",
  247. key: "commodityPrice"
  248. },
  249. {
  250. title: "负责人",
  251. dataIndex: "contacts",
  252. key: "contacts"
  253. },
  254. {
  255. title: "负责人电话",
  256. dataIndex: "contactsMobile",
  257. key: "contactsMobile"
  258. },
  259. {
  260. title: "项目状态",
  261. dataIndex: "projectStatus",
  262. key: "projectStatus",
  263. render: text => {
  264. return getProjectName(text);
  265. }
  266. },
  267. {
  268. title: "主要项目",
  269. dataIndex: "main",
  270. key: "main",
  271. render: text => {
  272. return text ? "是" : "否";
  273. }
  274. },
  275. {
  276. title: "项目说明",
  277. dataIndex: "taskComment",
  278. key: "taskComment",
  279. render: text => {
  280. return text && text.length > 8 ? text.substr(0, 8) + "…" : text;
  281. }
  282. }
  283. ],
  284. // 子组件改变的表格title数组
  285. changeList: undefined,
  286. columnsrizhi: [
  287. {
  288. title: "流程",
  289. dataIndex: "processName",
  290. key: "processName"
  291. },
  292. {
  293. title: "操作人",
  294. dataIndex: "adminName",
  295. key: "adminName"
  296. },
  297. {
  298. title: "时间",
  299. dataIndex: "createDate",
  300. key: "createDate"
  301. }
  302. ],
  303. dataSourceX: [],
  304. ContactsLists: [
  305. {
  306. title: "催款科目",
  307. dataIndex: "dunSubject",
  308. key: "dunSubject",
  309. render: text => {
  310. return getjiedian(text);
  311. }
  312. },
  313. {
  314. title: "金额(万元)",
  315. dataIndex: "money",
  316. key: "money"
  317. },
  318. {
  319. title: "催款状态",
  320. dataIndex: "dunStatus",
  321. key: "dunStatus",
  322. render: text => {
  323. return getCuikuan(text);
  324. }
  325. }
  326. ]
  327. };
  328. },
  329. //页面加载函数
  330. componentWillMount() {
  331. this.loadData();
  332. },
  333. //整行点击
  334. tableRowClick(record) {
  335. this.setState(
  336. {
  337. visible: true,
  338. type: record.type,
  339. status: record.status,
  340. buttonStatus: true,
  341. orderStatus: record.orderStatus,
  342. id: record.id,
  343. processStateText: record.processStateText,
  344. orderNo: record.orderNo
  345. },
  346. () => {
  347. this.xiangqing(record.orderNo);
  348. // this.ChangeDetail(this.state.id);
  349. this.createTabs()
  350. }
  351. );
  352. },
  353. //点击打卡项目详情
  354. tableRowClickX(record) {
  355. this.setState({
  356. jid: record.id, //项目ID
  357. kid: record.commodityId, //商品ID
  358. commodityName: record.commodityName, //金额
  359. commodityPrice: record.commodityPrice, //金额
  360. commodityQuantity: record.commodityQuantity, //数量
  361. taskComment: record.taskComment, //备注
  362. main: record.main.toString(), //是否为主要
  363. addnextVisible: true,
  364. dataInfor:record,
  365. addState: 0
  366. });
  367. },
  368. //项目详情关闭
  369. nextCancel() {
  370. this.setState({
  371. addnextVisible: false
  372. });
  373. },
  374. // 合同变更详情
  375. ChangeDetail(id) {
  376. let url = window.location.href.substring(7);
  377. $.ajax({
  378. method: "get",
  379. dataType: "json",
  380. crossDomain: false,
  381. url:
  382. globalConfig.context +
  383. "/api/admin/orderChange/orderChangeDetailsById",
  384. data: {
  385. id: id
  386. },
  387. success: function (data) {
  388. if (data.data) {
  389. let thisdata = data.data;
  390. Object.assign(thisdata, {
  391. id: this.state.id,
  392. userName: this.state.userName,
  393. processStateText: this.state.processStateText,
  394. contractNo: this.state.contractNo,
  395. startRemarks: thisdata.zxsRemarks
  396. });
  397. this.setState({
  398. contractData: thisdata,
  399. voucherUrl: thisdata.voucherUrl
  400. ? splitUrl(
  401. thisdata.voucherUrl,
  402. ",",
  403. globalConfig.avatarHost + "/upload",
  404. url
  405. )
  406. : []
  407. });
  408. }
  409. }.bind(this)
  410. });
  411. $.ajax({
  412. method: "get",
  413. dataType: "json",
  414. crossDomain: false,
  415. url:
  416. globalConfig.context +
  417. "/api/admin/orderChange/listOrderInvoiceAndBill",
  418. data: {
  419. orderNo: this.state.orderNo
  420. },
  421. success: function (data) {
  422. if (!data.data) return;
  423. let proTotal = 0;
  424. let invTotal = 0;
  425. data.data.bill.forEach(item => {
  426. proTotal += item.transactionAmount;
  427. });
  428. data.data.invoice.forEach(item => {
  429. invTotal += item.amount;
  430. });
  431. this.setState({
  432. proceedsData: data.data,
  433. proTotal: (Math.round(proTotal * 1000000) / 1000000).toFixed(6),
  434. invTotal: (Math.round(invTotal * 1000000) / 1000000).toFixed(6),
  435. });
  436. }.bind(this)
  437. });
  438. $.ajax({
  439. method: "get",
  440. dataType: "json",
  441. crossDomain: false,
  442. url:
  443. globalConfig.context +
  444. "/api/admin/orderChange/listOrderRefundInvoice",
  445. data: {
  446. orderNo: this.state.orderNo
  447. },
  448. success: data => {
  449. if (!data) return;
  450. data.data.forEach(item => {
  451. item.load = true;
  452. });
  453. this.setState({
  454. refundInvoice: data.data
  455. });
  456. }
  457. });
  458. },
  459. //订单详情
  460. xiangqing(orderNos) {
  461. $.ajax({
  462. method: "get",
  463. dataType: "json",
  464. crossDomain: false,
  465. url: globalConfig.context + "/api/admin/newOrder/getOrderNewDetail",
  466. data: {
  467. orderNo: orderNos
  468. },
  469. success: function (data) {
  470. if (data.error.length || data.data.list == "") {
  471. if (data.error && data.error.length) {
  472. message.warning(data.error[0].message);
  473. }
  474. } else {
  475. let thisdata = data.data;
  476. this.setState(
  477. {
  478. userName: thisdata.userName,
  479. primaryOrderNo: thisdata.primaryOrder,
  480. additionalOrder: thisdata.additionalOrder,
  481. contractNo: thisdata.contractNo,
  482. // arrears: thisdata.arrears,
  483. orderData: thisdata,
  484. isAddition: thisdata.additionalOrder ? true : false
  485. },
  486. () => {
  487. if (this.state.orderData.deleteSign !== 3) {
  488. this.xiangmu(this.state.orderNo);
  489. this.jiedian(this.state.orderNo);
  490. this.jiedianNew(this.state.orderNo);
  491. }
  492. }
  493. );
  494. }
  495. }.bind(this)
  496. });
  497. },
  498. // 原订单数据
  499. primaryOrder(primaryOrder) {
  500. $.ajax({
  501. method: "get",
  502. dataType: "json",
  503. crossDomain: false,
  504. url: globalConfig.context + "/api/admin/newOrder/getOrderNewDetail",
  505. data: {
  506. orderNo: primaryOrder
  507. },
  508. success: function (data) {
  509. if (data.error.length || data.data.list == "") {
  510. if (data.error && data.error.length) {
  511. message.warning(data.error[0].message);
  512. }
  513. } else {
  514. let thisdata = data.data;
  515. this.setState({
  516. primaryOrderData: thisdata
  517. });
  518. }
  519. }.bind(this)
  520. });
  521. },
  522. // 附加订单数据
  523. additionalOrder(additionalOrder) {
  524. $.ajax({
  525. method: "get",
  526. dataType: "json",
  527. crossDomain: false,
  528. url: globalConfig.context + "/api/admin/newOrder/getOrderNewDetail",
  529. data: {
  530. orderNo: additionalOrder
  531. },
  532. success: function (data) {
  533. if (data.error.length || data.data.list == "") {
  534. if (data.error && data.error.length) {
  535. message.warning(data.error[0].message);
  536. }
  537. } else {
  538. let thisdata = data.data;
  539. this.setState({
  540. additionalOrderData: thisdata
  541. });
  542. }
  543. }.bind(this)
  544. });
  545. },
  546. //项目列表
  547. xiangmu(orderNos) {
  548. $.ajax({
  549. method: "get",
  550. dataType: "json",
  551. crossDomain: false,
  552. url: globalConfig.context + "/api/admin/newOrder/getOrderTask",
  553. data: {
  554. orderNo: orderNos
  555. },
  556. success: function (data) {
  557. let theArr = [];
  558. if (data.error.length || data.data.list == "") {
  559. if (data.error && data.error.length) {
  560. message.warning(data.error[0].message);
  561. }
  562. } else {
  563. for (let i = 0; i < data.data.length; i++) {
  564. let thisdata = data.data[i];
  565. thisdata.key = i;
  566. thisdata.sort = thisdata.cSort;
  567. theArr.push(thisdata);
  568. }
  569. }
  570. this.setState({
  571. dataSourceX: theArr
  572. });
  573. }.bind(this)
  574. });
  575. },
  576. search(obj) {
  577. this.setState(
  578. {
  579. searchData: obj
  580. },
  581. () => {
  582. this.loadData(1);
  583. }
  584. );
  585. },
  586. rizhi(orderNo) {
  587. $.ajax({
  588. method: "get",
  589. dataType: "json",
  590. crossDomain: false,
  591. url: "/api/admin/newOrder/selectOrderLog",
  592. data: {
  593. orderNo: orderNo
  594. },
  595. success: function (data) {
  596. let theArr = [];
  597. let thisData = data.data;
  598. if (!thisData.length) {
  599. if (data.error && data.error.length) {
  600. message.warning(data.error[0].message);
  601. }
  602. thisData = {};
  603. } else {
  604. for (let i = 0; i < data.data.length; i++) {
  605. let thisdata = data.data[i];
  606. theArr.push({
  607. processName: thisdata.processName,
  608. adminName: thisdata.adminName,
  609. createDate: thisdata.createDate,
  610. remarks: thisdata.remarks
  611. });
  612. }
  613. }
  614. this.setState({
  615. dataSourcerizhi: theArr
  616. });
  617. }.bind(this)
  618. });
  619. },
  620. getOrderLog(orderNo) {
  621. this.setState({
  622. rizhivisible: true
  623. });
  624. this.rizhi(orderNo);
  625. },
  626. closeOrderLog() {
  627. this.setState({
  628. rizhivisible: false
  629. });
  630. },
  631. //节点列表
  632. jiedian(orderNos) {
  633. $.ajax({
  634. method: "get",
  635. dataType: "json",
  636. crossDomain: false,
  637. url: globalConfig.context + "/api/admin/newOrder/selectOrderDun",
  638. data: {
  639. orderNo: orderNos
  640. },
  641. success: function (data) {
  642. let theArr = [];
  643. let thisData = [];
  644. if (data.error.length || data.data.list == "") {
  645. if (data.error && data.error.length) {
  646. message.warning(data.error[0].message);
  647. }
  648. } else {
  649. for (let i = 0; i < data.data.length; i++) {
  650. thisData = data.data[i];
  651. theArr.push({
  652. key: i,
  653. dunSubject: thisData.dunSubject
  654. ? thisData.dunSubject.toString()
  655. : "", //催款科目
  656. id: thisData.id, //节点Id
  657. money: thisData.money, //催款金额
  658. dunStatus: thisData.dunStatus //催款状态
  659. });
  660. }
  661. this.setState({
  662. contactList: theArr
  663. });
  664. }
  665. }.bind(this)
  666. });
  667. },
  668. jiedianNew(orderNos) {
  669. $.ajax({
  670. method: "get",
  671. dataType: "json",
  672. crossDomain: false,
  673. url:
  674. globalConfig.context + "/api/admin/newOrderDun/selectListNewOrderDun",
  675. data: {
  676. orderNo: orderNos
  677. },
  678. success: function (data) {
  679. if (data.error && data.error.length) {
  680. message.warning(data.error[0].message);
  681. } else {
  682. let theArr = [];
  683. let thisData = [];
  684. let arr = data.data || [];
  685. let totalCui = 0;
  686. for (let i = 0; i < arr.length; i++) {
  687. thisData = arr[i];
  688. totalCui += +thisData.money;
  689. theArr.push({
  690. key: i,
  691. dunSubject: thisData.dunSubject
  692. ? thisData.dunSubject.toString()
  693. : "", //催款科目
  694. id: thisData.id, //节点Id
  695. money: thisData.money, //催款金额
  696. // orderNo: record ? record.orderNo : this.props.datauser.orderNo,
  697. commodityName: thisData.commodityName,
  698. projectType: thisData.projectType,
  699. dunTypeName: thisData.dunTypeName,
  700. status: thisData.status,
  701. waitDay: thisData.waitDay,
  702. effectiveCount: thisData.effectiveCount,
  703. startDate: thisData.startDate,
  704. dunType: thisData.dunType,
  705. appropriationRatio: thisData.appropriationRatio,
  706. customizeName: thisData.customizeName,
  707. customizeTimes: thisData.customizeTimes,
  708. tid: thisData.tid,
  709. });
  710. }
  711. if (!totalCui) {
  712. totalCui = 0;
  713. }
  714. totalCui = (Math.round(totalCui * 1000000) / 1000000).toFixed(6);
  715. this.setState({
  716. contactListNew: theArr,
  717. totalCui
  718. });
  719. }
  720. }.bind(this)
  721. }).always(
  722. function () {
  723. this.setState({
  724. loading: false
  725. });
  726. }.bind(this)
  727. );
  728. },
  729. //审核通过
  730. examOk() {
  731. $.ajax({
  732. method: "post",
  733. dataType: "json",
  734. crossDomain: false,
  735. url: globalConfig.context + "/api/admin/newOrder/auditOrderNew",
  736. data: {
  737. orderNo: this.state.orderNo,
  738. orderStatus: 2
  739. },
  740. success: function (data) {
  741. if (data.error.length || data.data.list == "") {
  742. if (data.error && data.error.length) {
  743. message.warning(data.error[0].message);
  744. }
  745. } else {
  746. message.success("该订单已通过审核~");
  747. this.setState({
  748. visible: false
  749. });
  750. this.reset();
  751. }
  752. }.bind(this)
  753. }).always(
  754. function () {
  755. this.setState({
  756. loading: false
  757. });
  758. }.bind(this)
  759. );
  760. },
  761. //通过发给外包
  762. outsourcing() {
  763. $.ajax({
  764. method: "post",
  765. dataType: "json",
  766. crossDomain: false,
  767. url: globalConfig.context + "/api/admin/newOrder/auditOrderNew",
  768. data: {
  769. orderNo: this.state.orderNo,
  770. orderStatus: 2,
  771. outsource: 1
  772. },
  773. success: function (data) {
  774. if (data.error.length || data.data.list == "") {
  775. if (data.error && data.error.length) {
  776. message.warning(data.error[0].message);
  777. }
  778. } else {
  779. message.success("该订单已通过审核~");
  780. this.setState({
  781. visible: false
  782. });
  783. this.reset();
  784. }
  785. }.bind(this)
  786. }).always(
  787. function () {
  788. this.setState({
  789. loading: false
  790. });
  791. }.bind(this)
  792. );
  793. },
  794. //审核不通过
  795. examOks() {
  796. this.setState({
  797. aloading: true
  798. });
  799. $.ajax({
  800. method: "post",
  801. dataType: "json",
  802. crossDomain: false,
  803. url: globalConfig.context + "/api/admin/newOrder/auditOrderNew",
  804. data: {
  805. orderNo: this.state.orderNo,
  806. orderStatus: 3,
  807. reason: this.state.reason
  808. },
  809. success: function (data) {
  810. if (data.error.length || data.data.list == "") {
  811. if (data.error && data.error.length) {
  812. message.warning(data.error[0].message);
  813. this.setState({
  814. aloading: true
  815. });
  816. }
  817. } else {
  818. message.success("该订单已被拒绝~");
  819. this.setState({
  820. visible: false,
  821. aloading: false,
  822. noVisible: false,
  823. reason: ""
  824. });
  825. this.reset();
  826. }
  827. }.bind(this)
  828. }).always(
  829. function () {
  830. this.setState({
  831. loading: false
  832. });
  833. }.bind(this)
  834. );
  835. },
  836. //点击拒绝
  837. examNo() {
  838. this.setState({
  839. noVisible: true
  840. });
  841. },
  842. loadDataChange(key) {
  843. $.ajax({
  844. method: "get",
  845. dataType: "json",
  846. async: false,
  847. crossDomain: false,
  848. url: globalConfig.context + "/api/admin/orderChange/orderChangeLogList",
  849. data: {
  850. changeId: key
  851. },
  852. success: function (data) {
  853. if (data.error.length || data.data.list == "") {
  854. if (data.error && data.error.length) {
  855. message.warning(data.error[0].message);
  856. }
  857. } else {
  858. this.setState({
  859. dataProps: data.data
  860. });
  861. }
  862. }.bind(this)
  863. });
  864. },
  865. callback(key) {
  866. this.setState(
  867. {
  868. activeKey: key
  869. },
  870. () => {
  871. if (key != "a" && key != "c" && key.length < 10) {
  872. this.ChangeDetail(key);
  873. this.loadDataChange(key);
  874. } else if (key != "a" && key != "c" && key.length > 10) {
  875. this.primaryOrder(key);
  876. this.ChangeDetail(key);
  877. this.xiangmu(key);
  878. this.jiedian(key);
  879. this.jiedianNew(key);
  880. this.loadDataChange(key);
  881. }
  882. }
  883. );
  884. if (key === "a") {
  885. if (this.state.orderData.deleteSign !== 3) {
  886. this.xiangmu(this.state.orderNo);
  887. this.jiedian(this.state.orderNo);
  888. this.jiedianNew(this.state.orderNo);
  889. }
  890. }
  891. // if (key === "3") {
  892. // this.primaryOrder(this.state.primaryOrderNo);
  893. // this.xiangmu(this.state.primaryOrderNo);
  894. // this.jiedian(this.state.primaryOrderNo);
  895. // this.jiedianNew(this.state.primaryOrderNo);
  896. // }
  897. if (key === "c") {
  898. this.additionalOrder(this.state.additionalOrder);
  899. this.xiangmu(this.state.additionalOrder);
  900. this.jiedian(this.state.additionalOrder);
  901. this.jiedianNew(this.state.additionalOrder);
  902. this.setState({
  903. buttonStatusA: false
  904. });
  905. } else {
  906. this.setState({
  907. buttonStatusA: true
  908. });
  909. }
  910. },
  911. closeDesc(e, s) {
  912. this.state.activeKey = "a";
  913. this.state.userDetaile = false;
  914. this.state.signBillVisible = false;
  915. this.state.visible = e;
  916. if (s) {
  917. this.loadData(this.state.pageNo);
  918. }
  919. },
  920. // 获取原订单编号
  921. getPrimaryOrder(value) {
  922. this.setState({
  923. primaryOrder: value
  924. });
  925. },
  926. getAdditionalOrder(value) {
  927. this.setState({
  928. additionalOrder: value
  929. });
  930. },
  931. getUrl(url) {
  932. let theorgCodeUrl = [];
  933. if (url.length) {
  934. let picArr = [];
  935. url.map(function (item) {
  936. if (
  937. item.response &&
  938. item.response.data &&
  939. item.response.data.length
  940. ) {
  941. picArr.push(item.response.data);
  942. }
  943. });
  944. theorgCodeUrl = picArr.join(",");
  945. }
  946. return theorgCodeUrl;
  947. },
  948. sureOut() {
  949. if (!this.state.companyName) {
  950. message.warning("公司名称不能为空");
  951. return;
  952. }
  953. if (!this.state.unitPrice) {
  954. message.warning("单价不能为空");
  955. return;
  956. }
  957. if (!this.state.unitNumber) {
  958. message.warning("数量不能为空");
  959. return;
  960. }
  961. if (!this.state.amount) {
  962. message.warning("总金额不能为空");
  963. return;
  964. }
  965. if (!this.state.outsourceRemarks) {
  966. message.warning("备注不能为空");
  967. return;
  968. }
  969. if (this.state.pictureUrl.length === 0) {
  970. message.warning("合同扫描件不能为空");
  971. return;
  972. }
  973. $.ajax({
  974. method: "POST",
  975. dataType: "json",
  976. crossDomain: false,
  977. url: globalConfig.context + "/api/admin/outsourceOrg/auditOutsource",
  978. data: {
  979. id: this.state.id,
  980. orderNo: this.state.orderNo,
  981. companyName: this.state.companyName,
  982. amount: this.state.amount,
  983. outsourceRemarks: this.state.outsourceRemarks,
  984. unitNumber: this.state.unitNumber,
  985. unitPrice: this.state.unitPrice,
  986. attachmentUrl: this.getUrl(this.state.attachmentUrl).length
  987. ? this.getUrl(this.state.attachmentUrl)
  988. : "",
  989. orderStatus: 2,
  990. pictureUrl: this.getUrl(this.state.pictureUrl).length
  991. ? this.getUrl(this.state.pictureUrl)
  992. : ""
  993. }
  994. }).done(
  995. function (data) {
  996. this.setState({
  997. loading: false
  998. });
  999. if (!data.error.length) {
  1000. message.success("发起成功!");
  1001. this.outReset();
  1002. this.visitCancel();
  1003. } else {
  1004. message.warning(data.error[0].message);
  1005. }
  1006. }.bind(this)
  1007. );
  1008. },
  1009. //关闭输入理由框
  1010. noCancel() {
  1011. this.setState({
  1012. noVisible: false,
  1013. aloading: false,
  1014. reason: ""
  1015. });
  1016. },
  1017. //重置
  1018. reset() {
  1019. this.setState({
  1020. signBillVisible: false
  1021. });
  1022. this.state.orderNo = "";
  1023. this.state.customerName = "";
  1024. this.state.releaseDate[0] = undefined;
  1025. this.state.releaseDate[1] = undefined;
  1026. this.state.approval = undefined;
  1027. this.state.completeSearch = 0;
  1028. this.loadData(1);
  1029. },
  1030. outReset() {
  1031. this.setState({
  1032. companyName: "",
  1033. amount: "",
  1034. unitPrice: "",
  1035. unitNumber: "",
  1036. outsourceRemarks: "",
  1037. attachmentUrl: [],
  1038. pictureUrl: []
  1039. });
  1040. },
  1041. getOrgCodeUrl(e) {
  1042. this.setState({ pictureUrl: e });
  1043. },
  1044. //关闭详情
  1045. visitCancel() {
  1046. this.setState(
  1047. {
  1048. activeKey: "a"
  1049. },
  1050. () => {
  1051. this.setState({
  1052. visible: false
  1053. });
  1054. }
  1055. );
  1056. this.loadData(this.state.pageNo);
  1057. },
  1058. visitOk() {
  1059. this.setState({
  1060. visible: false
  1061. });
  1062. },
  1063. changeList(arr) {
  1064. const newArr = [];
  1065. this.state.columns.forEach(item => {
  1066. arr.forEach(val => {
  1067. if (val === item.title) {
  1068. newArr.push(item);
  1069. }
  1070. });
  1071. });
  1072. this.setState({
  1073. changeList: newArr
  1074. });
  1075. },
  1076. createTabs() {
  1077. $.ajax({
  1078. url: globalConfig.context + "/api/admin/orderChange/getOrderChange",
  1079. method: "get",
  1080. data: {
  1081. orderNo: this.state.orderNo
  1082. },
  1083. success: (data) => {
  1084. if (data.error && data.error.length) {
  1085. message.warning(data.error[0].message)
  1086. } else {
  1087. this.setState({
  1088. tabList: data.data
  1089. })
  1090. }
  1091. }
  1092. });
  1093. },
  1094. render() {
  1095. const tabList = this.state.tabList || []
  1096. const formItemLayout = {
  1097. labelCol: { span: 8 },
  1098. wrapperCol: { span: 14 }
  1099. };
  1100. const FormItem = Form.Item;
  1101. const { TabPane } = Tabs;
  1102. return (
  1103. <div className="user-content" style={{ position: "relative" }}>
  1104. <ShowModalDiv ShowModal={this.state.showModal} />
  1105. <div className="content-title">
  1106. <span>合同变更审核订单</span>
  1107. </div>
  1108. <div className="user-search">
  1109. <Tabs defaultActiveKey="1" className="test">
  1110. <TabPane tab="搜索" key="1">
  1111. <SearchInput search={this.search} isYxy={true} />
  1112. </TabPane>
  1113. <TabPane tab="更改表格显示数据" key="2">
  1114. <div style={{ marginLeft: 10 }}>
  1115. <ChooseList
  1116. columns={this.state.columns}
  1117. changeFn={this.changeList}
  1118. changeList={this.state.changeList}
  1119. top={55}
  1120. margin={11}
  1121. />
  1122. </div>
  1123. </TabPane>
  1124. </Tabs>
  1125. <div className="patent-table">
  1126. <Spin spinning={this.state.loading}>
  1127. <Table
  1128. size="small"
  1129. bordered
  1130. columns={
  1131. this.state.changeList
  1132. ? this.state.changeList
  1133. : this.state.columns
  1134. }
  1135. dataSource={this.state.dataSource}
  1136. pagination={this.state.pagination}
  1137. onRowClick={this.tableRowClick}
  1138. />
  1139. </Spin>
  1140. </div>
  1141. {this.state.visible ? <Modal
  1142. className="customeDetails"
  1143. footer=""
  1144. maskClosable={false}
  1145. width="900px"
  1146. visible={this.state.visible}
  1147. onOk={this.visitOk}
  1148. onCancel={this.visitCancel}
  1149. >
  1150. <Tabs
  1151. activeKey={this.state.activeKey}
  1152. onChange={this.callback}
  1153. type="card"
  1154. >
  1155. <TabPane tab="订单详情" key="a">
  1156. {this.state.activeKey === 'a' ? <div>
  1157. {this.state.orderData.deleteSign === 3 ? (
  1158. <AddOrders
  1159. processStatus={0}
  1160. data={this.state.orderData.orderNo}
  1161. mark={this.state.buttonStatus}
  1162. getPrimaryOrder={this.getPrimaryOrder}
  1163. totalCui={this.state.totalCui}
  1164. closeDesc={this.closeDesc}
  1165. getAdditionalOrder={this.getAdditionalOrder}
  1166. deleteSign={this.state.orderData.deleteSign}
  1167. />
  1168. ):(
  1169. <Form
  1170. layout="horizontal"
  1171. onSubmit={this.handleSubmit}
  1172. id="demand-form"
  1173. style={{ paddingBottom: "40px" }}
  1174. >
  1175. <Spin spinning={this.state.loading}>
  1176. <OrderDetail
  1177. orderData={this.state.orderData}
  1178. getOrderLog={this.getOrderLog}
  1179. totalCui={parseFloat(this.state.totalCui)}
  1180. dataSourceX={this.state.dataSourceX}
  1181. contactList={this.state.contactList}
  1182. contactListNew={this.state.contactListNew}
  1183. orderNo={this.state.orderNo}
  1184. />
  1185. </Spin>
  1186. </Form>
  1187. ) }
  1188. </div>:<div/>}
  1189. </TabPane>
  1190. {/* <TabPane tab="合同变更记录" key="2">
  1191. {this.state.contractData.processState === 0 ? (
  1192. <ChangeApply
  1193. orderData={this.state.contractData}
  1194. voucherUrl={this.state.voucherUrl}
  1195. onCancel={this.visitCancel}
  1196. />
  1197. ) : (
  1198. <ChangeDetail
  1199. data={this.state.contractData}
  1200. pictureUrl={this.state.voucherUrl}
  1201. processState={this.props.processState}
  1202. dataSource={this.state.dataProps}
  1203. proceedsData={this.state.proceedsData}
  1204. proceedsTotal={this.state.proTotal}
  1205. invoiceTotal={this.state.invTotal}
  1206. contactList={this.state.refundInvoice}
  1207. />
  1208. )}
  1209. </TabPane> */}
  1210. {tabList.map((item, index, arr) => {
  1211. return (
  1212. <TabPane tab={"合同变更记录" + (index + 1)} key={item.id}>
  1213. {
  1214. this.state.activeKey === String(item.id) ?
  1215. (
  1216. this.state.contractData.processState === 0 &&
  1217. this.state.contractData.status != 5 ? (
  1218. <ChangeApply
  1219. id={Math.random()}
  1220. orderData={this.state.contractData}
  1221. voucherUrl={this.state.voucherUrl}
  1222. onCancel={this.visitCancel}
  1223. />
  1224. ) : (
  1225. <ChangeDetail
  1226. id={item.id}
  1227. money={
  1228. index == arr.length - 1
  1229. ? this.state.orderData.totalAmount + ""
  1230. : undefined
  1231. }
  1232. data={this.state.contractData}
  1233. pictureUrl={this.state.voucherUrl}
  1234. processState={this.props.processState}
  1235. dataSource={this.state.dataProps}
  1236. proceedsData={this.state.proceedsData}
  1237. proceedsTotal={this.state.proTotal}
  1238. invoiceTotal={this.state.invTotal}
  1239. contactList={this.state.refundInvoice}
  1240. />
  1241. )
  1242. ) : <div/>
  1243. }
  1244. </TabPane>
  1245. );
  1246. })}
  1247. {tabList.map((item, index) => {
  1248. if (item.usedOrder) {
  1249. return (
  1250. <TabPane
  1251. tab={"原订单" + (index + 1)}
  1252. key={item.usedOrder}
  1253. >
  1254. {
  1255. this.state.activeKey === String(item.usedOrder) ?
  1256. <Form
  1257. layout="horizontal"
  1258. onSubmit={this.handleSubmit}
  1259. id="demand-form"
  1260. style={{ paddingBottom: "40px" }}
  1261. >
  1262. <Spin spinning={this.state.loading}>
  1263. <OrderDetail
  1264. orderData={this.state.primaryOrderData}
  1265. getOrderLog={this.getOrderLog}
  1266. dataSourceX={this.state.dataSourceX}
  1267. contactList={this.state.contactList}
  1268. orderNo={this.state.primaryOrderNo}
  1269. totalCui={this.state.totalCui}
  1270. contactListNew={this.state.contactListNew}
  1271. />
  1272. </Spin>
  1273. </Form> : <div/>
  1274. }
  1275. </TabPane>
  1276. );
  1277. } else {
  1278. return "";
  1279. }
  1280. })}
  1281. {/* {this.state.status === 4 ? (
  1282. <TabPane tab="原订单" key="3">
  1283. <Form
  1284. layout="horizontal"
  1285. onSubmit={this.handleSubmit}
  1286. id="demand-form"
  1287. style={{ paddingBottom: "40px" }}
  1288. >
  1289. <Spin spinning={this.state.loading}>
  1290. <OrderDetail
  1291. orderData={this.state.primaryOrderData}
  1292. getOrderLog={this.getOrderLog}
  1293. dataSourceX={this.state.dataSourceX}
  1294. contactList={this.state.contactList}
  1295. orderNo={this.state.primaryOrderNo}
  1296. totalCui={this.state.totalCui}
  1297. contactListNew={this.state.contactListNew}
  1298. />
  1299. </Spin>
  1300. </Form>
  1301. </TabPane>
  1302. ) : (
  1303. ""
  1304. )} */}
  1305. {this.state.status === 4 && this.state.isAddition ? (
  1306. this.state.type === 4 || this.state.type === 5 ? (
  1307. <TabPane tab="附加订单" key="c">
  1308. {
  1309. this.state.activeKey === "c" ?
  1310. <AddOrders
  1311. processStatus={0}
  1312. data={this.state.orderData.additionalOrder}
  1313. mark={this.state.buttonStatusA}
  1314. getPrimaryOrder={this.getPrimaryOrder}
  1315. closeDesc={this.closeDesc}
  1316. getAdditionalOrder={this.getAdditionalOrder}
  1317. activeKey={this.state.activeKey}
  1318. /> : <div/>
  1319. }
  1320. </TabPane>
  1321. ) : (
  1322. ""
  1323. )
  1324. ) : (
  1325. ""
  1326. )}
  1327. </Tabs>
  1328. </Modal> : <div/>}
  1329. <Modal
  1330. maskClosable={false}
  1331. visible={this.state.noVisible}
  1332. onOk={this.handleOk}
  1333. onCancel={this.noCancel}
  1334. width="400px"
  1335. title={"拒绝理由"}
  1336. footer=""
  1337. className="admin-desc-content"
  1338. confirmLoading={this.state.confirmLoading}
  1339. >
  1340. <Form layout="horizontal" id="demand-form">
  1341. <Spin spinning={this.state.loading}>
  1342. <div className="clearfix">
  1343. <FormItem
  1344. labelCol={{ span: 4 }}
  1345. wrapperCol={{ span: 16 }}
  1346. label="拒绝理由"
  1347. >
  1348. <Input
  1349. type="textarea"
  1350. placeholder="请输入拒绝理由"
  1351. rows={4}
  1352. value={this.state.reason}
  1353. onChange={e => {
  1354. this.setState({ reason: e.target.value });
  1355. }}
  1356. />
  1357. </FormItem>
  1358. </div>
  1359. <div className="clearfix">
  1360. <Button
  1361. className="cancel"
  1362. type="primary"
  1363. onClick={this.examOks}
  1364. style={{ marginLeft: "50px" }}
  1365. htmlType="submit"
  1366. loading={this.state.aloading}
  1367. >
  1368. 确定
  1369. </Button>
  1370. <Button
  1371. className="cancel"
  1372. type="ghost"
  1373. onClick={this.noCancel}
  1374. style={{ marginLeft: "50px" }}
  1375. >
  1376. 取消
  1377. </Button>
  1378. </div>
  1379. </Spin>
  1380. </Form>
  1381. </Modal>
  1382. {/* <Modal
  1383. visible={this.state.rizhivisible}
  1384. className="admin-desc-content"
  1385. width="800px"
  1386. maskClosable={false}
  1387. title="订单日志"
  1388. footer={null}
  1389. onCancel={this.closeOrderLog}
  1390. >
  1391. <div className="patent-table">
  1392. <Spin spinning={this.state.loading}>
  1393. <Table
  1394. bordered
  1395. columns={this.state.columnsrizhi}
  1396. dataSource={this.state.dataSourcerizhi}
  1397. pagination={false}
  1398. />
  1399. </Spin>
  1400. </div>
  1401. </Modal> */}
  1402. <OrderRiZi
  1403. dataSourcerizhi={this.state.dataSourcerizhi}
  1404. closeOrderLog={this.closeOrderLog}
  1405. visible={this.state.rizhivisible}
  1406. loading={this.state.loading}
  1407. />
  1408. </div>
  1409. {this.state.addnextVisible && <ProjectDetailsReadOnly
  1410. infor={this.state.dataInfor}
  1411. visible={this.state.addnextVisible}
  1412. onCancel={this.nextCancel}
  1413. />}
  1414. </div>
  1415. );
  1416. }
  1417. })
  1418. );
  1419. export default contractChange;