changeDetailJsy.js 20 KB

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