taskAssignment.jsx 42 KB

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