personnelAll.jsx 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754
  1. import React from "react";
  2. import $ from "jquery/src/ajax";
  3. import "@/manageCenter/financialManage/distribute/public.less";
  4. import {
  5. Button,
  6. Form,
  7. Table,
  8. message,
  9. Tabs,
  10. Tag,
  11. } from "antd";
  12. import {
  13. splitUrl,
  14. getProjectStatus,
  15. ShowModal,
  16. } from "@/tools";
  17. const FormItem = Form.Item;
  18. const { TabPane } = Tabs;
  19. const PersonnelAll = React.createClass({
  20. loadData(pageNo) {
  21. this.state.data = [];
  22. this.setState({
  23. page: pageNo,
  24. loading: true,
  25. });
  26. $.ajax({
  27. method: "get",
  28. dataType: "json",
  29. crossDomain: false,
  30. url: globalConfig.context + "/api/admin/orderProject/orderTaskList",
  31. data: {
  32. pageNo: pageNo || 1,
  33. pageSize: this.state.pagination.pageSize,
  34. specially: 1, //经理
  35. name: this.state.nameSearch, //客户名称
  36. orderNo: this.state.orderNoSearch, //订单编号
  37. taskId: this.state.taskNoSearch, //任务编号
  38. depId: this.state.departmenttSearch, //订单部门
  39. taskStatus: this.state.taskStatus, //任务状态
  40. adminName: this.state.adminName, //任务受理人
  41. outsource: 1,
  42. },
  43. success: function (data) {
  44. ShowModal(this);
  45. let theArr = [];
  46. if (!data.data || !data.data.list) {
  47. if (data.error && data.error.length) {
  48. message.warning(data.error[0].message);
  49. }
  50. } else {
  51. for (let i = 0; i < data.data.list.length; i++) {
  52. let thisdata = data.data.list[i];
  53. if (thisdata.splitList) {
  54. thisdata.splitList.forEach((item) => {
  55. item.key = item.id;
  56. });
  57. }
  58. theArr.push({
  59. key: thisdata.id,
  60. orderNo: thisdata.orderNo, //订单编号
  61. id: thisdata.id, //任务ID
  62. taskName: thisdata.taskName, //名称
  63. cname: thisdata.cname, //项目品类
  64. receiverName: thisdata.receiverName, //受理人
  65. projectStatus: thisdata.projectStatus, //项目状态
  66. taskStatus: thisdata.taskStatus, //任务状态
  67. taskDate: thisdata.taskDate, //分配时间
  68. commodityQuantity: thisdata.commodityQuantity, //数量
  69. userName: thisdata.userName, //用户名
  70. depName: thisdata.depName, //部门名称
  71. splitStatus: thisdata.splitStatus, //拆分状态
  72. splitList: thisdata.splitList,
  73. });
  74. }
  75. }
  76. this.state.pagination.current = data.data.pageNo;
  77. this.state.pagination.total = data.data.totalCount;
  78. if (data.data && data.data.list && !data.data.list.length) {
  79. this.state.pagination.current = 0;
  80. this.state.pagination.total = 0;
  81. }
  82. this.setState({
  83. dataSource: theArr,
  84. pagination: this.state.pagination,
  85. });
  86. }.bind(this),
  87. }).always(
  88. function () {
  89. this.setState({
  90. loading: false,
  91. });
  92. }.bind(this)
  93. );
  94. },
  95. getInitialState() {
  96. return {
  97. searchMore: true,
  98. assignVisible: false,
  99. releaseDate: [],
  100. roleName: "",
  101. boHuivisible: false,
  102. departmentArr: [],
  103. selectedRowKeys: [],
  104. selectedRows: [],
  105. paginations: false,
  106. loading: false,
  107. pagination: {
  108. defaultCurrent: 1,
  109. defaultPageSize: 10,
  110. showQuickJumper: true,
  111. pageSize: 10,
  112. onChange: function (page) {
  113. this.loadData(page);
  114. }.bind(this),
  115. showTotal: function (total) {
  116. return "共" + total + "条数据";
  117. },
  118. },
  119. columns: [
  120. {
  121. title: "任务编号",
  122. dataIndex: "id",
  123. key: "id",
  124. },
  125. {
  126. title: "任务名称",
  127. dataIndex: "taskName",
  128. key: "taskName",
  129. },
  130. {
  131. title: "订单编号",
  132. dataIndex: "orderNo",
  133. key: "orderNo",
  134. },
  135. {
  136. title: "业务类别",
  137. dataIndex: "cname",
  138. key: "cname",
  139. },
  140. {
  141. title: "客户名称",
  142. dataIndex: "userName",
  143. key: "userName",
  144. },
  145. {
  146. title: "项目状态",
  147. dataIndex: "projectStatus",
  148. key: "projectStatus",
  149. render: (text) => {
  150. return getProjectStatus(text);
  151. },
  152. },
  153. {
  154. title: "分配时间",
  155. dataIndex: "taskDate",
  156. key: "taskDate",
  157. },
  158. {
  159. title: "任务数量",
  160. dataIndex: "commodityQuantity",
  161. key: "commodityQuantity",
  162. render: (text, record) => {
  163. if (record.splitStatus == 1) {
  164. return (
  165. <span>
  166. {text}{" "}
  167. <Tag color="#108ee9" style={{ float: "right" }}>
  168. 已拆
  169. </Tag>
  170. </span>
  171. );
  172. } else {
  173. return text;
  174. }
  175. },
  176. },
  177. {
  178. title: "订单部门",
  179. dataIndex: "depName",
  180. key: "depName",
  181. },
  182. {
  183. title: "操作",
  184. dataIndex: "caozuo",
  185. key: "caouzo",
  186. render: (text, record) => {
  187. return (
  188. <div>
  189. <Button
  190. type="primary"
  191. style={{ margin: "0 10px" }}
  192. disabled={record.splitStatus == 1 ? true : false}
  193. onClick={(e) => {
  194. e.stopPropagation(), this.evaluate(record, "咨询师经理");
  195. }}
  196. >
  197. 转交
  198. </Button>
  199. <Button
  200. type="primary"
  201. style={{ margin: "0 10px" }}
  202. disabled={record.splitStatus == 1 ? true : false}
  203. onClick={(e) => {
  204. e.stopPropagation(), this.evaluate(record, "咨询师");
  205. }}
  206. >
  207. 分配任务
  208. </Button>
  209. {record.splitStatus == 0 ? (
  210. <Button
  211. type="primary"
  212. style={{ margin: "0 10px" }}
  213. onClick={(e) => {
  214. e.stopPropagation();
  215. this.setState({
  216. resolutionVisible: true,
  217. resolutionName: record.taskName,
  218. resolutionNumber: record.commodityQuantity,
  219. resolutionId: record.id,
  220. });
  221. }}
  222. >
  223. 拆分项目
  224. </Button>
  225. ) : (
  226. ""
  227. )}
  228. </div>
  229. );
  230. },
  231. },
  232. ],
  233. dataSource: [],
  234. searchTime: [],
  235. columnsX: [
  236. {
  237. title: "业务项目名称",
  238. dataIndex: "commodityName",
  239. key: "commodityName",
  240. },
  241. {
  242. title: "项目类别",
  243. dataIndex: "cname",
  244. key: "cname",
  245. },
  246. {
  247. title: "项目数量",
  248. dataIndex: "commodityQuantity",
  249. key: "commodityQuantity",
  250. render: (text, record) => {
  251. if (record.splitStatus == 1) {
  252. return (
  253. <span>
  254. {text}{" "}
  255. <Tag
  256. color="#108ee9"
  257. onClick={(e) => {
  258. e.stopPropagation();
  259. this.showRes(record);
  260. }}
  261. >
  262. 已拆
  263. </Tag>
  264. </span>
  265. );
  266. } else {
  267. return text;
  268. }
  269. },
  270. },
  271. {
  272. title: "金额(万元)",
  273. dataIndex: "commodityPrice",
  274. key: "commodityPrice",
  275. },
  276. {
  277. title: "负责人",
  278. dataIndex: "contacts",
  279. key: "contacts",
  280. },
  281. {
  282. title: "负责人电话",
  283. dataIndex: "contactsMobile",
  284. key: "contactsMobile",
  285. },
  286. {
  287. title: "主要项目",
  288. dataIndex: "main",
  289. key: "main",
  290. render: (text) => {
  291. return text ? "是" : "否";
  292. },
  293. },
  294. {
  295. title: "项目说明",
  296. dataIndex: "taskComment",
  297. key: "taskComment",
  298. render: (text) => {
  299. return text && text.length > 8 ? text.substr(0, 8) + "…" : text;
  300. },
  301. },
  302. ],
  303. dataSourceX: [],
  304. resVisible: false,
  305. };
  306. },
  307. /* 分派 */
  308. evaluate(record, nub) {
  309. this.state.assignData = record;
  310. this.setState(
  311. {
  312. nub,
  313. },
  314. () => {
  315. this.setState({
  316. assignVisible: true,
  317. });
  318. }
  319. );
  320. },
  321. componentWillMount() {
  322. this.departmentList();
  323. this.loadData();
  324. },
  325. tableRowClick(record) {
  326. this.state.RowData = record;
  327. this.setState({
  328. visible: true,
  329. });
  330. this.xiangqing(record.orderNo);
  331. this.xiangmu(record.orderNo);
  332. },
  333. // 拆分详细
  334. showRes(record) {
  335. this.setState({
  336. resVisible: true,
  337. resRecord: record,
  338. });
  339. },
  340. resCancel() {
  341. this.setState({
  342. resVisible: false,
  343. });
  344. },
  345. //订单详情
  346. xiangqing(orderNos) {
  347. $.ajax({
  348. method: "get",
  349. dataType: "json",
  350. crossDomain: false,
  351. url: globalConfig.context + "/api/admin/newOrder/getOrderNewDetail",
  352. data: {
  353. orderNo: orderNos,
  354. },
  355. success: function (data) {
  356. if (data.error.length || data.data.list == "") {
  357. if (data.error && data.error.length) {
  358. message.warning(data.error[0].message);
  359. }
  360. } else {
  361. let thisdata = data.data;
  362. this.setState({
  363. orderNo: thisdata.orderNo, //订单编号
  364. contractNo: thisdata.contractNo, //合同编号
  365. userName: thisdata.userName, //客户名称
  366. signDate: thisdata.signDate, //签单时间
  367. processStatus: thisdata.processStatus, //流程状态
  368. liquidationStatus: thisdata.liquidationStatus, //结算状态
  369. contacts: thisdata.contacts, //企业联系人
  370. contactMobile: thisdata.contactMobile, //联系人电话
  371. legalPerson: thisdata.legalPerson, //法人
  372. legalPersonTel: thisdata.legalPersonTel, //法人电话
  373. firstAmount: thisdata.firstAmount, //签单金额
  374. totalAmount: thisdata.totalAmount, //首付金额
  375. approval: thisdata.approval, //特批状态
  376. settlementAmount: thisdata.settlementAmount, //已收款项
  377. orderRemarks: thisdata.orderRemarks, //订单留言
  378. orgCodeUrl: thisdata.contractPictureUrl
  379. ? splitUrl(
  380. thisdata.contractPictureUrl,
  381. ",",
  382. globalConfig.avatarHost + "/upload"
  383. )
  384. : [], //图片地址
  385. replenishUrl: thisdata.agreementUrl
  386. ? splitUrl(
  387. thisdata.agreementUrl,
  388. ",",
  389. globalConfig.avatarHost + "/upload"
  390. )
  391. : [],
  392. salesmanName: thisdata.salesmanName, //营销员名称
  393. salesmanMobile: thisdata.salesmanMobile, //营销员电话
  394. financeName: thisdata.financeName, //财务名称
  395. financeMobile: thisdata.financeMobile, //财务电话
  396. oldSalesmanName: thisdata.oldSalesmanName, //营销员名称
  397. oldSalesmanMobile: thisdata.oldSalesmanMobile, //营销员电话
  398. nowFinance: thisdata.nowFinance, //财务名称
  399. nowFinanceMobile: thisdata.nowFinanceMobile, //财务电话
  400. depName: thisdata.depName, //订单部门
  401. });
  402. }
  403. }.bind(this),
  404. }).always(
  405. function () {
  406. this.setState({
  407. loading: false,
  408. });
  409. }.bind(this)
  410. );
  411. },
  412. //项目列表
  413. xiangmu(orderNos) {
  414. $.ajax({
  415. method: "get",
  416. dataType: "json",
  417. crossDomain: false,
  418. url: globalConfig.context + "/api/admin/newOrder/getOrderTask",
  419. data: {
  420. orderNo: orderNos,
  421. },
  422. success: function (data) {
  423. let theArr = [];
  424. if (data.error.length || data.data.list == "") {
  425. if (data.error && data.error.length) {
  426. message.warning(data.error[0].message);
  427. }
  428. } else {
  429. for (let i = 0; i < data.data.length; i++) {
  430. let thisdata = data.data[i];
  431. thisdata.key = i;
  432. theArr.push(thisdata);
  433. }
  434. }
  435. this.setState({
  436. dataSourceX: theArr,
  437. });
  438. }.bind(this),
  439. }).always(
  440. function () {
  441. this.setState({
  442. loading: false,
  443. });
  444. }.bind(this)
  445. );
  446. },
  447. //关闭详情
  448. visitCancel() {
  449. this.setState({
  450. visible: false,
  451. });
  452. this.loadData();
  453. },
  454. visitOk() {
  455. this.setState({
  456. visible: false,
  457. });
  458. this.reset();
  459. },
  460. closeDesc(e, s) {
  461. this.state.showDesc = e;
  462. if (s) {
  463. this.loadData(this.state.page);
  464. }
  465. },
  466. closeAssign(e, s) {
  467. this.state.roleName = "";
  468. this.state.assignVisible = e;
  469. if (s) {
  470. this.loadData(this.state.page);
  471. }
  472. },
  473. nextCancel() {
  474. this.setState({
  475. addnextVisible: false,
  476. });
  477. },
  478. //点击打卡项目详情
  479. tableRowClickX(record) {
  480. this.setState({
  481. jid: record.id, //项目ID
  482. kid: record.commodityId, //商品ID
  483. commodityName: record.commodityName, //金额
  484. commodityPrice: record.commodityPrice, //金额
  485. commodityQuantity: record.commodityQuantity, //数量
  486. taskComment: record.taskComment, //备注
  487. main: record.main.toString(), //是否为主要
  488. addnextVisible: true,
  489. addState: 0,
  490. });
  491. },
  492. search() {
  493. this.loadData();
  494. },
  495. reset() {
  496. this.state.nameSearch = "";
  497. this.state.releaseDate = [];
  498. this.state.orderNoSearch = "";
  499. this.state.taskNoSearch = "";
  500. this.state.departmenttSearch = undefined;
  501. this.state.distribution = undefined;
  502. this.loadData(this.state.page);
  503. },
  504. searchSwitch() {
  505. this.setState({
  506. searchMore: !this.state.searchMore,
  507. });
  508. },
  509. //部门
  510. departmentList() {
  511. this.setState({
  512. loading: true,
  513. });
  514. $.ajax({
  515. method: "get",
  516. dataType: "json",
  517. crossDomain: false,
  518. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  519. data: {},
  520. success: function (data) {
  521. let thedata = data.data;
  522. let theArr = [];
  523. if (!thedata) {
  524. if (data.error && data.error.length) {
  525. message.warning(data.error[0].message);
  526. }
  527. thedata = {};
  528. } else {
  529. thedata.map(function (item, index) {
  530. theArr.push({
  531. key: index,
  532. name: item.name,
  533. id: item.id,
  534. });
  535. });
  536. }
  537. this.setState({
  538. departmentArr: theArr,
  539. });
  540. }.bind(this),
  541. }).always(
  542. function () {
  543. this.setState({
  544. loading: false,
  545. });
  546. }.bind(this)
  547. );
  548. },
  549. resolutionCancel() {
  550. this.setState({
  551. resolutionVisible: false,
  552. });
  553. },
  554. rizhi() {
  555. this.setState({
  556. loading: true,
  557. });
  558. $.ajax({
  559. method: "get",
  560. dataType: "json",
  561. crossDomain: false,
  562. url: "/api/admin/newOrder/selectOrderLog",
  563. data: {
  564. orderNo: this.state.orderNo,
  565. },
  566. success: function (data) {
  567. let theArr = [];
  568. let thisData = data.data;
  569. if (!thisData.length) {
  570. if (data.error && data.error.length) {
  571. message.warning(data.error[0].message);
  572. }
  573. thisData = {};
  574. } else {
  575. for (let i = 0; i < data.data.length; i++) {
  576. let thisdata = data.data[i];
  577. theArr.push({
  578. processName: thisdata.processName,
  579. adminName: thisdata.adminName,
  580. createDate: thisdata.createDate,
  581. remarks: thisdata.remarks,
  582. });
  583. }
  584. }
  585. this.setState({
  586. dataSourceY: theArr,
  587. });
  588. }.bind(this),
  589. }).always(
  590. function () {
  591. this.setState({
  592. loading: false,
  593. });
  594. }.bind(this)
  595. );
  596. },
  597. closeOrderLog() {
  598. this.setState({
  599. avisible: false,
  600. });
  601. },
  602. getOrderLog() {
  603. this.setState({
  604. avisible: true,
  605. });
  606. this.rizhi();
  607. },
  608. render() {
  609. const expandedRowRender = (e) => {
  610. const data = e.splitList;
  611. let columns = [];
  612. if (e.splitList instanceof Array && e.splitList.length) {
  613. columns = [
  614. {
  615. title: "任务编号",
  616. dataIndex: "splitSuper",
  617. key: "splitSuper",
  618. render: (text, record) => {
  619. return text + "-" + record.splitId;
  620. },
  621. },
  622. {
  623. title: "任务名称",
  624. dataIndex: "taskName",
  625. key: "taskName",
  626. },
  627. {
  628. title: "订单编号",
  629. dataIndex: "orderNo",
  630. key: "orderNo",
  631. },
  632. {
  633. title: "业务类别",
  634. dataIndex: "cname",
  635. key: "cname",
  636. },
  637. {
  638. title: "客户名称",
  639. dataIndex: "userName",
  640. key: "userName",
  641. },
  642. {
  643. title: "项目状态",
  644. dataIndex: "projectStatus",
  645. key: "projectStatus",
  646. render: (text) => {
  647. return getProjectStatus(text);
  648. },
  649. },
  650. {
  651. title: "分配时间",
  652. dataIndex: "taskDate",
  653. key: "taskDate",
  654. },
  655. {
  656. title: "任务数量",
  657. dataIndex: "commodityQuantity",
  658. key: "commodityQuantity",
  659. },
  660. {
  661. title: "订单部门",
  662. dataIndex: "depName",
  663. key: "depName",
  664. },
  665. {
  666. title: "拆分操作人",
  667. dataIndex: "splitAname",
  668. key: "splitAname",
  669. },
  670. {
  671. title: "项目负责人",
  672. dataIndex: "receiverName",
  673. key: "receiverName",
  674. },
  675. {
  676. title: "拆分时间",
  677. dataIndex: "splitTimes",
  678. key: "splitTimes",
  679. },
  680. {
  681. title: "操作",
  682. dataIndex: "caozuo",
  683. key: "caouzo",
  684. render: (text, record) => {
  685. return (
  686. <div>
  687. <Button
  688. type="primary"
  689. style={{ margin: "0 10px" }}
  690. disabled={record.distributeSign == 1 ? true : false}
  691. onClick={(e) => {
  692. e.stopPropagation(), this.evaluate(record, "咨询师经理");
  693. }}
  694. >
  695. 转交
  696. </Button>
  697. <Button
  698. type="primary"
  699. style={{ margin: "0 10px" }}
  700. disabled={record.distributeSign == 1 ? true : false}
  701. onClick={(e) => {
  702. e.stopPropagation(), this.evaluate(record, "咨询师");
  703. }}
  704. >
  705. 分配任务
  706. </Button>
  707. </div>
  708. );
  709. },
  710. },
  711. ];
  712. return (
  713. <Table
  714. columns={columns}
  715. dataSource={data}
  716. pagination={false}
  717. onRowClick={this.tableRowClick.bind(this)}
  718. />
  719. );
  720. } else {
  721. columns = [];
  722. return (
  723. <p style={{ fontWeight: "bold", color: "red", textAlign: "center" }}>
  724. 此项目暂未拆分
  725. </p>
  726. );
  727. }
  728. };
  729. const rowSelection = {
  730. selectedRowKeys: this.state.selectedRowKeys,
  731. onChange: (selectedRowKeys, selectedRows) => {
  732. this.setState({
  733. selectedRows: selectedRows.slice(-1),
  734. selectedRowKeys: selectedRowKeys.slice(-1),
  735. });
  736. },
  737. };
  738. const formItemLayout = {
  739. labelCol: { span: 8 },
  740. wrapperCol: { span: 14 },
  741. };
  742. let departmentArr = this.state.departmentArr || [];
  743. return (
  744. <div className="user-content">
  745. 123
  746. </div>
  747. );
  748. },
  749. });
  750. export default PersonnelAll;