orderDetail.jsx 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337
  1. import React from 'react';
  2. import $ from 'jquery/src/ajax';
  3. import {
  4. Modal,
  5. message,
  6. Spin,
  7. Upload,
  8. Button,
  9. Form,
  10. Table,
  11. Col,
  12. Tag
  13. } from 'antd';
  14. import {
  15. getjiedian,
  16. splitUrl,
  17. getNewOrderType,
  18. getProcessStatus,
  19. getApproval,
  20. getLiquidationStatus,
  21. getProjectStatus,
  22. getboutique,
  23. getCuikuan,
  24. } from "@/tools";
  25. import OrderRiZi from "@/orderRiZi.jsx";
  26. import ResolutionDetail from "@/resolutionDetail";
  27. import ImgList from "../../../common/imgList";
  28. import {getProjectName} from "../../../tools";
  29. import ProjectDetailsReadOnly from "../../../common/projectDetailsReadOnly";
  30. const OrderDetail = Form.create()(
  31. React.createClass({
  32. loadXmu(record) {
  33. this.state.data = [];
  34. this.setState({
  35. loading: true,
  36. });
  37. $.ajax({
  38. method: "get",
  39. dataType: "json",
  40. crossDomain: false,
  41. url: globalConfig.context + "/api/admin/newOrder/getOrderTask",
  42. data: {
  43. orderNo: record ? record.orderNo : this.props.data.orderNo,
  44. },
  45. success: function (data) {
  46. let theArr = [];
  47. if (!data.data) {
  48. if (data.error && data.error.length) {
  49. message.warning(data.error[0].message);
  50. }
  51. } else {
  52. for (let i = 0; i < data.data.length; i++) {
  53. let thisdata = data.data[i];
  54. thisdata.key = i;
  55. thisdata.sort = thisdata.cSort;
  56. theArr.push(thisdata);
  57. }
  58. }
  59. this.setState({
  60. dataSource: theArr,
  61. pagination: false,
  62. });
  63. }.bind(this),
  64. }).always(
  65. function () {
  66. this.setState({
  67. loading: false,
  68. });
  69. }.bind(this)
  70. );
  71. },
  72. getInitialState() {
  73. return {
  74. rotateDeg: 0,
  75. visible: false,
  76. avisible: false,
  77. loading: false,
  78. declarationBatch: 1,
  79. dataInfor: {},
  80. addnextVisible:false,
  81. jsDate: [],
  82. replenishUrl: [],
  83. auditStatus: 0,
  84. textFileList: [],
  85. videoFileList: [],
  86. previewVisibles: false,
  87. pictureUrl: [],
  88. pictureUrlMin: [],
  89. columns: [
  90. {
  91. title: "业务项目名称",
  92. dataIndex: "commodityName",
  93. key: "commodityName",
  94. render: (text, record) => {
  95. return text && text.length > 6 ? (
  96. <span title={text}>
  97. {text.substr(0, 8) + "-" + record.id}...
  98. </span>
  99. ) : (
  100. text + "-" + record.id
  101. );
  102. },
  103. },
  104. {
  105. title: "项目类别",
  106. dataIndex: "cname",
  107. key: "cname",
  108. },
  109. {
  110. title: "项目数量",
  111. dataIndex: "commodityQuantity",
  112. key: "commodityQuantity",
  113. render: (text, record) => {
  114. if (record.splitStatus == 1) {
  115. return (
  116. <span>
  117. {text}{" "}
  118. <Tag
  119. color="#108ee9"
  120. onClick={(e) => {
  121. e.stopPropagation();
  122. this.showRes(record);
  123. }}
  124. >
  125. 已拆
  126. </Tag>
  127. </span>
  128. );
  129. } else {
  130. return text;
  131. }
  132. },
  133. },
  134. {
  135. title: "服务市价(万元)",
  136. dataIndex: "commodityPrice",
  137. key: "commodityPrice",
  138. },
  139. {
  140. title: "项目状态",
  141. dataIndex: "projectStatus",
  142. key: "projectStatus",
  143. render: (text) => {
  144. return getProjectName(text);
  145. },
  146. },
  147. {
  148. title: "证书编号",
  149. dataIndex: "certificateNumber",
  150. key: "certificateNumber",
  151. },
  152. {
  153. title: "是否主要项目",
  154. dataIndex: "main",
  155. key: "main",
  156. render: (text) => {
  157. return text ? "是" : "否";
  158. },
  159. },
  160. {
  161. title: "项目说明",
  162. dataIndex: "taskComment",
  163. key: "taskComment",
  164. render: (text) => {
  165. return text && text.length > 8 ? (
  166. <span title={text}>{text.substr(0, 8)}...</span>
  167. ) : (
  168. text
  169. );
  170. },
  171. },
  172. ],
  173. columnsX: [
  174. {
  175. title: "流程",
  176. dataIndex: "processName",
  177. key: "processName",
  178. },
  179. {
  180. title: "操作人",
  181. dataIndex: "adminName",
  182. key: "adminName",
  183. },
  184. {
  185. title: "时间",
  186. dataIndex: "createDate",
  187. key: "createDate",
  188. },
  189. ],
  190. ContactsListsNew: [
  191. {
  192. title: "项目名称",
  193. dataIndex: "commodityName",
  194. key: "commodityName",
  195. render: (text, record) => {
  196. return <span>{text + "-" + record.tid}</span>;
  197. },
  198. },
  199. {
  200. title: "项目分类",
  201. dataIndex: "projectType",
  202. key: "projectType",
  203. render: (text) => {
  204. let arr = this.state.dataSource || [];
  205. let str = "";
  206. for (let i = 0; i < arr.length; i++) {
  207. if (this.state.dataSource[i].sort == text) {
  208. str = this.state.dataSource[i].cname;
  209. return <span>{str}</span>;
  210. }
  211. }
  212. },
  213. },
  214. {
  215. title: "催款科目",
  216. dataIndex: "dunTypeName",
  217. key: "dunTypeName",
  218. render: (text, record) => {
  219. if (record.customizeName) {
  220. return text + record.customizeName;
  221. }
  222. return <span>{text}</span>;
  223. },
  224. },
  225. {
  226. title: "时间(天)",
  227. dataIndex: "waitDay",
  228. key: "waitDay",
  229. render: (text, record) => {
  230. if (record.dunTypeName) {
  231. if (record.customizeTimes) {
  232. return record.customizeTimes;
  233. }
  234. return <span>{text}</span>;
  235. }
  236. },
  237. },
  238. {
  239. title: "金额(万元)",
  240. dataIndex: "money",
  241. key: "money",
  242. render: (text, record) => {
  243. if (record.dunTypeName) {
  244. if (record.appropriationRatio && !record.money) {
  245. return <span>{record.appropriationRatio}(拨款比例)</span>;
  246. } else if (record.appropriationRatio && record.money) {
  247. return (
  248. <span>
  249. {text}(比例:{record.appropriationRatio})
  250. </span>
  251. );
  252. } else {
  253. return <span>{text}</span>;
  254. }
  255. }
  256. },
  257. },
  258. {
  259. title: "服务年限",
  260. dataIndex: "startDate",
  261. key: "startDate",
  262. render: (text, record) => {
  263. if (record.dunTypeName) {
  264. return <span>{text}</span>;
  265. }
  266. },
  267. },
  268. {
  269. title: "催款状态",
  270. dataIndex: "status",
  271. key: "status",
  272. render: (text) => {
  273. return <span>{text == 1 ? "已启动" : "未启动"}</span>;
  274. },
  275. },
  276. ],
  277. ContactsLists: [
  278. {
  279. title: "催款科目",
  280. dataIndex: "dunSubject",
  281. key: "dunSubject",
  282. render: (text) => {
  283. return getjiedian(text);
  284. },
  285. },
  286. {
  287. title: "金额(万元)",
  288. dataIndex: "money",
  289. key: "money",
  290. },
  291. {
  292. title: "催款状态",
  293. dataIndex: "dunStatus",
  294. key: "dunStatus",
  295. render: (text) => {
  296. return getCuikuan(text);
  297. },
  298. },
  299. ],
  300. };
  301. },
  302. //点击打卡项目详情
  303. tableRowClick(record) {
  304. if (record.type == "1") {
  305. this.setState({
  306. displayFees: "block",
  307. costReduction: record.costReduction,
  308. officialCost: record.officialCost,
  309. });
  310. }else{
  311. this.setState({
  312. displayFees: "none",
  313. });
  314. }
  315. this.setState({
  316. jid: record.id, //项目ID
  317. kid: record.commodityId, //商品ID
  318. commodityName: record.commodityName, //金额
  319. commodityPrice: record.commodityPrice, //金额
  320. commodityQuantity: record.commodityQuantity, //数量
  321. taskComment: record.taskComment, //备注
  322. main: record.main.toString(), //是否为主要
  323. addnextVisible: true,
  324. dataInfor:record,
  325. addState: 0,
  326. });
  327. },
  328. //项目详情关闭
  329. nextCancel() {
  330. this.setState({
  331. addnextVisible: false,
  332. displayFees: "none",
  333. officialCost: "", //是否有官费
  334. costReduction: "", //是否有费减
  335. });
  336. },
  337. // 拆分详细
  338. showRes(record) {
  339. this.setState({
  340. resVisible: true,
  341. resRecord: record,
  342. });
  343. },
  344. resCancel() {
  345. this.setState({
  346. resVisible: false,
  347. });
  348. },
  349. loadData(record) {
  350. this.state.orderList = [];
  351. $.ajax({
  352. method: "get",
  353. dataType: "json",
  354. crossDomain: false,
  355. url: globalConfig.context + "/api/admin/newOrder/getOrderNewDetail",
  356. data: {
  357. orderNo: record ? record.orderNo : this.props.data.orderNo,
  358. },
  359. success: function (data) {
  360. let thisData = data.data;
  361. if (!thisData) {
  362. if (data.error && data.error.length) {
  363. message.warning(data.error[0].message);
  364. }
  365. thisData = {};
  366. }
  367. this.setState({
  368. id: thisData.id,
  369. orderList: thisData,
  370. approval:
  371. thisData.approval == 0
  372. ? thisData.approval.toString()
  373. : thisData.approval,
  374. orderRemarks: thisData.orderRemarks,
  375. orgCodeUrl: thisData.contractPictureUrl
  376. ? splitUrl(
  377. thisData.contractPictureUrl,
  378. ",",
  379. globalConfig.avatarHost + "/upload"
  380. )
  381. : [],
  382. replenishUrl: thisData.agreementUrl
  383. ? splitUrl(
  384. thisData.agreementUrl,
  385. ",",
  386. globalConfig.avatarHost + "/upload"
  387. )
  388. : [],
  389. orderNo: thisData.orderNo, //订单编号
  390. buyerId: thisData.buyerId,
  391. depName: thisData.depName,
  392. outsource: thisData.outsource == 0 ? "否" : "是",
  393. });
  394. }.bind(this),
  395. }).always(
  396. function () {
  397. this.setState({
  398. loading: false,
  399. });
  400. }.bind(this)
  401. );
  402. },
  403. jdDate(record) {
  404. $.ajax({
  405. method: "get",
  406. dataType: "json",
  407. crossDomain: false,
  408. url: globalConfig.context + "/api/admin/newOrder/selectOrderDun",
  409. data: {
  410. orderNo: record ? record.orderNo : this.props.data.orderNo,
  411. },
  412. success: function (data) {
  413. let thisData = data.data;
  414. if (!thisData.length) {
  415. if (data.error && data.error.length) {
  416. message.warning(data.error[0].message);
  417. }
  418. thisData = {};
  419. } else {
  420. this.setState({
  421. jsDate: thisData,
  422. });
  423. }
  424. }.bind(this),
  425. }).always(
  426. function () {
  427. this.setState({
  428. loading: false,
  429. });
  430. }.bind(this)
  431. );
  432. },
  433. rizhi() {
  434. this.setState({
  435. loading: true,
  436. });
  437. $.ajax({
  438. method: "get",
  439. dataType: "json",
  440. crossDomain: false,
  441. url: "/api/admin/newOrder/selectOrderLog",
  442. data: {
  443. orderNo: this.props.data.orderNo,
  444. },
  445. success: function (data) {
  446. let theArr = [];
  447. let thisData = data.data;
  448. if (!thisData.length) {
  449. if (data.error && data.error.length) {
  450. message.warning(data.error[0].message);
  451. }
  452. thisData = {};
  453. } else {
  454. for (let i = 0; i < data.data.length; i++) {
  455. let thisdata = data.data[i];
  456. theArr.push({
  457. processName: thisdata.processName,
  458. adminName: thisdata.adminName,
  459. createDate: thisdata.createDate,
  460. remarks: thisdata.remarks,
  461. });
  462. }
  463. }
  464. this.setState({
  465. dataSourceX: theArr,
  466. });
  467. }.bind(this),
  468. }).always(
  469. function () {
  470. this.setState({
  471. loading: false,
  472. });
  473. }.bind(this)
  474. );
  475. },
  476. getOrderLog() {
  477. this.setState({
  478. avisible: true,
  479. });
  480. this.rizhi();
  481. },
  482. closeOrderLog() {
  483. this.setState({
  484. avisible: false,
  485. });
  486. },
  487. getPictureUrl(e) {
  488. this.setState({ pictureUrl: e });
  489. },
  490. componentWillMount() {
  491. if (this.props.data.orderNo) {
  492. this.loadData();
  493. this.loadXmu();
  494. this.jdDate();
  495. // this.jiedian(this.props.data.orderNo);
  496. this.jiedianNew(this.props.data.orderNo);
  497. } else {
  498. this.state.data = {};
  499. }
  500. },
  501. componentWillReceiveProps(nextProps) {
  502. if (!this.props.visible && nextProps.visible) {
  503. this.state.textFileList = [];
  504. this.state.videoFileList = [];
  505. if (nextProps.data.orderNo) {
  506. this.loadData(nextProps.data);
  507. this.loadXmu(nextProps.data);
  508. this.jdDate(nextProps.data);
  509. // this.jiedian(nextProps.data.orderNo);
  510. this.jiedianNew(nextProps.data.orderNo);
  511. } else {
  512. this.state.data = {};
  513. this.state.pictureUrl = [];
  514. this.state.pictureUrlMin = [];
  515. }
  516. this.props.form.resetFields();
  517. }
  518. },
  519. downImg() {
  520. let num = 0;
  521. for (let i = 0; i < this.state.orgCodeUrl.length; i++) {
  522. if (this.state.orgCodeUrl[i].url == this.state.previewImage) {
  523. num = i;
  524. }
  525. }
  526. if (num == this.state.orgCodeUrl.length - 1) {
  527. return message.warning("已经是最后一张了哦");
  528. }
  529. this.state.previewImage = this.state.orgCodeUrl[num + 1].url;
  530. this.setState({
  531. previewImage: this.state.previewImage,
  532. rotateDeg: 0,
  533. });
  534. },
  535. upImg() {
  536. let num = 0;
  537. for (let i = 0; i < this.state.orgCodeUrl.length; i++) {
  538. if (this.state.orgCodeUrl[i].url == this.state.previewImage) {
  539. num = i;
  540. }
  541. }
  542. if (num == 0) {
  543. return message.warning("已经是第一张了哦");
  544. }
  545. this.state.previewImage = this.state.orgCodeUrl[num - 1].url;
  546. this.setState({
  547. previewImage: this.state.previewImage,
  548. rotateDeg: 0,
  549. });
  550. },
  551. rotate() {
  552. let rotateDeg = this.state.rotateDeg + 90;
  553. this.setState({
  554. rotateDeg,
  555. });
  556. },
  557. downImgs() {
  558. let num = 0;
  559. for (let i = 0; i < this.state.replenishUrl.length; i++) {
  560. if (this.state.replenishUrl[i].url == this.state.previewImage) {
  561. num = i;
  562. }
  563. }
  564. if (num == this.state.replenishUrl.length - 1) {
  565. return message.warning("已经是最后一张了哦");
  566. }
  567. this.state.previewImage = this.state.replenishUrl[num + 1].url;
  568. this.setState({
  569. previewImage: this.state.previewImage,
  570. rotateDeg: 0,
  571. });
  572. },
  573. upImgs() {
  574. let num = 0;
  575. for (let i = 0; i < this.state.replenishUrl.length; i++) {
  576. if (this.state.replenishUrl[i].url == this.state.previewImage) {
  577. num = i;
  578. }
  579. }
  580. if (num == 0) {
  581. return message.warning("已经是第一张了哦");
  582. }
  583. this.state.previewImage = this.state.replenishUrl[num - 1].url;
  584. this.setState({
  585. previewImage: this.state.previewImage,
  586. rotateDeg: 0,
  587. });
  588. },
  589. rotates() {
  590. let rotateDeg = this.state.rotateDeg + 90;
  591. this.setState({
  592. rotateDeg,
  593. });
  594. },
  595. //节点列表
  596. // jiedian(orderNos) {
  597. // $.ajax({
  598. // method: "get",
  599. // dataType: "json",
  600. // crossDomain: false,
  601. // url: globalConfig.context + "/api/admin/newOrder/selectOrderDun",
  602. // data: {
  603. // orderNo: orderNos,
  604. // },
  605. // success: function (data) {
  606. // let theArr = [];
  607. // let thisData = [];
  608. // if (data.error.length || data.data.list == "") {
  609. // if (data.error && data.error.length) {
  610. // message.warning(data.error[0].message);
  611. // }
  612. // } else {
  613. // for (let i = 0; i < data.data.length; i++) {
  614. // thisData = data.data[i];
  615. // theArr.push({
  616. // key: i,
  617. // dunSubject: thisData.dunSubject
  618. // ? thisData.dunSubject.toString()
  619. // : "", //催款科目
  620. // id: thisData.id, //节点Id
  621. // money: thisData.money, //催款金额
  622. // dunStatus: thisData.dunStatus, //催款状态
  623. // orderNo: thisData.orderNo,
  624. // });
  625. // }
  626. // this.setState({
  627. // contactList: theArr,
  628. // });
  629. // }
  630. // }.bind(this),
  631. // }).always(
  632. // function () {
  633. // this.setState({
  634. // loading: false,
  635. // });
  636. // }.bind(this)
  637. // );
  638. // },
  639. //查看催款节点
  640. jiedianNew(orderNos) {
  641. $.ajax({
  642. method: "get",
  643. dataType: "json",
  644. crossDomain: false,
  645. url:
  646. globalConfig.context + "/api/admin/newOrderDun/selectListNewOrderDun",
  647. data: {
  648. orderNo: orderNos,
  649. },
  650. success: function (data) {
  651. if (data.error && data.error.length) {
  652. message.warning(data.error[0].message);
  653. } else {
  654. let theArr = [];
  655. let thisData = [];
  656. let arr = data.data || [];
  657. let totalCui = 0;
  658. for (let i = 0; i < arr.length; i++) {
  659. thisData = arr[i];
  660. totalCui += +thisData.money;
  661. theArr.push({
  662. key: i,
  663. dunSubject: thisData.dunSubject
  664. ? thisData.dunSubject.toString()
  665. : "", //催款科目
  666. id: thisData.id, //节点Id
  667. money: thisData.money, //催款金额
  668. // orderNo: record ? record.orderNo : this.props.datauser.orderNo,
  669. commodityName: thisData.commodityName,
  670. projectType: thisData.projectType,
  671. dunTypeName: thisData.dunTypeName,
  672. status: thisData.status,
  673. waitDay: thisData.waitDay,
  674. effectiveCount: thisData.effectiveCount,
  675. startDate: thisData.startDate,
  676. dunType: thisData.dunType,
  677. appropriationRatio: thisData.appropriationRatio,
  678. customizeName: thisData.customizeName,
  679. customizeTimes: thisData.customizeTimes,
  680. tid: thisData.tid,
  681. });
  682. }
  683. if (!totalCui) {
  684. totalCui = 0;
  685. }
  686. totalCui = (Math.round(totalCui * 1000000) / 1000000).toFixed(6);
  687. this.setState({
  688. contactListNew: theArr,
  689. totalCui,
  690. });
  691. }
  692. }.bind(this),
  693. }).always(
  694. function () {
  695. this.setState({
  696. loading: false,
  697. });
  698. }.bind(this)
  699. );
  700. },
  701. render() {
  702. const theData = this.state.orderList || {};
  703. const FormItem = Form.Item;
  704. const formItemLayout = {
  705. labelCol: { span: 10 },
  706. wrapperCol: { span: 12 },
  707. };
  708. const jsDate = this.state.jsDate || [];
  709. const cuiDataList = this.state.contactList || [];
  710. return (
  711. <div className="login">
  712. {this.state.resVisible ? (
  713. <ResolutionDetail
  714. cancel={this.resCancel}
  715. detail={this.state.resRecord}
  716. visible={this.state.resVisible}
  717. id={this.state.resRecord.orderNo}
  718. />
  719. ) : (
  720. ""
  721. )}
  722. <Form layout="horizontal" id="demand-form">
  723. <Spin spinning={this.state.loading}>
  724. <div className="clearfix">
  725. <FormItem
  726. className="half-item"
  727. {...formItemLayout}
  728. label="订单编号"
  729. >
  730. <span>{theData.orderNo}</span>
  731. </FormItem>
  732. <FormItem
  733. className="half-item"
  734. {...formItemLayout}
  735. label="签单时间"
  736. >
  737. <span>{theData.signDate}</span>
  738. </FormItem>
  739. <FormItem
  740. className="half-item"
  741. {...formItemLayout}
  742. label="客户名称"
  743. >
  744. <span>{theData.userName}</span>
  745. </FormItem>
  746. <FormItem
  747. className="half-item"
  748. {...formItemLayout}
  749. label="流程状态"
  750. >
  751. <span>{getProcessStatus(theData.processStatus)}</span>
  752. </FormItem>
  753. <FormItem
  754. className="half-item"
  755. {...formItemLayout}
  756. label="订单类型"
  757. >
  758. <span>{getNewOrderType(theData.orderType)}</span>
  759. </FormItem>
  760. <FormItem
  761. className="half-item"
  762. {...formItemLayout}
  763. label="结算状态"
  764. >
  765. <span>{getLiquidationStatus(theData.liquidationStatus)}</span>
  766. </FormItem>
  767. <FormItem
  768. className="half-item"
  769. {...formItemLayout}
  770. label="签单总金额(万元)"
  771. >
  772. <span>{theData.totalAmount}</span>
  773. </FormItem>
  774. <FormItem
  775. className="half-item"
  776. {...formItemLayout}
  777. label="首付款(万元)"
  778. >
  779. <span>{theData.firstAmount}</span>
  780. </FormItem>
  781. <FormItem
  782. className="half-item"
  783. {...formItemLayout}
  784. label="已收款(万元)"
  785. >
  786. <span>{theData.settlementAmount}</span>
  787. </FormItem>
  788. <FormItem
  789. className="half-item"
  790. {...formItemLayout}
  791. label="是否特批"
  792. >
  793. <span>{getApproval(theData.approval)}</span>
  794. </FormItem>
  795. {/*<FormItem*/}
  796. {/* className="half-item"*/}
  797. {/* {...formItemLayout}*/}
  798. {/* label="是否外包"*/}
  799. {/*>*/}
  800. {/* <span>{this.state.outsource}</span>*/}
  801. {/*</FormItem>*/}
  802. {this.props.data.orderStatus == "6" && (
  803. <FormItem
  804. className="half-item"
  805. {...formItemLayout}
  806. label="已退(万元)"
  807. >
  808. <span>{this.props.data.refundAmount}</span>
  809. </FormItem>
  810. )}
  811. </div>
  812. <div className="clearfix">
  813. <FormItem
  814. labelCol={{ span: 5 }}
  815. wrapperCol={{ span: 18 }}
  816. label="合同扫描件"
  817. >
  818. {/*<Upload*/}
  819. {/* className="demandDetailShow-upload"*/}
  820. {/* listType="picture-card"*/}
  821. {/* fileList={this.state.orgCodeUrl}*/}
  822. {/* onPreview={(file) => {*/}
  823. {/* this.setState({*/}
  824. {/* previewImage: file.url || file.thumbUrl,*/}
  825. {/* previewVisible: true,*/}
  826. {/* });*/}
  827. {/* }}*/}
  828. {/*/>*/}
  829. <div style={{paddingTop:'10px',paddingBottom:'10px'}}>
  830. {this.state.orgCodeUrl ? <ImgList fileList={this.state.orgCodeUrl} ItemWidth={'96px'}/> : <div/>}
  831. </div>
  832. <Modal
  833. maskClosable={false}
  834. footer={null}
  835. width={"50%"}
  836. visible={this.state.previewVisible}
  837. onCancel={() => {
  838. this.setState({ previewVisible: false, rotateDeg: 0 });
  839. }}
  840. >
  841. {/* <div
  842. onClick={this.upImg}
  843. className="up-btn"
  844. style={{
  845. cursor: "pointer",
  846. transition: "all .5s",
  847. opacity: ".2",
  848. width: "41px",
  849. height: "69px",
  850. backgroundColor: "rgba(0,0,0,.5)",
  851. position: "absolute",
  852. top: "50%",
  853. left: 16,
  854. transform: "translateY(-50%)",
  855. zIndex: 1
  856. }}
  857. >
  858. <span
  859. style={{
  860. position: "absolute",
  861. border: "1px solid #fff",
  862. width: "20px",
  863. height: "20px",
  864. left: "60%",
  865. top: "50%",
  866. transform: "translate(-50%, -50%) rotate(45deg)",
  867. borderTop: "none",
  868. borderRight: "none"
  869. }}
  870. ></span>
  871. </div>
  872. <div
  873. onClick={this.rotate}
  874. style={{
  875. textAlign: "center",
  876. lineHeight: "30px",
  877. color: "#000",
  878. cursor: "pointer",
  879. transition: "all .5s",
  880. width: "50px",
  881. height: "30px",
  882. backgroundColor: "white",
  883. position: "absolute",
  884. bottom: "-30",
  885. left: "50%",
  886. transform: "translateX(-50%)",
  887. zIndex: 1,
  888. borderRadius: "5px",
  889. border: "1px solid #ccc"
  890. }}
  891. >
  892. 旋转
  893. </div>
  894. <div
  895. onClick={this.downImg}
  896. className="up-btn"
  897. style={{
  898. cursor: "pointer",
  899. transition: "all .5s",
  900. opacity: ".2",
  901. width: "41px",
  902. height: "69px",
  903. backgroundColor: "rgba(0,0,0,.5)",
  904. position: "absolute",
  905. top: "50%",
  906. right: 16,
  907. transform: "translateY(-50%)",
  908. zIndex: 1
  909. }}
  910. >
  911. <span
  912. style={{
  913. position: "absolute",
  914. border: "1px solid #fff",
  915. width: "20px",
  916. height: "20px",
  917. left: "40%",
  918. top: "50%",
  919. transform: "translate(-50%, -50%) rotate(225deg)",
  920. borderTop: "none",
  921. borderRight: "none"
  922. }}
  923. ></span>
  924. </div> */}
  925. <img
  926. alt=""
  927. style={{
  928. width: "100%",
  929. transform: `rotate(${this.state.rotateDeg}deg)`,
  930. }}
  931. src={this.state.previewImage || ""}
  932. />
  933. <Button
  934. onClick={this.rotate}
  935. style={{
  936. position: "relative",
  937. left: "50%",
  938. transform: "translateX(-50%)",
  939. }}
  940. >
  941. 旋转
  942. </Button>
  943. <Button
  944. onClick={this.upImg}
  945. style={{
  946. position: "absolute",
  947. left: -81,
  948. top: "50%",
  949. transform: "translateY(-50%)",
  950. }}
  951. >
  952. 上一张
  953. </Button>
  954. <Button
  955. onClick={this.downImg}
  956. style={{
  957. position: "absolute",
  958. right: -81,
  959. top: "50%",
  960. transform: "translateY(-50%)",
  961. }}
  962. >
  963. 下一张
  964. </Button>
  965. </Modal>
  966. <Button
  967. style={{
  968. float: "right",
  969. marginRight: "140px",
  970. marginTop: "20px",
  971. }}
  972. onClick={this.getOrderLog}
  973. >
  974. 查看订单日志
  975. </Button>
  976. </FormItem>
  977. <FormItem
  978. labelCol={{ span: 5 }}
  979. wrapperCol={{ span: 18 }}
  980. label="补充协议"
  981. >
  982. {/*<Upload*/}
  983. {/* className="demandDetailShow-upload"*/}
  984. {/* listType="picture-card"*/}
  985. {/* fileList={this.state.replenishUrl}*/}
  986. {/* onPreview={(file) => {*/}
  987. {/* this.setState({*/}
  988. {/* previewImage: file.url || file.thumbUrl,*/}
  989. {/* previewVisibles: true,*/}
  990. {/* });*/}
  991. {/* }}*/}
  992. {/*/>*/}
  993. <div style={{paddingTop:'10px',paddingBottom:'10px'}}>
  994. {this.state.replenishUrl ? <ImgList domId={'orderDetail1'} fileList={this.state.replenishUrl}/> : <div/>}
  995. </div>
  996. <Modal
  997. maskClosable={false}
  998. footer={null}
  999. width={"50%"}
  1000. visible={this.state.previewVisibles}
  1001. onCancel={() => {
  1002. this.setState({ previewVisibles: false, rotateDeg: 0 });
  1003. }}
  1004. >
  1005. {/* <div
  1006. onClick={this.upImg}
  1007. className="up-btn"
  1008. style={{
  1009. cursor: "pointer",
  1010. transition: "all .5s",
  1011. opacity: ".2",
  1012. width: "41px",
  1013. height: "69px",
  1014. backgroundColor: "rgba(0,0,0,.5)",
  1015. position: "absolute",
  1016. top: "50%",
  1017. left: 16,
  1018. transform: "translateY(-50%)",
  1019. zIndex: 1
  1020. }}
  1021. >
  1022. <span
  1023. style={{
  1024. position: "absolute",
  1025. border: "1px solid #fff",
  1026. width: "20px",
  1027. height: "20px",
  1028. left: "60%",
  1029. top: "50%",
  1030. transform: "translate(-50%, -50%) rotate(45deg)",
  1031. borderTop: "none",
  1032. borderRight: "none"
  1033. }}
  1034. ></span>
  1035. </div>
  1036. <div
  1037. onClick={this.rotate}
  1038. style={{
  1039. textAlign: "center",
  1040. lineHeight: "30px",
  1041. color: "#000",
  1042. cursor: "pointer",
  1043. transition: "all .5s",
  1044. width: "50px",
  1045. height: "30px",
  1046. backgroundColor: "white",
  1047. position: "absolute",
  1048. bottom: "-30",
  1049. left: "50%",
  1050. transform: "translateX(-50%)",
  1051. zIndex: 1,
  1052. borderRadius: "5px",
  1053. border: "1px solid #ccc"
  1054. }}
  1055. >
  1056. 旋转
  1057. </div>
  1058. <div
  1059. onClick={this.downImg}
  1060. className="up-btn"
  1061. style={{
  1062. cursor: "pointer",
  1063. transition: "all .5s",
  1064. opacity: ".2",
  1065. width: "41px",
  1066. height: "69px",
  1067. backgroundColor: "rgba(0,0,0,.5)",
  1068. position: "absolute",
  1069. top: "50%",
  1070. right: 16,
  1071. transform: "translateY(-50%)",
  1072. zIndex: 1
  1073. }}
  1074. >
  1075. <span
  1076. style={{
  1077. position: "absolute",
  1078. border: "1px solid #fff",
  1079. width: "20px",
  1080. height: "20px",
  1081. left: "40%",
  1082. top: "50%",
  1083. transform: "translate(-50%, -50%) rotate(225deg)",
  1084. borderTop: "none",
  1085. borderRight: "none"
  1086. }}
  1087. ></span>
  1088. </div> */}
  1089. <img
  1090. alt=""
  1091. style={{
  1092. width: "100%",
  1093. transform: `rotate(${this.state.rotateDeg}deg)`,
  1094. }}
  1095. src={this.state.previewImage || ""}
  1096. />
  1097. <Button
  1098. onClick={this.rotates}
  1099. style={{
  1100. position: "relative",
  1101. left: "50%",
  1102. transform: "translateX(-50%)",
  1103. }}
  1104. >
  1105. 旋转
  1106. </Button>
  1107. <Button
  1108. onClick={this.upImgs}
  1109. style={{
  1110. position: "absolute",
  1111. left: -81,
  1112. top: "50%",
  1113. transform: "translateY(-50%)",
  1114. }}
  1115. >
  1116. 上一张
  1117. </Button>
  1118. <Button
  1119. onClick={this.downImgs}
  1120. style={{
  1121. position: "absolute",
  1122. right: -81,
  1123. top: "50%",
  1124. transform: "translateY(-50%)",
  1125. }}
  1126. >
  1127. 下一张
  1128. </Button>
  1129. </Modal>
  1130. </FormItem>
  1131. </div>
  1132. <div className="clearfix">
  1133. <FormItem
  1134. className="half-item"
  1135. {...formItemLayout}
  1136. label="合同编号"
  1137. >
  1138. <span>{theData.contractNo}</span>
  1139. </FormItem>
  1140. <FormItem
  1141. className="half-item"
  1142. {...formItemLayout}
  1143. label="订单部门"
  1144. >
  1145. <span>{theData.depName}</span>
  1146. </FormItem>
  1147. </div>
  1148. <div className="clearfix">
  1149. <FormItem
  1150. labelCol={{ span: 5 }}
  1151. wrapperCol={{ span: 18 }}
  1152. label="订单留言"
  1153. >
  1154. <p style={{ maxWidth: 500, wordWrap: "break-word" }}>
  1155. {this.state.orderRemarks}
  1156. </p>
  1157. </FormItem>
  1158. </div>
  1159. {/* <div className="clearfix">
  1160. <FormItem
  1161. labelCol={{ span: 5 }}
  1162. wrapperCol={{ span: 18 }}
  1163. label="收款节点"
  1164. >
  1165. {jsDate.map(item => {
  1166. return (
  1167. <p>
  1168. {getjiedian(item.dunSubject)} -- {item.money} 万元
  1169. </p>
  1170. );
  1171. })}
  1172. </FormItem>
  1173. </div> */}
  1174. <div className="clearfix">
  1175. <FormItem
  1176. className="half-item"
  1177. {...formItemLayout}
  1178. label="订单负责人"
  1179. >
  1180. <span>{theData.salesmanName}</span>
  1181. </FormItem>
  1182. <FormItem
  1183. className="half-item"
  1184. {...formItemLayout}
  1185. label="订单负责人电话"
  1186. >
  1187. <span>{theData.salesmanMobile}</span>
  1188. </FormItem>
  1189. <FormItem
  1190. className="half-item"
  1191. {...formItemLayout}
  1192. label="当前财务负责人"
  1193. >
  1194. <span>{theData.nowFinance}</span>
  1195. </FormItem>
  1196. <FormItem
  1197. className="half-item"
  1198. {...formItemLayout}
  1199. label="当前财务负责人电话"
  1200. >
  1201. <span>{theData.nowFinanceMobile}</span>
  1202. </FormItem>
  1203. {/*<FormItem*/}
  1204. {/* className="half-item"*/}
  1205. {/* {...formItemLayout}*/}
  1206. {/* style={{ opacity: ".5" }}*/}
  1207. {/* label="原订单负责人"*/}
  1208. {/*>*/}
  1209. {/* <span>{theData.oldSalesmanName}</span>*/}
  1210. {/*</FormItem>*/}
  1211. {/*<FormItem*/}
  1212. {/* className="half-item"*/}
  1213. {/* {...formItemLayout}*/}
  1214. {/* style={{ opacity: ".5" }}*/}
  1215. {/* label="原订单负责人电话"*/}
  1216. {/*>*/}
  1217. {/* <span>{theData.oldSalesmanMobile}</span>*/}
  1218. {/*</FormItem>*/}
  1219. {/*<FormItem*/}
  1220. {/* className="half-item"*/}
  1221. {/* {...formItemLayout}*/}
  1222. {/* style={{ opacity: ".5" }}*/}
  1223. {/* label="实际财务操作人"*/}
  1224. {/*>*/}
  1225. {/* <span>{theData.financeName}</span>*/}
  1226. {/*</FormItem>*/}
  1227. {/*<FormItem*/}
  1228. {/* className="half-item"*/}
  1229. {/* {...formItemLayout}*/}
  1230. {/* style={{ opacity: ".5" }}*/}
  1231. {/* label="实际财务操作人电话"*/}
  1232. {/*>*/}
  1233. {/* <span>{theData.financeMobile}</span>*/}
  1234. {/*</FormItem>*/}
  1235. </div>
  1236. {/* <Modal
  1237. visible={this.state.avisible}
  1238. className="admin-desc-content"
  1239. width="800px"
  1240. maskClosable={false}
  1241. title="订单日志"
  1242. footer={null}
  1243. onCancel={this.closeOrderLog}
  1244. >
  1245. <div className="patent-table">
  1246. <Spin spinning={this.state.loading}>
  1247. <Table
  1248. columns={this.state.columnsX}
  1249. dataSource={this.state.dataSourceX}
  1250. pagination={false}
  1251. />
  1252. </Spin>
  1253. </div>
  1254. </Modal> */}
  1255. <OrderRiZi
  1256. dataSourcerizhi={this.state.dataSourceX}
  1257. closeOrderLog={this.closeOrderLog}
  1258. visible={this.state.avisible}
  1259. loading={this.state.loading}
  1260. />
  1261. <div className="clearfix" style={{ marginBottom: 10 }}>
  1262. <p style={{ fontSize: 18, marginLeft: 20 }}>项目业务</p>
  1263. <div className="patent-table">
  1264. <Spin spinning={this.state.loading}>
  1265. <Table
  1266. columns={this.state.columns}
  1267. dataSource={this.state.dataSource}
  1268. pagination={this.state.pagination}
  1269. onRowClick={this.tableRowClick}
  1270. bordered
  1271. size="small"
  1272. />
  1273. </Spin>
  1274. </div>
  1275. </div>
  1276. {/*<div>*/}
  1277. {/* <span style={{ marginLeft: 20, fontSize: "18px" }}>*/}
  1278. {/* 催款节点*/}
  1279. {/* </span>*/}
  1280. {/* <span*/}
  1281. {/* style={{*/}
  1282. {/* display: cuiDataList.length ? "none" : "inline-block",*/}
  1283. {/* marginLeft: 10,*/}
  1284. {/* color: "red",*/}
  1285. {/* }}*/}
  1286. {/* >*/}
  1287. {/* 金额总计(万元): {this.state.totalCui}*/}
  1288. {/* </span>*/}
  1289. {/*</div>*/}
  1290. {/*<div className="clearfix">*/}
  1291. {/* <Spin spinning={this.state.loading}>*/}
  1292. {/* <Form layout="horizontal" id="demand-form">*/}
  1293. {/* <Table*/}
  1294. {/* pagination={false}*/}
  1295. {/* bordered*/}
  1296. {/* size="small"*/}
  1297. {/* columns={*/}
  1298. {/* cuiDataList.length*/}
  1299. {/* ? this.state.ContactsLists*/}
  1300. {/* : this.state.ContactsListsNew*/}
  1301. {/* }*/}
  1302. {/* dataSource={*/}
  1303. {/* cuiDataList.length*/}
  1304. {/* ? this.state.contactList*/}
  1305. {/* : this.state.contactListNew*/}
  1306. {/* }*/}
  1307. {/* />*/}
  1308. {/* <Col*/}
  1309. {/* span={24}*/}
  1310. {/* offset={9}*/}
  1311. {/* style={{ marginTop: "15px" }}*/}
  1312. {/* ></Col>*/}
  1313. {/* </Form>*/}
  1314. {/* </Spin>*/}
  1315. {/*</div>*/}
  1316. </Spin>
  1317. </Form>
  1318. {this.state.addnextVisible && <ProjectDetailsReadOnly
  1319. infor={this.state.dataInfor}
  1320. visible={this.state.addnextVisible}
  1321. onCancel={this.nextCancel}
  1322. />}
  1323. </div>
  1324. );
  1325. },
  1326. })
  1327. );
  1328. export default OrderDetail;