approveds.jsx 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030
  1. import React from 'react';
  2. import {
  3. Icon,
  4. Button,
  5. Input,
  6. Select,
  7. Spin,
  8. Table,
  9. message,
  10. DatePicker,
  11. Upload,
  12. Form,
  13. Modal,
  14. Col,
  15. Tag,
  16. Tabs
  17. } from "antd";
  18. import $ from 'jquery/src/ajax';
  19. import ResolutionDetail from "@/resolutionDetail";
  20. import ReactToPrint from "react-to-print";
  21. import moment from 'moment';
  22. import {
  23. getLiquidationStatus,
  24. getApprovedState,
  25. getProcessStatus,
  26. splitUrl,
  27. getjiedian,
  28. getboutique,
  29. getCuikuan,
  30. ShowModal,
  31. getApproval,
  32. getTaskStatus,
  33. getProjectStatus,
  34. getNewOrderStatus,
  35. getInvoiceStatus
  36. } from "@/tools.js";
  37. import './customer.less';
  38. import { ChooseList } from "../orderNew/chooseList";
  39. import ShowModalDiv from "@/showModal.jsx";
  40. import Project from "../../../../component/project";
  41. import ImgList from "../../../common/imgList";
  42. import {getProjectName} from "../../../tools";
  43. import ProjectDetailsReadOnly from "../../../common/projectDetailsReadOnly";
  44. const { TabPane } = Tabs;
  45. const { TextArea } = Input;
  46. //图片组件
  47. const PicturesWall = React.createClass({
  48. getInitialState() {
  49. return {
  50. previewVisible: false,
  51. previewImage: '',
  52. fileList: [],
  53. }
  54. },
  55. handleCancel() {
  56. this.setState({
  57. previewVisible: false
  58. })
  59. },
  60. handlePreview(file) {
  61. this.setState({
  62. previewImage: file.url || file.thumbUrl,
  63. previewVisible: true,
  64. });
  65. },
  66. handleChange(info) {
  67. let fileList = info.fileList;
  68. this.setState({
  69. fileList
  70. });
  71. this.props.fileList(fileList);
  72. },
  73. componentWillReceiveProps(nextProps) {
  74. this.state.fileList = nextProps.pictureUrl;
  75. this.state.pojectApplicationUrl = undefined;
  76. },
  77. render() {
  78. const {
  79. fileList
  80. } = this.state;
  81. return (
  82. <div style={{ display: "inline-block" }}>
  83. <ImgList
  84. domId={this.props.domId}
  85. uploadConfig={{
  86. action:globalConfig.context + "/api/admin/customer/uploadCustomerImg",
  87. data:{ 'sign': '' },
  88. multiple:true,
  89. listType:"picture-card",
  90. }}
  91. onChange={(infor)=>{
  92. this.handleChange(infor)
  93. }}
  94. fileList={fileList}
  95. />
  96. </div>
  97. );
  98. }
  99. });
  100. const IntentionCustomer = Form.create()(
  101. React.createClass({
  102. loadData(pageNo, pageSize) {
  103. this.setState({
  104. visitModul: false,
  105. loading: true,
  106. ispage: pageNo,
  107. modalVisible: false,
  108. });
  109. $.ajax({
  110. method: "get",
  111. dataType: "json",
  112. crossDomain: false,
  113. url: globalConfig.context + "/api/admin/newOrder/orderNewList",
  114. data: {
  115. pageNo: pageNo || 1,
  116. pageSize: pageSize || this.state.pagination.pageSize,
  117. specially: 3, //审核列表
  118. name: this.state.nameSearch, //名称
  119. orderNo: this.state.orderNoSearch, //订单编号
  120. contractNo: this.state.contractNoSearch, //合同编号
  121. depId: this.state.departmenttList, //订单部门
  122. starTime: this.state.releaseDate[0], //开始时间
  123. endTime: this.state.releaseDate[1], //结束时间
  124. approval: this.state.approvalSearch ? this.state.approvalSearch : 0, //审批状态
  125. liquidationStatus: this.state.liquidationStatusSearch, //结算状态
  126. },
  127. success: function (data) {
  128. ShowModal(this);
  129. let theArr = [];
  130. if (data.error.length || data.data.list == "") {
  131. if (data.error && data.error.length) {
  132. message.warning(data.error[0].message);
  133. }
  134. } else {
  135. for (let i = 0; i < data.data.list.length; i++) {
  136. let thisdata = data.data.list[i];
  137. theArr.push({
  138. key: thisdata.orderNo,
  139. orderNo: thisdata.orderNo,
  140. orderType: thisdata.orderType,
  141. orderStatus: thisdata.orderStatus,
  142. salesmanName: thisdata.salesmanName,
  143. processStatus: thisdata.processStatus,
  144. liquidationStatus: thisdata.liquidationStatus,
  145. approval: thisdata.approval,
  146. settlementAmount: thisdata.settlementAmount,
  147. signDate: thisdata.signDate,
  148. companyId: thisdata.companyId,
  149. companyName: thisdata.companyName,
  150. buyerId: thisdata.buyerId,
  151. userName: thisdata.userName,
  152. contractNo: thisdata.contractNo,
  153. createDate: thisdata.createDate,
  154. depName: thisdata.depName,
  155. invoiceAmount: thisdata.invoiceAmount,
  156. totalAmount: thisdata.totalAmount,
  157. financeName: thisdata.financeName,
  158. });
  159. }
  160. this.state.pagination.total = data.data.totalCount;
  161. }
  162. if (data.data && data.data.list && !data.data.list.length) {
  163. this.state.pagination.total = 0;
  164. }
  165. this.setState({
  166. dataSource: theArr,
  167. pageNo: pageNo,
  168. pagination: this.state.pagination,
  169. selectedRowKeys: [],
  170. });
  171. }.bind(this),
  172. }).always(
  173. function () {
  174. this.setState({
  175. loading: false,
  176. });
  177. }.bind(this)
  178. );
  179. },
  180. getInitialState() {
  181. return {
  182. page: 1,
  183. declarationBatch: 1,
  184. dataInfor: {},
  185. releaseDate: [],
  186. selectedRowKeys: [],
  187. rotateDeg: 0,
  188. orgCodeUrl: [],
  189. departmentArr: [],
  190. approvalSearch: "1",
  191. paginations: false,
  192. pagination: {
  193. defaultCurrent: 1,
  194. defaultPageSize: 10,
  195. showQuickJumper: true,
  196. pageSize: 10,
  197. onChange: function (page) {
  198. this.loadData(page);
  199. }.bind(this),
  200. showTotal: function (total) {
  201. return "共" + total + "条数据";
  202. },
  203. },
  204. columnsDate: [
  205. {
  206. title: "编号",
  207. dataIndex: "id",
  208. key: "id",
  209. },
  210. {
  211. title: "订单编号",
  212. dataIndex: "orderno",
  213. key: "orderno",
  214. },
  215. {
  216. title: "开票金额(万元)",
  217. dataIndex: "amount",
  218. key: "amount",
  219. },
  220. {
  221. title: "申请时间",
  222. dataIndex: "createTime",
  223. key: "createTime",
  224. },
  225. {
  226. title: "开票状态",
  227. dataIndex: "status",
  228. key: "status",
  229. render: (text) => {
  230. return getInvoiceStatus(text);
  231. },
  232. },
  233. ],
  234. columns: [
  235. {
  236. title: "合同编号",
  237. dataIndex: "contractNo",
  238. key: "contractNo",
  239. className: "title-table",
  240. },
  241. {
  242. title: "订单编号",
  243. dataIndex: "orderNo",
  244. key: "orderNo",
  245. className: "title-table",
  246. // fixed: "left"
  247. },
  248. {
  249. title: "特批状态",
  250. dataIndex: "approval",
  251. key: "approval",
  252. className: "title-table",
  253. render: (text) => {
  254. if (text == 1) {
  255. return <Tag color="#f50">{getApproval(text)}</Tag>;
  256. }
  257. return getApproval(text);
  258. },
  259. },
  260. {
  261. title: "客户名称",
  262. dataIndex: "userName",
  263. key: "userName",
  264. className: "title-table",
  265. },
  266. {
  267. title: "订单部门",
  268. dataIndex: "depName",
  269. key: "depName",
  270. className: "title-table",
  271. },
  272. {
  273. title: "订单负责人",
  274. dataIndex: "salesmanName",
  275. key: "salesmanName",
  276. className: "title-table",
  277. },
  278. {
  279. title: "财务负责人",
  280. dataIndex: "financeName",
  281. key: "financeName",
  282. className: "title-table",
  283. },
  284. {
  285. title: "签单日期",
  286. dataIndex: "signDate",
  287. key: "signDate",
  288. className: "title-table",
  289. },
  290. {
  291. title: "下单日期",
  292. dataIndex: "createDate",
  293. key: "createDate",
  294. className: "title-table",
  295. },
  296. {
  297. title: "签单金额(万元)",
  298. dataIndex: "totalAmount",
  299. key: "totalAmount",
  300. className: "title-table",
  301. },
  302. {
  303. title: "开票金额(万元)",
  304. dataIndex: "invoiceAmount",
  305. key: "invoiceAmount",
  306. className: "title-table",
  307. },
  308. {
  309. title: "已收款(万元)",
  310. dataIndex: "settlementAmount",
  311. key: "settlementAmount",
  312. className: "title-table",
  313. },
  314. {
  315. title: "结算状态",
  316. dataIndex: "liquidationStatus",
  317. key: "liquidationStatus",
  318. className: "title-table",
  319. render: (text) => {
  320. return getLiquidationStatus(text);
  321. },
  322. },
  323. {
  324. title: "流程状态",
  325. dataIndex: "processStatus",
  326. key: "processStatus",
  327. className: "title-table",
  328. render: (text) => {
  329. return getProcessStatus(text);
  330. },
  331. },
  332. ],
  333. data: [],
  334. dataSource: [],
  335. columnsX: [
  336. {
  337. title: "业务项目名称",
  338. dataIndex: "commodityName",
  339. key: "commodityName",
  340. render: (text, record) => {
  341. return text + "-" + record.id
  342. }
  343. },
  344. {
  345. title: "项目类别",
  346. dataIndex: "cname",
  347. key: "cname",
  348. },
  349. {
  350. title: "项目数量",
  351. dataIndex: "commodityQuantity",
  352. key: "commodityQuantity",
  353. render: (text, record) => {
  354. if (record.splitStatus == 1) {
  355. return (
  356. <span>
  357. {text}{" "}
  358. <Tag
  359. color="#108ee9"
  360. onClick={(e) => {
  361. e.stopPropagation();
  362. this.showRes(record);
  363. }}
  364. >
  365. 已拆
  366. </Tag>
  367. </span>
  368. );
  369. } else {
  370. return text;
  371. }
  372. },
  373. },
  374. {
  375. title: "金额(万元)",
  376. dataIndex: "commodityPrice",
  377. key: "commodityPrice",
  378. },
  379. {
  380. title: "负责人",
  381. dataIndex: "contacts",
  382. key: "contacts",
  383. },
  384. {
  385. title: "负责人电话",
  386. dataIndex: "contactsMobile",
  387. key: "contactsMobile",
  388. },
  389. {
  390. title: "主要项目",
  391. dataIndex: "main",
  392. key: "main",
  393. render: (text) => {
  394. return text ? "是" : "否";
  395. },
  396. },
  397. {
  398. title: "项目说明",
  399. dataIndex: "taskComment",
  400. key: "taskComment",
  401. render: (text) => {
  402. return text && text.length > 8 ? text.substr(0, 8) + "…" : text;
  403. },
  404. },
  405. ],
  406. columnsrizhi: [
  407. {
  408. title: "流程",
  409. dataIndex: "processName",
  410. key: "processName",
  411. },
  412. {
  413. title: "操作人",
  414. dataIndex: "adminName",
  415. key: "adminName",
  416. },
  417. {
  418. title: "时间",
  419. dataIndex: "createDate",
  420. key: "createDate",
  421. },
  422. {
  423. title: "备注",
  424. dataIndex: "remarks",
  425. key: "remarks",
  426. },
  427. ],
  428. dataSourceX: [],
  429. ContactsListsNew: [
  430. {
  431. title: "项目名称",
  432. dataIndex: "commodityName",
  433. key: "commodityName",
  434. render: (text, record) => {
  435. return <span>{text + "-" + record.tid}</span>;
  436. },
  437. },
  438. {
  439. title: "项目分类",
  440. dataIndex: "projectType",
  441. key: "projectType",
  442. render: (text) => {
  443. let arr = this.state.dataSourceX || [];
  444. let str = "";
  445. for (let i = 0; i < arr.length; i++) {
  446. if (this.state.dataSourceX[i].sort == text) {
  447. str = this.state.dataSourceX[i].cname;
  448. return <span>{str}</span>;
  449. }
  450. }
  451. },
  452. },
  453. {
  454. title: "催款科目",
  455. dataIndex: "dunTypeName",
  456. key: "dunTypeName",
  457. render: (text,record) => {
  458. if (record.customizeName) {
  459. return text + record.customizeName;
  460. }
  461. return <span>{text}</span>;
  462. },
  463. },
  464. {
  465. title: "时间(天)",
  466. dataIndex: "waitDay",
  467. key: "waitDay",
  468. render: (text, record) => {
  469. if (record.dunTypeName) {
  470. if (record.customizeTimes) {
  471. return record.customizeTimes;
  472. }
  473. return <span>{text}</span>;
  474. }
  475. },
  476. },
  477. {
  478. title: "金额(万元)",
  479. dataIndex: "money",
  480. key: "money",
  481. render: (text, record) => {
  482. if (record.dunTypeName) {
  483. if (record.appropriationRatio && !record.money) {
  484. return <span>{record.appropriationRatio}(拨款比例)</span>;
  485. } else if (record.appropriationRatio && record.money) {
  486. return (
  487. <span>
  488. {text}(比例:{record.appropriationRatio})
  489. </span>
  490. );
  491. } else {
  492. return <span>{text}</span>;
  493. }
  494. }
  495. },
  496. },
  497. {
  498. title: "服务年限",
  499. dataIndex: "startDate",
  500. key: "startDate",
  501. render: (text, record) => {
  502. if (record.dunTypeName) {
  503. return <span>{text}</span>;
  504. }
  505. },
  506. },
  507. {
  508. title: "催款状态",
  509. dataIndex: "status",
  510. key: "status",
  511. render: (text) => {
  512. return <span>{text == 1 ? "已启动" : "未启动"}</span>;
  513. },
  514. },
  515. ],
  516. ContactsLists: [
  517. {
  518. title: "催款科目",
  519. dataIndex: "dunSubject",
  520. key: "dunSubject",
  521. render: (text) => {
  522. return getjiedian(text);
  523. },
  524. },
  525. {
  526. title: "金额(万元)",
  527. dataIndex: "money",
  528. key: "money",
  529. },
  530. {
  531. title: "催款状态",
  532. dataIndex: "dunStatus",
  533. key: "dunStatus",
  534. render: (text) => {
  535. return getCuikuan(text);
  536. },
  537. },
  538. ],
  539. waterlistDate: [
  540. {
  541. title: "订单编号",
  542. dataIndex: "orderNo",
  543. key: "orderNo",
  544. },
  545. {
  546. title: "平台流水号",
  547. dataIndex: "billNo",
  548. key: "billNo",
  549. // fixed: "left"
  550. },
  551. {
  552. title: "收款金额(万元)",
  553. dataIndex: "transactionAmount",
  554. key: "transactionAmount",
  555. },
  556. {
  557. title: "收款方",
  558. dataIndex: "payeeName",
  559. key: "payeeName",
  560. },
  561. {
  562. title: "付款方",
  563. dataIndex: "payerName",
  564. key: "payerName",
  565. },
  566. {
  567. title: "流水科目",
  568. dataIndex: "transactionSubject",
  569. key: "transactionSubject",
  570. render: (text) => {
  571. return getTransactionProject(text);
  572. },
  573. },
  574. {
  575. title: "收款类型",
  576. dataIndex: "type",
  577. key: "type",
  578. },
  579. {
  580. title: "财务流水时间",
  581. dataIndex: "financialPayTimes",
  582. key: "financialPayTimes",
  583. },
  584. {
  585. title: "财务流水号",
  586. dataIndex: "financialPayNo",
  587. key: "financialPayNo",
  588. },
  589. {
  590. title: "订单负责人",
  591. dataIndex: "saleName",
  592. key: "saleName",
  593. },
  594. {
  595. title: "创建时间",
  596. dataIndex: "createTimes",
  597. key: "createTimes",
  598. },
  599. ],
  600. timeColumns: [
  601. {
  602. title: "合同编号",
  603. dataIndex: "contractNo",
  604. key: "contractNo",
  605. },
  606. {
  607. title: "订单编号",
  608. dataIndex: "orderNo",
  609. key: "orderNo",
  610. },
  611. {
  612. title: "客户名称",
  613. dataIndex: "userName",
  614. key: "userName",
  615. render: (text) => {
  616. return text && text.length > 9 ? text.substr(0, 9) + "..." : text;
  617. },
  618. },
  619. {
  620. title: "订单部门",
  621. dataIndex: "depName",
  622. key: "depName",
  623. },
  624. {
  625. title: "订单负责人",
  626. dataIndex: "salesmanName",
  627. key: "salesmanName",
  628. },
  629. {
  630. title: "项目类别",
  631. dataIndex: "cname",
  632. key: "cname",
  633. },
  634. {
  635. title: "项目编号",
  636. dataIndex: "id",
  637. key: "id",
  638. },
  639. {
  640. title: "项目名称",
  641. dataIndex: "taskName",
  642. key: "taskName",
  643. },
  644. {
  645. title: "项目负责人",
  646. dataIndex: "receiverName",
  647. key: "receiverName",
  648. },
  649. {
  650. title: "项目价格(万元)",
  651. dataIndex: "commodityPrice",
  652. key: "commodityPrice",
  653. },
  654. {
  655. title: "数量(个)",
  656. dataIndex: "commodityQuantity",
  657. key: "commodityQuantity",
  658. },
  659. {
  660. title: "任务状态",
  661. dataIndex: "taskStatus",
  662. key: "taskStatus",
  663. render: (text) => {
  664. return getTaskStatus(text);
  665. },
  666. },
  667. {
  668. title: "项目状态",
  669. dataIndex: "projectStatus",
  670. key: "projectStatus",
  671. render: (text) => {
  672. return getProjectName(text);
  673. },
  674. },
  675. {
  676. title: "工时",
  677. dataIndex: "hours",
  678. key: "hours",
  679. },
  680. // {
  681. // title: "是否外包",
  682. // dataIndex: "outsource",
  683. // key: "outsource",
  684. // render: (text) => {
  685. // if (text == 0) {
  686. // return "否";
  687. // } else if (text == 1) {
  688. // return "是";
  689. // }
  690. // },
  691. // },
  692. {
  693. title: "签单日期",
  694. dataIndex: "signTime",
  695. key: "signTime",
  696. },
  697. {
  698. title: "派单日期",
  699. dataIndex: "creteTime",
  700. key: "creteTime",
  701. },
  702. {
  703. title: "分配时间",
  704. dataIndex: "taskDistributionTime",
  705. key: "taskDistributionTime",
  706. },
  707. {
  708. title: "完成时间",
  709. dataIndex: "taskEndTime",
  710. key: "taskEndTime",
  711. },
  712. ],
  713. resVisible: false,
  714. cuiColumns: [
  715. {
  716. title: "序号",
  717. dataIndex: "key",
  718. key: "key",
  719. },
  720. {
  721. title: "合同编号",
  722. dataIndex: "contractNo",
  723. key: "contractNo",
  724. },
  725. {
  726. title: "订单编号",
  727. dataIndex: "orderNo",
  728. key: "orderNo",
  729. },
  730. {
  731. title: "客户名称",
  732. dataIndex: "userName",
  733. key: "userName",
  734. },
  735. {
  736. title: "订单负责人",
  737. dataIndex: "salesmanName",
  738. key: "salesmanName",
  739. },
  740. {
  741. title: "订单部门",
  742. dataIndex: "depName",
  743. key: "depName",
  744. },
  745. {
  746. title: "订单状态",
  747. dataIndex: "orderStatus",
  748. key: "orderStatus",
  749. render: (text) => {
  750. return getNewOrderStatus(text);
  751. },
  752. },
  753. {
  754. title: "项目状态",
  755. dataIndex: "projectStatus",
  756. key: "projectStatus",
  757. render: (text) => {
  758. return getProjectName(text);
  759. },
  760. },
  761. {
  762. title: "签单金额",
  763. dataIndex: "totalAmount",
  764. key: "totalAmount",
  765. },
  766. {
  767. title: "结算状态",
  768. dataIndex: "liquidationStatus",
  769. key: "liquidationStatus",
  770. render: (text) => {
  771. return getLiquidationStatus(text);
  772. },
  773. },
  774. {
  775. title: "已收款",
  776. dataIndex: "settlementAmount",
  777. key: "settlementAmount",
  778. },
  779. // {
  780. // title: "应收款",
  781. // dataIndex: "accountsReceivable",
  782. // key: "accountsReceivable",
  783. // },
  784. {
  785. title: "催收科目",
  786. dataIndex: "dunSubject",
  787. key: "dunSubject",
  788. // render: text => {
  789. // return getjiedian(text);
  790. // }
  791. },
  792. {
  793. title: "催款状态",
  794. dataIndex: "dunStatus",
  795. key: "dunStatus",
  796. },
  797. {
  798. title: "催收启动时间",
  799. dataIndex: "startDate",
  800. key: "startDate",
  801. },
  802. ],
  803. proColumns: [
  804. {
  805. title: "序号",
  806. dataIndex: "key",
  807. key: "key",
  808. },
  809. {
  810. title: "合同编号",
  811. dataIndex: "contractNo",
  812. key: "contractNo",
  813. },
  814. {
  815. title: "订单编号",
  816. dataIndex: "orderNo",
  817. key: "orderNo",
  818. },
  819. // {
  820. // title: "项目编号",
  821. // dataIndex: "id",
  822. // key: "id"
  823. // },
  824. {
  825. title: "客户名称",
  826. dataIndex: "userName",
  827. key: "userName",
  828. },
  829. {
  830. title: "订单负责人",
  831. dataIndex: "salesmanName",
  832. key: "salesmanName",
  833. },
  834. {
  835. title: "是否主项目",
  836. dataIndex: "main",
  837. key: "main",
  838. render: (text) => {
  839. return text == 0 ? "否" : "是";
  840. },
  841. },
  842. {
  843. title: "项目类别",
  844. dataIndex: "cname",
  845. key: "cname",
  846. },
  847. {
  848. title: "项目名称",
  849. dataIndex: "commodityName",
  850. key: "commodityName",
  851. },
  852. {
  853. title: "项目数量",
  854. dataIndex: "commodityQuantity",
  855. key: "commodityQuantity",
  856. render: (text, record) => {
  857. if (record.splitStatus == 1) {
  858. return (
  859. <span>
  860. {text}{" "}
  861. <Tag
  862. color="#108ee9"
  863. onClick={(e) => {
  864. e.stopPropagation();
  865. this.showRes(record);
  866. }}
  867. >
  868. 已拆
  869. </Tag>
  870. </span>
  871. );
  872. } else {
  873. return text;
  874. }
  875. },
  876. },
  877. {
  878. title: "服务市价",
  879. dataIndex: "commodityPrice",
  880. key: "commodityPrice",
  881. },
  882. {
  883. title: "证书编号",
  884. dataIndex: "certificateNumber",
  885. key: "certificateNumber",
  886. },
  887. {
  888. title: "项目状态",
  889. dataIndex: "projectStatus",
  890. key: "projectStatus",
  891. render: (text) => {
  892. return getProjectName(text);
  893. },
  894. },
  895. {
  896. title: "项目说明",
  897. dataIndex: "taskComment",
  898. key: "taskComment",
  899. },
  900. // {
  901. // title: "外包(内部)公司",
  902. // dataIndex: "outsourceName",
  903. // key: "outsourceName",
  904. // },
  905. // {
  906. // title: "外包(内部)价格",
  907. // dataIndex: "outsourcePrice",
  908. // key: "outsourcePrice",
  909. // },
  910. ],
  911. };
  912. },
  913. //页面加载函数
  914. componentWillMount() {
  915. this.departmentList();
  916. this.loadData();
  917. },
  918. //整行点击
  919. tableRowClick(record) {
  920. this.setState({
  921. visible: true,
  922. });
  923. this.xiangqing(record.orderNo);
  924. this.xiangmu(record.orderNo);
  925. // this.jiedian(record.orderNo);
  926. this.jiedianNew(record.orderNo);
  927. },
  928. //点击打卡项目详情
  929. tableRowClickX(record) {
  930. console.log(record);
  931. this.setState({
  932. jid: record.id, //项目ID
  933. kid: record.commodityId, //商品ID
  934. commodityName: record.commodityName, //金额
  935. commodityPrice: record.commodityPrice, //金额
  936. commodityQuantity: record.commodityQuantity, //数量
  937. taskComment: record.taskComment, //备注
  938. main: record.main.toString(), //是否为主要
  939. addnextVisible: true,
  940. dataInfor:record,
  941. addState: 0,
  942. });
  943. },
  944. //项目详情关闭
  945. nextCancel() {
  946. this.setState({
  947. addnextVisible: false,
  948. });
  949. },
  950. //订单详情
  951. xiangqing(orderNos) {
  952. $.ajax({
  953. method: "get",
  954. dataType: "json",
  955. crossDomain: false,
  956. url: globalConfig.context + "/api/admin/newOrder/getOrderNewDetail",
  957. data: {
  958. orderNo: orderNos,
  959. },
  960. success: function (data) {
  961. if (data.error.length || data.data.list == "") {
  962. if (data.error && data.error.length) {
  963. message.warning(data.error[0].message);
  964. }
  965. } else {
  966. let thisdata = data.data;
  967. this.setState({
  968. orderNo: thisdata.orderNo, //订单编号
  969. contractNo: thisdata.contractNo, //合同编号
  970. userName: thisdata.userName, //客户名称
  971. signDate: thisdata.signDate, //签单时间
  972. processStatus: thisdata.processStatus, //流程状态
  973. liquidationStatus: thisdata.liquidationStatus, //结算状态
  974. contacts: thisdata.contacts, //企业联系人
  975. contactMobile: thisdata.contactMobile, //联系人电话
  976. legalPerson: thisdata.legalPerson, //法人
  977. legalPersonTel: thisdata.legalPersonTel, //法人电话
  978. firstAmount: thisdata.firstAmount, //签单金额
  979. totalAmount: thisdata.totalAmount, //首付金额
  980. approval: thisdata.approval, //特批状态
  981. settlementAmount: thisdata.settlementAmount, //已收款项
  982. orderRemarks: thisdata.orderRemarks, //订单留言
  983. orgCodeUrl: thisdata.contractPictureUrl
  984. ? splitUrl(
  985. thisdata.contractPictureUrl,
  986. ",",
  987. globalConfig.avatarHost + "/upload"
  988. )
  989. : [], //图片地址
  990. replenishUrl: thisdata.agreementUrl
  991. ? splitUrl(
  992. thisdata.agreementUrl,
  993. ",",
  994. globalConfig.avatarHost + "/upload"
  995. )
  996. : [],
  997. salesmanName: thisdata.salesmanName, //营销员名称
  998. salesmanMobile: thisdata.salesmanMobile, //营销员电话
  999. financeName: thisdata.financeName, //财务名称
  1000. financeMobile: thisdata.financeMobile, //财务电话
  1001. outsource: thisdata.outsource == 0 ? "否" : "是",
  1002. });
  1003. }
  1004. }.bind(this),
  1005. }).always(
  1006. function () {
  1007. this.setState({
  1008. loading: false,
  1009. });
  1010. }.bind(this)
  1011. );
  1012. },
  1013. //项目列表
  1014. xiangmu(orderNos) {
  1015. $.ajax({
  1016. method: "get",
  1017. dataType: "json",
  1018. crossDomain: false,
  1019. url: globalConfig.context + "/api/admin/newOrder/getOrderTask",
  1020. data: {
  1021. orderNo: orderNos,
  1022. },
  1023. success: function (data) {
  1024. let theArr = [];
  1025. if (data.error.length || data.data.list == "") {
  1026. if (data.error && data.error.length) {
  1027. message.warning(data.error[0].message);
  1028. }
  1029. } else {
  1030. for (let i = 0; i < data.data.length; i++) {
  1031. let thisdata = data.data[i];
  1032. thisdata.key = i;
  1033. theArr.push(thisdata);
  1034. }
  1035. }
  1036. this.setState({
  1037. dataSourceX: theArr,
  1038. });
  1039. }.bind(this),
  1040. }).always(
  1041. function () {
  1042. this.setState({
  1043. loading: false,
  1044. });
  1045. }.bind(this)
  1046. );
  1047. },
  1048. rizhi() {
  1049. console.log(this.state.orderNo);
  1050. this.setState({
  1051. loading: true,
  1052. });
  1053. $.ajax({
  1054. method: "get",
  1055. dataType: "json",
  1056. crossDomain: false,
  1057. url: "/api/admin/newOrder/selectOrderLog",
  1058. data: {
  1059. orderNo: this.state.orderNo,
  1060. },
  1061. success: function (data) {
  1062. let theArr = [];
  1063. let thisData = data.data;
  1064. if (thisData && !thisData.length) {
  1065. if (data.error && data.error.length) {
  1066. message.warning(data.error[0].message);
  1067. }
  1068. thisData = {};
  1069. } else {
  1070. for (let i = 0; i < data.data.length; i++) {
  1071. let thisdata = data.data[i];
  1072. theArr.push({
  1073. processName: thisdata.processName,
  1074. adminName: thisdata.adminName,
  1075. createDate: thisdata.createDate,
  1076. remarks: thisdata.remarks,
  1077. });
  1078. }
  1079. }
  1080. this.setState({
  1081. dataSourcerizhi: theArr,
  1082. });
  1083. }.bind(this),
  1084. }).always(
  1085. function () {
  1086. this.setState({
  1087. loading: false,
  1088. });
  1089. }.bind(this)
  1090. );
  1091. },
  1092. //查看订单日志
  1093. getOrderLog() {
  1094. this.setState({
  1095. rizhivisible: true,
  1096. });
  1097. this.rizhi();
  1098. },
  1099. closeOrderLog() {
  1100. this.setState({
  1101. rizhivisible: false,
  1102. });
  1103. },
  1104. //节点列表
  1105. // jiedian(orderNos) {
  1106. // $.ajax({
  1107. // method: "get",
  1108. // dataType: "json",
  1109. // crossDomain: false,
  1110. // url: globalConfig.context + "/api/admin/newOrder/selectOrderDun",
  1111. // data: {
  1112. // orderNo: orderNos,
  1113. // },
  1114. // success: function (data) {
  1115. // let theArr = [];
  1116. // let thisData = [];
  1117. // if (data.error.length || data.data.list == "") {
  1118. // if (data.error && data.error.length) {
  1119. // message.warning(data.error[0].message);
  1120. // }
  1121. // } else {
  1122. // for (let i = 0; i < data.data.length; i++) {
  1123. // thisData = data.data[i];
  1124. // theArr.push({
  1125. // key: i,
  1126. // dunSubject: thisData.dunSubject
  1127. // ? thisData.dunSubject.toString()
  1128. // : "", //催款科目
  1129. // id: thisData.id, //节点Id
  1130. // money: thisData.money, //催款金额
  1131. // dunStatus: thisData.dunStatus, //催款状态
  1132. // });
  1133. // }
  1134. // this.setState({
  1135. // contactList: theArr,
  1136. // });
  1137. // }
  1138. // }.bind(this),
  1139. // }).always(
  1140. // function () {
  1141. // this.setState({
  1142. // loading: false,
  1143. // });
  1144. // }.bind(this)
  1145. // );
  1146. // },
  1147. //查看催款节点
  1148. jiedianNew(orderNos) {
  1149. $.ajax({
  1150. method: "get",
  1151. dataType: "json",
  1152. crossDomain: false,
  1153. url:
  1154. globalConfig.context + "/api/admin/newOrderDun/selectListNewOrderDun",
  1155. data: {
  1156. orderNo: orderNos,
  1157. },
  1158. success: function (data) {
  1159. if (data.error && data.error.length) {
  1160. message.warning(data.error[0].message);
  1161. } else {
  1162. let theArr = [];
  1163. let thisData = [];
  1164. let arr = data.data || [];
  1165. let totalCui = 0;
  1166. for (let i = 0; i < arr.length; i++) {
  1167. thisData = arr[i];
  1168. totalCui += +thisData.money;
  1169. theArr.push({
  1170. key: i,
  1171. dunSubject: thisData.dunSubject
  1172. ? thisData.dunSubject.toString()
  1173. : "", //催款科目
  1174. id: thisData.id, //节点Id
  1175. money: thisData.money, //催款金额
  1176. // orderNo: record ? record.orderNo : this.props.datauser.orderNo,
  1177. commodityName: thisData.commodityName,
  1178. projectType: thisData.projectType,
  1179. dunTypeName: thisData.dunTypeName,
  1180. status: thisData.status,
  1181. waitDay: thisData.waitDay,
  1182. effectiveCount: thisData.effectiveCount,
  1183. startDate: thisData.startDate,
  1184. dunType: thisData.dunType,
  1185. appropriationRatio: thisData.appropriationRatio,
  1186. customizeName: thisData.customizeName,
  1187. customizeTimes: thisData.customizeTimes,
  1188. tid: thisData.tid,
  1189. });
  1190. }
  1191. if (!totalCui) {
  1192. totalCui = 0;
  1193. }
  1194. totalCui = (Math.round(totalCui * 1000000) / 1000000).toFixed(6);
  1195. this.setState({
  1196. contactListNew: theArr,
  1197. totalCui,
  1198. });
  1199. }
  1200. }.bind(this),
  1201. }).always(
  1202. function () {
  1203. this.setState({
  1204. loading: false,
  1205. });
  1206. }.bind(this)
  1207. );
  1208. },
  1209. //审核通过
  1210. examOk() {
  1211. if (!this.state.reason) {
  1212. message.warning("请填写备注");
  1213. return;
  1214. }
  1215. this.setState({
  1216. loading: true,
  1217. });
  1218. $.ajax({
  1219. method: "post",
  1220. dataType: "json",
  1221. crossDomain: false,
  1222. url: globalConfig.context + "/api/admin/newOrder/approvalOrder",
  1223. data: {
  1224. orderNo: this.state.orderNo,
  1225. confirm: 2,
  1226. reason: this.state.reason,
  1227. },
  1228. success: function (data) {
  1229. if (data.error.length || data.data.list == "") {
  1230. if (data.error && data.error.length) {
  1231. message.warning(data.error[0].message);
  1232. }
  1233. } else {
  1234. message.success("该特批订单已通过审核~");
  1235. this.setState({
  1236. visible: false,
  1237. });
  1238. this.passCancel();
  1239. this.reset();
  1240. }
  1241. }.bind(this),
  1242. }).always(
  1243. function () {
  1244. this.setState({
  1245. loading: false,
  1246. });
  1247. }.bind(this)
  1248. );
  1249. },
  1250. //审核不通过
  1251. examOks() {
  1252. if (!this.state.reason) {
  1253. message.warning("请填写备注");
  1254. return;
  1255. }
  1256. this.setState({
  1257. loading: true,
  1258. });
  1259. $.ajax({
  1260. method: "post",
  1261. dataType: "json",
  1262. crossDomain: false,
  1263. url: globalConfig.context + "/api/admin/newOrder/approvalOrder",
  1264. data: {
  1265. orderNo: this.state.orderNo,
  1266. confirm: 3,
  1267. reason: this.state.reason,
  1268. },
  1269. success: function (data) {
  1270. if (data.error.length || data.data.list == "") {
  1271. if (data.error && data.error.length) {
  1272. message.warning(data.error[0].message);
  1273. }
  1274. } else {
  1275. message.success("该特批订单已被驳回~");
  1276. this.setState({
  1277. visible: false,
  1278. noVisible: false,
  1279. reason: "",
  1280. });
  1281. this.loadData();
  1282. this.resets();
  1283. }
  1284. }.bind(this),
  1285. }).always(
  1286. function () {
  1287. this.setState({
  1288. loading: false,
  1289. });
  1290. }.bind(this)
  1291. );
  1292. },
  1293. //点击拒绝
  1294. examNo() {
  1295. this.setState({
  1296. noVisible: true,
  1297. });
  1298. },
  1299. //关闭输入理由框
  1300. noCancel() {
  1301. this.setState({
  1302. noVisible: false,
  1303. reason: "",
  1304. });
  1305. },
  1306. //搜索
  1307. search() {
  1308. this.setState({
  1309. //signBillVisible:false
  1310. });
  1311. this.loadData();
  1312. },
  1313. //重置
  1314. reset() {
  1315. this.setState({
  1316. signBillVisible: false,
  1317. });
  1318. this.state.orderNoSearch = undefined;
  1319. this.state.contractNoSearch = undefined;
  1320. this.state.nameSearch = undefined;
  1321. this.state.liquidationStatusSearch = [];
  1322. this.state.departmenttList = undefined;
  1323. this.state.releaseDate[0] = undefined;
  1324. this.state.releaseDate[1] = undefined;
  1325. this.state.approvalSearch = "1";
  1326. this.loadData();
  1327. },
  1328. resets() {
  1329. this.state.orderNo = "";
  1330. this.state.customerName = "";
  1331. this.state.departmenttSearch = undefined;
  1332. this.state.releaseDate[0] = undefined;
  1333. this.state.releaseDate[1] = undefined;
  1334. },
  1335. getOrgCodeUrl(e) {
  1336. this.setState({ orgCodeUrl: e });
  1337. },
  1338. getReplenishUrl(e) {
  1339. this.setState({ replenishUrl: e });
  1340. },
  1341. downImg() {
  1342. let num = 0;
  1343. for (let i = 0; i < this.state.orgCodeUrl.length; i++) {
  1344. if (this.state.orgCodeUrl[i].url == this.state.previewImage) {
  1345. num = i;
  1346. }
  1347. }
  1348. if (num == this.state.orgCodeUrl.length - 1) {
  1349. return message.warning("已经是最后一张了哦");
  1350. }
  1351. this.state.previewImage = this.state.orgCodeUrl[num + 1].url;
  1352. this.setState({
  1353. previewImage: this.state.previewImage,
  1354. rotateDeg: 0,
  1355. });
  1356. },
  1357. upImg() {
  1358. let num = 0;
  1359. for (let i = 0; i < this.state.orgCodeUrl.length; i++) {
  1360. if (this.state.orgCodeUrl[i].url == this.state.previewImage) {
  1361. num = i;
  1362. }
  1363. }
  1364. if (num == 0) {
  1365. return message.warning("已经是第一张了哦");
  1366. }
  1367. this.state.previewImage = this.state.orgCodeUrl[num - 1].url;
  1368. this.setState({
  1369. previewImage: this.state.previewImage,
  1370. rotateDeg: 0,
  1371. });
  1372. },
  1373. rotate() {
  1374. let rotateDeg = this.state.rotateDeg + 90;
  1375. this.setState({
  1376. rotateDeg,
  1377. });
  1378. },
  1379. downImgs() {
  1380. let num = 0;
  1381. for (let i = 0; i < this.state.replenishUrl.length; i++) {
  1382. if (this.state.replenishUrl[i].url == this.state.previewImage) {
  1383. num = i;
  1384. }
  1385. }
  1386. if (num == this.state.replenishUrl.length - 1) {
  1387. return message.warning("已经是最后一张了哦");
  1388. }
  1389. this.state.previewImage = this.state.replenishUrl[num + 1].url;
  1390. this.setState({
  1391. previewImage: this.state.previewImage,
  1392. rotateDeg: 0,
  1393. });
  1394. },
  1395. upImgs() {
  1396. let num = 0;
  1397. for (let i = 0; i < this.state.replenishUrl.length; i++) {
  1398. if (this.state.replenishUrl[i].url == this.state.previewImage) {
  1399. num = i;
  1400. }
  1401. }
  1402. if (num == 0) {
  1403. return message.warning("已经是第一张了哦");
  1404. }
  1405. this.state.previewImage = this.state.replenishUrl[num - 1].url;
  1406. this.setState({
  1407. previewImage: this.state.previewImage,
  1408. rotateDeg: 0,
  1409. });
  1410. },
  1411. rotates() {
  1412. let rotateDeg = this.state.rotateDeg + 90;
  1413. this.setState({
  1414. rotateDeg,
  1415. });
  1416. },
  1417. changeList(arr) {
  1418. const newArr = [];
  1419. this.state.columns.forEach((item) => {
  1420. arr.forEach((val) => {
  1421. if (val === item.title) {
  1422. newArr.push(item);
  1423. }
  1424. });
  1425. });
  1426. this.setState({
  1427. changeList: newArr,
  1428. });
  1429. },
  1430. //关闭详情
  1431. visitCancel() {
  1432. this.setState({
  1433. visible: false,
  1434. });
  1435. this.resets();
  1436. },
  1437. visitOk() {
  1438. this.setState({
  1439. visible: false,
  1440. });
  1441. this.resets();
  1442. },
  1443. //部门
  1444. departmentList() {
  1445. this.setState({
  1446. loading: true,
  1447. });
  1448. $.ajax({
  1449. method: "get",
  1450. dataType: "json",
  1451. crossDomain: false,
  1452. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  1453. data: {},
  1454. success: function (data) {
  1455. let thedata = data.data;
  1456. let theArr = [];
  1457. if (!thedata) {
  1458. if (data.error && data.error.length) {
  1459. message.warning(data.error[0].message);
  1460. }
  1461. thedata = {};
  1462. } else {
  1463. thedata.map(function (item, index) {
  1464. theArr.push({
  1465. key: index,
  1466. name: item.name,
  1467. id: item.id,
  1468. });
  1469. });
  1470. }
  1471. this.setState({
  1472. departmentArr: theArr,
  1473. });
  1474. }.bind(this),
  1475. }).always(
  1476. function () {
  1477. this.setState({
  1478. loading: false,
  1479. });
  1480. }.bind(this)
  1481. );
  1482. },
  1483. waterData() {
  1484. this.state.data = [];
  1485. this.setState({
  1486. loading: true,
  1487. });
  1488. $.ajax({
  1489. method: "get",
  1490. dataType: "json",
  1491. crossDomain: false,
  1492. url: globalConfig.context + "/api/admin/financial/myBillList",
  1493. data: {
  1494. orderNo: this.state.selectedRowKeys[0],
  1495. pageSize: 9999,
  1496. whoType: 1,
  1497. },
  1498. success: function (data) {
  1499. let theArr = [];
  1500. let waterSum = 0;
  1501. if (!data.data || !data.data.list) {
  1502. if (data.error && data.error.length) {
  1503. message.warning(data.error[0].message);
  1504. }
  1505. } else {
  1506. for (let i = 0; i < data.data.list.length; i++) {
  1507. let thisdata = data.data.list[i];
  1508. waterSum += parseFloat(thisdata.transactionAmount);
  1509. theArr.push({
  1510. key: i,
  1511. orderNo: thisdata.orderNo,
  1512. billNo: thisdata.billNo,
  1513. transactionAmount: thisdata.transactionAmount,
  1514. payeeName: thisdata.payeeName,
  1515. payerName: thisdata.payerName,
  1516. transactionSubject: thisdata.transactionSubject,
  1517. transactionChannel: thisdata.transactionChannel,
  1518. financialPayTimes: thisdata.financialPayTimes,
  1519. financialPayNo: thisdata.financialPayNo,
  1520. createrName: thisdata.createrName,
  1521. saleName: thisdata.saleName,
  1522. createTimes: thisdata.createTimes,
  1523. type: thisdata.type == 0 ? "手工" : "批量",
  1524. });
  1525. }
  1526. }
  1527. this.setState({
  1528. waterData: theArr,
  1529. waterSum: (Math.round(waterSum * 1000000) / 1000000).toFixed(6),
  1530. });
  1531. }.bind(this),
  1532. }).always(
  1533. function () {
  1534. this.setState({
  1535. loading: false,
  1536. });
  1537. }.bind(this)
  1538. );
  1539. },
  1540. waterCanl() {
  1541. this.setState({
  1542. cvisible: false,
  1543. });
  1544. },
  1545. // 拆分详细
  1546. showRes(record) {
  1547. this.setState({
  1548. resVisible: true,
  1549. resRecord: record,
  1550. });
  1551. },
  1552. resCancel() {
  1553. this.setState({
  1554. resVisible: false,
  1555. });
  1556. },
  1557. exportKaip() {
  1558. window.location.href =
  1559. globalConfig.context +
  1560. "/api/admin/receivables/exportInvoice?" +
  1561. `orderNo=${this.state.selectedRowKeys}`;
  1562. },
  1563. exportAll() {
  1564. window.location.href =
  1565. globalConfig.context +
  1566. "/api/admin/receivables/exportReceivables?" +
  1567. `orderNo=${
  1568. this.state.orderNoSearch ? this.state.orderNoSearch : ""
  1569. }&buyerName=${
  1570. this.state.nameSearch ? this.state.nameSearch : ""
  1571. }&departmentId=${
  1572. this.state.departmenttList ? this.state.departmenttList : ""
  1573. }&contractNo=${
  1574. this.state.contractNoSearch ? this.state.contractNoSearch : ""
  1575. }&processStatus=${this.state.processStatusSearch}`;
  1576. },
  1577. exportWater() {
  1578. window.location.href =
  1579. globalConfig.context +
  1580. "/api/admin/receivables/exportMyBill?" +
  1581. `orderNo=${this.state.selectedRowKeys}&whoType=1`;
  1582. },
  1583. timeData() {
  1584. this.setState({
  1585. loading: true,
  1586. });
  1587. $.ajax({
  1588. method: "get",
  1589. dataType: "json",
  1590. crossDomain: false,
  1591. url: globalConfig.context + "/api/admin/orderProject/taskHoursList",
  1592. data: {
  1593. orderNo: this.state.selectedRowKeys[0],
  1594. pageSize: 9999,
  1595. },
  1596. success: function (data) {
  1597. let theArr = [];
  1598. if (!data.data || !data.data.list) {
  1599. if (data.error && data.error.length) {
  1600. message.warning(data.error[0].message);
  1601. }
  1602. } else {
  1603. for (let i = 0; i < data.data.list.length; i++) {
  1604. let thisdata = data.data.list[i];
  1605. theArr.push({
  1606. key: i + 1,
  1607. id: thisdata.id, //ID
  1608. orderNo: thisdata.orderNo, //订单编号
  1609. taskName: thisdata.taskName, //任务名称
  1610. userName: thisdata.userName, //客户名称
  1611. cname: thisdata.cname, //项目品类
  1612. taskStatus: thisdata.taskStatus, //任务状态
  1613. receiverName: thisdata.receiverName, //负责人
  1614. hours: thisdata.hours, //任务工时
  1615. depName: thisdata.depName, //派单公司
  1616. contractNo: thisdata.contractNo,
  1617. signTime: thisdata.signTime,
  1618. creteTime: thisdata.creteTime,
  1619. projectStatus: thisdata.projectStatus,
  1620. commodityPrice: thisdata.commodityPrice, //价格
  1621. commodityQuantity: thisdata.commodityQuantity, //数量
  1622. salesmanName: thisdata.salesmanName, //订单负责人
  1623. taskDistributionTime: thisdata.taskDistributionTime,
  1624. taskEndTime: thisdata.taskEndTime,
  1625. outsource: thisdata.outsource,
  1626. });
  1627. }
  1628. }
  1629. this.setState({
  1630. timeDataList: theArr,
  1631. });
  1632. }.bind(this),
  1633. }).always(
  1634. function () {
  1635. this.setState({
  1636. loading: false,
  1637. });
  1638. }.bind(this)
  1639. );
  1640. },
  1641. exportTime() {
  1642. const data = {
  1643. orderNo: this.state.selectedRowKeys[0],
  1644. pageSize: 9999,
  1645. };
  1646. window.location.href =
  1647. globalConfig.context +
  1648. "/api/admin/orderProject/exportMyTaskList?" +
  1649. $.param(data);
  1650. },
  1651. exportPro() {
  1652. const data = {
  1653. orderNo: this.state.selectedRowKeys[0],
  1654. };
  1655. window.location.href =
  1656. globalConfig.context +
  1657. "/api/admin/newOrder/exportOrderTaskData?" +
  1658. $.param(data);
  1659. },
  1660. exportCui() {
  1661. var data = {
  1662. orderNo: this.state.selectedRowKeys[0]
  1663. ? this.state.selectedRowKeys[0]
  1664. : undefined, //订单编号
  1665. // specially: 1,
  1666. pageSize: 9999,
  1667. };
  1668. window.location.href =
  1669. globalConfig.context +
  1670. "/api/admin/newOrder/exportOrderDunData?" +
  1671. $.param(data);
  1672. },
  1673. cuiData() {
  1674. this.setState({
  1675. loading: true,
  1676. });
  1677. $.ajax({
  1678. method: "get",
  1679. dataType: "json",
  1680. crossDomain: false,
  1681. url: globalConfig.context + "/api/admin/newOrder/dunOrderNewList",
  1682. data: {
  1683. orderNo: this.state.selectedRowKeys[0],
  1684. pageSize: 9999,
  1685. },
  1686. success: function (data) {
  1687. let theArr = [];
  1688. if (!data.data || !data.data.list) {
  1689. if (data.error && data.error.length) {
  1690. message.warning(data.error[0].message);
  1691. }
  1692. } else {
  1693. for (let i = 0; i < data.data.list.length; i++) {
  1694. let thisdata = data.data.list[i];
  1695. theArr.push({
  1696. key: i + 1,
  1697. orderNo: thisdata.orderNo,
  1698. contractNo: thisdata.contractNo,
  1699. userName: thisdata.userName,
  1700. buyerName: thisdata.buyerName,
  1701. departmentName: thisdata.departmentName,
  1702. salesmanName: thisdata.salesmanName,
  1703. depName: thisdata.depName,
  1704. orderStatus: thisdata.orderStatus,
  1705. projectStatus: thisdata.projectStatus,
  1706. totalAmount: thisdata.totalAmount,
  1707. liquidationStatus: thisdata.liquidationStatus,
  1708. settlementAmount: thisdata.settlementAmount,
  1709. accountsReceivable: thisdata.accountsReceivable,
  1710. dunSubject: thisdata.dunSubject,
  1711. startDate: thisdata.startDate,
  1712. taskStatus: thisdata.taskStatus,
  1713. cname: thisdata.cname,
  1714. id: thisdata.id,
  1715. taskName: thisdata.taskName,
  1716. hours: thisdata.hours,
  1717. taskDistributionTime: thisdata.taskDistributionTime,
  1718. taskEndTime: thisdata.taskEndTime,
  1719. dunStatus: thisdata.dunStatus == 0 ? "未触发" : "已触发",
  1720. });
  1721. }
  1722. }
  1723. this.setState({
  1724. cuiDataList: theArr,
  1725. });
  1726. }.bind(this),
  1727. }).always(
  1728. function () {
  1729. this.setState({
  1730. loading: false,
  1731. });
  1732. }.bind(this)
  1733. );
  1734. },
  1735. proData() {
  1736. this.setState({
  1737. loading: true,
  1738. });
  1739. $.ajax({
  1740. method: "get",
  1741. dataType: "json",
  1742. crossDomain: false,
  1743. url: globalConfig.context + "/api/admin/newOrder/getOrderTask",
  1744. data: {
  1745. orderNo: this.state.selectedRowKeys[0],
  1746. pageSize: 9999,
  1747. },
  1748. success: function (data) {
  1749. let theArr = [];
  1750. let totalWaibao = 0;
  1751. if (!data.data) {
  1752. if (data.error && data.error.length) {
  1753. message.warning(data.error[0].message);
  1754. }
  1755. } else {
  1756. for (let i = 0; i < data.data.length; i++) {
  1757. let thisdata = data.data[i];
  1758. totalWaibao += thisdata.outsourcePrice;
  1759. thisdata.key = i + 1;
  1760. theArr.push(thisdata);
  1761. }
  1762. }
  1763. totalWaibao = (Math.round(totalWaibao * 1000000) / 1000000).toFixed(6);
  1764. this.setState({
  1765. proDataList: theArr,
  1766. totalWaibao,
  1767. });
  1768. }.bind(this),
  1769. }).always(
  1770. function () {
  1771. this.setState({
  1772. loading: false,
  1773. });
  1774. }.bind(this)
  1775. );
  1776. },
  1777. inRecordCanl() {
  1778. this.setState({
  1779. bvisible: false,
  1780. });
  1781. },
  1782. inRecordData() {
  1783. this.setState({
  1784. loading: true,
  1785. });
  1786. $.ajax({
  1787. method: "get",
  1788. dataType: "json",
  1789. crossDomain: false,
  1790. url:
  1791. globalConfig.context +
  1792. "/api/admin/orderInvoice/salesmanOrderInvoiceList",
  1793. data: {
  1794. orderNo: this.state.selectedRowKeys[0],
  1795. pageSize: 9999,
  1796. },
  1797. success: function (data) {
  1798. let theArr = [];
  1799. let sum = 0;
  1800. if (!data.data) {
  1801. if (data.error && data.error.length) {
  1802. message.warning(data.error[0].message);
  1803. }
  1804. } else {
  1805. for (let i = 0; i < data.data.list.length; i++) {
  1806. let thisdata = data.data.list[i];
  1807. sum += parseFloat(thisdata.amount);
  1808. theArr.push({
  1809. id: thisdata.id,
  1810. orderno: thisdata.orderno, //订单编号
  1811. amount: thisdata.amount, //签单金额
  1812. createTime: thisdata.createTime, //流程状态
  1813. status: thisdata.status, //结算状态
  1814. rejectReason: thisdata.rejectReason,
  1815. });
  1816. }
  1817. }
  1818. this.setState({
  1819. recordData: theArr,
  1820. sum: sum.toFixed(6),
  1821. });
  1822. }.bind(this),
  1823. }).done(
  1824. function () {
  1825. this.setState({
  1826. loading: false,
  1827. });
  1828. }.bind(this)
  1829. );
  1830. },
  1831. // 通过弹出备注框
  1832. pass() {
  1833. this.setState({
  1834. reason: "",
  1835. passVisible: true,
  1836. });
  1837. },
  1838. passCancel() {
  1839. this.setState({
  1840. reason: "",
  1841. passVisible: false,
  1842. });
  1843. },
  1844. printAll() {
  1845. this.setState({
  1846. dvisible: true,
  1847. });
  1848. this.loadData(1, 9999);
  1849. },
  1850. render() {
  1851. const formItemLayout = {
  1852. labelCol: { span: 8 },
  1853. wrapperCol: { span: 14 },
  1854. };
  1855. const FormItem = Form.Item;
  1856. const { RangePicker } = DatePicker;
  1857. const cuiDataList = this.state.contactList || [];
  1858. const rowSelection = {
  1859. selectedRowKeys: this.state.selectedRowKeys,
  1860. onChange: (selectedRowKeys, selectedRows) => {
  1861. this.setState({
  1862. modalVisible: false,
  1863. selectedRows: selectedRows.slice(-1),
  1864. selectedRowKeys: selectedRowKeys.slice(-1),
  1865. });
  1866. },
  1867. onSelect: (recordt) => {
  1868. this.setState({
  1869. modalVisible: false,
  1870. recordt: recordt.id,
  1871. });
  1872. },
  1873. };
  1874. let departmentArr = this.state.departmentArr || [];
  1875. return (
  1876. <div className="user-content">
  1877. {this.state.resVisible ? (
  1878. <ResolutionDetail
  1879. cancel={this.resCancel}
  1880. detail={this.state.resRecord}
  1881. visible={this.state.resVisible}
  1882. id={this.state.resRecord.orderNo}
  1883. />
  1884. ) : (
  1885. ""
  1886. )}
  1887. <ShowModalDiv ShowModal={this.state.showModal} />
  1888. <div className="content-title" style={{ marginBottom: 10 }}>
  1889. <span style={{ fontWeight: 900, fontSize: 16 }}>特批订单审核</span>
  1890. </div>
  1891. <Tabs defaultActiveKey="2" onChange={this.callback} className="test">
  1892. <TabPane tab="更改表格显示数据" key="1">
  1893. <div style={{ marginLeft: 10 }}>
  1894. <ChooseList
  1895. columns={this.state.columns}
  1896. changeFn={this.changeList}
  1897. changeList={this.state.changeList}
  1898. top={55}
  1899. margin={11}
  1900. />
  1901. </div>
  1902. </TabPane>
  1903. <TabPane tab="搜索" key="2">
  1904. <div className="user-search" style={{ marginLeft: 10 }}>
  1905. <Input
  1906. placeholder="订单编号"
  1907. value={this.state.orderNoSearch}
  1908. onChange={(e) => {
  1909. this.setState({ orderNoSearch: e.target.value });
  1910. }}
  1911. />
  1912. <Input
  1913. placeholder="客户名称"
  1914. value={this.state.nameSearch}
  1915. onChange={(e) => {
  1916. this.setState({ nameSearch: e.target.value });
  1917. }}
  1918. />
  1919. <Select
  1920. placeholder="订单部门"
  1921. style={{ width: 150, marginRight: 10 }}
  1922. value={this.state.departmenttList}
  1923. onChange={(e) => {
  1924. this.setState({ departmenttList: e });
  1925. }}
  1926. >
  1927. {departmentArr.map(function (item) {
  1928. return (
  1929. <Select.Option key={item.id}>{item.name}</Select.Option>
  1930. );
  1931. })}
  1932. </Select>
  1933. <Input
  1934. placeholder="合同编号"
  1935. value={this.state.contractNoSearch}
  1936. onChange={(e) => {
  1937. this.setState({
  1938. contractNoSearch: e.target.value,
  1939. });
  1940. }}
  1941. />
  1942. <Select
  1943. placeholder="特批状态"
  1944. onChange={(e) => {
  1945. this.setState({ approvalSearch: e });
  1946. }}
  1947. style={{ width: 160, marginRight: 5 }}
  1948. value={this.state.approvalSearch}
  1949. >
  1950. <Option value="1">特批待审核</Option>
  1951. <Option value="2">特批(通过以及驳回)</Option>
  1952. </Select>
  1953. <Select
  1954. placeholder="结算状态"
  1955. onChange={(e) => {
  1956. this.setState({ liquidationStatusSearch: e });
  1957. }}
  1958. style={{ width: 160, marginRight: 5 }}
  1959. value={this.state.liquidationStatusSearch}
  1960. >
  1961. <Option value="0">首付待付清</Option>
  1962. <Option value="1">尾款待付清</Option>
  1963. <Option value="2">已付清</Option>
  1964. </Select>
  1965. <span style={{}}>下单日期:</span>
  1966. <RangePicker
  1967. value={[
  1968. this.state.releaseDate[0]
  1969. ? moment(this.state.releaseDate[0])
  1970. : null,
  1971. this.state.releaseDate[1]
  1972. ? moment(this.state.releaseDate[1])
  1973. : null,
  1974. ]}
  1975. onChange={(data, dataString) => {
  1976. this.setState({ releaseDate: dataString });
  1977. }}
  1978. />
  1979. <Button
  1980. type="primary"
  1981. onClick={this.search}
  1982. style={{ marginLeft: 10 }}
  1983. disabled={this.state.loadingA ? true : false}
  1984. >
  1985. 搜索
  1986. </Button>
  1987. <Button onClick={this.reset}>重置</Button>
  1988. </div>
  1989. </TabPane>
  1990. <TabPane tab="打印" key="3">
  1991. <Button
  1992. type="primary"
  1993. style={{ margin: "11px 0px 10px 10px" }}
  1994. onClick={this.printAll}
  1995. disabled={!this.state.dataSource.length}
  1996. >
  1997. 打印所有列表信息
  1998. </Button>
  1999. <Button
  2000. type="primary"
  2001. disabled={this.state.selectedRowKeys.length != 1}
  2002. style={{ margin: "11px 0px 10px 10px" }}
  2003. onClick={() => {
  2004. this.inRecordData();
  2005. this.setState({
  2006. bvisible: true,
  2007. });
  2008. }}
  2009. >
  2010. 打印开票详情
  2011. </Button>
  2012. <Button
  2013. type="primary"
  2014. disabled={this.state.selectedRowKeys.length != 1}
  2015. style={{ margin: "11px 0px 10px 10px" }}
  2016. onClick={() => {
  2017. this.waterData();
  2018. this.setState({
  2019. cvisible: true,
  2020. });
  2021. }}
  2022. >
  2023. 打印收款流水
  2024. </Button>
  2025. <Button
  2026. type="primary"
  2027. disabled={this.state.selectedRowKeys.length != 1}
  2028. style={{ margin: "11px 0px 10px 10px" }}
  2029. onClick={() => {
  2030. this.timeData();
  2031. this.setState({
  2032. timeVisible: true,
  2033. });
  2034. }}
  2035. >
  2036. 打印工时信息
  2037. </Button>
  2038. {/*<Button*/}
  2039. {/* type="primary"*/}
  2040. {/* disabled={this.state.selectedRowKeys.length != 1}*/}
  2041. {/* style={{ margin: "11px 0px 10px 10px" }}*/}
  2042. {/* onClick={() => {*/}
  2043. {/* this.cuiData();*/}
  2044. {/* this.setState({*/}
  2045. {/* cuiVisible: true,*/}
  2046. {/* });*/}
  2047. {/* }}*/}
  2048. {/*>*/}
  2049. {/* 打印催款信息*/}
  2050. {/*</Button>*/}
  2051. <Button
  2052. type="primary"
  2053. disabled={this.state.selectedRowKeys.length != 1}
  2054. style={{ margin: "11px 0px 10px 10px" }}
  2055. onClick={() => {
  2056. this.proData();
  2057. this.setState({
  2058. proVisible: true,
  2059. });
  2060. }}
  2061. >
  2062. 打印项目信息
  2063. </Button>
  2064. </TabPane>
  2065. <TabPane tab="导出Excel" key="4">
  2066. {/* <Button
  2067. type="primary"
  2068. style={{ margin: "11px 0px 10px 10px" }}
  2069. onClick={this.exportAll}
  2070. >
  2071. 导出当前列表
  2072. </Button> */}
  2073. <Button
  2074. type="primary"
  2075. disabled={this.state.selectedRowKeys.length != 1}
  2076. style={{ margin: "11px 0px 10px 10px" }}
  2077. onClick={this.exportKaip}
  2078. >
  2079. 导出所选开票详情
  2080. </Button>
  2081. <Button
  2082. type="primary"
  2083. disabled={this.state.selectedRowKeys.length != 1}
  2084. style={{ margin: "11px 0px 10px 10px" }}
  2085. onClick={this.exportWater}
  2086. >
  2087. 导出所选收款详情流水
  2088. </Button>
  2089. <Button
  2090. type="primary"
  2091. disabled={this.state.selectedRowKeys.length != 1}
  2092. style={{ margin: "11px 0px 10px 10px" }}
  2093. onClick={this.exportTime}
  2094. >
  2095. 导出所选工时信息
  2096. </Button>
  2097. {/*<Button*/}
  2098. {/* type="primary"*/}
  2099. {/* disabled={this.state.selectedRowKeys.length != 1}*/}
  2100. {/* style={{ margin: "11px 0px 10px 10px" }}*/}
  2101. {/* onClick={this.exportCui}*/}
  2102. {/*>*/}
  2103. {/* 导出催款信息*/}
  2104. {/*</Button>*/}
  2105. <Button
  2106. type="primary"
  2107. disabled={this.state.selectedRowKeys.length != 1}
  2108. style={{ margin: "11px 0px 10px 10px" }}
  2109. onClick={this.exportPro}
  2110. >
  2111. 导出项目详情
  2112. </Button>
  2113. </TabPane>
  2114. <TabPane tab="查看" key="5">
  2115. <Button
  2116. type="primary"
  2117. disabled={this.state.selectedRowKeys.length != 1}
  2118. style={{ margin: "11px 0px 10px 10px" }}
  2119. onClick={() => {
  2120. this.inRecordData();
  2121. this.setState({
  2122. bvisible: true,
  2123. });
  2124. }}
  2125. >
  2126. 查看开票详情
  2127. </Button>
  2128. <Button
  2129. type="primary"
  2130. disabled={this.state.selectedRowKeys.length != 1}
  2131. style={{ margin: "11px 0px 10px 10px" }}
  2132. onClick={() => {
  2133. this.waterData();
  2134. this.setState({
  2135. cvisible: true,
  2136. });
  2137. }}
  2138. >
  2139. 详情收款流水
  2140. </Button>
  2141. <Button
  2142. type="primary"
  2143. disabled={this.state.selectedRowKeys.length != 1}
  2144. style={{ margin: "11px 0px 10px 10px" }}
  2145. onClick={() => {
  2146. this.timeData();
  2147. this.setState({
  2148. timeVisible: true,
  2149. });
  2150. }}
  2151. >
  2152. 工时信息
  2153. </Button>
  2154. <Button
  2155. type="primary"
  2156. disabled={this.state.selectedRowKeys.length != 1}
  2157. style={{ margin: "11px 0px 10px 10px" }}
  2158. onClick={() => {
  2159. this.cuiData();
  2160. this.setState({
  2161. cuiVisible: true,
  2162. });
  2163. }}
  2164. >
  2165. 催款信息
  2166. </Button>
  2167. <Button
  2168. type="primary"
  2169. disabled={this.state.selectedRowKeys.length != 1}
  2170. style={{ margin: "11px 0px 10px 10px" }}
  2171. onClick={() => {
  2172. this.proData();
  2173. this.setState({
  2174. proVisible: true,
  2175. });
  2176. }}
  2177. >
  2178. 项目信息
  2179. </Button>
  2180. </TabPane>
  2181. {/* <TabPane tab="批量操作" key="6">
  2182. <Button
  2183. type="primary"
  2184. disabled={this.state.selectedRowKeys.length == 0}
  2185. style={{ margin: "0px 0px 10px 10px" }}
  2186. onClick={e => {
  2187. e.stopPropagation(),
  2188. this.evaluateY(this.state.selectedRowKeys, "财务专员");
  2189. }}
  2190. >
  2191. 转交
  2192. </Button>
  2193. </TabPane> */}
  2194. </Tabs>
  2195. <div className="user-search">
  2196. <div className="patent-table">
  2197. <Spin spinning={this.state.loading}>
  2198. <Table
  2199. columns={
  2200. this.state.changeList == undefined
  2201. ? this.state.columns
  2202. : this.state.changeList
  2203. }
  2204. dataSource={this.state.dataSource}
  2205. rowSelection={rowSelection}
  2206. pagination={this.state.pagination}
  2207. onRowClick={this.tableRowClick}
  2208. bordered
  2209. size="small"
  2210. />
  2211. </Spin>
  2212. </div>
  2213. {this.state.visible ? <Modal
  2214. maskClosable={false}
  2215. className="customeDetails"
  2216. footer=""
  2217. title="订单详情"
  2218. width="900px"
  2219. visible={this.state.visible}
  2220. onOk={this.visitOk}
  2221. onCancel={this.visitCancel}
  2222. >
  2223. <Form
  2224. layout="horizontal"
  2225. onSubmit={this.handleSubmit}
  2226. id="demand-form"
  2227. style={{ paddingBottom: "40px" }}
  2228. >
  2229. <Spin spinning={this.state.loading}>
  2230. <div className="clearfix">
  2231. <FormItem
  2232. className="half-item"
  2233. {...formItemLayout}
  2234. label="订单编号"
  2235. >
  2236. <span>{this.state.orderNo}</span>
  2237. </FormItem>
  2238. <FormItem
  2239. className="half-item"
  2240. {...formItemLayout}
  2241. label="合同编号"
  2242. >
  2243. <span>{this.state.contractNo}</span>
  2244. </FormItem>
  2245. <FormItem
  2246. className="half-item"
  2247. {...formItemLayout}
  2248. label="客户名称"
  2249. >
  2250. <span>{this.state.userName}</span>
  2251. </FormItem>
  2252. <FormItem
  2253. className="half-item"
  2254. {...formItemLayout}
  2255. label="合同签订时间"
  2256. >
  2257. <span>{this.state.signDate}</span>
  2258. </FormItem>
  2259. <FormItem
  2260. className="half-item"
  2261. {...formItemLayout}
  2262. label="流程状态"
  2263. >
  2264. <span>{getProcessStatus(this.state.processStatus)}</span>
  2265. </FormItem>
  2266. <FormItem
  2267. className="half-item"
  2268. {...formItemLayout}
  2269. label="结算状态"
  2270. >
  2271. <span>
  2272. {getLiquidationStatus(this.state.liquidationStatus)}
  2273. </span>
  2274. </FormItem>
  2275. <FormItem
  2276. className="half-item"
  2277. {...formItemLayout}
  2278. label="企业联系人"
  2279. >
  2280. <span>{this.state.contacts}</span>
  2281. </FormItem>
  2282. <FormItem
  2283. className="half-item"
  2284. {...formItemLayout}
  2285. label="联系人电话"
  2286. >
  2287. <span>{this.state.contactMobile}</span>
  2288. </FormItem>
  2289. <FormItem
  2290. className="half-item"
  2291. {...formItemLayout}
  2292. label="企业法人"
  2293. >
  2294. <span>{this.state.legalPerson}</span>
  2295. </FormItem>
  2296. <FormItem
  2297. className="half-item"
  2298. {...formItemLayout}
  2299. label="法人电话"
  2300. >
  2301. <span>{this.state.legalPersonTel}</span>
  2302. </FormItem>
  2303. <FormItem
  2304. className="half-item"
  2305. {...formItemLayout}
  2306. label="签单金额(万元)"
  2307. >
  2308. <span>{this.state.totalAmount}</span>
  2309. </FormItem>
  2310. <FormItem
  2311. className="half-item"
  2312. {...formItemLayout}
  2313. label="首付金额(万元)"
  2314. >
  2315. <span>{this.state.firstAmount}</span>
  2316. </FormItem>
  2317. <FormItem
  2318. className="half-item"
  2319. {...formItemLayout}
  2320. label="特批立项"
  2321. >
  2322. <span>{getApprovedState(this.state.approval)}</span>
  2323. </FormItem>
  2324. <FormItem
  2325. className="half-item"
  2326. {...formItemLayout}
  2327. label="已收款项(万元)"
  2328. >
  2329. <span>{this.state.settlementAmount}</span>
  2330. </FormItem>
  2331. {/*<FormItem*/}
  2332. {/* className="half-item"*/}
  2333. {/* {...formItemLayout}*/}
  2334. {/* label="是否外包"*/}
  2335. {/*>*/}
  2336. {/* <span>{this.state.outsource}</span>*/}
  2337. {/*</FormItem>*/}
  2338. <div className="clearfix">
  2339. <FormItem
  2340. labelCol={{ span: 4 }}
  2341. wrapperCol={{ span: 16 }}
  2342. label="订单留言"
  2343. >
  2344. <span>{this.state.orderRemarks}</span>
  2345. </FormItem>
  2346. </div>
  2347. <div className="clearfix">
  2348. <FormItem
  2349. labelCol={{ span: 4 }}
  2350. wrapperCol={{ span: 18 }}
  2351. label={
  2352. <span>
  2353. <strong style={{ color: "#f00" }}>*</strong>
  2354. 合同扫描件
  2355. </span>
  2356. }
  2357. >
  2358. <PicturesWall
  2359. domId={'approveds1'}
  2360. fileList={this.getOrgCodeUrl}
  2361. pictureUrl={this.state.orgCodeUrl}
  2362. />
  2363. <p>图片建议:要清晰。</p>
  2364. <Button
  2365. style={{
  2366. float: "right",
  2367. marginRight: "140px",
  2368. marginTop: "20px",
  2369. }}
  2370. onClick={this.getOrderLog}
  2371. >
  2372. 查看订单 日志
  2373. </Button>
  2374. </FormItem>
  2375. <FormItem
  2376. labelCol={{ span: 4 }}
  2377. wrapperCol={{ span: 18 }}
  2378. label={
  2379. <span>
  2380. 补充协议
  2381. </span>
  2382. }
  2383. >
  2384. <PicturesWall
  2385. domId={'approveds2'}
  2386. fileList={this.getReplenishUrl}
  2387. pictureUrl={this.state.replenishUrl}
  2388. url="/api/admin/order/uploadOrderImg"
  2389. sign=""
  2390. />
  2391. <p>图片建议:要清晰。</p>
  2392. </FormItem>
  2393. </div>
  2394. <div className="clearfix">
  2395. <FormItem
  2396. className="half-item"
  2397. {...formItemLayout}
  2398. label="订单负责人"
  2399. >
  2400. <span>{this.state.salesmanName}</span>
  2401. </FormItem>
  2402. <FormItem
  2403. className="half-item"
  2404. {...formItemLayout}
  2405. label="订单负责人电话"
  2406. >
  2407. <span>{this.state.salesmanMobile}</span>
  2408. </FormItem>
  2409. </div>
  2410. <div className="clearfix">
  2411. <FormItem
  2412. className="half-item"
  2413. {...formItemLayout}
  2414. label="财务负责人"
  2415. >
  2416. <span>{this.state.financeName}</span>
  2417. </FormItem>
  2418. <FormItem
  2419. className="half-item"
  2420. {...formItemLayout}
  2421. label="财务负责人电话"
  2422. >
  2423. <span>{this.state.financeMobile}</span>
  2424. </FormItem>
  2425. </div>
  2426. <div>
  2427. <span style={{ marginLeft: "50px", fontSize: "18px" }}>
  2428. 项目业务
  2429. </span>
  2430. {this.state.processStatus == 0 ? (
  2431. <Button
  2432. type="primary"
  2433. onClick={this.addDetailed}
  2434. style={{
  2435. float: "right",
  2436. marginRight: "50px",
  2437. marginBottom: "15px",
  2438. }}
  2439. >
  2440. 添加项目明细
  2441. </Button>
  2442. ) : (
  2443. ""
  2444. )}
  2445. </div>
  2446. <div className="patent-table">
  2447. <Spin spinning={this.state.loading}>
  2448. <Table
  2449. columns={this.state.columnsX}
  2450. dataSource={this.state.dataSourceX}
  2451. pagination={this.state.paginations}
  2452. onRowClick={this.tableRowClickX}
  2453. bordered
  2454. size="small"
  2455. />
  2456. </Spin>
  2457. </div>
  2458. {/*<div style={{ marginTop: 10 }}>*/}
  2459. {/* <span style={{ marginLeft: 50, fontSize: "18px" }}>*/}
  2460. {/* 催款节点*/}
  2461. {/* </span>*/}
  2462. {/* <span*/}
  2463. {/* style={{*/}
  2464. {/* display: cuiDataList.length ? "none" : "inline-block",*/}
  2465. {/* marginLeft: 10,*/}
  2466. {/* color: "red",*/}
  2467. {/* }}*/}
  2468. {/* >*/}
  2469. {/* 金额总计(万元): {this.state.totalCui}*/}
  2470. {/* </span>*/}
  2471. {/*</div>*/}
  2472. {/*<div className="clearfix">*/}
  2473. {/* <Spin spinning={this.state.loading}>*/}
  2474. {/* <Form layout="horizontal" id="demand-form">*/}
  2475. {/* <Table*/}
  2476. {/* pagination={false}*/}
  2477. {/* bordered*/}
  2478. {/* size="small"*/}
  2479. {/* columns={*/}
  2480. {/* cuiDataList.length*/}
  2481. {/* ? this.state.ContactsLists*/}
  2482. {/* : this.state.ContactsListsNew*/}
  2483. {/* }*/}
  2484. {/* dataSource={*/}
  2485. {/* cuiDataList.length*/}
  2486. {/* ? this.state.contactList*/}
  2487. {/* : this.state.contactListNew*/}
  2488. {/* }*/}
  2489. {/* />*/}
  2490. {/* <Col*/}
  2491. {/* span={24}*/}
  2492. {/* offset={9}*/}
  2493. {/* style={{ marginTop: "15px" }}*/}
  2494. {/* ></Col>*/}
  2495. {/* </Form>*/}
  2496. {/* </Spin>*/}
  2497. {/*</div>*/}
  2498. <div className="addSave" style={{ marginTop: "15px" }}>
  2499. <Button
  2500. className="cancel"
  2501. type="primary"
  2502. onClick={this.pass}
  2503. style={{ marginLeft: "200px" }}
  2504. htmlType="submit"
  2505. >
  2506. 通过
  2507. </Button>
  2508. <Button
  2509. className="cancel"
  2510. type="primary"
  2511. onClick={this.examNo}
  2512. style={{ marginLeft: "50px" }}
  2513. htmlType="submit"
  2514. >
  2515. 驳回
  2516. </Button>
  2517. <Button
  2518. className="cancel"
  2519. type="ghost"
  2520. onClick={this.visitCancel}
  2521. style={{ marginLeft: "50px" }}
  2522. >
  2523. 取消
  2524. </Button>
  2525. </div>
  2526. </div>
  2527. </Spin>
  2528. </Form>
  2529. </Modal> : <div/>}
  2530. {this.state.noVisible ? <Modal
  2531. maskClosable={false}
  2532. visible={this.state.noVisible}
  2533. onOk={this.noCancel}
  2534. onCancel={this.noCancel}
  2535. width="400px"
  2536. title={"拒绝理由"}
  2537. footer=""
  2538. className="admin-desc-content"
  2539. >
  2540. <Form layout="horizontal" id="demand-form">
  2541. <Spin spinning={this.state.loading}>
  2542. <div className="clearfix">
  2543. <FormItem
  2544. labelCol={{ span: 4 }}
  2545. wrapperCol={{ span: 16 }}
  2546. label="拒绝理由"
  2547. >
  2548. <Input
  2549. type="textarea"
  2550. placeholder="请输入拒绝理由"
  2551. rows={4}
  2552. value={this.state.reason}
  2553. onChange={(e) => {
  2554. this.setState({ reason: e.target.value });
  2555. }}
  2556. />
  2557. </FormItem>
  2558. </div>
  2559. <div className="clearfix">
  2560. <Button
  2561. className="cancel"
  2562. type="primary"
  2563. onClick={this.examOks}
  2564. style={{ marginLeft: "50px" }}
  2565. htmlType="submit"
  2566. >
  2567. 确定
  2568. </Button>
  2569. <Button
  2570. className="cancel"
  2571. type="ghost"
  2572. onClick={this.noCancel}
  2573. style={{ marginLeft: "50px" }}
  2574. >
  2575. 取消
  2576. </Button>
  2577. </div>
  2578. </Spin>
  2579. </Form>
  2580. </Modal> : <div/>}
  2581. {this.state.passVisible ? <Modal
  2582. maskClosable={false}
  2583. visible={this.state.passVisible}
  2584. onOk={this.passCancel}
  2585. onCancel={this.passCancel}
  2586. width="400px"
  2587. title={"同意理由"}
  2588. footer=""
  2589. className="admin-desc-content"
  2590. >
  2591. <Form layout="horizontal">
  2592. <Spin spinning={this.state.loading}>
  2593. <div className="clearfix">
  2594. <FormItem
  2595. labelCol={{ span: 4 }}
  2596. wrapperCol={{ span: 16 }}
  2597. label="同意备注"
  2598. >
  2599. <Input
  2600. type="textarea"
  2601. placeholder="请输入备注"
  2602. rows={4}
  2603. value={this.state.reason}
  2604. onChange={(e) => {
  2605. this.setState({ reason: e.target.value });
  2606. }}
  2607. />
  2608. </FormItem>
  2609. </div>
  2610. <div className="clearfix">
  2611. <Button
  2612. className="cancel"
  2613. type="primary"
  2614. onClick={this.examOk}
  2615. style={{ marginLeft: "50px" }}
  2616. htmlType="submit"
  2617. >
  2618. 确定
  2619. </Button>
  2620. <Button
  2621. className="cancel"
  2622. type="ghost"
  2623. onClick={this.passCancel}
  2624. style={{ marginLeft: "50px" }}
  2625. >
  2626. 取消
  2627. </Button>
  2628. </div>
  2629. </Spin>
  2630. </Form>
  2631. </Modal> : <div/>}
  2632. {this.state.rizhivisible ? <Modal
  2633. visible={this.state.rizhivisible}
  2634. className="admin-desc-content"
  2635. width="800px"
  2636. maskClosable={false}
  2637. title="订单日志"
  2638. footer={null}
  2639. onCancel={this.closeOrderLog}
  2640. >
  2641. <div className="patent-table">
  2642. <Spin spinning={this.state.loading}>
  2643. <Table
  2644. columns={this.state.columnsrizhi}
  2645. dataSource={this.state.dataSourcerizhi}
  2646. pagination={false}
  2647. bordered
  2648. size="small"
  2649. />
  2650. </Spin>
  2651. </div>
  2652. </Modal> : <div/>}
  2653. {this.state.dvisible ? <Modal
  2654. maskClosable={false}
  2655. visible={this.state.dvisible}
  2656. footer=""
  2657. title="所有列表信息"
  2658. className="admin-desc-content"
  2659. width="1400px"
  2660. onCancel={() => {
  2661. // this.loadData();
  2662. this.setState({
  2663. dvisible: false,
  2664. });
  2665. }}
  2666. >
  2667. <Spin spinning={this.state.loading}>
  2668. <div
  2669. className="patent-table"
  2670. style={{
  2671. // width: 900,
  2672. // position: "relative",
  2673. // left: "50%",
  2674. // transform: "translate(-50%)",
  2675. padding: "25px 0 30px 30px",
  2676. }}
  2677. ref={(e) => {
  2678. this.refs.all = e;
  2679. }}
  2680. >
  2681. <Table
  2682. columns={this.state.columns}
  2683. dataSource={this.state.dataSource}
  2684. pagination={false}
  2685. bordered
  2686. size="small"
  2687. />
  2688. </div>
  2689. </Spin>
  2690. <ReactToPrint
  2691. trigger={() => (
  2692. <Button
  2693. type="primary"
  2694. style={{
  2695. float: "right",
  2696. marginTop: 10,
  2697. position: "absolute",
  2698. top: 0,
  2699. right: 30,
  2700. }}
  2701. >
  2702. 打印
  2703. </Button>
  2704. )}
  2705. content={() => this.refs.all}
  2706. />
  2707. </Modal> : <div/>}
  2708. {this.state.bvisible ? <Modal
  2709. maskClosable={false}
  2710. visible={this.state.bvisible}
  2711. footer=""
  2712. title="开票历史记录"
  2713. className="admin-desc-content"
  2714. width="900px"
  2715. onCancel={this.inRecordCanl}
  2716. >
  2717. <Spin spinning={this.state.loading}>
  2718. <div
  2719. className="patent-table"
  2720. ref={(e) => {
  2721. this.refs.kaiPiao = e;
  2722. }}
  2723. >
  2724. <Table
  2725. columns={this.state.columnsDate}
  2726. dataSource={this.state.recordData}
  2727. pagination={false}
  2728. bordered
  2729. size="small"
  2730. />
  2731. <div className="clearfix" style={{ marginTop: "20px" }}>
  2732. <FormItem
  2733. className="half-item"
  2734. {...formItemLayout}
  2735. label={<span style={{ fontSize: "14px" }}>开票总计</span>}
  2736. >
  2737. <span>{this.state.sum + "(万元)"}</span>
  2738. </FormItem>
  2739. </div>
  2740. <ReactToPrint
  2741. trigger={() => (
  2742. <Button
  2743. type="primary"
  2744. style={{
  2745. float: "right",
  2746. // marginTop: 10,
  2747. position: "absolute",
  2748. top: -54,
  2749. right: 30,
  2750. }}
  2751. >
  2752. 打印
  2753. </Button>
  2754. )}
  2755. content={() => this.refs.kaiPiao}
  2756. />
  2757. </div>
  2758. </Spin>
  2759. </Modal> : <div/>}
  2760. {this.state.cvisible ? <Modal
  2761. maskClosable={false}
  2762. visible={this.state.cvisible}
  2763. footer=""
  2764. title="详细收款流水"
  2765. className="admin-desc-content"
  2766. width="1300px"
  2767. onCancel={this.waterCanl}
  2768. >
  2769. <Spin spinning={this.state.loading}>
  2770. <div
  2771. className="patent-table"
  2772. ref={(e) => {
  2773. this.refs.shouKuan = e;
  2774. }}
  2775. >
  2776. <Table
  2777. columns={this.state.waterlistDate}
  2778. dataSource={this.state.waterData}
  2779. pagination={false}
  2780. bordered
  2781. size="small"
  2782. />
  2783. <div className="clearfix" style={{ marginTop: "20px" }}>
  2784. <FormItem
  2785. className="half-item"
  2786. {...formItemLayout}
  2787. label={<span style={{ fontSize: "14px" }}>总计金额</span>}
  2788. >
  2789. <span>{this.state.waterSum + "(万元)"}</span>
  2790. </FormItem>
  2791. </div>
  2792. <ReactToPrint
  2793. trigger={() => (
  2794. <Button
  2795. type="primary"
  2796. style={{
  2797. float: "right",
  2798. position: "absolute",
  2799. top: -54,
  2800. right: 30,
  2801. }}
  2802. >
  2803. 打印
  2804. </Button>
  2805. )}
  2806. content={() => this.refs.shouKuan}
  2807. />
  2808. </div>
  2809. </Spin>
  2810. </Modal> : <div/>}
  2811. {this.state.timeVisible ? <Modal
  2812. maskClosable={false}
  2813. visible={this.state.timeVisible}
  2814. footer=""
  2815. title="工时详情"
  2816. className="admin-desc-content"
  2817. width="1300px"
  2818. pagination={false}
  2819. onCancel={() => {
  2820. // this.loadData();
  2821. this.setState({
  2822. timeVisible: false,
  2823. });
  2824. }}
  2825. >
  2826. <Spin spinning={this.state.loading}>
  2827. <div
  2828. className="patent-table"
  2829. style={
  2830. {
  2831. // width: 900,
  2832. // position: "relative",
  2833. // left: "50%",
  2834. // transform: "translate(-50%)",
  2835. // padding: "25px 0 30px 30px"
  2836. }
  2837. }
  2838. ref={(e) => {
  2839. this.refs.all = e;
  2840. }}
  2841. >
  2842. <Table
  2843. columns={this.state.timeColumns}
  2844. dataSource={this.state.timeDataList}
  2845. scroll={{ x: "max-content", y: 0 }}
  2846. pagination={false}
  2847. bordered
  2848. size="small"
  2849. />
  2850. </div>
  2851. </Spin>
  2852. <ReactToPrint
  2853. trigger={() => (
  2854. <Button
  2855. type="primary"
  2856. style={{
  2857. float: "right",
  2858. marginTop: 10,
  2859. position: "absolute",
  2860. top: 0,
  2861. right: 30,
  2862. }}
  2863. >
  2864. 打印
  2865. </Button>
  2866. )}
  2867. content={() => this.refs.all}
  2868. />
  2869. </Modal> : <div/>}
  2870. {this.state.cuiVisible ? <Modal
  2871. maskClosable={false}
  2872. visible={this.state.cuiVisible}
  2873. footer=""
  2874. title="催款详情"
  2875. className="admin-desc-content"
  2876. width="1300px"
  2877. pagination={false}
  2878. onCancel={() => {
  2879. // this.loadData();
  2880. this.setState({
  2881. cuiVisible: false,
  2882. });
  2883. }}
  2884. >
  2885. <Spin spinning={this.state.loading}>
  2886. <div
  2887. className="patent-table"
  2888. style={
  2889. {
  2890. // width: 900,
  2891. // position: "relative",
  2892. // left: "50%",
  2893. // transform: "translate(-50%)",
  2894. // padding: "25px 0 30px 30px"
  2895. }
  2896. }
  2897. ref={(e) => {
  2898. this.refs.all = e;
  2899. }}
  2900. >
  2901. <Table
  2902. columns={this.state.cuiColumns}
  2903. dataSource={this.state.cuiDataList}
  2904. scroll={{ x: "max-content", y: 0 }}
  2905. pagination={false}
  2906. bordered
  2907. size="small"
  2908. />
  2909. </div>
  2910. </Spin>
  2911. <ReactToPrint
  2912. trigger={() => (
  2913. <Button
  2914. type="primary"
  2915. style={{
  2916. float: "right",
  2917. marginTop: 10,
  2918. position: "absolute",
  2919. top: 0,
  2920. right: 30,
  2921. }}
  2922. >
  2923. 打印
  2924. </Button>
  2925. )}
  2926. content={() => this.refs.all}
  2927. />
  2928. </Modal> : <div/>}
  2929. {this.state.proVisible ? <Modal
  2930. maskClosable={false}
  2931. visible={this.state.proVisible}
  2932. footer=""
  2933. title="项目详情"
  2934. className="admin-desc-content"
  2935. width="1300px"
  2936. pagination={false}
  2937. onCancel={() => {
  2938. // this.loadData();
  2939. this.setState({
  2940. proVisible: false,
  2941. });
  2942. }}
  2943. >
  2944. <Spin spinning={this.state.loading}>
  2945. <Project
  2946. record={this.state.record}
  2947. visible={this.state.pvisible}
  2948. cancel={() => {
  2949. this.setState({ pvisible: false });
  2950. }}
  2951. />
  2952. <div
  2953. className="patent-table"
  2954. style={
  2955. {
  2956. // width: 900,
  2957. // position: "relative",
  2958. // left: "50%",
  2959. // transform: "translate(-50%)",
  2960. // padding: "25px 0 30px 30px"
  2961. }
  2962. }
  2963. ref={(e) => {
  2964. this.refs.all = e;
  2965. }}
  2966. >
  2967. <Table
  2968. columns={this.state.proColumns}
  2969. dataSource={this.state.proDataList}
  2970. // onRowClick={this.tableRowClickPro}
  2971. pagination={false}
  2972. bordered
  2973. size="small"
  2974. />
  2975. </div>
  2976. <span style={{ display: "block", marginTop: 10, color: "red" }}>
  2977. 外包(内部)价格总计(万元):{this.state.totalWaibao}
  2978. </span>
  2979. </Spin>
  2980. <ReactToPrint
  2981. trigger={() => (
  2982. <Button
  2983. type="primary"
  2984. style={{
  2985. float: "right",
  2986. marginTop: 10,
  2987. position: "absolute",
  2988. top: 0,
  2989. right: 30,
  2990. }}
  2991. >
  2992. 打印
  2993. </Button>
  2994. )}
  2995. content={() => this.refs.all}
  2996. />
  2997. </Modal> : <div/>}
  2998. </div>
  2999. {this.state.addnextVisible && <ProjectDetailsReadOnly
  3000. infor={this.state.dataInfor}
  3001. visible={this.state.addnextVisible}
  3002. onCancel={this.nextCancel}
  3003. />}
  3004. </div>
  3005. );
  3006. },
  3007. })
  3008. );
  3009. export default IntentionCustomer;