shouKuang.jsx 84 KB

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