details.jsx 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930
  1. import React, { Component } from "react";
  2. import { Button, Form, message, Modal, Spin, Table, TagmTooltip } from "antd";
  3. import OrderItemStatus from "../../../../common/orderItemStatus";
  4. import EnterpriseNameChange from "../../../../common/enterpriseNameChange";
  5. import {
  6. getApprovedState,
  7. getCuikuan,
  8. getjiedian,
  9. getLiquidationStatus,
  10. getProcessStatus,
  11. splitUrl
  12. } from "../../../../tools";
  13. import ImgList from "../../../../common/imgList";
  14. import $ from "jquery/src/ajax";
  15. import ProjectDetailsReadOnly from "../../../../common/projectDetailsReadOnly";
  16. import NewEditProject from "../../../../common/projectOperation/newEditProject";
  17. import OrderRiZi from "@/orderRiZi.jsx";
  18. import OrderCoor from "../../../order/orderNew/changeComponent/orderCoor";
  19. import ContentUrl from "../../../order/orderNew/contentUrl";
  20. const FormItem = Form.Item;
  21. const formItemLayout = {
  22. labelCol: { span: 8 },
  23. wrapperCol: { span: 14 },
  24. };
  25. class Details extends Component {
  26. constructor(props) {
  27. super(props);
  28. this.state = {
  29. loading: false,
  30. columnsX: [
  31. {
  32. title: "业务项目名称",
  33. dataIndex: "commodityName",
  34. key: "commodityName",
  35. render: (text, record) => {
  36. return <span>
  37. {text}<span style={{ color: "red" }}>{record.patentTypeName}</span>{"-" + record.id}
  38. <div>
  39. {record.cSort == 6 && record.projectType == 1 && <span>(含{record.htMember == 1 ? '高新会员&' : ''}{record.additionalDeduction == 1 ? '加计扣除&' : ''}{record.rdAwardsubsidy == 1 ? '研发奖补' : ''})</span>}
  40. {record.cSort == 6 && ([0, 3].indexOf(record.projectType) > -1) && <span>(仅提供单边会员服务)</span>}
  41. {record.cSort == 6 && record.projectType == 2 && <span>(仅填报表,仅咨询,不出备查资料)</span>}
  42. {record.cSort == 3 && <span>{record.technologyProjectType==0?'(简易项目)':record.technologyProjectType==1?'(市区级)':record.technologyProjectType==2?'(省级)':record.technologyProjectType==3?'(国家级)':''}</span>}
  43. {record.cSort == 8 ? (record.type != 2 && record.patentType == 1) ? <span>(变更)</span> : <span>{record.ordinaryRisk == 0 ? '(普通申请)' : record.ordinaryRisk == 1 ? '(风险代理)' : ''}</span> : ""}
  44. {record.type == 2 && <span>({record.days == 0 ? '普通' : record.days == 1 ? '加急' : ''}{record.scheme == 0 ? '&无方案' : record.scheme == 1 ? '&有方案' : ''})</span>}
  45. </div>
  46. </span>
  47. }
  48. },
  49. {
  50. title: "项目类别",
  51. dataIndex: "cname",
  52. key: "cname",
  53. },
  54. {
  55. title: "项目数量",
  56. dataIndex: "commodityQuantity",
  57. key: "commodityQuantity",
  58. render: (text, record) => {
  59. if (record.splitStatus == 1) {
  60. return (
  61. <span>
  62. {text}{" "}
  63. <Tag
  64. color="#108ee9"
  65. onClick={(e) => {
  66. e.stopPropagation();
  67. this.showRes(record);
  68. }}
  69. >
  70. 已拆
  71. </Tag>
  72. </span>
  73. );
  74. } else {
  75. return text;
  76. }
  77. },
  78. },
  79. {
  80. title: "金额(万元)",
  81. dataIndex: "commodityPrice",
  82. key: "commodityPrice",
  83. },
  84. {
  85. title: "负责人",
  86. dataIndex: "contacts",
  87. key: "contacts",
  88. },
  89. {
  90. title: "负责人电话",
  91. dataIndex: "contactsMobile",
  92. key: "contactsMobile",
  93. },
  94. {
  95. title: "主要项目",
  96. dataIndex: "main",
  97. key: "main",
  98. render: (text) => {
  99. return text ? "是" : "否";
  100. },
  101. },
  102. {
  103. title: "总年限",
  104. dataIndex: "yearSum",
  105. key: "yearSum",
  106. render: (text, record) => {
  107. return (
  108. <div>{["", "一年", "二年", "三年", "四年", "五年"][text]}</div>
  109. );
  110. }
  111. },
  112. {
  113. title: "年限",
  114. dataIndex: "serviceLife",
  115. key: "serviceLife",
  116. render: (text, record) => {
  117. return (
  118. <div>{!!text && JSON.parse(text).toString()}</div>
  119. );
  120. }
  121. },
  122. {
  123. title: "本次派单",
  124. dataIndex: "serviceYear",
  125. key: "serviceYear",
  126. render: (text, record) => {
  127. return (
  128. <div>{!text ? "" : text}</div>
  129. );
  130. }
  131. },
  132. {
  133. title: "项目说明",
  134. dataIndex: "taskComment",
  135. key: "taskComment",
  136. render: (text) => {
  137. return (
  138. <Tooltip title={text}>
  139. <div
  140. style={{
  141. width: 100,
  142. overflow: "hidden",
  143. whiteSpace: "nowrap",
  144. textOverflow: "ellipsis",
  145. }}
  146. >{text}</div>
  147. </Tooltip>
  148. )
  149. },
  150. },
  151. ],
  152. ContactsListsNew: [
  153. {
  154. title: "项目名称",
  155. dataIndex: "commodityName",
  156. key: "commodityName",
  157. render: (text, record) => {
  158. return <span>{text + "-" + record.tid}</span>;
  159. },
  160. },
  161. {
  162. title: "项目分类",
  163. dataIndex: "projectType",
  164. key: "projectType",
  165. render: (text) => {
  166. let arr = this.state.dataSourceX || [];
  167. let str = "";
  168. for (let i = 0; i < arr.length; i++) {
  169. if (this.state.dataSourceX[i].sort == text) {
  170. str = this.state.dataSourceX[i].cname;
  171. return <span>{str}</span>;
  172. }
  173. }
  174. },
  175. },
  176. {
  177. title: "催款科目",
  178. dataIndex: "dunTypeName",
  179. key: "dunTypeName",
  180. render: (text, record) => {
  181. if (record.customizeName) {
  182. return text + record.customizeName;
  183. }
  184. return <span>{text}</span>;
  185. },
  186. },
  187. {
  188. title: "时间(天)",
  189. dataIndex: "waitDay",
  190. key: "waitDay",
  191. render: (text, record) => {
  192. if (record.dunTypeName) {
  193. if (record.customizeTimes) {
  194. return record.customizeTimes;
  195. }
  196. return <span>{text}</span>;
  197. }
  198. },
  199. },
  200. {
  201. title: "金额(万元)",
  202. dataIndex: "money",
  203. key: "money",
  204. render: (text, record) => {
  205. if (record.dunTypeName) {
  206. if (record.appropriationRatio) {
  207. let percent = Number(record.appropriationRatio * 100).toFixed(2);
  208. percent += "%";
  209. return <span>{percent}(拨款比例)</span>;
  210. } else {
  211. return <span>{text}</span>;
  212. }
  213. }
  214. },
  215. },
  216. {
  217. title: "服务年限",
  218. dataIndex: "startDate",
  219. key: "startDate",
  220. render: (text, record) => {
  221. if (record.dunTypeName) {
  222. return <span>{text}</span>;
  223. }
  224. },
  225. },
  226. {
  227. title: "催款状态",
  228. dataIndex: "status",
  229. key: "status",
  230. render: (text) => {
  231. return <span>{text == 1 ? "已启动" : "未启动"}</span>;
  232. },
  233. },
  234. ],
  235. ContactsLists: [
  236. {
  237. title: "催款科目",
  238. dataIndex: "dunSubject",
  239. key: "dunSubject",
  240. render: (text) => {
  241. return getjiedian(text);
  242. },
  243. },
  244. {
  245. title: "金额(万元)",
  246. dataIndex: "money",
  247. key: "money",
  248. },
  249. {
  250. title: "催款状态",
  251. dataIndex: "dunStatus",
  252. key: "dunStatus",
  253. render: (text) => {
  254. return getCuikuan(text);
  255. },
  256. },
  257. ],
  258. dataSourceX: [],
  259. contactList: [],
  260. dataInfor: {},
  261. totalCui: '',
  262. dataSourcerizhi: []
  263. }
  264. this.xiangqing = this.xiangqing.bind(this);
  265. this.xiangmu = this.xiangmu.bind(this);
  266. this.nextCancel = this.nextCancel.bind(this);
  267. this.jiedianNew = this.jiedianNew.bind(this);
  268. this.jiedian = this.jiedian.bind(this);
  269. this.tableRowClickX = this.tableRowClickX.bind(this);
  270. this.getOrderLog = this.getOrderLog.bind(this);
  271. this.closeOrderLog = this.closeOrderLog.bind(this);
  272. this.rizhi = this.rizhi.bind(this);
  273. }
  274. componentDidMount() {
  275. this.xiangqing();
  276. this.xiangmu();
  277. this.jiedian();
  278. this.jiedianNew();
  279. }
  280. //订单详情
  281. xiangqing() {
  282. this.setState({
  283. loading: true,
  284. });
  285. $.ajax({
  286. method: "get",
  287. dataType: "json",
  288. crossDomain: false,
  289. url: globalConfig.context + "/api/admin/newOrder/getOrderNewDetail",
  290. data: {
  291. orderNo: this.props.orderNo,
  292. },
  293. success: function (data) {
  294. if (data.error.length) {
  295. message.warning(data.error[0].message);
  296. } else {
  297. let thisdata = data.data;
  298. this.setState({
  299. orderUid: thisdata.uid,
  300. orderNo: thisdata.orderNo, //订单编号
  301. contractNo: thisdata.contractNo, //合同编号
  302. userName: thisdata.userName, //客户名称
  303. signDate: thisdata.signDate, //签单时间
  304. examineName: thisdata.examineName,
  305. processStatus: thisdata.processStatus, //流程状态
  306. liquidationStatus: thisdata.liquidationStatus, //结算状态
  307. contacts: thisdata.contacts, //企业联系人
  308. contactMobile: thisdata.contactMobile, //联系人电话
  309. legalPerson: thisdata.legalPerson, //法人
  310. legalPersonTel: thisdata.legalPersonTel, //法人电话
  311. firstAmount: thisdata.firstAmount, //签单金额
  312. totalAmount: thisdata.totalAmount, //首付金额
  313. approval: thisdata.approval, //特批状态
  314. settlementAmount: thisdata.settlementAmount, //已收款项
  315. orderRemarks: thisdata.orderRemarks, //订单留言
  316. orgCodeUrl: thisdata.contractPictureUrl
  317. ? splitUrl(
  318. thisdata.contractPictureUrl,
  319. ",",
  320. globalConfig.avatarHost + "/upload"
  321. )
  322. : [], //图片地址
  323. replenishUrl: thisdata.agreementUrl
  324. ? splitUrl(
  325. thisdata.agreementUrl,
  326. ",",
  327. globalConfig.avatarHost + "/upload"
  328. )
  329. : [], //图片地址
  330. contentUrl: thisdata.serviceContent
  331. ? splitUrl(
  332. thisdata.serviceContent,
  333. ",",
  334. globalConfig.avatarHost + "/upload"
  335. )
  336. : [], //图片地址
  337. salesmanName: thisdata.salesmanName, //营销员名称
  338. salesmanMobile: thisdata.salesmanMobile, //营销员电话
  339. oldSalesmanName: thisdata.oldSalesmanName, //营销员名称
  340. oldSalesmanMobile: thisdata.oldSalesmanMobile, //营销员电话
  341. financeName: thisdata.financeName, //财务名称
  342. financeMobile: thisdata.financeMobile, //财务电话
  343. nowFinance: thisdata.nowFinance, //财务名称
  344. nowFinanceMobile: thisdata.nowFinanceMobile, //财务电话
  345. depName: thisdata.depName,
  346. outsource: thisdata.outsource == 0 ? "否" : "是",
  347. deleteSign: thisdata.deleteSign,
  348. });
  349. }
  350. }.bind(this),
  351. }).always(
  352. function () {
  353. this.setState({
  354. loading: false,
  355. });
  356. }.bind(this)
  357. );
  358. }
  359. //项目列表
  360. xiangmu() {
  361. this.setState({
  362. xiangmuLoading: true,
  363. });
  364. $.ajax({
  365. method: "get",
  366. dataType: "json",
  367. crossDomain: false,
  368. url: globalConfig.context + "/api/admin/newOrder/getOrderTask",
  369. data: {
  370. orderNo: this.props.orderNo,
  371. },
  372. success: function (data) {
  373. let theArr = [];
  374. if (data.error.length || data.data.list == "") {
  375. if (data.error && data.error.length) {
  376. message.warning(data.error[0].message);
  377. }
  378. } else {
  379. for (let i = 0; i < data.data.length; i++) {
  380. let thisdata = data.data[i];
  381. thisdata.key = i;
  382. thisdata.sort = thisdata.cSort;
  383. theArr.push(thisdata);
  384. }
  385. }
  386. this.setState({
  387. dataSourceX: theArr,
  388. });
  389. }.bind(this),
  390. }).always(
  391. function () {
  392. this.setState({
  393. xiangmuLoading: false,
  394. });
  395. }.bind(this)
  396. );
  397. }
  398. //点击打卡项目详情
  399. tableRowClickX(record) {
  400. this.setState({
  401. addnextVisible: true,
  402. dataInfor: record,
  403. });
  404. }
  405. //项目详情关闭
  406. nextCancel() {
  407. this.setState({
  408. addnextVisible: false,
  409. dataInfor: {},
  410. });
  411. }
  412. //节点列表
  413. jiedian() {
  414. this.setState({
  415. jiedianLoading: true,
  416. });
  417. $.ajax({
  418. method: "get",
  419. dataType: "json",
  420. crossDomain: false,
  421. url: globalConfig.context + "/api/admin/newOrder/selectOrderDun",
  422. data: {
  423. orderNo: this.props.orderNo,
  424. },
  425. success: function (data) {
  426. let theArr = [];
  427. let thisData = [];
  428. if (data.error.length || data.data.list == "") {
  429. if (data.error && data.error.length) {
  430. message.warning(data.error[0].message);
  431. }
  432. } else {
  433. for (let i = 0; i < data.data.length; i++) {
  434. thisData = data.data[i];
  435. theArr.push({
  436. key: i,
  437. dunSubject: thisData.dunSubject
  438. ? thisData.dunSubject.toString()
  439. : "", //催款科目
  440. id: thisData.id, //节点Id
  441. money: thisData.money, //催款金额
  442. dunStatus: thisData.dunStatus, //催款状态
  443. });
  444. }
  445. this.setState({
  446. contactList: theArr,
  447. });
  448. }
  449. }.bind(this),
  450. }).always(
  451. function () {
  452. this.setState({
  453. jiedianLoading: false,
  454. });
  455. }.bind(this)
  456. );
  457. }
  458. //查看催款节点
  459. jiedianNew() {
  460. this.setState({
  461. jiedianNewLoading: true,
  462. });
  463. $.ajax({
  464. method: "get",
  465. dataType: "json",
  466. crossDomain: false,
  467. url:
  468. globalConfig.context + "/api/admin/newOrderDun/selectListNewOrderDun",
  469. data: {
  470. orderNo: this.props.orderNo,
  471. },
  472. success: function (data) {
  473. if (data.error && data.error.length) {
  474. message.warning(data.error[0].message);
  475. } else {
  476. let theArr = [];
  477. let thisData = [];
  478. let arr = data.data || [];
  479. let totalCui = 0;
  480. for (let i = 0; i < arr.length; i++) {
  481. thisData = arr[i];
  482. totalCui += +thisData.money;
  483. theArr.push({
  484. key: i,
  485. dunSubject: thisData.dunSubject
  486. ? thisData.dunSubject.toString()
  487. : "", //催款科目
  488. id: thisData.id, //节点Id
  489. money: thisData.money, //催款金额
  490. // orderNo: record ? record.orderNo : this.props.datauser.orderNo,
  491. commodityName: thisData.commodityName,
  492. projectType: thisData.projectType,
  493. dunTypeName: thisData.dunTypeName,
  494. status: thisData.status,
  495. waitDay: thisData.waitDay,
  496. effectiveCount: thisData.effectiveCount,
  497. startDate: thisData.startDate,
  498. dunType: thisData.dunType,
  499. appropriationRatio: thisData.appropriationRatio,
  500. customizeName: thisData.customizeName,
  501. customizeTimes: thisData.customizeTimes,
  502. tid: thisData.tid,
  503. });
  504. }
  505. if (!totalCui) {
  506. totalCui = 0;
  507. }
  508. totalCui = (Math.round(totalCui * 1000000) / 1000000).toFixed(6);
  509. this.setState({
  510. contactListNew: theArr,
  511. totalCui,
  512. });
  513. }
  514. }.bind(this),
  515. }).always(
  516. function () {
  517. this.setState({
  518. jiedianNewLoading: false,
  519. });
  520. }.bind(this)
  521. );
  522. }
  523. //查看订单日志
  524. getOrderLog() {
  525. this.setState({
  526. rizhivisible: true,
  527. });
  528. this.rizhi();
  529. }
  530. closeOrderLog() {
  531. this.setState({
  532. rizhivisible: false,
  533. dataSourcerizhi: []
  534. });
  535. }
  536. rizhi() {
  537. this.setState({
  538. rizhiLoading: true,
  539. });
  540. $.ajax({
  541. method: "get",
  542. dataType: "json",
  543. crossDomain: false,
  544. url: "/api/admin/newOrder/selectOrderLog",
  545. data: {
  546. orderNo: this.props.orderNo,
  547. },
  548. success: function (data) {
  549. let theArr = [];
  550. let thisData = data.data;
  551. if (!thisData.length) {
  552. if (data.error && data.error.length) {
  553. message.warning(data.error[0].message);
  554. }
  555. } else {
  556. for (let i = 0; i < data.data.length; i++) {
  557. let thisdata = data.data[i];
  558. theArr.push({
  559. processName: thisdata.processName,
  560. adminName: thisdata.adminName,
  561. createDate: thisdata.createDate,
  562. remarks: thisdata.remarks,
  563. });
  564. }
  565. }
  566. this.setState({
  567. dataSourcerizhi: theArr,
  568. });
  569. }.bind(this),
  570. }).always(
  571. function () {
  572. this.setState({
  573. rizhiLoading: false,
  574. });
  575. }.bind(this)
  576. );
  577. }
  578. render() {
  579. return (
  580. <Modal
  581. className="customeDetails"
  582. footer=""
  583. title="订单详情"
  584. width="1200px"
  585. visible={this.props.visible}
  586. onOk={this.props.onCancel}
  587. onCancel={this.props.onCancel}
  588. >
  589. <Form layout="horizontal" id="demand-form" style={{ paddingBottom: "40px" }}>
  590. <Spin spinning={this.state.loading}>
  591. <div className="clearfix">
  592. <div style={{ position: "absolute", top: '-52px', left: '81px', zIndex: 10000 }}>
  593. <OrderItemStatus deleteSign={this.state.deleteSign} />
  594. </div>
  595. <FormItem
  596. className="half-item"
  597. {...formItemLayout}
  598. label="订单编号"
  599. >
  600. <span>{this.state.orderNo}</span>
  601. </FormItem>
  602. <FormItem
  603. className="half-item"
  604. {...formItemLayout}
  605. label="合同编号"
  606. >
  607. <span>{this.state.contractNo}</span>
  608. </FormItem>
  609. <FormItem
  610. className="half-item"
  611. {...formItemLayout}
  612. label="客户名称"
  613. >
  614. <span>{this.state.userName}</span>
  615. <EnterpriseNameChange
  616. type='journal'
  617. style={{ marginLeft: 10 }}
  618. enterpriseId={this.state.orderUid} />
  619. </FormItem>
  620. <FormItem
  621. className="half-item"
  622. {...formItemLayout}
  623. label="合同签订时间"
  624. >
  625. <span>{this.state.signDate}</span>
  626. </FormItem>
  627. <FormItem
  628. className="half-item"
  629. {...formItemLayout}
  630. label="流程状态"
  631. >
  632. <span>{getProcessStatus(this.state.processStatus, this.state.examineName, this.state.approval)}</span>
  633. </FormItem>
  634. <FormItem
  635. className="half-item"
  636. {...formItemLayout}
  637. label="结算状态"
  638. >
  639. <span>
  640. {getLiquidationStatus(this.state.liquidationStatus)}
  641. </span>
  642. </FormItem>
  643. <FormItem
  644. className="half-item"
  645. {...formItemLayout}
  646. label="企业联系人"
  647. >
  648. <span>{this.state.contacts}</span>
  649. </FormItem>
  650. <FormItem
  651. className="half-item"
  652. {...formItemLayout}
  653. label="联系人电话"
  654. >
  655. <span>{this.state.contactMobile}</span>
  656. </FormItem>
  657. <FormItem
  658. className="half-item"
  659. {...formItemLayout}
  660. label="企业法人"
  661. >
  662. <span>{this.state.legalPerson}</span>
  663. </FormItem>
  664. <FormItem
  665. className="half-item"
  666. {...formItemLayout}
  667. label="法人电话"
  668. >
  669. <span>{this.state.legalPersonTel}</span>
  670. </FormItem>
  671. <FormItem
  672. className="half-item"
  673. {...formItemLayout}
  674. label="签单金额(万元)"
  675. >
  676. <span>{this.state.totalAmount}</span>
  677. </FormItem>
  678. <FormItem
  679. className="half-item"
  680. {...formItemLayout}
  681. label="首付金额(万元)"
  682. >
  683. <span>{this.state.firstAmount}</span>
  684. </FormItem>
  685. <FormItem
  686. className="half-item"
  687. {...formItemLayout}
  688. label="特批立项"
  689. >
  690. <span>{getApprovedState(this.state.approval)}</span>
  691. </FormItem>
  692. <FormItem
  693. className="half-item"
  694. {...formItemLayout}
  695. label="已收款项(万元)"
  696. >
  697. <span>{this.state.settlementAmount}</span>
  698. </FormItem>
  699. <FormItem
  700. className="half-item"
  701. {...formItemLayout}
  702. label="订单部门"
  703. >
  704. <span>{this.state.depName}</span>
  705. </FormItem>
  706. <FormItem
  707. className="half-item"
  708. {...formItemLayout}
  709. label="是否外包"
  710. >
  711. {this.state.outsource}
  712. </FormItem>
  713. <div className="clearfix">
  714. <FormItem
  715. labelCol={{ span: 4 }}
  716. wrapperCol={{ span: 16 }}
  717. label="订单留言"
  718. >
  719. <span>{this.state.orderRemarks}</span>
  720. </FormItem>
  721. </div>
  722. <div className="clearfix">
  723. <FormItem
  724. labelCol={{ span: 4 }}
  725. wrapperCol={{ span: 18 }}
  726. label={"合同扫描件"}
  727. >
  728. <div style={{ paddingTop: '10px', paddingBottom: '10px' }}>
  729. {this.props.visible && this.state.orgCodeUrl ? <ImgList fileList={this.state.orgCodeUrl} ItemWidth={'96px'} /> : <div />}
  730. </div>
  731. <Button
  732. style={{
  733. float: "right",
  734. marginRight: "140px",
  735. marginTop: "20px",
  736. }}
  737. onClick={this.getOrderLog}
  738. >
  739. 查看订单 日志
  740. </Button>
  741. </FormItem>
  742. <FormItem
  743. labelCol={{ span: 4 }}
  744. wrapperCol={{ span: 18 }}
  745. label="补充协议"
  746. >
  747. <div style={{ paddingTop: '10px', paddingBottom: '10px' }}>
  748. {this.props.visible && this.state.replenishUrl ? <ImgList domId={'inquiry1'} fileList={this.state.replenishUrl} ItemWidth={'96px'} /> : <div />}
  749. </div>
  750. </FormItem>
  751. </div>
  752. <ContentUrl
  753. processStatus={2}
  754. domId={"detailContent"}
  755. contentUrl={this.state.contentUrl}
  756. imgId={"detailContentImg"}
  757. />
  758. <div className="clearfix">
  759. <FormItem
  760. className="half-item"
  761. {...formItemLayout}
  762. label="订单负责人"
  763. >
  764. <span>{this.state.salesmanName}</span>
  765. </FormItem>
  766. <FormItem
  767. className="half-item"
  768. {...formItemLayout}
  769. label="订单负责人电话"
  770. >
  771. <span>{this.state.salesmanMobile}</span>
  772. </FormItem>
  773. </div>
  774. <div className="clearfix">
  775. <FormItem
  776. className="half-item"
  777. {...formItemLayout}
  778. label="当前财务负责人"
  779. >
  780. <span>{this.state.nowFinance}</span>
  781. </FormItem>
  782. <FormItem
  783. className="half-item"
  784. {...formItemLayout}
  785. label="当前财务负责人电话"
  786. >
  787. <span>{this.state.nowFinanceMobile}</span>
  788. </FormItem>
  789. </div>
  790. <div className="clearfix">
  791. <FormItem
  792. className="half-item"
  793. {...formItemLayout}
  794. style={{ opacity: ".5" }}
  795. label="原订单负责人"
  796. >
  797. <span>{this.state.oldSalesmanName}</span>
  798. </FormItem>
  799. <FormItem
  800. className="half-item"
  801. {...formItemLayout}
  802. style={{ opacity: ".5" }}
  803. label="原订单负责人电话"
  804. >
  805. <span>{this.state.oldSalesmanMobile}</span>
  806. </FormItem>
  807. </div>
  808. <div className="clearfix">
  809. <FormItem
  810. className="half-item"
  811. style={{ opacity: ".5" }}
  812. {...formItemLayout}
  813. label="实际财务操作人"
  814. >
  815. <span>{this.state.financeName}</span>
  816. </FormItem>
  817. <FormItem
  818. className="half-item"
  819. {...formItemLayout}
  820. style={{ opacity: ".5" }}
  821. label="实际财务操作人电话"
  822. >
  823. <span>{this.state.financeMobile}</span>
  824. </FormItem>
  825. </div>
  826. {/* */}
  827. <OrderCoor orderNo={this.props.orderNo} />
  828. <div>
  829. <span style={{ marginLeft: "50px", fontSize: "20px" }}>
  830. 项目业务
  831. </span>
  832. </div>
  833. <div className="patent-table">
  834. <Spin spinning={this.state.xiangmuLoading}>
  835. <Table
  836. columns={this.state.columnsX}
  837. dataSource={this.state.dataSourceX}
  838. pagination={false}
  839. onRowClick={this.tableRowClickX}
  840. bordered
  841. size="small"
  842. />
  843. </Spin>
  844. </div>
  845. <div>
  846. <span style={{ marginLeft: "50px", fontSize: "20px" }}>
  847. 催款节点
  848. </span>
  849. <span
  850. style={{
  851. display: this.state.contactList.length ? "none" : "inline-block",
  852. marginLeft: 10,
  853. color: "red",
  854. }}
  855. >
  856. 金额总计(万元): {this.state.totalCui}
  857. </span>
  858. </div>
  859. <div className="clearfix">
  860. <Spin spinning={
  861. this.state.contactList.length ?
  862. this.state.jiedianLoading :
  863. this.state.jiedianNewLoading
  864. }>
  865. <Form layout="horizontal" id="demand-form">
  866. <Table
  867. pagination={false}
  868. bordered
  869. size="small"
  870. columns={
  871. this.state.contactList.length
  872. ? this.state.ContactsLists
  873. : this.state.ContactsListsNew
  874. }
  875. dataSource={
  876. this.state.contactList.length
  877. ? this.state.contactList
  878. : this.state.contactListNew
  879. }
  880. />
  881. </Form>
  882. </Spin>
  883. </div>
  884. </div>
  885. </Spin>
  886. </Form>
  887. <OrderRiZi
  888. dataSourcerizhi={this.state.dataSourcerizhi}
  889. closeOrderLog={this.closeOrderLog}
  890. visible={this.state.rizhivisible}
  891. loading={this.state.rizhiLoading}
  892. />
  893. {/* {this.state.addnextVisible && <ProjectDetailsReadOnly
  894. infor={this.state.dataInfor}
  895. visible={this.state.addnextVisible}
  896. onCancel={this.nextCancel}
  897. />} */}
  898. {
  899. // 项目业务详情
  900. this.state.addnextVisible &&
  901. <NewEditProject
  902. readOnly={true}
  903. visible={this.state.addnextVisible}
  904. dataInfor={this.state.dataInfor}
  905. onCancel={this.nextCancel}
  906. />
  907. }
  908. </Modal>
  909. )
  910. }
  911. }
  912. export default Details;