changeDetailYxy.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727
  1. import React, { Component } from "react";
  2. import { Form, Tooltip, Modal, Button, message, Table, Input } from "antd";
  3. import AgreeButton from "./agreeButton.js";
  4. import Rizhi from "./rizhi.js";
  5. import { getProcessStatusNew, changeColor } from "@/tools.js";
  6. import { shenghePeo } from "@/tools.js";
  7. import $ from "jquery/src/ajax";
  8. import tongguo from "../../../../../../image/tongguo.png";
  9. import quxiao from "../../../../../../image/quxiao.png";
  10. import ProAndCuiList from "./proAndCuiList.jsx";
  11. import Refund from "./refund.js"
  12. import ReactToPrint from "react-to-print";
  13. import ImgList from "../../../../common/imgList";
  14. const formItemLayout = {
  15. labelCol: { span: 8 },
  16. wrapperCol: { span: 14 }
  17. };
  18. const changeType = [
  19. {
  20. value: "0",
  21. key: "退单退款"
  22. },
  23. {
  24. value: "1",
  25. key: "项目及金额变更"
  26. },
  27. {
  28. value: "2",
  29. key: "仅项目变更"
  30. },
  31. {
  32. value: "3",
  33. key: "仅金额变更"
  34. },
  35. {
  36. value: "4",
  37. key: "重报"
  38. },
  39. {
  40. value: "5",
  41. key: "赠送"
  42. }
  43. ];
  44. const getChangeType = function (e) {
  45. if (e || e == 0) {
  46. let str = e.toString();
  47. let theType = "";
  48. changeType.map(function (item) {
  49. if (item.value == str) {
  50. theType = item.key;
  51. }
  52. });
  53. return theType;
  54. }
  55. };
  56. class Itemlist extends Component {
  57. constructor(props) {
  58. super(props);
  59. }
  60. render() {
  61. let pageData = this.props.pageData;
  62. return (
  63. <div className="clearfix" style={{ height: "30px", overflow: "hidden" }}>
  64. {pageData.labelA !== '当前进度' ? <Form.Item
  65. label={pageData.labelA}
  66. {...pageData.formItemLayoutA}
  67. className="half-item"
  68. >
  69. <div>{pageData.dataA}</div>
  70. </Form.Item> :
  71. <Form.Item
  72. label={pageData.labelA}
  73. {...pageData.formItemLayoutA}
  74. className="half-item"
  75. >
  76. <Tooltip placement="topLeft" title={pageData.dataA}>
  77. <div style={{
  78. width: '350px !important',
  79. whiteSpace: 'nowrap',
  80. wordBreak: 'break-all',
  81. overflow: 'hidden',
  82. textOverflow: 'ellipsis',
  83. }}>{pageData.dataA}</div>
  84. </Tooltip>
  85. </Form.Item>}
  86. <Form.Item
  87. label={pageData.labelB}
  88. {...pageData.formItemLayoutB}
  89. className="half-item"
  90. >
  91. <span>{pageData.dataB}</span>
  92. </Form.Item>
  93. </div>
  94. );
  95. }
  96. }
  97. class ChangeDetail extends Component {
  98. constructor(props) {
  99. super(props);
  100. this.state = {
  101. rotateDeg: 0,
  102. previewVisible: false,
  103. dataSource: [],
  104. // 累计回收退票
  105. refundInvoice: 0,
  106. // 退票数组
  107. contactList: [],
  108. rejectState: 0,
  109. // 收款信息
  110. proceedsData: [],
  111. proceedsTotal: this.props.proceedsTotal,
  112. // 开票信息
  113. invoiceData: [],
  114. invoiceTotal: this.props.invoiceTotal,
  115. cost: 10,
  116. refund: 8,
  117. // 测试添加退票
  118. contactList: this.props.contactList,
  119. ContactsLists: [
  120. {
  121. title: "金额(万元)",
  122. dataIndex: "amount",
  123. key: "amount",
  124. render: (text, record) => {
  125. return (
  126. <div>
  127. 实际回收退票(万元)
  128. <Input
  129. value={record.amount}
  130. placeholder="请输入金额(必填项)"
  131. disabled={record.load}
  132. key={record.id}
  133. required="required"
  134. onChange={e => {
  135. record.amount = e.target.value;
  136. this.setState({ contactList: this.state.contactList });
  137. }}
  138. style={{ width: "120px" }}
  139. />
  140. </div>
  141. );
  142. }
  143. },
  144. {
  145. title: "时间",
  146. dataIndex: "createTimes",
  147. key: "createTimes",
  148. render: (text, record) => {
  149. return <div>{record.createTimes}</div>;
  150. }
  151. }
  152. ]
  153. };
  154. this.getOrgCodeUrl = this.getOrgCodeUrl.bind(this);
  155. this.downImg = this.downImg.bind(this);
  156. this.upImg = this.upImg.bind(this);
  157. this.rotate = this.rotate.bind(this);
  158. this.moneyOld = this.moneyOld.bind(this);
  159. }
  160. getOrgCodeUrl(e) {
  161. this.setState({
  162. orgCodeUrl: e
  163. });
  164. }
  165. componentDidMount() { }
  166. // loadData() {
  167. // $.ajax({
  168. // method: "get",
  169. // dataType: "json",
  170. // async: false,
  171. // crossDomain: false,
  172. // url: globalConfig.context + "/api/admin/orderChange/orderChangeLogList",
  173. // data: {
  174. // changeId: this.props.data.id
  175. // },
  176. // success: function(data) {
  177. // if (data.error.length || data.data.list == "") {
  178. // if (data.error && data.error.length) {
  179. // message.warning(data.error[0].message);
  180. // }
  181. // } else {
  182. // this.setState({
  183. // dataSource: data.data
  184. // });
  185. // }
  186. // }.bind(this)
  187. // });
  188. // }
  189. componentWillReceiveProps(nextProps) {
  190. this.setState({
  191. paymentTimes: nextProps.data.paymentTimes,
  192. paymentAmount: nextProps.data.paymentAmount,
  193. invoiceTimes: nextProps.data.invoiceTimes,
  194. invoiceAmount: nextProps.data.invoiceAmount,
  195. cwCost: nextProps.data.cwCost,
  196. refundableAmount: nextProps.data.refundableAmount,
  197. cwRemarks: nextProps.data.cwRemarks,
  198. contactList: nextProps.contactList,
  199. refundInvoice: nextProps.data.refundInvoice
  200. });
  201. }
  202. downImg() {
  203. let num = 0;
  204. for (let i = 0; i < this.props.pictureUrl.length; i++) {
  205. if (this.props.pictureUrl[i].url == this.state.previewImage) {
  206. num = i;
  207. }
  208. }
  209. if (num == this.props.pictureUrl.length - 1) {
  210. return message.warning("已经是最后一张了哦");
  211. }
  212. this.state.previewImage = this.props.pictureUrl[num + 1].url;
  213. this.setState({
  214. previewImage: this.state.previewImage,
  215. rotateDeg: 0
  216. });
  217. }
  218. upImg() {
  219. let num = 0;
  220. for (let i = 0; i < this.props.pictureUrl.length; i++) {
  221. if (this.props.pictureUrl[i].url == this.state.previewImage) {
  222. num = i;
  223. }
  224. }
  225. if (num == 0) {
  226. return message.warning("已经是第一张了哦");
  227. }
  228. this.state.previewImage = this.props.pictureUrl[num - 1].url;
  229. this.setState({
  230. previewImage: this.state.previewImage,
  231. rotateDeg: 0
  232. });
  233. }
  234. rotate() {
  235. let rotateDeg = this.state.rotateDeg + 90;
  236. this.setState({
  237. rotateDeg
  238. });
  239. }
  240. moneyOld(str, money) {
  241. if (money) {
  242. return (
  243. <span style={{ color: "red", fontWeight: 900, fontSize: 16 }}>
  244. {str}(原合同金额{money}万元)
  245. </span>
  246. );
  247. } else {
  248. return (
  249. <span style={{ color: "red", fontWeight: 900, fontSize: 16 }}>
  250. {str}
  251. </span>
  252. );
  253. }
  254. }
  255. render() {
  256. // const loadData = [
  257. // {
  258. // labelA: "",
  259. // formItemLayoutA: formItemLayout,
  260. // dataA
  261. // }
  262. // ];
  263. const pageData = [
  264. {
  265. labelA: "客户名称",
  266. formItemLayoutA: formItemLayout,
  267. dataA: this.props.data.userName,
  268. labelB: "合同编号",
  269. formItemLayoutB: formItemLayout,
  270. dataB: this.props.data.contractNo
  271. },
  272. {
  273. labelA: "时间",
  274. formItemLayoutA: formItemLayout,
  275. dataA: this.props.data.createTimes,
  276. labelB: "发起人",
  277. formItemLayoutB: formItemLayout,
  278. dataB: this.props.data.applicant
  279. },
  280. {
  281. labelA: "当前进度",
  282. formItemLayoutA: formItemLayout,
  283. // 当前是咨询师以及咨询师经理时使用shenhePeo函数,其他流程正常显示
  284. dataA:
  285. this.props.data.processState == 2 || this.props.data.processState == 3
  286. ? shenghePeo(
  287. this.props.data.processState == 2
  288. ? this.props.data.consultantExamine
  289. : this.props.data.managerExamine,
  290. this.props.data.processState
  291. )
  292. : getProcessStatusNew(
  293. this.props.data.processState,
  294. this.props.data.status
  295. ),
  296. labelB: "变更类型",
  297. formItemLayoutB: formItemLayout,
  298. dataB: getChangeType(this.props.data.type)
  299. },
  300. {
  301. labelA: "合同额(万元)",
  302. formItemLayoutA: formItemLayout,
  303. dataA: this.moneyOld(this.props.data.totalAmount, this.props.money),
  304. labelB: "已收款(万元)",
  305. formItemLayoutB: formItemLayout,
  306. dataB: changeColor(this.props.data.settlementAmount)
  307. },
  308. {
  309. labelA: "欠款(万元)",
  310. formItemLayoutA: formItemLayout,
  311. dataA: changeColor(this.props.data.arrears),
  312. labelB: "申请退款(万元)",
  313. formItemLayoutB: formItemLayout,
  314. dataB: changeColor(this.props.data.changeAmount)
  315. },
  316. {
  317. labelA: "变更原因",
  318. formItemLayoutA: formItemLayout,
  319. dataA: this.props.data.remarks
  320. }
  321. ];
  322. const planData = [
  323. {
  324. labelA: "项目进度",
  325. formItemLayoutA: formItemLayout,
  326. dataA: this.props.data.projectState,
  327. labelB: "发生成本费用(万元)",
  328. formItemLayoutB: formItemLayout,
  329. dataB: this.props.data.zxsCost
  330. },
  331. {
  332. labelA: "备注",
  333. formItemLayoutA: formItemLayout,
  334. dataA: this.props.data.zxsRemarks
  335. }
  336. ];
  337. const financeData = [
  338. {
  339. labelA: "发生成本(万元)",
  340. formItemLayoutA: formItemLayout,
  341. dataA: this.props.data.cwCost,
  342. labelB: "应退金额(万元)",
  343. formItemLayoutB: formItemLayout,
  344. dataB: this.props.data.refundableAmount
  345. }
  346. ];
  347. const buttonData = [
  348. {
  349. name: "同意",
  350. title: "理由",
  351. placeholder: "请输入理由",
  352. type: "primary",
  353. status: 2,
  354. onChange: value => {
  355. this.setState({
  356. remarks: value
  357. });
  358. }
  359. },
  360. {
  361. name: "拒绝",
  362. title: "理由",
  363. placeholder: "请输入理由",
  364. type: "danger",
  365. status: 3,
  366. onChange: value => {
  367. this.setState({
  368. remarks: value
  369. });
  370. }
  371. }
  372. ];
  373. const orgCodeUrl = this.props.pictureUrl;
  374. return (
  375. <div className="clearfix changeDetail">
  376. <div
  377. className="clearfix"
  378. style={{ marginTop: 0 }}
  379. ref={(e) => {
  380. this.refs = e;
  381. }}
  382. >
  383. <div
  384. style={{
  385. borderRadius: "50%",
  386. width: 300,
  387. height: 300,
  388. position: "absolute",
  389. top: 230,
  390. left: 525,
  391. transform: "rotate(-5deg)",
  392. zIndex: 1,
  393. display:
  394. (this.props.data.processState == 7 ||
  395. this.props.data.processState == 8) &&
  396. this.props.data.status == 4
  397. ? "block"
  398. : "none",
  399. }}
  400. >
  401. {/* <span
  402. style={{
  403. fontSize: 29,
  404. position: "absolute",
  405. left: "50%",
  406. top: "50%",
  407. transform: "translate(-50%,-50%)",
  408. color: "red"
  409. }}
  410. >
  411. 通过
  412. </span> */}
  413. <img src={tongguo} style={{ width: "100%" }} />
  414. </div>
  415. <div
  416. style={{
  417. borderRadius: "50%",
  418. width: 300,
  419. height: 300,
  420. position: "absolute",
  421. top: 284,
  422. left: 586,
  423. transform: "rotate(-5deg)",
  424. zIndex: 1,
  425. display: this.props.data.status == 5 ? "block" : "none",
  426. }}
  427. >
  428. {/* <span
  429. style={{
  430. fontSize: 29,
  431. position: "absolute",
  432. left: "50%",
  433. top: "50%",
  434. transform: "translate(-50%,-50%)",
  435. color: "red"
  436. }}
  437. >
  438. 通过
  439. </span> */}
  440. <img src={quxiao} style={{ width: "63%" }} />
  441. </div>
  442. <h2 style={{ textAlign: "center", marginBottom: 10, marginTop: 20 }}>
  443. 合同变更记录
  444. </h2>
  445. {pageData.map((item, index) => {
  446. return <Itemlist key={index} pageData={item} />;
  447. })}
  448. <Form.Item
  449. label="变更凭证"
  450. labelCol={{ span: 4 }}
  451. wrapperCol={{ span: 18 }}
  452. >
  453. {/*<Upload*/}
  454. {/* className="demandDetailShow-upload"*/}
  455. {/* listType="picture-card"*/}
  456. {/* fileList={orgCodeUrl}*/}
  457. {/* onPreview={(file) => {*/}
  458. {/* this.setState({*/}
  459. {/* previewImage: file.url || file.thumbUrl,*/}
  460. {/* previewVisible: true,*/}
  461. {/* });*/}
  462. {/* }}*/}
  463. {/*/>*/}
  464. {orgCodeUrl ? <div style={{paddingTop:'10px',paddingBottom:'10px'}}>
  465. <ImgList fileList={orgCodeUrl} ItemWidth={'96px'}/>
  466. </div> : <div/>}
  467. <div style={{marginLeft: '-60px'}}>
  468. <Rizhi changeId={this.props.id} />
  469. </div>
  470. </Form.Item>
  471. {/* {this.props.data.type === 0 && this.props.data.processState >= 2 ? (
  472. <div>
  473. <h3 style={{ marginLeft: 10, fontWeight: 800, marginBottom: 10 }}>
  474. 当前项目进度(咨询师经理填写)
  475. </h3>
  476. {planData.map((item, index) => {
  477. return <Itemlist key={index} pageData={item} />;
  478. })}
  479. </div>
  480. ) : (
  481. ""
  482. )} */}
  483. {/* <h2 style={{ textAlign: "center", marginBottom: 0 }}>变更日志</h2> */}
  484. <ul
  485. style={{
  486. width: "868px",
  487. overflow: "hidden",
  488. paddingLeft: "90px",
  489. position: "relative",
  490. bottom: "20px",
  491. paddingTop: '28px'
  492. }}
  493. >
  494. {/* <span>操作人:</span> */}
  495. {this.props.dataSource.map((item, index) => {
  496. if (item.status == 0) {
  497. item.status = "发起";
  498. } else if (item.status == 1) {
  499. item.status = "审核中";
  500. } else if (item.status == 2) {
  501. item.status = "通过";
  502. } else if (item.status == 3) {
  503. item.status = "驳回";
  504. } else if (item.status == 4) {
  505. item.status = "完成";
  506. }
  507. return (
  508. <li
  509. key={index}
  510. style={{
  511. width: "100%",
  512. height: "auto",
  513. wordBreak: "break-all",
  514. marginBottom: "10px",
  515. }}
  516. >
  517. {item.aname + ":" + "(" + item.status + ")" + item.remarks}
  518. </li>
  519. );
  520. })}
  521. </ul>
  522. <ProAndCuiList id={this.props.id} />
  523. <div className="clearfix">
  524. <h3 style={{ marginLeft: 20, fontWeight: 800, marginBottom: 10 }}>
  525. 收款情况
  526. </h3>
  527. <div style={{ marginLeft: "90px" }}>
  528. <ul>
  529. {(this.props.proceedsData.bill || []).map((item, index) => (
  530. <li key={index}>
  531. {item.payTime +
  532. " " +
  533. item.aName +
  534. " 收款:" +
  535. item.transactionAmount +
  536. "万元"}
  537. </li>
  538. ))}
  539. </ul>
  540. <div>收款总计:{this.props.proceedsTotal}万元</div>
  541. </div>
  542. <br />
  543. <div style={{ marginLeft: "90px" }}>
  544. <ul>
  545. {(this.props.proceedsData.invoice || []).map((item, index) => (
  546. <li key={index}>
  547. {item.createTime + " " + " 开票:" + item.amount + "万元"}
  548. </li>
  549. ))}
  550. </ul>
  551. <div>开票总计:{this.props.invoiceTotal}万元</div>
  552. </div>
  553. <p style={{ marginLeft: "90px", color: "red" }}>
  554. 系统预估 产生成本(万元):
  555. {this.props.data.estimateCost
  556. ? this.props.data.estimateCost
  557. : "0"}{" "}
  558. &nbsp;应退金额(万元):
  559. {this.props.data.estimateRefundable
  560. ? this.props.data.estimateRefundable
  561. : "0"}
  562. </p>
  563. </div>
  564. {/* {this.props.data.type === 0 ? (
  565. <div>
  566. <h3 style={{ marginLeft: 10, fontWeight: 800, marginBottom: 10 }}>
  567. 当前项目进度(咨询师经理填写)
  568. </h3>
  569. {planData.map((item, index) => {
  570. return <Itemlist key={index} pageData={item} />;
  571. })}
  572. </div>
  573. ) : (
  574. ""
  575. )} */}
  576. <div
  577. style={{
  578. display:
  579. (this.props.data.processState == 8 ||
  580. this.props.data.processState == 7) &&
  581. (this.props.data.status == 2 || this.props.data.status == 4)
  582. ? "block"
  583. : "none",
  584. }}
  585. >
  586. <h3 style={{ marginLeft: 20, fontWeight: 800, marginBottom: 10 }}>
  587. 回收退票
  588. </h3>
  589. <Table
  590. size="middle"
  591. pagination={false}
  592. bordered
  593. columns={this.state.ContactsLists}
  594. dataSource={this.state.contactList}
  595. />
  596. </div>
  597. <div
  598. style={{
  599. display: this.props.data.processState > 5 ? "block" : "none",
  600. }}
  601. >
  602. <h3 style={{ marginLeft: 20, fontWeight: 800, marginBottom: 10 }}>
  603. 当前财务状态(财务填写)
  604. </h3>
  605. {financeData.map((item, index) => {
  606. return <Itemlist key={index} pageData={item} />;
  607. })}
  608. </div>
  609. {/* <ul>
  610. <span>备注</span>
  611. {this.state.dataSource.map((item, index) => (
  612. <li key={index}>{item.remarks}</li>
  613. ))}
  614. </ul> */}
  615. {/* {this.props.data.type === 0 ? (
  616. this.props.data.processState >= 5 ? (
  617. <div style={{ marginTop: "20px" }}>
  618. <h3
  619. style={{ marginLeft: 10, fontWeight: 800, marginBottom: 10 }}
  620. >
  621. 当前财务状态(财务填写)
  622. </h3>
  623. {financeData.map((item, index) => {
  624. return <Itemlist key={index} pageData={item} />;
  625. })}
  626. </div>
  627. ) : (
  628. ""
  629. )
  630. ) : this.props.data.status === 4 ? (
  631. <div>
  632. <h3 style={{ marginLeft: 10, fontWeight: 800, marginBottom: 10 }}>
  633. 当前财务状态(财务填写)
  634. </h3>
  635. {financeData.map((item, index) => {
  636. return <Itemlist key={index} pageData={item} />;
  637. })}
  638. </div>
  639. ) : (
  640. ""
  641. )} */}
  642. <div
  643. style={{
  644. display:
  645. (this.props.data.processState == 7 ||
  646. this.props.data.processState == 8) &&
  647. this.props.data.status == 4 &&
  648. this.props.data.refundStatus
  649. ? "block"
  650. : "none",
  651. }}
  652. >
  653. <Refund data={this.props.data} id={this.props.id} />
  654. </div>
  655. </div>
  656. {this.props.processState === this.props.data.processState &&
  657. this.props.data.status != 5 ? (
  658. <div
  659. className="clearfix"
  660. style={{ display: "flex", justifyContent: "space-around" }}
  661. >
  662. {buttonData.map((item, index) => {
  663. return (
  664. <AgreeButton
  665. data={item}
  666. key={index}
  667. backData={this.props.data}
  668. processState={this.props.processState}
  669. onCancel={this.props.onCancel}
  670. />
  671. );
  672. })}
  673. </div>
  674. ) : (
  675. ""
  676. )}
  677. <ReactToPrint
  678. trigger={() => (
  679. <Button
  680. type="primary"
  681. style={{
  682. float: "right",
  683. marginTop: 10,
  684. position: "absolute",
  685. top: 0,
  686. right: 30,
  687. display:
  688. (this.props.data.processState == 7 ||
  689. this.props.data.processState == 8) &&
  690. this.props.data.status == 4
  691. ? "block"
  692. : "block",
  693. }}
  694. >
  695. 打印
  696. </Button>
  697. )}
  698. content={() => this.refs}
  699. />
  700. </div>
  701. );
  702. }
  703. }
  704. export { ChangeDetail };