contractJsy.js 40 KB

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