projectManageDetaile.jsx 49 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309
  1. import React from 'react';
  2. import { Icon, Table, Modal, message, Spin, Input, Select, Button, Form ,Upload,Popconfirm,AutoComplete} from 'antd';
  3. import ajax from 'jquery/src/ajax/xhr.js';
  4. import $ from 'jquery/src/ajax';
  5. import '../userMangagement.less';
  6. import {orderType} from '../../../../dataDic.js';
  7. import {getOrderType,getProjectState,getTaskStatus,getOrderChannel,getOrderState,getPaymentState ,getApprovedState} from '../../../../tools.js';
  8. const MySettlementDetaile = Form.create()(React.createClass({
  9. loadData(record) {
  10. this.setState({
  11. loading: true
  12. });
  13. $.ajax({
  14. method: "get",
  15. dataType: "json",
  16. crossDomain: false,
  17. url: globalConfig.context + '/api/admin/techproject/getProjectTask',
  18. data: {
  19. contractId:record?record.id:this.props.datauser.id
  20. },
  21. success: function (data) {
  22. let theArr =[];
  23. if (!data.data) {
  24. if (data.error && data.error.length) {
  25. message.warning(data.error[0].message);
  26. };
  27. } else {
  28. for (let i = 0; i < data.data.length; i++) {
  29. let thisdata = data.data[i];
  30. theArr.push({
  31. key:i,
  32. taskId:thisdata.taskId,
  33. commodityName:thisdata.commodityName,
  34. commodityQuantity:thisdata.commodityQuantity,
  35. technicianName:thisdata.technicianName,
  36. taskStatus:thisdata.taskStatus,
  37. deleteSign:thisdata.deleteSign,
  38. taskComment:thisdata.taskComment,
  39. });
  40. };
  41. }
  42. this.setState({
  43. dataSource: theArr,
  44. });
  45. }.bind(this),
  46. }).always(function () {
  47. this.setState({
  48. loading: false
  49. });
  50. }.bind(this));
  51. },
  52. getInitialState() {
  53. return {
  54. loading: false,
  55. visible: false,
  56. contractState:false,
  57. projectVisible:false,
  58. selectedRowKey:[],
  59. orderSelect:false,
  60. orgCodeUrl:[],
  61. customerArr:[],
  62. checkedKeys: [],
  63. //派单
  64. columns: [
  65. {
  66. title: '任务名称',
  67. dataIndex: 'commodityName',
  68. key: 'commodityName'
  69. },{
  70. title: '任务数量',
  71. dataIndex: 'commodityQuantity',
  72. key: 'commodityQuantity'
  73. }, {
  74. title: '任务负责人',
  75. dataIndex: 'technicianName',
  76. key: 'technicianName'
  77. }, {
  78. title: '任务状态',
  79. dataIndex: 'taskStatus',
  80. key: 'taskStatus',
  81. render:(text)=>{return getTaskStatus(text)}
  82. }, {
  83. title: '是否锁定',
  84. dataIndex: 'deleteSign',
  85. key: 'deleteSign',
  86. render:(text)=>{return text==2?'锁定':'未锁定'}
  87. },{
  88. title: '任务说明',
  89. dataIndex: 'taskComment',
  90. key: 'taskComment',
  91. render:(text) => {
  92. return(
  93. text&&text.length>6?text.substr(0,8)+'...':text
  94. )
  95. }
  96. },{
  97. title: '操作',
  98. dataIndex: 'rrtk',
  99. key: 'rrtk',
  100. render:(text,record,index)=>{
  101. return (
  102. <div>
  103. {record.taskStatus<=1&&<Popconfirm title={'您将删除项目任务 【'+record.commodityName+'】,系统将自动同步作废项目资料单,请确认!'} onConfirm={(e)=>{this.voidOperation(record)}} okText="确认" cancelText="取消">
  104. <Button style={{marginRight:'5px'}} onClick={(e) =>{ e.stopPropagation()}} type="danger">删除</Button>
  105. </Popconfirm>}
  106. {record.taskStatus<1&&<Button style={{marginRight:'5px'}} onClick={(e) =>{ e.stopPropagation(),this.confirmDelet(record)}} type="primary">派单</Button>}
  107. </div>
  108. )
  109. }
  110. }
  111. ],
  112. userList:[
  113. {
  114. title: '用户编号',
  115. dataIndex: 'userNo',
  116. key: 'userNo'
  117. }, {
  118. title: '用户姓名',
  119. dataIndex: 'name',
  120. key: 'name'
  121. },{
  122. title: '部门机构',
  123. dataIndex: 'departmentName',
  124. key: 'departmentName'
  125. }, {
  126. title: '职务',
  127. dataIndex: 'position',
  128. key: 'position'
  129. },{
  130. title: '联系手机',
  131. dataIndex: 'mobile',
  132. key: 'mobile'
  133. }, {
  134. title: '操作',
  135. dataIndex: 'abc',
  136. key: 'abc',
  137. render:(text,record,index)=>{
  138. return (
  139. <Popconfirm title={'您确认将订单分配给【'+record.departmentName+'-'+record.name+'】进行业务跟进?'} onConfirm={(e)=>{this.confirmSelect(record)}} okText="确认" cancelText="取消">
  140. <Button style={{marginRight:'5px'}} type="primary">选定</Button>
  141. </Popconfirm>
  142. )
  143. }
  144. }
  145. ],
  146. contractList:[
  147. {
  148. title: '姓名',
  149. dataIndex: 'name',
  150. key: 'name'
  151. }, {
  152. title: '部门',
  153. dataIndex: 'depatrment',
  154. key: 'depatrment'
  155. },{
  156. title: '联系方式',
  157. dataIndex: 'mobile',
  158. key: 'mobile'
  159. }, {
  160. title: '职务',
  161. dataIndex: 'position',
  162. key: 'position'
  163. },{
  164. title: '微信',
  165. dataIndex: 'wechat',
  166. key: 'wechat'
  167. },{
  168. title: 'QQ',
  169. dataIndex: 'qq',
  170. key: 'qq'
  171. },
  172. ],
  173. };
  174. },
  175. seeOrder(){
  176. this.seeOrderAjax();
  177. this.setState({
  178. seeState:true,
  179. orderVisible:true
  180. })
  181. },
  182. seeContract(){
  183. this.contract();
  184. this.setState({
  185. seeState:false,
  186. orderVisible:true
  187. })
  188. },
  189. orderCancel(){
  190. this.setState({
  191. orderVisible:false
  192. })
  193. },
  194. //查看联系人
  195. contract(){
  196. $.ajax({
  197. method: "get",
  198. dataType: "json",
  199. crossDomain: false,
  200. url: globalConfig.context + '/api/admin/customer/findAllContacts',
  201. data: {
  202. uid: this.state.buyerId
  203. },
  204. success: function (data) {
  205. let thisData = data.data;
  206. if (!thisData) {
  207. if (data.error && data.error.length) {
  208. message.warning(data.error[0].message);
  209. };
  210. thisData = {};
  211. };
  212. this.setState({
  213. contractArr:thisData,
  214. });
  215. }.bind(this),
  216. }).always(function () {
  217. this.setState({
  218. loading: false
  219. });
  220. }.bind(this));
  221. },
  222. //查看订单
  223. seeOrderAjax(){
  224. $.ajax({
  225. method: "get",
  226. dataType: "json",
  227. crossDomain: false,
  228. url: globalConfig.context + '/api/admin/order/getServiceOrderDetail',
  229. data: {
  230. orderNo: this.state.orderNok
  231. },
  232. success: function (data) {
  233. let thisData = data.data;
  234. if (!thisData) {
  235. if (data.error && data.error.length) {
  236. message.warning(data.error[0].message);
  237. };
  238. thisData = {};
  239. };
  240. this.setState({
  241. orderArr:thisData,
  242. });
  243. }.bind(this),
  244. }).always(function () {
  245. this.setState({
  246. loading: false
  247. });
  248. }.bind(this));
  249. },
  250. //查看详情
  251. loaduser(record){
  252. if(record){
  253. $.ajax({
  254. method: "get",
  255. dataType: "json",
  256. crossDomain: false,
  257. url: globalConfig.context + '/api/admin/techproject/getProjectDetail',
  258. data: {
  259. contractId: record.id,
  260. buyerType:record.buyerType
  261. },
  262. success: function (data) {
  263. let thisData = data.data;
  264. if (!thisData) {
  265. if (data.error && data.error.length) {
  266. message.warning(data.error[0].message);
  267. };
  268. thisData = {};
  269. };
  270. this.setState({
  271. buyerId:thisData.uid,
  272. id:record.id,
  273. orderNok:thisData.orderNo,
  274. orderList:thisData,
  275. technicianName:thisData.technicianName, //项目负责人
  276. });
  277. }.bind(this),
  278. }).always(function () {
  279. this.setState({
  280. loading: false
  281. });
  282. }.bind(this));
  283. }
  284. },
  285. //删除
  286. voidOperation(record){
  287. this.setState({
  288. loading: true
  289. });
  290. $.ajax({
  291. method: "get",
  292. dataType: "json",
  293. crossDomain: false,
  294. url: globalConfig.context + '/api/admin/techproject/deleteProjectTask',
  295. data: {
  296. taskId:record.taskId
  297. }
  298. }).done(function (data) {
  299. if (!data.error.length) {
  300. message.success('操作成功');
  301. this.setState({
  302. loading: false,
  303. });
  304. this.loadData();
  305. } else {
  306. message.warning(data.error[0].message);
  307. };
  308. }.bind(this));
  309. },
  310. //订单编辑保存
  311. handleOk(e) {
  312. this.setState({
  313. visible: false,
  314. });
  315. this.props.closeDesc(false, true);
  316. },
  317. handleCancel(e) {
  318. this.setState({
  319. visible: false,
  320. });
  321. this.props.closeDesc(false);
  322. },
  323. //新建项目
  324. projectOk(e) {
  325. this.setState({
  326. projectVisible: false,
  327. });
  328. this.props.closeDesc(false, true);
  329. },
  330. projectCancel(e) {
  331. this.setState({
  332. projectVisible: false,
  333. });
  334. this.props.closeDesc(false);
  335. },
  336. //选定订单
  337. orderOk() {
  338. this.setState({
  339. orderSelect: false,
  340. });
  341. },
  342. componentWillMount() {
  343. },
  344. nextCancel() {
  345. this.setState({
  346. addnextVisible: false
  347. })
  348. },
  349. //查看订单明细
  350. orderDetails(record){
  351. if(record){
  352. $.ajax({
  353. method: "get",
  354. dataType: "json",
  355. crossDomain: false,
  356. url: globalConfig.context + '/api/admin/techproject/getProjectTaskDetail',
  357. data: {
  358. taskId: record.taskId
  359. },
  360. success: function (data) {
  361. let thisData = data.data;
  362. if (!thisData) {
  363. if (data.error && data.error.length) {
  364. message.warning(data.error[0].message);
  365. };
  366. thisData = {};
  367. };
  368. this.setState({
  369. taskId:thisData.taskId,
  370. taskNo:thisData.taskNo,
  371. projectNo:thisData.projectNo,
  372. categoryId:thisData.categoryId,
  373. commodityName:thisData.commodityName,
  374. taskStatus:thisData.taskStatus,
  375. taskComment:thisData.taskComment,
  376. deletedSign:thisData.deletedSign,
  377. taskAllocatorName:thisData.taskAllocatorName,
  378. taskReceiverName:thisData.taskReceiverName,
  379. taskDistributionTime:thisData.taskDistributionTime,
  380. });
  381. }.bind(this),
  382. }).always(function () {
  383. this.setState({
  384. loading: false
  385. });
  386. }.bind(this));
  387. }
  388. },
  389. //创建项目保存
  390. admissibleOrder(){
  391. if(!this.state.autoId||!this.state.customerName){
  392. message.warning('客户名称不匹配');
  393. return false;
  394. };
  395. if(!this.state.projectName){
  396. message.warning('请选择项目负责人');
  397. return false;
  398. };
  399. if(!this.state.contractType){
  400. message.warning('请选择业务品类');
  401. return false;
  402. };
  403. if(this.state.signComment&&this.state.signComment.length>45){
  404. message.warning('项目说明字数不能超过45字');
  405. return false;
  406. };
  407. this.setState({
  408. loading: true
  409. });
  410. $.ajax({
  411. method: "POST",
  412. dataType: "json",
  413. crossDomain: false,
  414. url: globalConfig.context + '/api/admin/techproject/createProject',
  415. data: {
  416. uid:this.state.autoId,
  417. signComment:this.state.signComment,
  418. aid:this.state.aid,
  419. projectType:0,
  420. contractType:this.state.contractType
  421. }
  422. }).done(function(data) {
  423. this.setState({
  424. loading: false
  425. });
  426. if(!data.error.length) {
  427. message.success('创建成功!');
  428. this.projectOk()
  429. } else {
  430. message.warning(data.error[0].message);
  431. }
  432. }.bind(this));
  433. },
  434. //派单
  435. //操作分配
  436. confirmDelet(index){
  437. this.setState({
  438. taskIds:index.taskId,
  439. userDetaile:false,
  440. distributionVisible:true
  441. });
  442. },
  443. distributionCancel(){
  444. this.setState({
  445. distributionVisible:false
  446. })
  447. },
  448. distributionOk(){
  449. this.setState({
  450. distributionVisible:false
  451. })
  452. },
  453. //分配对象列表
  454. contactList(){
  455. $.ajax({
  456. method: "get",
  457. dataType: "json",
  458. crossDomain: false,
  459. url: globalConfig.context + '/api/admin/superviser/adminList',
  460. data: {
  461. pageNo: 1,
  462. pageSize: 99,
  463. departmentId:this.state.departmenttList,
  464. name:this.state.financeNameSearch,
  465. },
  466. success: function (data) {
  467. let theArr = [];
  468. if (!data.data) {
  469. if (data.error && data.error.length) {
  470. message.warning(data.error[0].message);
  471. };
  472. } else {
  473. for (let i = 0; i < data.data.list.length; i++) {
  474. let thisdata = data.data.list[i];
  475. theArr.push({
  476. key: i,
  477. id: thisdata.id,
  478. userNo: thisdata.userNo,
  479. name:thisdata.name,
  480. departmentName:thisdata.departmentName,
  481. departmentId:thisdata.departmentId,
  482. position:thisdata.position,
  483. mobile:thisdata.mobile,
  484. });
  485. };
  486. };
  487. this.setState({
  488. distributionList: theArr,
  489. });
  490. }.bind(this),
  491. }).always(function () {
  492. this.setState({
  493. loading: false
  494. });
  495. }.bind(this));
  496. },
  497. //选定对象
  498. confirmSelect(record){
  499. if(this.state.projectVisible){
  500. this.setState({
  501. aid:record.id,
  502. projectName:record.name
  503. })
  504. this.distributionOk();
  505. return false
  506. }
  507. this.setState({
  508. loading: true
  509. });
  510. $.ajax({
  511. method: "POST",
  512. dataType: "json",
  513. crossDomain: false,
  514. url: globalConfig.context + "/api/admin/techproject/distributionTask",
  515. data: {
  516. taskId:this.state.taskIds,
  517. taskReceiverId:record.id
  518. }
  519. }).done(function (data) {
  520. if (!data.error.length) {
  521. message.success('分派成功!');
  522. this.setState({
  523. loading: false,
  524. });
  525. this.distributionOk();
  526. this.loadData();
  527. } else {
  528. message.warning(data.error[0].message);
  529. };
  530. }.bind(this));
  531. },
  532. searchOrder(){
  533. this.contactList();
  534. },
  535. resetOrder(){
  536. this.state.departmenttList=undefined;
  537. this.state.financeNameSearch='';
  538. this.setState({
  539. distributionList:[]
  540. })
  541. },
  542. //添加任务
  543. addTask(){
  544. this.setState({
  545. commodityQuantity:'',
  546. commodityName:'',
  547. taskComment:'',
  548. kid:'',
  549. commodityId:undefined,
  550. addTaskState:true,
  551. addnextVisible:true,
  552. customerArr:[]
  553. });
  554. },
  555. //客户名称自动补全
  556. //加载(自动补全)
  557. supervisor(e,state){ //客户名称与服务名称自动补全
  558. let api=state?'/api/admin/customer/findCustomerByName':'/api/admin/order/getBusinessProjectByName';
  559. $.ajax({
  560. method: "get",
  561. dataType: "json",
  562. crossDomain: false,
  563. url: globalConfig.context + api,
  564. data:state?{
  565. name:e
  566. }:{
  567. businessName:e
  568. },
  569. success: function (data) {
  570. let thedata=data.data;
  571. if (!thedata) {
  572. if (data.error && data.error.length) {
  573. message.warning(data.error[0].message);
  574. };
  575. thedata = {};
  576. };
  577. this.setState({
  578. states:state,
  579. customerArr:thedata,
  580. });
  581. }.bind(this),
  582. }).always(function () {
  583. this.setState({
  584. loading: false
  585. });
  586. }.bind(this));
  587. },
  588. //服务值改变时请求客户名称
  589. httpChange(e){
  590. if(e.length>=2){
  591. this.supervisor(e,false);
  592. }
  593. this.setState({
  594. commodityName:e
  595. })
  596. },
  597. //上级主管输入框失去焦点是判断客户是否存在
  598. selectAuto(value){
  599. let kid=[];
  600. let fwList=this.state.customerArr;
  601. fwList.map(function(item){
  602. if(value==item.bname){
  603. kid=item.id
  604. }
  605. })
  606. this.setState({
  607. kid:kid,
  608. commodityName:value,
  609. })
  610. },
  611. customerChange(e){
  612. if(e.length>=2){
  613. this.supervisor(e,true);
  614. }
  615. this.setState({
  616. customerName:e
  617. })
  618. },
  619. //客户
  620. selectAutoCUT(value){
  621. let autoIds;
  622. let fwList=this.state.customerArr;
  623. fwList.map(function(item){
  624. if(value==item.name){
  625. autoIds=item.id
  626. }
  627. })
  628. this.setState({
  629. customerName:value,
  630. autoId:autoIds
  631. })
  632. },
  633. //任务新建、编辑保存
  634. taskSumbit(e) {
  635. e.preventDefault();
  636. if(this.state.addTaskState){
  637. if(!this.state.kid){
  638. message.warning('请输入服务项目名称');
  639. return false;
  640. };
  641. if(!this.state.commodityQuantity){
  642. message.warning('请输入数量');
  643. return false;
  644. };
  645. }
  646. this.props.form.validateFields((err, values) => {
  647. if(!err) {
  648. this.setState({
  649. loading: true
  650. });
  651. let api=this.state.addTaskState?'/api/admin/techproject/addProjectTask':'/api/admin/techproject/updateProjectTask';
  652. $.ajax({
  653. method: "POST",
  654. dataType: "json",
  655. crossDomain: false,
  656. url: globalConfig.context + api,
  657. data: this.state.addTaskState?{
  658. contractId:this.props.datauser.id,
  659. commodityId:this.state.kid,
  660. commodityName:this.state.commodityName,
  661. commodityQuantity:this.state.commodityQuantity,
  662. taskComment:this.state.taskComment,
  663. }:{
  664. taskId:this.state.taskId,
  665. commodityId:this.state.kid?this.state.kid:this.state.commodityId,
  666. taskComment:this.state.taskComment
  667. }
  668. }).done(function(data) {
  669. this.setState({
  670. loading: false
  671. });
  672. if(!data.error.length) {
  673. message.success('保存成功!');
  674. this.nextCancel();
  675. this.loadData();
  676. } else {
  677. message.warning(data.error[0].message);
  678. }
  679. }.bind(this));
  680. }
  681. });
  682. },
  683. //任务项目各种骚操作
  684. removeItem(){ //撤项
  685. this.removeList(0)
  686. },
  687. Knot(){ //结项
  688. this.removeList(1)
  689. },
  690. removeList(e){
  691. this.setState({
  692. loading: true
  693. });
  694. $.ajax({
  695. method: "get",
  696. dataType: "json",
  697. crossDomain: false,
  698. url: globalConfig.context + '/api/admin/techproject/revokeOrComplete',
  699. data: {
  700. contractId:this.props.datauser.id,
  701. operatorType:e
  702. }
  703. }).done(function(data) {
  704. this.setState({
  705. loading: false
  706. });
  707. if(!data.error.length) {
  708. message.success('操作成功!');
  709. this.handleOk()
  710. } else {
  711. message.warning(data.error[0].message);
  712. }
  713. }.bind(this));
  714. },
  715. //品类数据获取
  716. category(){
  717. this.setState({
  718. loading: true
  719. });
  720. $.ajax({
  721. method: "get",
  722. dataType: "json",
  723. crossDomain: false,
  724. url: globalConfig.context + "/api/admin/Varieties/getSuperList",
  725. data: {
  726. },
  727. success: function(data) {
  728. let thedata = data.data;
  729. let theArr=[];
  730. if(!thedata) {
  731. if(data.error && data.error.length) {
  732. message.warning(data.error[0].message);
  733. };
  734. thedata = {};
  735. }else{
  736. thedata.map(function(item,index){
  737. theArr.push({
  738. key:index,
  739. name:item.cname,
  740. id:item.id,
  741. })
  742. })
  743. }
  744. this.setState({
  745. contractType:undefined,
  746. categoryArr:theArr,
  747. })
  748. }.bind(this),
  749. }).always(function() {
  750. this.setState({
  751. loading: false
  752. });
  753. }.bind(this));
  754. },
  755. tableRowClick(record, index) {
  756. this.setState({
  757. addTaskState:false,
  758. addnextVisible:true,
  759. });
  760. this.orderDetails(record)
  761. },
  762. componentWillReceiveProps(nextProps) { //props改变时触发
  763. this.state.projectVisible = nextProps.newProject;
  764. this.state.visible = nextProps.showDesc;
  765. if(nextProps.userDetaile && nextProps.showDesc ) {
  766. if(nextProps.datauser && nextProps.datauser.id ) {
  767. this.loaduser(nextProps.datauser);
  768. this.loadData(nextProps.datauser);
  769. }
  770. }else{
  771. this.category();
  772. this.setState({
  773. customerArr:[],
  774. customerName:'',
  775. autoId:'',
  776. signComment:'',
  777. projectName:'',
  778. aid:'',
  779. contractType:undefined
  780. })
  781. }
  782. },
  783. render() {
  784. const FormItem = Form.Item
  785. const formItemLayout = {
  786. labelCol: { span: 8 },
  787. wrapperCol: { span: 14 },
  788. };
  789. const rowSelection = {
  790. selectedRowKey: this.state.selectedRowKey,
  791. onChange: (selectedRowKey, selectedRows) => {
  792. this.setState({
  793. selectedRows: selectedRows.slice(-1),
  794. selectedRowKey: selectedRowKey.slice(-1)
  795. });
  796. },
  797. onSelectAll: (selected, selectedRows, changeRows) => {
  798. this.setState({
  799. selectedRowKey:[]
  800. })
  801. },
  802. };
  803. const categoryList=this.state.categoryArr ||[];
  804. let departmentArr = this.props.departmentArr || [];
  805. const hasSelected = this.state.selectedRowKey.length > 0;
  806. const orderDetaiel=this.state.orderList || [];
  807. const dataSources=this.state.customerArr || [];
  808. const orderArr=this.state.orderArr ||[];
  809. const options = this.state.states?dataSources.map((group,index) =>
  810. <Select.Option key={index} value={group.name}>{group.name}</Select.Option>
  811. ):dataSources.map((group,index) =>
  812. <Select.Option key={index} value={group.bname}>{group.bname}</Select.Option>
  813. )
  814. return(
  815. <div>
  816. <Modal maskClosable={false} visible={this.state.visible}
  817. onOk={this.handleOk} onCancel={this.handleCancel}
  818. width='1000px'
  819. title={this.props.projectState?'项目管理':'项目详情' }
  820. footer=''
  821. className="admin-desc-content">
  822. <Form layout="horizontal" id="demand-form" style={{paddingBottom:'40px'}} onSubmit={this.handleSubmit}>
  823. <Spin spinning={this.state.loading}>
  824. <div className="clearfix">
  825. <div className="clearfix">
  826. <FormItem className="half-item"
  827. {...formItemLayout}
  828. label="订单编号" >
  829. <span>{orderDetaiel.orderNo}</span>
  830. {orderDetaiel.orderNo&&!this.props.queryProject?<Button onClick={this.seeOrder} style={{float:'right',fontSize:'12px'}}>查看订单</Button>:''}
  831. </FormItem>
  832. <FormItem className="half-item"
  833. {...formItemLayout}
  834. label="项目编号" >
  835. <span>{orderDetaiel.serialNumber}</span>
  836. </FormItem>
  837. <FormItem className="half-item"
  838. {...formItemLayout}
  839. label="客户名称" >
  840. <span>{orderDetaiel.buyerName}</span>
  841. {orderDetaiel.buyerName&&<Button onClick={this.seeContract} style={{float:'right',fontSize:'12px'}}>查看联系人</Button>}
  842. </FormItem>
  843. <FormItem className="half-item"
  844. {...formItemLayout}
  845. label="客户省份" >
  846. <span>{orderDetaiel.buyerProvince}</span>
  847. </FormItem>
  848. <FormItem className="half-item"
  849. {...formItemLayout}
  850. label="项目类型" >
  851. <span>{getOrderType(orderDetaiel.projectType)}</span>
  852. </FormItem>
  853. <FormItem className="half-item"
  854. {...formItemLayout}
  855. label="项目负责人" >
  856. <span>{orderDetaiel.principalName}</span>
  857. </FormItem>
  858. <FormItem className="half-item"
  859. {...formItemLayout}
  860. label="项目状态" >
  861. <span>{getProjectState(orderDetaiel.projectStatus)}</span>
  862. </FormItem>
  863. <FormItem className="half-item"
  864. {...formItemLayout}
  865. label="是否锁定" >
  866. <span>{orderDetaiel.deleteSign==2?'锁定':'未锁定'}</span>
  867. </FormItem>
  868. <FormItem className="half-item"
  869. {...formItemLayout}
  870. label="立项时间" >
  871. <span>{orderDetaiel.signDate}</span>
  872. </FormItem>
  873. <FormItem className="half-item"
  874. {...formItemLayout}
  875. label="业务品类" >
  876. <span>{orderDetaiel.projectType}</span>
  877. </FormItem>
  878. <div className='clearfix'>
  879. <FormItem
  880. labelCol={{ span: 4 }}
  881. wrapperCol={{ span: 16 }}
  882. label="立项说明" >
  883. <span>{orderDetaiel.signComment}</span>
  884. </FormItem>
  885. </div>
  886. </div>
  887. <div className='clearfix'>
  888. <FormItem className="half-item"
  889. {...formItemLayout}
  890. label="结项日期" >
  891. <span>{orderDetaiel.completeDate}</span>
  892. </FormItem>
  893. </div>
  894. <div className='clearfix'>
  895. <FormItem
  896. labelCol={{ span: 4 }}
  897. wrapperCol={{ span: 16 }}
  898. label="结项说明" >
  899. <span>{orderDetaiel.completeComment}</span>
  900. </FormItem>
  901. </div>
  902. <div className='clearfix'>
  903. <FormItem className="half-item"
  904. {...formItemLayout}
  905. label="是否作废" >
  906. <span>{orderDetaiel.deleteSign==1?'作废':'未作废'}</span>
  907. </FormItem>
  908. </div>
  909. <div>
  910. <span style={{marginLeft:'50px',fontSize:'20px'}}>项目任务</span>
  911. {orderDetaiel.projectStatus<3&&!this.props.queryProject?<Button type='primary' onClick={this.addTask} style={{float:'right',marginRight:'100px'}}>添加任务</Button>:''}
  912. </div>
  913. <div className="patent-table">
  914. <Spin spinning={this.state.loading}>
  915. <Table columns={this.state.columns}
  916. dataSource={this.state.dataSource}
  917. pagination={false}
  918. onRowClick={this.tableRowClick}
  919. />
  920. </Spin>
  921. </div>
  922. {!this.props.projectState?<div>
  923. </div>:
  924. <div style={{marginTop:'30px',paddingLeft:'100px'}}>
  925. <Button type="danger" onClick={this.removeItem}>撤项</Button>
  926. <Button type="primary" onClick={this.Knot} style={{margin:'15px'}}>结项</Button>
  927. <Button type="ghost" onClick={this.handleCancel}>返回</Button>
  928. </div>}
  929. </div>
  930. </Spin>
  931. </Form >
  932. </Modal>
  933. <Modal maskClosable={false} visible={this.state.addnextVisible}
  934. onOk={this.nextCancel} onCancel={this.nextCancel}
  935. width='800px'
  936. title={this.state.addTaskState?'添加任务':'任务详情'}
  937. footer=''
  938. className="admin-desc-content">
  939. <Form layout="horizontal" id="demand-form" onSubmit={this.taskSumbit}>
  940. <Spin spinning={this.state.loading}>
  941. {this.state.addTaskState?<div className="clearfix">
  942. <FormItem className="half-item"
  943. {...formItemLayout}
  944. label="服务项目名称" >
  945. <AutoComplete
  946. className="certain-category-search"
  947. dropdownClassName="certain-category-search-dropdown"
  948. dropdownMatchSelectWidth={false}
  949. dropdownStyle={{ width: 200 }}
  950. style={{ width: '200px' }}
  951. dataSource={options}
  952. placeholder="输入服务名称"
  953. value={this.state.commodityName}
  954. onChange={this.httpChange}
  955. filterOption={true}
  956. onSelect={this.selectAuto}
  957. >
  958. <Input/>
  959. </AutoComplete>
  960. <span className="mandatory">*</span>
  961. </FormItem>
  962. <FormItem className="half-item"
  963. {...formItemLayout}
  964. label="数量" >
  965. <Input style={{ width: '200px' }} placeholder="输入数量"
  966. value={this.state.commodityQuantity}
  967. onChange={(e)=>{this.setState({commodityQuantity:e.target.value})}}/>
  968. <span className="mandatory">*</span>
  969. </FormItem>
  970. <div className='clearfix'>
  971. <FormItem
  972. labelCol={{ span: 4 }}
  973. wrapperCol={{ span: 16 }}
  974. label="任务说明" >
  975. <Input type="textarea" placeholder="请输入订单留言" rows={4}
  976. value={this.state.taskComment}
  977. onChange={(e)=>{this.setState({taskComment:e.target.value})}}/>
  978. </FormItem>
  979. </div>
  980. </div>:
  981. <div className="clearfix">
  982. <FormItem className="half-item"
  983. {...formItemLayout}
  984. label="项目编号" >
  985. <span>{this.state.projectNo}</span>
  986. </FormItem>
  987. <FormItem className="half-item"
  988. {...formItemLayout}
  989. label="任务编号" >
  990. <span>{this.state.taskNo}</span>
  991. </FormItem>
  992. {this.state.taskStatus<1?<FormItem className="half-item"
  993. {...formItemLayout}
  994. label="服务项目名称" >
  995. <AutoComplete
  996. className="certain-category-search"
  997. dropdownClassName="certain-category-search-dropdown"
  998. dropdownMatchSelectWidth={false}
  999. dropdownStyle={{ width: 200 }}
  1000. style={{ width: '200px' }}
  1001. dataSource={options}
  1002. placeholder="输入服务名称"
  1003. value={this.state.commodityName}
  1004. onChange={this.httpChange}
  1005. filterOption={true}
  1006. onSelect={this.selectAuto}
  1007. >
  1008. <Input/>
  1009. </AutoComplete>
  1010. <span className="mandatory">*</span>
  1011. </FormItem>:
  1012. <FormItem className="half-item"
  1013. {...formItemLayout}
  1014. label="服务项目名称" >
  1015. <span>{this.state.commodityName}</span>
  1016. </FormItem>}
  1017. <FormItem className="half-item"
  1018. {...formItemLayout}
  1019. label="任务状态" >
  1020. <span>{getTaskStatus(this.state.taskStatus)}</span>
  1021. </FormItem>
  1022. <FormItem className="half-item"
  1023. {...formItemLayout}
  1024. label="是否锁定" >
  1025. <span>{this.state.deletedSign==2?'锁定':'未锁定'}</span>
  1026. </FormItem>
  1027. <div className='clearfix'>
  1028. {this.state.taskStatus<1?<FormItem
  1029. labelCol={{ span: 4 }}
  1030. wrapperCol={{ span: 16 }}
  1031. label="任务说明" >
  1032. <Input type="textarea" placeholder="请输入订单留言" rows={4} value={this.state.taskComment}
  1033. onChange={(e)=>{this.setState({taskComment:e.target.value})}}/>
  1034. </FormItem>:
  1035. <FormItem className="half-item"
  1036. {...formItemLayout}
  1037. label="任务说明" >
  1038. <span>{this.state.taskComment}</span>
  1039. </FormItem>}
  1040. </div>
  1041. <div className='clearfix'>
  1042. <FormItem className="half-item"
  1043. {...formItemLayout}
  1044. label="派单人" >
  1045. <span>{this.state.taskAllocatorName}</span>
  1046. </FormItem>
  1047. <FormItem className="half-item"
  1048. {...formItemLayout}
  1049. label="派单时间" >
  1050. <span>{this.state.taskDistributionTime}</span>
  1051. </FormItem>
  1052. <FormItem className="half-item"
  1053. {...formItemLayout}
  1054. label="资料负责人" >
  1055. <span>{this.state.taskReceiverName}</span>
  1056. </FormItem>
  1057. </div>
  1058. </div>}
  1059. {this.state.taskStatus<1||this.state.addTaskState?<div className="clearfix" style={{marginBottom:'20px'}}>
  1060. <Button className="setSave" type="primary" htmlType="submit">保存</Button>
  1061. <Button className="cancel" type="ghost" onClick={this.nextCancel}>返回</Button>
  1062. </div>:''}
  1063. </Spin>
  1064. </Form >
  1065. </Modal>
  1066. <Modal maskClosable={false} visible={this.state.projectVisible}
  1067. onOk={this.projectOk} onCancel={this.projectCancel}
  1068. width='600px'
  1069. title='创建项目'
  1070. footer=''
  1071. className="admin-desc-content">
  1072. <Form layout="horizontal" id="demand-form" style={{paddingBottom:'40px'}} >
  1073. <Spin spinning={this.state.loading}>
  1074. <div className="clearfix">
  1075. <div className='clearfix'>
  1076. <div className="clearfix">
  1077. <FormItem
  1078. {...formItemLayout}
  1079. label="客户名称" >
  1080. <AutoComplete
  1081. className="certain-category-search"
  1082. dropdownClassName="certain-category-search-dropdown"
  1083. dropdownMatchSelectWidth={false}
  1084. dropdownStyle={{ width: 200 }}
  1085. size="large"
  1086. style={{ width: '200px' }}
  1087. dataSource={options}
  1088. placeholder="输入客户名称"
  1089. value={this.state.customerName}
  1090. onChange={this.customerChange}
  1091. filterOption={true}
  1092. onBlur={this.blurCutor}
  1093. onSelect={this.selectAutoCUT}
  1094. >
  1095. <Input/>
  1096. </AutoComplete>
  1097. <span className="mandatory">*</span>
  1098. </FormItem>
  1099. </div>
  1100. <div className='clearfix'>
  1101. <FormItem
  1102. {...formItemLayout}
  1103. label="项目负责人" >
  1104. <span style={{width:'150px'}}>{this.state.projectName}</span>
  1105. <Button onClick={this.confirmDelet} style={{float:'right',marginRight:'50px'}}>选择</Button>
  1106. </FormItem>
  1107. </div>
  1108. <div className='clearfix'>
  1109. <FormItem
  1110. {...formItemLayout}
  1111. label="业务品类" >
  1112. <Select placeholder="请选择业务品类"
  1113. style={{ width:'200px'}}
  1114. value={this.state.contractType}
  1115. onChange={(e)=>{this.setState({contractType:e})}}>
  1116. {
  1117. categoryList.map(function (item) {
  1118. return <Select.Option key={item.id} >{item.name}</Select.Option>
  1119. })
  1120. }
  1121. </Select>
  1122. <span className="mandatory">*</span>
  1123. </FormItem>
  1124. </div>
  1125. <div className='clearfix'>
  1126. <FormItem
  1127. labelCol={{ span: 8 }}
  1128. wrapperCol={{ span: 12 }}
  1129. label="项目说明" >
  1130. <Input type="textarea" placeholder="请输入签单备注" rows={4} value={this.state.signComment}
  1131. onChange={(e)=>{this.setState({signComment:e.target.value})}}/>
  1132. </FormItem>
  1133. </div>
  1134. </div>
  1135. </div>
  1136. <FormItem wrapperCol={{ span: 12, offset: 4 }} className="half-middle">
  1137. <Button type="primary" onClick={this.admissibleOrder} style={{marginLeft:'55px'}}>保存</Button>
  1138. <Button className="submitSave" type="ghost" onClick={this.projectCancel}>返回</Button>
  1139. </FormItem>
  1140. </Spin>
  1141. </Form >
  1142. </Modal>
  1143. <Modal maskClosable={false} visible={this.state.distributionVisible}
  1144. onOk={this.distributionOk} onCancel={this.distributionCancel}
  1145. width='800px'
  1146. title='分派任务单'
  1147. footer=''
  1148. className="admin-desc-content">
  1149. <Form layout="horizontal" id="demand-form" style={{paddingBottom:'40px'}} >
  1150. <Spin spinning={this.state.loading}>
  1151. <div>
  1152. <Select placeholder="部门"
  1153. style={{ width: 150 ,marginRight:'10px',marginLeft:'10px'}}
  1154. value={this.state.departmenttList}
  1155. onChange={(e) => { this.setState({ departmenttList: e }) }}>
  1156. {
  1157. departmentArr.map(function (item) {
  1158. return <Select.Option key={item.id} >{item.name}</Select.Option>
  1159. })
  1160. }
  1161. </Select>
  1162. <Input placeholder="咨询师" style={{width:'150px',marginLeft:'10px'}}
  1163. value={this.state.financeNameSearch}
  1164. onChange={(e) => { this.setState({ financeNameSearch: e.target.value }); }} />
  1165. <Button type="primary" onClick={this.searchOrder} style={{marginLeft:'10px',marginRight:'10px'}}>搜索</Button>
  1166. <Button onClick={this.resetOrder}>重置</Button>
  1167. </div>
  1168. <div className="patent-table" style={{marginTop:'10px'}}>
  1169. <Spin spinning={this.state.loading}>
  1170. <Table columns={this.state.userList}
  1171. dataSource={this.state.distributionList}
  1172. pagination={false}
  1173. />
  1174. </Spin>
  1175. </div>
  1176. </Spin>
  1177. </Form>
  1178. </Modal>
  1179. <Modal maskClosable={false} visible={this.state.orderVisible}
  1180. onOk={this.orderCancel} onCancel={this.orderCancel}
  1181. width='800px'
  1182. title={this.state.seeState?'查看订单':'查看联系人'}
  1183. footer=''
  1184. className="admin-desc-content">
  1185. <Form layout="horizontal" id="demand-form" style={{paddingBottom:'40px'}} >
  1186. <Spin spinning={this.state.loading}>
  1187. <div className="patent-table" style={{marginTop:'10px'}}>
  1188. <Spin spinning={this.state.loading}>
  1189. {this.state.seeState?
  1190. <div className="clearfix">
  1191. <FormItem className="half-item"
  1192. {...formItemLayout}
  1193. label="订单编号" >
  1194. <span>{orderArr.orderNo}</span>
  1195. </FormItem>
  1196. <FormItem className="half-item"
  1197. {...formItemLayout}
  1198. label="下单时间" >
  1199. <span>{orderArr.createTime}</span>
  1200. </FormItem>
  1201. <FormItem className="half-item"
  1202. {...formItemLayout}
  1203. label="客户名称" >
  1204. <span>{orderArr.buyerName}</span>
  1205. </FormItem>
  1206. <FormItem className="half-item"
  1207. {...formItemLayout}
  1208. label="订单类型" >
  1209. <span>{getOrderType(orderArr.orderType)}</span>
  1210. </FormItem>
  1211. <FormItem className="half-item"
  1212. {...formItemLayout}
  1213. label="订单渠道" >
  1214. <span>{getOrderChannel(orderArr.orderChannel)}</span>
  1215. </FormItem>
  1216. <FormItem className="half-item"
  1217. {...formItemLayout}
  1218. label="订单状态" >
  1219. <span>{getOrderState(orderArr.orderStatus)}</span>
  1220. </FormItem>
  1221. <FormItem className="half-item"
  1222. {...formItemLayout}
  1223. label="已收款项" >
  1224. <span>{orderArr.actuallyTotalAmount+'万元'}</span>
  1225. </FormItem>
  1226. <FormItem className="half-item"
  1227. {...formItemLayout}
  1228. label="结算状态" >
  1229. <span>{getPaymentState(orderArr.liquidationStatus)}</span>
  1230. </FormItem>
  1231. <FormItem className="half-item"
  1232. {...formItemLayout}
  1233. label="市价订单金额" >
  1234. <span>{orderArr.orderAmount+'万元'}</span>
  1235. </FormItem>
  1236. <FormItem className="half-item"
  1237. {...formItemLayout}
  1238. label="市价首款金额" >
  1239. <span>{orderArr.firstPayment+'万元'}</span>
  1240. </FormItem>
  1241. <div className='clearfix'>
  1242. <FormItem className="half-item"
  1243. {...formItemLayout}
  1244. label="实签订单金额" >
  1245. <span>{orderArr.signTotalAmount+'万元'}</span>
  1246. </FormItem>
  1247. <FormItem className="half-item"
  1248. {...formItemLayout}
  1249. label="实签首款金额" >
  1250. <span>{orderArr.signFirstPayment+'万元'}</span>
  1251. </FormItem>
  1252. <FormItem className="half-item"
  1253. {...formItemLayout}
  1254. label="特批立项" >
  1255. <span>{getApprovedState(orderArr.approval)}</span>
  1256. </FormItem>
  1257. <div className="clearfix">
  1258. <FormItem
  1259. labelCol={{ span: 4 }}
  1260. wrapperCol={{ span: 18 }}
  1261. label="合同扫描件" >
  1262. <Upload className="demandDetailShow-upload"
  1263. listType="customer_sys_file"
  1264. fileList={this.state.orgCodeUrl}
  1265. onPreview={(file) => {
  1266. this.setState({
  1267. previewImage: file.url || file.thumbUrl,
  1268. previewVisible: true,
  1269. });
  1270. }} >
  1271. </Upload>
  1272. <Modal maskClosable={false} footer={null}
  1273. visible={this.state.previewVisible}
  1274. onCancel={() => { this.setState({ previewVisible: false }) }}>
  1275. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  1276. </Modal>
  1277. </FormItem>
  1278. </div>
  1279. <div className='clearfix'>
  1280. <FormItem
  1281. labelCol={{ span: 4 }}
  1282. wrapperCol={{ span: 16 }}
  1283. label="订单留言" >
  1284. <span>{orderArr.orderRemarks}</span>
  1285. </FormItem>
  1286. </div>
  1287. </div>
  1288. </div>:
  1289. <Table columns={this.state.contractList}
  1290. dataSource={this.state.contractArr}
  1291. pagination={false}
  1292. />}
  1293. </Spin>
  1294. </div>
  1295. </Spin>
  1296. </Form>
  1297. </Modal>
  1298. </div>
  1299. )
  1300. }
  1301. }));
  1302. export default MySettlementDetaile;