shouKuang.jsx 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473
  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. AutoComplete,
  8. Button,
  9. Form,
  10. Input,
  11. Spin,
  12. Table,
  13. Select,
  14. message,
  15. DatePicker,
  16. Modal,
  17. Tabs,
  18. Col,
  19. Tag,
  20. Popconfirm,
  21. Tooltip,
  22. } from "antd";
  23. import OrderDesc from "../orderDetail/orderDesc";
  24. import ResolutionDetail from "@/resolutionDetail";
  25. import Receivable from "./receivable";
  26. import Assign from "@/manageCenter/publicComponent/assign";
  27. import KaiPiaoModal from "./kaiPiaoModal";
  28. import ReactToPrint from "react-to-print";
  29. import {
  30. getLiquidationStatus,
  31. getProcessStatus,
  32. getApproval,
  33. getInvoiceStatus,
  34. getTransactionProject,
  35. getTaskStatus,
  36. getNewOrderStatus,
  37. getProjectStatus,
  38. getjiedian,
  39. splitUrl,
  40. getApprovalTag,
  41. getProjectName,
  42. getClockState,
  43. getApprovedType,
  44. } from "@/tools";
  45. import { ChooseList } from "../../order/orderNew/chooseList"
  46. import Project from "../../../../component/project"
  47. import LogPopup from "../../../common/logPopup";
  48. import { throws } from "assert";
  49. import { clockState, salesList, approvalOptions } from "@/dataDic";
  50. import OrderItemStatus from "../../../common/orderItemStatus";
  51. import Cascaders from "../../../common/cascaders";
  52. const FormItem = Form.Item;
  53. const { TabPane } = Tabs;
  54. const { TextArea } = Input;
  55. const ShouKuang = React.createClass({
  56. //获取上级组织
  57. selectSuperId() {
  58. $.ajax({
  59. method: "get",
  60. dataType: "json",
  61. crossDomain: false,
  62. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  63. data: {},
  64. success: function (data) {
  65. let theArr = [];
  66. if (data.error && data.error.length === 0) {
  67. for (let i = 0; i < data.data.length; i++) {
  68. let theData = data.data[i];
  69. theArr.push(
  70. <Select.Option value={theData.id} key={theData.id}>
  71. {theData.name}
  72. </Select.Option>
  73. );
  74. }
  75. this.setState({
  76. contactsOption: theArr,
  77. });
  78. } else {
  79. message.warning(data.error[0].message);
  80. }
  81. }.bind(this),
  82. }).always(
  83. function () {
  84. this.setState({
  85. loading: false,
  86. });
  87. }.bind(this)
  88. );
  89. },
  90. departmentList() {
  91. // this.setState({
  92. // loading: true
  93. // });
  94. $.ajax({
  95. method: "get",
  96. dataType: "json",
  97. crossDomain: false,
  98. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  99. data: {},
  100. success: function (data) {
  101. let thedata = data.data;
  102. let theArr = [];
  103. if (!thedata) {
  104. if (data.error && data.error.length) {
  105. message.warning(data.error[0].message);
  106. }
  107. } else {
  108. thedata.map(function (item, index) {
  109. theArr.push({
  110. key: index,
  111. name: item.name,
  112. id: item.id,
  113. });
  114. });
  115. }
  116. this.setState({
  117. departmentArr: theArr,
  118. });
  119. }.bind(this),
  120. }).always(
  121. function () {
  122. // this.setState({
  123. // loading: false
  124. // });
  125. }.bind(this)
  126. );
  127. },
  128. loadData(pageNo, pageSize) {
  129. this.state.data = [];
  130. this.state.pagination.pageSize = 10;
  131. this.setState({
  132. // selectedRowKeys: [],
  133. // selectedRowKey: [],
  134. page: pageNo || this.state.pageNo,
  135. loadingA: true,
  136. pagination: this.state.pagination,
  137. });
  138. $.ajax({
  139. method: "get",
  140. dataType: "json",
  141. crossDomain: false,
  142. url: globalConfig.context + "/api/admin/financial/financeList",
  143. data: {
  144. pageNo: pageNo || 1,
  145. pageSize: pageSize || this.state.pagination.pageSize,
  146. buyerName: this.state.nameSearch, //客户名称
  147. orderNo: this.state.orderNoSearch,
  148. startTime: this.state.releaseDate[0],
  149. endTime: this.state.releaseDate[1],
  150. startFinalReceivablesTime: this.state.shouKuanDate[0],
  151. endFinalReceivablesTime: this.state.shouKuanDate[1],
  152. startSignTime: this.state.startSignTime,
  153. endSignTime: this.state.endSignTime,
  154. deps: this.state.departmenttList,
  155. processStatus: this.state.processStatusSearch,
  156. contractNo: this.state.contractNoSearch,
  157. liquidationStatus: this.state.liquidationStatus,
  158. amountStatus: this.state.amountStatus,
  159. approval: this.state.approval,
  160. projectType: this.state.projectType,
  161. myExamine: this.state.myExamine,
  162. type: this.state.approvaType.length > 0 ? this.state.approvaType.toString() : undefined, //特批类型
  163. },
  164. success: function (data) {
  165. let theArr = [];
  166. if (!data.data || !data.data.pagination.list) {
  167. if (data.error && data.error.length) {
  168. message.warning(data.error[0].message);
  169. }
  170. } else {
  171. for (let i = 0; i < data.data.pagination.list.length; i++) {
  172. let thisdata = data.data.pagination.list[i];
  173. thisdata.key = thisdata.orderNo;
  174. theArr.push(thisdata);
  175. }
  176. }
  177. this.state.pagination.current = data.data.pagination.pageNo;
  178. this.state.pagination.total = data.data.pagination.totalCount;
  179. if (
  180. data.data &&
  181. data.data.pagination.list &&
  182. !data.data.pagination.list.length
  183. ) {
  184. this.state.pagination.current = 0;
  185. this.state.pagination.total = 0;
  186. }
  187. this.setState({
  188. totalPage: data.data.pagination.totalPage,
  189. dataSource: theArr,
  190. pagination: this.state.pagination,
  191. totalHui: data.data.count ? data.data.count.signTotalAmount : 0,
  192. hui: data.data.count ? data.data.count.actuallyTotalAmount : 0,
  193. });
  194. }.bind(this),
  195. }).always(
  196. function () {
  197. // window.setTimeout(() => {
  198. this.setState({
  199. loadingA: false,
  200. });
  201. // },5000)
  202. }.bind(this)
  203. );
  204. },
  205. getInitialState() {
  206. return {
  207. approvaType: [],
  208. cuiTabKey: "1",
  209. pubVisible: false,
  210. pubDataList: [],
  211. pubpageNo: 1,
  212. pubpagination: {
  213. defaultCurrent: 1,
  214. defaultPageSize: 10,
  215. showQuickJumper: true,
  216. pageSize: 10,
  217. onChange: function (page) {
  218. this.loadData(page);
  219. }.bind(this),
  220. showTotal: function (total) {
  221. return "共" + total + "条数据";
  222. },
  223. },
  224. searchMore: true,
  225. dvisible: false,
  226. pageNo: 1,
  227. assignVisibleX: false,
  228. assignVisibleY: false,
  229. releaseDate: [],
  230. shouKuanDate: [],
  231. assignDataX: [],
  232. assignDataY: [],
  233. totalPage: 0,
  234. processStatusSearch: [],//默认搜索无流程状态
  235. boHuivisible: false,
  236. selectedRowKeys: [],
  237. selectedRows: [],
  238. loading: false,
  239. loadingA: false,
  240. pagination: {
  241. defaultCurrent: 1,
  242. defaultPageSize: 10,
  243. showQuickJumper: true,
  244. pageSize: 10,
  245. onChange: function (page) {
  246. // console.log(page);
  247. this.setState({
  248. pageNo: page,
  249. });
  250. this.loadData(page);
  251. }.bind(this),
  252. showTotal: function (total) {
  253. return "共" + total + "条数据";
  254. },
  255. },
  256. // 子组件改变的表格title数组
  257. changeList: undefined,
  258. pubColumns: [
  259. {
  260. title: "编号",
  261. dataIndex: "key",
  262. key: "key",
  263. width: 45,
  264. },
  265. {
  266. title: "公出类型",
  267. dataIndex: "type",
  268. key: "type",
  269. width: 70,
  270. render: (text) =>
  271. <span
  272. style={{ color: ["#1D4FEA", "#1E90FF", "#FF5500", "red"][text] }}
  273. >
  274. {
  275. text === 0
  276. ? "业务公出" : text === 1
  277. ? "技术公出" : text === 2
  278. ? "行政公出" : text === 3
  279. ? "技术协单" : ""
  280. }
  281. </span>
  282. },
  283. {
  284. title: "客户名称",
  285. dataIndex: "nickname",
  286. key: "nickname",
  287. width: 80,
  288. render: (text) => {
  289. return (
  290. <div
  291. style={{
  292. width: 80,
  293. wordBreak: "break-all",
  294. }}
  295. >
  296. {text}
  297. </div>
  298. );
  299. },
  300. },
  301. {
  302. title: "跟单人",
  303. dataIndex: "sname",
  304. key: "sname",
  305. width: 70,
  306. render: (text) => {
  307. return (
  308. <Tooltip title={text}>
  309. <div
  310. style={{
  311. width: 90,
  312. overflow: "hidden",
  313. textOverflow: "ellipsis",
  314. whiteSpace: "nowrap",
  315. }}
  316. >
  317. {text}
  318. </div>
  319. </Tooltip>
  320. );
  321. },
  322. },
  323. {
  324. title: "公出人",
  325. dataIndex: "aname",
  326. key: "aname",
  327. width: 70,
  328. render: (text) => {
  329. return (
  330. <Tooltip title={text}>
  331. <div
  332. style={{
  333. width: 90,
  334. overflow: "hidden",
  335. textOverflow: "ellipsis",
  336. whiteSpace: "nowrap",
  337. }}
  338. >
  339. {text}
  340. </div>
  341. </Tooltip>
  342. );
  343. },
  344. },
  345. // {
  346. // title: "申请时间",
  347. // dataIndex: "createTimes",
  348. // key: "createTimes",
  349. // width: 130,
  350. // },
  351. {
  352. title: "公出时间",
  353. dataIndex: "releaseStarts",
  354. key: "releaseStarts",
  355. width: 130,
  356. render: (text, record) => (
  357. <div>
  358. <div>{text}</div>
  359. <div style={{ paddingLeft: "44px" }}>至</div>
  360. <div>{record.releaseEnds}</div>
  361. </div>
  362. ),
  363. },
  364. {
  365. title: "公出地点",
  366. dataIndex: "userName",
  367. key: "userName",
  368. width: 120,
  369. render: (text) => {
  370. return (
  371. <div>{text}</div>
  372. );
  373. },
  374. },
  375. {
  376. title: "打卡时间",
  377. dataIndex: "clockInTimes",
  378. key: "clockInTimes",
  379. width: 75,
  380. },
  381. {
  382. title: "时长(时)",
  383. dataIndex: "duration",
  384. key: "duration",
  385. width: 50,
  386. },
  387. {
  388. title: "打卡状态",
  389. dataIndex: "clockIn",
  390. key: "clockIn",
  391. width: 65,
  392. render: (text) => (
  393. <span
  394. style={{ color: ["#F21212", "#34DE38"][text] }}
  395. >
  396. {["未打卡", "已打卡"][text]}
  397. </span>
  398. )
  399. },
  400. {
  401. title: "审核状态",
  402. dataIndex: "status",
  403. key: "status",
  404. width: 110,
  405. render: (text, record) => (
  406. <div style={{ display: "flex", flexDirection: "row", flexWrap: "warp" }}>
  407. <Tag color={getClockState(text).color}>
  408. {getClockState(text).title}
  409. </Tag>
  410. {record.updateStatus == 1 && <Tag color="#1E90FF">改</Tag>}
  411. </div>
  412. ),
  413. },
  414. {
  415. title: "审核/指导",
  416. dataIndex: "auditInfo",
  417. key: "auditInfo",
  418. width: 160,
  419. render: (text) => {
  420. return <div style={{ wordBreak: "break-all" }}>{text}</div>;
  421. },
  422. },
  423. ],
  424. proColumns: [
  425. {
  426. title: "序号",
  427. dataIndex: "key",
  428. key: "key",
  429. },
  430. {
  431. title: "合同编号",
  432. dataIndex: "contractNo",
  433. key: "contractNo",
  434. },
  435. {
  436. title: "订单编号",
  437. dataIndex: "orderNo",
  438. key: "orderNo",
  439. },
  440. // {
  441. // title: "项目编号",
  442. // dataIndex: "id",
  443. // key: "id"
  444. // },
  445. {
  446. title: "客户名称",
  447. dataIndex: "userName",
  448. key: "userName",
  449. render: text => {
  450. return (
  451. <Tooltip title={text}>
  452. <div
  453. // style={{
  454. // maxWidth: '150px',
  455. // overflow: 'hidden',
  456. // textOverflow: "ellipsis",
  457. // whiteSpace: 'nowrap',
  458. // }}
  459. >{text}</div>
  460. </Tooltip>
  461. )
  462. }
  463. },
  464. {
  465. title: "订单负责人",
  466. dataIndex: "salesmanName",
  467. key: "salesmanName",
  468. },
  469. {
  470. title: "是否主项目",
  471. dataIndex: "main",
  472. key: "main",
  473. render: (text) => {
  474. return text == 0 ? "否" : "是";
  475. },
  476. },
  477. {
  478. title: "项目类别",
  479. dataIndex: "cname",
  480. key: "cname",
  481. },
  482. {
  483. title: "项目名称",
  484. dataIndex: "commodityName",
  485. key: "commodityName",
  486. },
  487. {
  488. title: "项目数量",
  489. dataIndex: "commodityQuantity",
  490. key: "commodityQuantity",
  491. render: (text, record) => {
  492. if (record.splitStatus == 1) {
  493. return (
  494. <span>
  495. {text}{" "}
  496. <Tag
  497. color="#108ee9"
  498. onClick={(e) => {
  499. e.stopPropagation();
  500. this.showRes(record);
  501. }}
  502. >
  503. 已拆
  504. </Tag>
  505. </span>
  506. );
  507. } else {
  508. return text;
  509. }
  510. },
  511. },
  512. {
  513. title: "服务市价",
  514. dataIndex: "commodityPrice",
  515. key: "commodityPrice",
  516. },
  517. {
  518. title: "证书编号",
  519. dataIndex: "certificateNumber",
  520. key: "certificateNumber",
  521. },
  522. {
  523. title: "项目状态",
  524. dataIndex: "projectStatus",
  525. key: "projectStatus",
  526. render: (text) => {
  527. return getProjectName(text);
  528. },
  529. },
  530. {
  531. title: "项目说明",
  532. dataIndex: "taskComment",
  533. key: "taskComment",
  534. },
  535. {
  536. title: "是否外包",
  537. dataIndex: "outsource",
  538. key: "outsource",
  539. render: (text) => {
  540. if (text == 0) {
  541. return "否";
  542. } else if (text == 1) {
  543. return "是";
  544. }
  545. },
  546. },
  547. // {
  548. // title: "外包(内部)公司",
  549. // dataIndex: "outsourceName",
  550. // key: "outsourceName",
  551. // },
  552. // {
  553. // title: "外包(内部)价格",
  554. // dataIndex: "outsourcePrice",
  555. // key: "outsourcePrice",
  556. // },
  557. ],
  558. qianColumns: [
  559. {
  560. title: "序号",
  561. dataIndex: "key",
  562. key: "key",
  563. },
  564. {
  565. title: "合同编号",
  566. dataIndex: "contractNo",
  567. key: "contractNo",
  568. },
  569. {
  570. title: "订单编号",
  571. dataIndex: "orderNo",
  572. key: "orderNo",
  573. },
  574. {
  575. title: "客户名称",
  576. dataIndex: "userName",
  577. key: "userName",
  578. render: text => {
  579. return (
  580. <Tooltip title={text}>
  581. <div
  582. // style={{
  583. // maxWidth: '150px',
  584. // overflow: 'hidden',
  585. // textOverflow: "ellipsis",
  586. // whiteSpace: 'nowrap',
  587. // }}
  588. >{text}</div>
  589. </Tooltip>
  590. )
  591. }
  592. },
  593. {
  594. title: "订单负责人",
  595. dataIndex: "salesmanName",
  596. key: "salesmanName",
  597. },
  598. {
  599. title: "订单部门",
  600. dataIndex: "depName",
  601. key: "depName",
  602. },
  603. {
  604. title: "订单状态",
  605. dataIndex: "orderStatus",
  606. key: "orderStatus",
  607. render: (text) => {
  608. return getNewOrderStatus(text);
  609. },
  610. },
  611. {
  612. title: "项目状态",
  613. dataIndex: "projectStatus",
  614. key: "projectStatus",
  615. render: (text) => {
  616. return getProjectName(text);
  617. },
  618. },
  619. {
  620. title: "签单金额",
  621. dataIndex: "totalAmount",
  622. key: "totalAmount",
  623. },
  624. {
  625. title: "结算状态",
  626. dataIndex: "liquidationStatus",
  627. key: "liquidationStatus",
  628. render: (text) => {
  629. return getLiquidationStatus(text);
  630. },
  631. },
  632. {
  633. title: "已收款",
  634. dataIndex: "settlementAmount",
  635. key: "settlementAmount",
  636. },
  637. {
  638. title: "欠款",
  639. dataIndex: "orderArrears",
  640. key: "orderArrears",
  641. },
  642. {
  643. title: "催收科目",
  644. dataIndex: "type",
  645. key: "type",
  646. render: (text) => {
  647. return "按时触发应收欠款";
  648. },
  649. },
  650. {
  651. title: "催款状态",
  652. dataIndex: "dunStatus",
  653. key: "dunStatus",
  654. render: (text) => {
  655. if (text == 0) {
  656. return "未启动";
  657. } else if (text == 1) {
  658. return "催款中";
  659. } else if (text == 2) {
  660. return "已完成";
  661. } else if (text == 3) {
  662. return "已停止";
  663. }
  664. },
  665. },
  666. {
  667. title: "催收启动时间",
  668. dataIndex: "startDate",
  669. key: "startDate",
  670. },
  671. ],
  672. cuiColumns: [
  673. {
  674. title: "序号",
  675. dataIndex: "key",
  676. key: "key",
  677. },
  678. {
  679. title: "合同编号",
  680. dataIndex: "contractNo",
  681. key: "contractNo",
  682. },
  683. {
  684. title: "订单编号",
  685. dataIndex: "orderNo",
  686. key: "orderNo",
  687. },
  688. {
  689. title: "客户名称",
  690. dataIndex: "userName",
  691. key: "userName",
  692. render: text => {
  693. return (
  694. <Tooltip title={text}>
  695. <div
  696. // style={{
  697. // maxWidth: '150px',
  698. // overflow: 'hidden',
  699. // textOverflow: "ellipsis",
  700. // whiteSpace: 'nowrap',
  701. // }}
  702. >{text}</div>
  703. </Tooltip>
  704. )
  705. }
  706. },
  707. {
  708. title: "订单负责人",
  709. dataIndex: "salesmanName",
  710. key: "salesmanName",
  711. },
  712. {
  713. title: "订单部门",
  714. dataIndex: "depName",
  715. key: "depName",
  716. },
  717. {
  718. title: "订单状态",
  719. dataIndex: "orderStatus",
  720. key: "orderStatus",
  721. render: (text) => {
  722. return getNewOrderStatus(text);
  723. },
  724. },
  725. {
  726. title: "项目状态",
  727. dataIndex: "projectStatus",
  728. key: "projectStatus",
  729. render: (text) => {
  730. return getProjectName(text);
  731. },
  732. },
  733. {
  734. title: "签单金额",
  735. dataIndex: "totalAmount",
  736. key: "totalAmount",
  737. },
  738. {
  739. title: "结算状态",
  740. dataIndex: "liquidationStatus",
  741. key: "liquidationStatus",
  742. render: (text) => {
  743. return getLiquidationStatus(text);
  744. },
  745. },
  746. {
  747. title: "已收款",
  748. dataIndex: "settlementAmount",
  749. key: "settlementAmount",
  750. },
  751. {
  752. title: "应收款",
  753. dataIndex: "accountsReceivable",
  754. key: "accountsReceivable",
  755. },
  756. {
  757. title: "催收科目",
  758. dataIndex: "dunSubject",
  759. key: "dunSubject",
  760. // render: text => {
  761. // return getjiedian(text);
  762. // }
  763. },
  764. {
  765. title: "催款状态",
  766. dataIndex: "dunStatus",
  767. key: "dunStatus",
  768. },
  769. {
  770. title: "催收启动时间",
  771. dataIndex: "startDate",
  772. key: "startDate",
  773. },
  774. ],
  775. timeColumns: [
  776. {
  777. title: "合同编号",
  778. dataIndex: "contractNo",
  779. key: "contractNo",
  780. },
  781. {
  782. title: "订单编号",
  783. dataIndex: "orderNo",
  784. key: "orderNo",
  785. },
  786. {
  787. title: "项目编号",
  788. dataIndex: "id",
  789. key: "id",
  790. render: (text, record) => {
  791. if (record.splitStatus == 2) {
  792. return <span>{record.splitSuper + "-" + record.splitId}</span>;
  793. } else {
  794. return text;
  795. }
  796. },
  797. },
  798. {
  799. title: "客户名称",
  800. dataIndex: "userName",
  801. key: "userName",
  802. render: text => {
  803. return (
  804. <Tooltip title={text}>
  805. <div
  806. // style={{
  807. // maxWidth: '150px',
  808. // overflow: 'hidden',
  809. // textOverflow: "ellipsis",
  810. // whiteSpace: 'nowrap',
  811. // }}
  812. >{text}</div>
  813. </Tooltip>
  814. )
  815. }
  816. },
  817. {
  818. title: "订单部门",
  819. dataIndex: "depName",
  820. key: "depName",
  821. },
  822. {
  823. title: "订单负责人",
  824. dataIndex: "salesmanName",
  825. key: "salesmanName",
  826. },
  827. {
  828. title: "项目类别",
  829. dataIndex: "cname",
  830. key: "cname",
  831. },
  832. {
  833. title: "项目名称",
  834. dataIndex: "taskName",
  835. key: "taskName",
  836. },
  837. {
  838. title: "项目负责人",
  839. dataIndex: "receiverName",
  840. key: "receiverName",
  841. },
  842. {
  843. title: "项目价格(万元)",
  844. dataIndex: "commodityPrice",
  845. key: "commodityPrice",
  846. },
  847. {
  848. title: "数量(个)",
  849. dataIndex: "commodityQuantity",
  850. key: "commodityQuantity",
  851. },
  852. {
  853. title: "任务状态",
  854. dataIndex: "taskStatus",
  855. key: "taskStatus",
  856. render: (text) => {
  857. return getTaskStatus(text);
  858. },
  859. },
  860. {
  861. title: "项目状态",
  862. dataIndex: "projectStatus",
  863. key: "projectStatus",
  864. render: (text) => {
  865. return getProjectName(text);
  866. },
  867. },
  868. {
  869. title: "工时",
  870. dataIndex: "hours",
  871. key: "hours",
  872. },
  873. {
  874. title: "是否外包",
  875. dataIndex: "outsource",
  876. key: "outsource",
  877. render: (text) => {
  878. if (text == 0) {
  879. return "否";
  880. } else if (text == 1) {
  881. return "是";
  882. }
  883. },
  884. },
  885. {
  886. title: "签单日期",
  887. dataIndex: "signTime",
  888. key: "signTime",
  889. },
  890. {
  891. title: "派单日期",
  892. dataIndex: "creteTime",
  893. key: "creteTime",
  894. },
  895. {
  896. title: "分配时间",
  897. dataIndex: "taskDistributionTime",
  898. key: "taskDistributionTime",
  899. },
  900. {
  901. title: "完成时间",
  902. dataIndex: "taskEndTime",
  903. key: "taskEndTime",
  904. },
  905. ],
  906. printColumns: [
  907. {
  908. title: "合同编号",
  909. dataIndex: "contractNo",
  910. key: "contractNo",
  911. },
  912. {
  913. title: "订单编号",
  914. dataIndex: "orderNo",
  915. key: "orderNo",
  916. // fixed: "left"
  917. },
  918. {
  919. title: "客户名称",
  920. dataIndex: "buyerName",
  921. key: "buyerName",
  922. render: text => {
  923. return (
  924. <Tooltip title={text}>
  925. <div
  926. // style={{
  927. // maxWidth: '150px',
  928. // overflow: 'hidden',
  929. // textOverflow: "ellipsis",
  930. // whiteSpace: 'nowrap',
  931. // }}
  932. >{text}</div>
  933. </Tooltip>
  934. )
  935. }
  936. },
  937. {
  938. title: "订单部门",
  939. dataIndex: "departmentName",
  940. key: "departmentName",
  941. },
  942. {
  943. title: "订单负责人",
  944. dataIndex: "sellerName",
  945. key: "sellerName",
  946. },
  947. {
  948. title: "签单日期",
  949. dataIndex: "signTime",
  950. key: "signTime",
  951. },
  952. {
  953. title: "下单日期",
  954. dataIndex: "createTime",
  955. key: "createTime",
  956. },
  957. {
  958. title: "签单金额(万元)",
  959. dataIndex: "signTotalAmount",
  960. key: "signTotalAmount",
  961. render: (text) => {
  962. return isNaN(parseFloat(text)) ? text : parseFloat(text);
  963. },
  964. },
  965. {
  966. title: "开票金额(万元)",
  967. dataIndex: "invoiceAmount",
  968. key: "invoiceAmount",
  969. render: (text) => {
  970. return isNaN(parseFloat(text)) ? text : parseFloat(text);
  971. },
  972. },
  973. {
  974. title: "已收款(万元)",
  975. dataIndex: "actuallyTotalAmount",
  976. key: "actuallyTotalAmount",
  977. render: (text) => {
  978. return isNaN(parseFloat(text)) ? text : parseFloat(text);
  979. },
  980. },
  981. {
  982. title: "总成本(万元)",
  983. dataIndex: "costAmount",
  984. key: "costAmount",
  985. render: (text) => {
  986. return isNaN(parseFloat(text)) ? text : parseFloat(text);
  987. }
  988. },
  989. {
  990. title: "已付成本(万元)",
  991. dataIndex: "paymentAmount",
  992. key: "paymentAmount",
  993. render: (text) => {
  994. return isNaN(parseFloat(text)) ? text : parseFloat(text);
  995. },
  996. },
  997. {
  998. title: "最近收款(万元)",
  999. dataIndex: "finalReceivables",
  1000. key: "finalReceivables",
  1001. render: (text) => {
  1002. return isNaN(parseFloat(text)) ? text : parseFloat(text);
  1003. },
  1004. },
  1005. {
  1006. title: "最近收款时间",
  1007. dataIndex: "finalReceivablesTime",
  1008. key: "finalReceivablesTime",
  1009. },
  1010. {
  1011. title: "结算状态",
  1012. dataIndex: "liquidationStatus",
  1013. key: "liquidationStatus",
  1014. render: (text) => {
  1015. return getLiquidationStatus(text);
  1016. },
  1017. },
  1018. {
  1019. title: "流程状态",
  1020. dataIndex: "processStatus",
  1021. key: "processStatus",
  1022. render: (text, record) => {
  1023. return getProcessStatus(text, record.examineName, record.approval);
  1024. },
  1025. },
  1026. {
  1027. title: "特批状态",
  1028. dataIndex: "approval",
  1029. key: "approval",
  1030. render: (text) => {
  1031. return getApproval(text);
  1032. },
  1033. },
  1034. ],
  1035. columns: [
  1036. {
  1037. title: "销售类型",
  1038. dataIndex: "salesType",
  1039. key: "salesType",
  1040. className: "title-table",
  1041. fixed: "left",
  1042. render: (text, record) => {
  1043. return (
  1044. <Tooltip
  1045. title={salesList[text] + ((text == 3 || text == 4 || text == 5) ? (!record.other ? "" : "," + record.other) : "")}
  1046. >
  1047. <span>
  1048. {salesList[text]}
  1049. </span>
  1050. </Tooltip>
  1051. );
  1052. },
  1053. },
  1054. {
  1055. title: "特批类型",
  1056. dataIndex: "type",
  1057. key: "type",
  1058. className: "title-table",
  1059. fixed: "left",
  1060. width: 110,
  1061. render: (text, record) => {
  1062. return (
  1063. <span>
  1064. {getApprovedType(text ? text.split(",").map(Number) : [], record.typeExplain)}
  1065. </span>
  1066. );
  1067. },
  1068. },
  1069. {
  1070. title: "合同编号",
  1071. dataIndex: "contractNo",
  1072. key: "contractNo",
  1073. className: "title-table",
  1074. fixed: "left",
  1075. render: (text, record) => {
  1076. return (
  1077. <Tooltip
  1078. title={
  1079. <Button
  1080. type="primary"
  1081. onClick={(e) => {
  1082. e.stopPropagation();
  1083. let input = document.getElementById("copyText");
  1084. input.value = text;
  1085. input.select();
  1086. document.execCommand("copy");
  1087. message.success("复制成功");
  1088. }}
  1089. >
  1090. 复制
  1091. </Button>
  1092. }
  1093. >
  1094. <div>
  1095. {text}
  1096. <div style={{ display: "flex" }}>
  1097. <OrderItemStatus deleteSign={record.deleteSign} />
  1098. {getApprovalTag(record.approval)}
  1099. </div>
  1100. </div>
  1101. </Tooltip>
  1102. );
  1103. },
  1104. },
  1105. {
  1106. title: "客户名称",
  1107. dataIndex: "buyerName",
  1108. key: "buyerName",
  1109. className: "title-table",
  1110. fixed: "left",
  1111. width: 150,
  1112. render: text => {
  1113. return (
  1114. <Tooltip title={text}>
  1115. <div
  1116. // style={{
  1117. // maxWidth: '150px',
  1118. // overflow: 'hidden',
  1119. // textOverflow: "ellipsis",
  1120. // whiteSpace: 'nowrap',
  1121. // }}
  1122. >{text}</div>
  1123. </Tooltip>
  1124. )
  1125. }
  1126. },
  1127. {
  1128. title: "订单编号",
  1129. dataIndex: "orderNo",
  1130. key: "orderNo",
  1131. className: "title-table",
  1132. fixed: "left",
  1133. width: 150,
  1134. render: (text, record) => {
  1135. return (
  1136. <Tooltip
  1137. title={
  1138. <Button
  1139. type="primary"
  1140. onClick={(e) => {
  1141. e.stopPropagation();
  1142. let input = document.getElementById("copyText");
  1143. input.value = text;
  1144. input.select();
  1145. document.execCommand("copy");
  1146. message.success("复制成功");
  1147. }}
  1148. >
  1149. 复制
  1150. </Button>
  1151. }
  1152. >
  1153. <div>
  1154. {text}
  1155. <div>
  1156. {record.signTotalAmount >= 10 && <Tag color="#ef7207">大客户</Tag>}
  1157. {record.projectType == 1 && <Tag color="rgb(22, 155, 213)">会员</Tag>}
  1158. </div>
  1159. </div>
  1160. </Tooltip>
  1161. );
  1162. },
  1163. },
  1164. // {
  1165. // title: "特批状态",
  1166. // dataIndex: "approval",
  1167. // key: "approval",
  1168. // className: "title-table",
  1169. // render: (text) => {
  1170. // if (text == 1 || text == 2) {
  1171. // return <Tag color="#f50">{getApproval(text)}</Tag>;
  1172. // }
  1173. // return getApproval(text);
  1174. // },
  1175. // },
  1176. {
  1177. title: "订单部门",
  1178. dataIndex: "departmentName",
  1179. key: "departmentName",
  1180. className: "title-table",
  1181. },
  1182. {
  1183. title: "订单负责人",
  1184. dataIndex: "sellerName",
  1185. key: "sellerName",
  1186. className: "title-table",
  1187. },
  1188. {
  1189. title: "订单类型",
  1190. dataIndex: "serviceType",
  1191. key: "serviceType",
  1192. className: "title-table",
  1193. width: 150,
  1194. render: (text) => {
  1195. return !!text && text.replace(/[,,]/g, "+");
  1196. }
  1197. },
  1198. {
  1199. title: "订单内容",
  1200. dataIndex: "serviceProject",
  1201. key: "serviceProject",
  1202. className: "title-table",
  1203. render: (text) => {
  1204. return (<div dangerouslySetInnerHTML={{ __html: !!text && text.replace(/[,,]/g, "<br/>") }} />);
  1205. // return (<pre>{!!text && text.replace(/[,,]/g, "\n")}</pre>);
  1206. }
  1207. },
  1208. {
  1209. title: "财务负责人",
  1210. dataIndex: "financeName",
  1211. key: "financeName",
  1212. className: "title-table",
  1213. },
  1214. {
  1215. title: "签单日期",
  1216. dataIndex: "signTime",
  1217. key: "signTime",
  1218. className: "title-table",
  1219. },
  1220. {
  1221. title: "下单日期",
  1222. dataIndex: "createTime",
  1223. key: "createTime",
  1224. className: "title-table",
  1225. },
  1226. {
  1227. title: "签单金额(万元)",
  1228. dataIndex: "signTotalAmount",
  1229. key: "signTotalAmount",
  1230. className: "title-table",
  1231. render: (text) => {
  1232. return isNaN(parseFloat(text)) ? text : parseFloat(text);
  1233. }
  1234. },
  1235. {
  1236. title: "开票金额(万元)",
  1237. dataIndex: "invoiceAmount",
  1238. key: "invoiceAmount",
  1239. className: "title-table",
  1240. render: (text) => {
  1241. return isNaN(parseFloat(text)) ? text : parseFloat(text);
  1242. }
  1243. },
  1244. {
  1245. title: "已收款(万元)",
  1246. dataIndex: "actuallyTotalAmount",
  1247. key: "actuallyTotalAmount",
  1248. className: "title-table",
  1249. render: (text) => {
  1250. return isNaN(parseFloat(text)) ? text : parseFloat(text);
  1251. }
  1252. },
  1253. {
  1254. title: "应收款(万元)",
  1255. dataIndex: "orderReceivables",
  1256. key: "orderReceivables",
  1257. className: "title-table",
  1258. render: (text) => {
  1259. return isNaN(parseFloat(text)) ? text : parseFloat(text);
  1260. }
  1261. },
  1262. {
  1263. title: "欠款(万元)",
  1264. dataIndex: "orderArrears",
  1265. key: "orderArrears",
  1266. className: "title-table",
  1267. render: (text) => {
  1268. return isNaN(parseFloat(text)) ? text : parseFloat(text);
  1269. }
  1270. },
  1271. {
  1272. title: "总成本/实付",
  1273. dataIndex: "costAmount",
  1274. key: "costAmount",
  1275. className: "title-table",
  1276. render: (text, record) => {
  1277. return (
  1278. <span>
  1279. {isNaN(parseFloat(text)) ? text : parseFloat(text)}/
  1280. {isNaN(parseFloat(record.paymentAmount)) ? text : parseFloat(record.paymentAmount)}
  1281. </span>
  1282. )
  1283. },
  1284. },
  1285. {
  1286. title: "专利/专利已付",
  1287. dataIndex: "patentCost",
  1288. key: "patentCost",
  1289. className: "title-table",
  1290. render: (text, record) => {
  1291. return (
  1292. <span>
  1293. {isNaN(parseFloat(text)) ? text : parseFloat(text)}/
  1294. {isNaN(parseFloat(record.patentCostActual)) ? text : parseFloat(record.patentCostActual)}
  1295. </span>
  1296. )
  1297. },
  1298. },
  1299. {
  1300. title: "软著/软著已付",
  1301. dataIndex: "softCost",
  1302. key: "softCost",
  1303. className: "title-table",
  1304. render: (text, record) => {
  1305. return (
  1306. <span>
  1307. {isNaN(parseFloat(text)) ? text : parseFloat(text)}/
  1308. {isNaN(parseFloat(record.softCostActual)) ? text : parseFloat(record.softCostActual)}
  1309. </span>
  1310. )
  1311. },
  1312. },
  1313. {
  1314. title: "审计/审计已付",
  1315. dataIndex: "auditCost",
  1316. key: "auditCost",
  1317. className: "title-table",
  1318. render: (text, record) => {
  1319. return (
  1320. <span>
  1321. {isNaN(parseFloat(text)) ? text : parseFloat(text)}/
  1322. {isNaN(parseFloat(record.auditCostActual)) ? text : parseFloat(record.auditCostActual)}
  1323. </span>
  1324. )
  1325. },
  1326. },
  1327. {
  1328. title: "其他/其他已付",
  1329. dataIndex: "otherCost",
  1330. key: "otherCost",
  1331. className: "title-table",
  1332. render: (text, record) => {
  1333. return (
  1334. <span>
  1335. {isNaN(parseFloat(text)) ? text : parseFloat(text)}/
  1336. {isNaN(parseFloat(record.otherCostActual)) ? text : parseFloat(record.otherCostActual)}
  1337. </span>
  1338. )
  1339. },
  1340. },
  1341. {
  1342. title: "预估毛利(万元)",
  1343. dataIndex: "expectProfit",
  1344. key: "expectProfit",
  1345. className: "title-table",
  1346. },
  1347. {
  1348. title: "实际毛利(万元)",
  1349. dataIndex: "actualProfit",
  1350. key: "actualProfit",
  1351. className: "title-table",
  1352. },
  1353. {
  1354. title: "最近收款(万元)",
  1355. dataIndex: "finalReceivables",
  1356. key: "finalReceivables",
  1357. className: "title-table",
  1358. render: (text) => {
  1359. return isNaN(parseFloat(text)) ? text : parseFloat(text);
  1360. }
  1361. },
  1362. {
  1363. title: "最近收款时间",
  1364. dataIndex: "finalReceivablesTime",
  1365. key: "finalReceivablesTime",
  1366. className: "title-table",
  1367. },
  1368. {
  1369. title: "结算状态",
  1370. dataIndex: "liquidationStatus",
  1371. key: "liquidationStatus",
  1372. className: "title-table",
  1373. render: (text) => {
  1374. return getLiquidationStatus(text);
  1375. },
  1376. },
  1377. {
  1378. title: "流程状态",
  1379. dataIndex: "processStatus",
  1380. key: "processStatus",
  1381. className: "title-table",
  1382. render: (text, record) => {
  1383. return getProcessStatus(text, record.examineName, record.approval);
  1384. },
  1385. },
  1386. // {
  1387. // title: '订单状态',
  1388. // dataIndex: 'orderStatus',
  1389. // key: 'orderStatus',
  1390. // render: text => { return getNewOrderStatus(text)}
  1391. // },
  1392. {
  1393. title: "操作",
  1394. dataIndex: "caozuo",
  1395. key: "caouzo",
  1396. className: "title-table",
  1397. fixed: "right",
  1398. render: (text, recard) => {
  1399. return (
  1400. <div>
  1401. {/* {recard.backStatus == 3 ? <Tag>已驳回</Tag> : ""} */}
  1402. {recard.processStatus == 3 && recard.myExamine == 0 &&
  1403. <Button
  1404. type="primary"
  1405. onClick={(e) => {
  1406. e.stopPropagation(), this.checkRemark(recard);
  1407. }}
  1408. style={{ marginLeft: "5px" }}
  1409. >
  1410. 通过
  1411. </Button>}
  1412. {recard.processStatus == 3 && recard.myExamine == 0 &&
  1413. <Button
  1414. type="danger"
  1415. style={{ marginLeft: "5px", }}
  1416. onClick={(e) => {
  1417. e.stopPropagation(), this.reject(recard);
  1418. }}
  1419. >
  1420. 驳回
  1421. </Button>
  1422. }
  1423. </div>
  1424. );
  1425. },
  1426. },
  1427. ],
  1428. dataSource: [],
  1429. searchTime: [],
  1430. columnsDate: [
  1431. {
  1432. title: "编号",
  1433. dataIndex: "id",
  1434. key: "id",
  1435. },
  1436. {
  1437. title: "订单编号",
  1438. dataIndex: "orderno",
  1439. key: "orderno",
  1440. },
  1441. {
  1442. title: "开票金额(万元)",
  1443. dataIndex: "amount",
  1444. key: "amount",
  1445. },
  1446. {
  1447. title: "申请时间",
  1448. dataIndex: "createTime",
  1449. key: "createTime",
  1450. },
  1451. {
  1452. title: "开票状态",
  1453. dataIndex: "status",
  1454. key: "status",
  1455. render: (text, record) => {
  1456. return <div>{getInvoiceStatus(text, record)} <LogPopup id={record.id} /></div>;
  1457. },
  1458. },
  1459. ],
  1460. waterlistDate: [
  1461. {
  1462. title: "订单编号",
  1463. dataIndex: "orderNo",
  1464. key: "orderNo",
  1465. },
  1466. {
  1467. title: "平台流水号",
  1468. dataIndex: "billNo",
  1469. key: "billNo",
  1470. // fixed: "left"
  1471. },
  1472. {
  1473. title: "收款金额(万元)",
  1474. dataIndex: "transactionAmount",
  1475. key: "transactionAmount",
  1476. },
  1477. {
  1478. title: "收款方",
  1479. dataIndex: "payeeName",
  1480. key: "payeeName",
  1481. },
  1482. {
  1483. title: "付款方",
  1484. dataIndex: "payerName",
  1485. key: "payerName",
  1486. },
  1487. {
  1488. title: "流水科目",
  1489. dataIndex: "transactionSubject",
  1490. key: "transactionSubject",
  1491. render: (text) => {
  1492. return getTransactionProject(text);
  1493. },
  1494. },
  1495. {
  1496. title: "收款类型",
  1497. dataIndex: "type",
  1498. key: "type",
  1499. },
  1500. {
  1501. title: "财务流水时间",
  1502. dataIndex: "financialPayTimes",
  1503. key: "financialPayTimes",
  1504. },
  1505. {
  1506. title: "财务流水号",
  1507. dataIndex: "financialPayNo",
  1508. key: "financialPayNo",
  1509. },
  1510. {
  1511. title: "订单负责人",
  1512. dataIndex: "saleName",
  1513. key: "saleName",
  1514. },
  1515. {
  1516. title: "创建时间",
  1517. dataIndex: "createTimes",
  1518. key: "createTimes",
  1519. },
  1520. {
  1521. title: "退款时间",
  1522. dataIndex: "refundTimes",
  1523. key: "refundTimes",
  1524. },
  1525. {
  1526. title: "删除时间",
  1527. dataIndex: "deleteTimes",
  1528. key: "deleteTimes",
  1529. },
  1530. {
  1531. title: "备注",
  1532. dataIndex: "remarks",
  1533. key: "remarks",
  1534. },
  1535. {
  1536. title: "流水状态",
  1537. dataIndex: "deleteSign",
  1538. key: "deleteSign",
  1539. render: (text, record) => {
  1540. if (!text) {
  1541. return (
  1542. <Popconfirm
  1543. title="是否删除?"
  1544. onConfirm={() => {
  1545. this.changeWater(record.billNo);
  1546. }}
  1547. okText="删除"
  1548. cancelText="不删除"
  1549. >
  1550. <Button>删除</Button>
  1551. </Popconfirm>
  1552. );
  1553. } else {
  1554. return <Tag>已删除</Tag>;
  1555. }
  1556. },
  1557. },
  1558. ],
  1559. waterData: [],
  1560. newVisible: "",
  1561. };
  1562. },
  1563. changeWater(billNo) {
  1564. this.setState({
  1565. loading: true,
  1566. });
  1567. $.ajax({
  1568. method: "get",
  1569. dataType: "json",
  1570. crossDomain: false,
  1571. url: globalConfig.context + "/api/admin/financial/deleteMyBill",
  1572. data: {
  1573. billNo,
  1574. },
  1575. success: function (data) {
  1576. let theArr = [];
  1577. if (data.error && data.error.length) {
  1578. message.warning(data.error[0].message);
  1579. } else {
  1580. message.warning("删除流水成功!");
  1581. this.waterData();
  1582. this.loadData();
  1583. }
  1584. }.bind(this),
  1585. }).always(
  1586. function () {
  1587. this.setState({
  1588. loading: false,
  1589. });
  1590. }.bind(this)
  1591. );
  1592. },
  1593. // 特批通过
  1594. evaluateZ(record) {
  1595. $.ajax({
  1596. method: "POST",
  1597. dataType: "json",
  1598. crossDomain: false,
  1599. url: globalConfig.context + "/api/admin/financial/financeApproval",
  1600. data: {
  1601. orderNo: record.orderNo,
  1602. },
  1603. }).done(
  1604. function (data) {
  1605. if (!data.error.length) {
  1606. message.success("通过成功!");
  1607. this.setState({
  1608. loading: false,
  1609. });
  1610. this.loadData();
  1611. } else {
  1612. message.warning(data.error[0].message);
  1613. }
  1614. }.bind(this)
  1615. );
  1616. },
  1617. /* 收款 */
  1618. evaluateX(recard) {
  1619. this.state.assignDataX = recard;
  1620. this.setState({
  1621. assignVisibleX: true,
  1622. });
  1623. },
  1624. /* 转交 */
  1625. evaluateY(recard, nub) {
  1626. this.state.assignDataY = recard;
  1627. this.setState({
  1628. nub,
  1629. assignVisibleY: true,
  1630. });
  1631. },
  1632. /* 驳回 */
  1633. reject(recard) {
  1634. this.setState({
  1635. bohuiData: recard,
  1636. boHuiVisible: true,
  1637. content: "",
  1638. });
  1639. },
  1640. boHuiOk() {
  1641. this.setState({
  1642. boHuiVisible: false,
  1643. });
  1644. if (
  1645. this.state.pagination.current == this.state.totalPage &&
  1646. this.state.pagination.total % 10 == 1
  1647. ) {
  1648. this.loadData(this.state.page - 1);
  1649. } else {
  1650. this.loadData(this.state.page);
  1651. }
  1652. },
  1653. boHuiCancel() {
  1654. this.setState({
  1655. boHuiVisible: false,
  1656. });
  1657. },
  1658. componentWillMount() {
  1659. this.loadData();
  1660. this.departmentList();
  1661. },
  1662. tableRowClick(record) {
  1663. this.state.RowData = record;
  1664. this.setState({
  1665. showDesc: true,
  1666. });
  1667. },
  1668. tableonRowClick(record) {
  1669. if (this.state.newVisible == "项目进度") {
  1670. this.state.onRowData = record;
  1671. this.setState({
  1672. pvisible: true,
  1673. record
  1674. })
  1675. }
  1676. },
  1677. closeDesc(e, s) {
  1678. this.state.showDesc = e;
  1679. if (s) {
  1680. this.loadData(this.state.page);
  1681. }
  1682. },
  1683. closeAssignX(e, s) {
  1684. this.state.assignDataX = {};
  1685. this.state.assignVisibleX = e;
  1686. if (s) {
  1687. this.loadData(this.state.page);
  1688. }
  1689. },
  1690. closeAssignY(e, s) {
  1691. this.state.assignDataY = {};
  1692. this.state.assignVisibleY = e;
  1693. if (s) {
  1694. this.loadData(this.state.page);
  1695. }
  1696. },
  1697. search() {
  1698. this.setState({
  1699. selectedRowKeys: []
  1700. })
  1701. this.loadData();
  1702. },
  1703. // 拆分详细
  1704. showRes(record) {
  1705. this.setState({
  1706. resVisible: true,
  1707. resRecord: record,
  1708. });
  1709. },
  1710. resCancel() {
  1711. this.setState({
  1712. resVisible: false,
  1713. });
  1714. },
  1715. reset() {
  1716. this.state.startSignTime = undefined;
  1717. this.state.endSignTime = undefined;
  1718. this.state.nameSearch = "";
  1719. this.state.releaseDate = [];
  1720. this.state.shouKuanDate = [];
  1721. this.state.orderNoSearch = "";
  1722. this.state.departmenttList = undefined;
  1723. this.state.amountStatus = undefined;
  1724. this.state.approval = undefined;
  1725. this.state.projectType = undefined;
  1726. this.state.processStatus = [];
  1727. this.state.contractNoSearch = "";
  1728. this.state.liquidationStatus = [];
  1729. this.state.processStatusSearch = [];
  1730. this.state.contractNo = "";
  1731. this.state.approvaType = [];
  1732. this.Cascaders.empty();
  1733. this.loadData();
  1734. },
  1735. //驳回
  1736. boHuiSubmit(e) {
  1737. e.preventDefault();
  1738. if (!this.state.content) {
  1739. message.warning("请填写驳回原因");
  1740. return false;
  1741. }
  1742. if (!this.state.content.replace(/\s+/g, '')) {
  1743. message.warning("请填写驳回原因");
  1744. return false;
  1745. }
  1746. this.setState({
  1747. loading: true,
  1748. });
  1749. $.ajax({
  1750. method: "POST",
  1751. dataType: "json",
  1752. crossDomain: false,
  1753. url: globalConfig.context + "/api/admin/financial/reject",
  1754. data: {
  1755. orderNo: this.state.bohuiData.orderNo,
  1756. reason: this.state.content,
  1757. },
  1758. }).done(
  1759. function (data) {
  1760. if (!data.error.length) {
  1761. message.success("驳回成功!");
  1762. this.setState({
  1763. loading: false,
  1764. });
  1765. this.boHuiOk();
  1766. } else {
  1767. message.warning(data.error[0].message);
  1768. }
  1769. }.bind(this)
  1770. );
  1771. },
  1772. searchSwitch() {
  1773. this.setState({
  1774. searchMore: !this.state.searchMore,
  1775. });
  1776. },
  1777. changeList(arr) {
  1778. const newArr = [];
  1779. this.state.columns.forEach((item) => {
  1780. arr.forEach((val) => {
  1781. if (val === item.title) {
  1782. newArr.push(item);
  1783. }
  1784. });
  1785. });
  1786. this.setState({
  1787. changeList: newArr,
  1788. });
  1789. },
  1790. callback(key) {
  1791. // console.log(key);
  1792. },
  1793. onSelectChange(selectedRowKeys, selectedRows) {
  1794. // for(var i=0; i<selectedRowKeys.length; i++){
  1795. // for(var j=i+1; j<selectedRowKeys.length; j++){
  1796. // if(selectedRowKeys[i]==selectedRowKeys[j]){
  1797. // selectedRowKeys.splice(j,1);
  1798. // j--;
  1799. // }
  1800. // }
  1801. // }
  1802. this.setState({
  1803. selectedRowKeys,
  1804. selectedRows,
  1805. newData: selectedRows,
  1806. });
  1807. },
  1808. inRecordCanl() {
  1809. this.setState({
  1810. bvisible: false,
  1811. });
  1812. },
  1813. inRecordData() {
  1814. this.setState({
  1815. loading: true,
  1816. });
  1817. $.ajax({
  1818. method: "get",
  1819. dataType: "json",
  1820. crossDomain: false,
  1821. url:
  1822. globalConfig.context +
  1823. "/api/admin/orderInvoice/salesmanOrderInvoiceList",
  1824. data: {
  1825. orderNo: this.state.selectedRowKeys[0],
  1826. pageSize: 9999999,
  1827. },
  1828. success: function (data) {
  1829. let theArr = [];
  1830. let sum = 0;
  1831. if (!data.data) {
  1832. if (data.error && data.error.length) {
  1833. message.warning(data.error[0].message);
  1834. }
  1835. } else {
  1836. for (let i = 0; i < data.data.list.length; i++) {
  1837. let thisdata = data.data.list[i];
  1838. sum += parseFloat(thisdata.amount);
  1839. theArr.push({
  1840. id: thisdata.id,
  1841. orderno: thisdata.orderno, //订单编号
  1842. amount: thisdata.amount, //签单金额
  1843. createTime: thisdata.createTime, //流程状态
  1844. status: thisdata.status, //结算状态
  1845. rejectReason: thisdata.rejectReason,
  1846. approval: thisdata.approval,//0非特批 1待审核 2审核通过
  1847. examineName: thisdata.examineName,
  1848. });
  1849. }
  1850. }
  1851. this.setState({
  1852. recordData: theArr,
  1853. sum: sum.toFixed(6),
  1854. });
  1855. }.bind(this),
  1856. }).done(
  1857. function () {
  1858. this.setState({
  1859. loading: false,
  1860. });
  1861. }.bind(this)
  1862. );
  1863. },
  1864. waterData() {
  1865. this.state.data = [];
  1866. this.setState({
  1867. loading: true,
  1868. });
  1869. $.ajax({
  1870. method: "get",
  1871. dataType: "json",
  1872. crossDomain: false,
  1873. url: globalConfig.context + "/api/admin/financial/myBillList",
  1874. data: {
  1875. orderNo: this.state.selectedRowKeys[0],
  1876. pageSize: 9999999,
  1877. whoType: 1,
  1878. },
  1879. success: function (data) {
  1880. let theArr = [];
  1881. let waterSum = 0;
  1882. if (!data.data || !data.data.list) {
  1883. if (data.error && data.error.length) {
  1884. message.warning(data.error[0].message);
  1885. }
  1886. } else {
  1887. for (let i = 0; i < data.data.list.length; i++) {
  1888. let thisdata = data.data.list[i];
  1889. if (thisdata.deleteSign == 0) {
  1890. waterSum += parseFloat(thisdata.transactionAmount);
  1891. }
  1892. theArr.push({
  1893. key: i,
  1894. orderNo: thisdata.orderNo,
  1895. billNo: thisdata.billNo,
  1896. transactionAmount: thisdata.transactionAmount,
  1897. payeeName: thisdata.payeeName,
  1898. payerName: thisdata.payerName,
  1899. transactionSubject: thisdata.transactionSubject,
  1900. transactionChannel: thisdata.transactionChannel,
  1901. financialPayTimes: thisdata.financialPayTimes,
  1902. financialPayNo: thisdata.financialPayNo,
  1903. createrName: thisdata.createrName,
  1904. saleName: thisdata.saleName,
  1905. createTimes: thisdata.createTimes,
  1906. type:
  1907. thisdata.type == 0
  1908. ? "手工"
  1909. : thisdata.type == 1
  1910. ? "批量"
  1911. : "合同变更退款",
  1912. deleteSign: thisdata.deleteSign,
  1913. deleteTimes: thisdata.deleteTimes,
  1914. refundTimes: thisdata.refundTimes,
  1915. remarks: thisdata.remarks,
  1916. });
  1917. }
  1918. }
  1919. this.setState({
  1920. waterData: theArr,
  1921. waterSum: (Math.round(waterSum * 1000000) / 1000000).toFixed(6),
  1922. });
  1923. }.bind(this),
  1924. }).always(
  1925. function () {
  1926. this.setState({
  1927. loading: false,
  1928. });
  1929. }.bind(this)
  1930. );
  1931. },
  1932. waterCanl() {
  1933. this.setState({
  1934. cvisible: false,
  1935. });
  1936. },
  1937. exportKaip() {
  1938. window.location.href =
  1939. globalConfig.context +
  1940. "/api/admin/receivables/exportInvoice?" +
  1941. `orderNo=${this.state.selectedRowKeys}`;
  1942. },
  1943. exportAll() {
  1944. message.config({
  1945. duration: 20,
  1946. });
  1947. let loading = message.loading("下载中...");
  1948. this.setState({
  1949. exportPendingLoading: true,
  1950. });
  1951. let data = {
  1952. orderNo: this.state.orderNoSearch,
  1953. buyerName: this.state.nameSearch,
  1954. deps: this.state.departmenttList,
  1955. contractNo: this.state.contractNoSearch,
  1956. processStatus: this.state.processStatusSearch,
  1957. startTime: this.state.releaseDate[0],
  1958. endTime: this.state.releaseDate[1],
  1959. startFinalReceivablesTime: this.state.shouKuanDate[0],
  1960. endFinalReceivablesTime: this.state.shouKuanDate[1],
  1961. contractNo: this.state.contractNoSearch,
  1962. liquidationStatus: this.state.liquidationStatus,
  1963. amountStatus: this.state.amountStatus,
  1964. approval: this.state.approval,
  1965. projectType: this.state.projectType,
  1966. type: this.state.approvaType.length > 0 ? this.state.approvaType.toString() : undefined, //特批类型
  1967. };
  1968. $.ajax({
  1969. method: "get",
  1970. dataType: "json",
  1971. crossDomain: false,
  1972. url: "/api/admin/receivables/exportReceivables",
  1973. data,
  1974. success: function (data) {
  1975. if (data.error.length === 0) {
  1976. this.download(data.data);
  1977. } else {
  1978. message.warning(data.error[0].message);
  1979. }
  1980. }.bind(this),
  1981. }).always(
  1982. function () {
  1983. loading();
  1984. this.setState({
  1985. exportPendingLoading: false,
  1986. });
  1987. }.bind(this)
  1988. );
  1989. // window.location.href =
  1990. // globalConfig.context +
  1991. // "/api/admin/receivables/exportReceivables?" +
  1992. // `orderNo=${this.state.orderNoSearch ? this.state.orderNoSearch : ""
  1993. // }&buyerName=${this.state.nameSearch ? this.state.nameSearch : ""
  1994. // }&deps=${this.state.departmenttList ? this.state.departmenttList : ""
  1995. // }&contractNo=${this.state.contractNoSearch ? this.state.contractNoSearch : ""
  1996. // }&processStatus=${this.state.processStatusSearch}`;
  1997. },
  1998. // 下载
  1999. download(fileName) {
  2000. window.location.href =
  2001. globalConfig.context + "/open/download?fileName=" + fileName;
  2002. },
  2003. exportWater() {
  2004. window.location.href =
  2005. globalConfig.context +
  2006. "/api/admin/receivables/exportMyBill?" +
  2007. `orderNo=${this.state.selectedRowKeys}&whoType=1`;
  2008. },
  2009. printAll() {
  2010. this.setState({
  2011. dvisible: true,
  2012. });
  2013. this.loadData(1, 9999999);
  2014. },
  2015. timeData() {
  2016. this.setState({
  2017. loading: true,
  2018. });
  2019. $.ajax({
  2020. method: "get",
  2021. dataType: "json",
  2022. crossDomain: false,
  2023. url: globalConfig.context + "/api/admin/orderProject/taskHoursList",
  2024. data: {
  2025. orderNo: this.state.selectedRowKeys[0],
  2026. pageSize: 9999999,
  2027. },
  2028. success: function (data) {
  2029. let theArr = [];
  2030. if (!data.data || !data.data.list) {
  2031. if (data.error && data.error.length) {
  2032. message.warning(data.error[0].message);
  2033. }
  2034. } else {
  2035. for (let i = 0; i < data.data.list.length; i++) {
  2036. let thisdata = data.data.list[i];
  2037. theArr.push({
  2038. key: i + 1,
  2039. id: thisdata.id, //ID
  2040. orderNo: thisdata.orderNo, //订单编号
  2041. taskName: thisdata.taskName, //任务名称
  2042. userName: thisdata.userName, //客户名称
  2043. cname: thisdata.cname, //项目品类
  2044. taskStatus: thisdata.taskStatus, //任务状态
  2045. receiverName: thisdata.receiverName, //负责人
  2046. hours: thisdata.hours, //任务工时
  2047. depName: thisdata.depName, //派单公司
  2048. contractNo: thisdata.contractNo,
  2049. signTime: thisdata.signTime,
  2050. creteTime: thisdata.creteTime,
  2051. projectStatus: thisdata.projectStatus,
  2052. commodityPrice: thisdata.commodityPrice, //价格
  2053. commodityQuantity: thisdata.commodityQuantity, //数量
  2054. salesmanName: thisdata.salesmanName, //订单负责人
  2055. taskDistributionTime: thisdata.taskDistributionTime,
  2056. taskEndTime: thisdata.taskEndTime,
  2057. outsource: thisdata.outsource,
  2058. splitStatus: thisdata.splitStatus,
  2059. splitSuper: thisdata.splitSuper,
  2060. splitId: thisdata.splitId,
  2061. });
  2062. }
  2063. }
  2064. this.setState({
  2065. timeDataList: theArr,
  2066. });
  2067. }.bind(this),
  2068. }).always(
  2069. function () {
  2070. this.setState({
  2071. loading: false,
  2072. });
  2073. }.bind(this)
  2074. );
  2075. },
  2076. exportTime() {
  2077. const data = {
  2078. orderNo: this.state.selectedRowKeys[0],
  2079. pageSize: 9999999,
  2080. };
  2081. window.location.href =
  2082. globalConfig.context +
  2083. "/api/admin/orderProject/exportMyTaskList?" +
  2084. $.param(data);
  2085. },
  2086. exportPro() {
  2087. const data = {
  2088. orderNo: this.state.selectedRowKeys[0],
  2089. };
  2090. window.location.href =
  2091. globalConfig.context +
  2092. "/api/admin/newOrder/exportOrderTaskData?" +
  2093. $.param(data);
  2094. },
  2095. // exportCui() {
  2096. // const data = {
  2097. // orderNo: this.state.selectedRowKeys[0]
  2098. // ? this.state.selectedRowKeys[0]
  2099. // : undefined, //订单编号
  2100. // // specially: 1,
  2101. // pageSize: 9999999,
  2102. // };
  2103. // window.location.href =
  2104. // globalConfig.context +
  2105. // "/api/admin/newOrder/exportOrderDunData?" +
  2106. // $.param(data);
  2107. // },
  2108. exportCui() {
  2109. this.setState({
  2110. exportPendingLoading: true,
  2111. });
  2112. message.config({
  2113. duration: 20,
  2114. });
  2115. let loading = message.loading("下载中...");
  2116. let data = {
  2117. orderNo: this.state.selectedRowKeys[0]
  2118. ? this.state.selectedRowKeys[0]
  2119. : undefined, //订单编号
  2120. pageSize: 9999999,
  2121. };
  2122. $.ajax({
  2123. method: "get",
  2124. dataType: "json",
  2125. crossDomain: false,
  2126. url:
  2127. globalConfig.context + "/api/admin/newOrder/exportOrderDunData",
  2128. data,
  2129. success: function (data) {
  2130. if (data.error.length === 0) {
  2131. this.download(data.data);
  2132. } else {
  2133. message.warning(data.error[0].message);
  2134. }
  2135. }.bind(this),
  2136. }).always(
  2137. function () {
  2138. loading();
  2139. this.setState({
  2140. exportPendingLoading: false,
  2141. });
  2142. }.bind(this)
  2143. );
  2144. },
  2145. cuiData() {
  2146. this.setState({
  2147. loading: true,
  2148. });
  2149. $.ajax({
  2150. method: "get",
  2151. dataType: "json",
  2152. crossDomain: false,
  2153. url: globalConfig.context + "/api/admin/newOrder/dunOrderNewList",
  2154. data: {
  2155. orderNo: this.state.selectedRowKeys[0],
  2156. pageSize: 9999999,
  2157. },
  2158. success: function (data) {
  2159. let theArr = [];
  2160. if (!data.data || !data.data.list) {
  2161. if (data.error && data.error.length) {
  2162. message.warning(data.error[0].message);
  2163. }
  2164. } else {
  2165. for (let i = 0; i < data.data.list.length; i++) {
  2166. let thisdata = data.data.list[i];
  2167. theArr.push({
  2168. key: i + 1,
  2169. orderNo: thisdata.orderNo,
  2170. contractNo: thisdata.contractNo,
  2171. userName: thisdata.userName,
  2172. buyerName: thisdata.buyerName,
  2173. departmentName: thisdata.departmentName,
  2174. salesmanName: thisdata.salesmanName,
  2175. depName: thisdata.depName,
  2176. orderStatus: thisdata.orderStatus,
  2177. projectStatus: thisdata.projectStatus,
  2178. totalAmount: thisdata.totalAmount,
  2179. liquidationStatus: thisdata.liquidationStatus,
  2180. settlementAmount: thisdata.settlementAmount,
  2181. accountsReceivable: thisdata.accountsReceivable,
  2182. dunSubject: thisdata.dunSubject,
  2183. startDate: thisdata.startDate,
  2184. taskStatus: thisdata.taskStatus,
  2185. cname: thisdata.cname,
  2186. id: thisdata.id,
  2187. taskName: thisdata.taskName,
  2188. hours: thisdata.hours,
  2189. taskDistributionTime: thisdata.taskDistributionTime,
  2190. taskEndTime: thisdata.taskEndTime,
  2191. dunStatus: thisdata.dunStatus == 0 ? "未触发" : "已触发",
  2192. });
  2193. }
  2194. }
  2195. this.setState({
  2196. cuiDataList: theArr,
  2197. });
  2198. }.bind(this),
  2199. }).always(
  2200. function () {
  2201. this.setState({
  2202. loading: false,
  2203. });
  2204. }.bind(this)
  2205. );
  2206. },
  2207. cuiTabChange(index) {
  2208. this.setState({
  2209. cuiTabKey: index,
  2210. });
  2211. if (index == 2) {
  2212. this.setState({
  2213. loading: true,
  2214. });
  2215. $.ajax({
  2216. method: "get",
  2217. dataType: "json",
  2218. crossDomain: false,
  2219. url: globalConfig.context + "/api/admin/newOrder/arrearsDunList",
  2220. data: {
  2221. orderNo: this.state.selectedRowKeys[0],
  2222. pageSize: 9999999,
  2223. },
  2224. success: function (data) {
  2225. let theArr = [];
  2226. if (data.error.length || data.data.list == "") {
  2227. if (data.error && data.error.length) {
  2228. message.warning(data.error[0].message);
  2229. }
  2230. } else {
  2231. for (let i = 0; i < data.data.list.length; i++) {
  2232. let thisdata = data.data.list[i];
  2233. let obj = thisdata;
  2234. obj.key = i;
  2235. theArr.push(obj);
  2236. }
  2237. }
  2238. this.setState({
  2239. qianDataList: theArr,
  2240. });
  2241. }.bind(this),
  2242. }).always(
  2243. function () {
  2244. this.setState({
  2245. loading: false,
  2246. });
  2247. }.bind(this)
  2248. );
  2249. }
  2250. },
  2251. proData() {
  2252. this.setState({
  2253. loading: true,
  2254. });
  2255. $.ajax({
  2256. method: "get",
  2257. dataType: "json",
  2258. crossDomain: false,
  2259. url: globalConfig.context + "/api/admin/newOrder/getOrderTask",
  2260. data: {
  2261. orderNo: this.state.selectedRowKeys[0],
  2262. pageSize: 9999999,
  2263. },
  2264. success: function (data) {
  2265. let theArr = [];
  2266. let totalWaibao = 0;
  2267. if (!data.data) {
  2268. if (data.error && data.error.length) {
  2269. message.warning(data.error[0].message);
  2270. }
  2271. } else {
  2272. for (let i = 0; i < data.data.length; i++) {
  2273. let thisdata = data.data[i];
  2274. totalWaibao += thisdata.outsourcePrice;
  2275. thisdata.key = i + 1;
  2276. theArr.push(thisdata);
  2277. }
  2278. }
  2279. totalWaibao = (Math.round(totalWaibao * 1000000) / 1000000).toFixed(6);
  2280. this.setState({
  2281. proDataList: theArr,
  2282. totalWaibao,
  2283. });
  2284. }.bind(this),
  2285. }).always(
  2286. function () {
  2287. this.setState({
  2288. loading: false,
  2289. });
  2290. }.bind(this)
  2291. );
  2292. },
  2293. // 查看公出列表
  2294. pubData() {
  2295. this.setState({
  2296. loading: true,
  2297. });
  2298. let rows = this.state.selectedRows[0]
  2299. let searchInfor = {
  2300. releaseStart: this.state.releaseDate[0] || undefined,
  2301. releaseEnd: this.state.releaseDate[1] || undefined,
  2302. aid: this.state.theTypes || undefined,
  2303. sid: this.state.theTypes1 || undefined,
  2304. status: this.state.status,
  2305. clockIn: this.state.clockIn,
  2306. depId: this.state.depId || undefined,
  2307. publicType: this.state.type,
  2308. }
  2309. let datas = Object.assign(searchInfor, {
  2310. pageNo: this.state.pubpageNo || 1,
  2311. pageSize: 9999999,
  2312. uid: rows.buyerId,
  2313. });
  2314. $.ajax({
  2315. method: "get",
  2316. dataType: "json",
  2317. crossDomain: false,
  2318. url: globalConfig.context + "/api/admin/release/publicReleaseDtails",
  2319. data: datas,
  2320. success: function (data) {
  2321. let theArr = [];
  2322. this.setState({
  2323. loading: false,
  2324. });
  2325. if (!data.data) {
  2326. if (data.error && data.error.length) {
  2327. message.warning(data.error[0].message);
  2328. }
  2329. } else {
  2330. for (let i = 0; i < data.data.list.length; i++) {
  2331. let thisdata = data.data.list[i];
  2332. thisdata.key = (data.data.pageNo - 1) * data.data.pageSize + i + 1;
  2333. theArr.push(thisdata);
  2334. }
  2335. this.state.pubpagination.current = data.data.pageNo;
  2336. this.state.pubpagination.total = data.data.totalCount;
  2337. if (data.data && data.data.list && !data.data.list.length) {
  2338. this.state.pubpagination.current = 0;
  2339. this.state.pubpagination.total = 0;
  2340. }
  2341. }
  2342. this.setState({
  2343. pubDataList: theArr,
  2344. pubpagination: this.state.pubpagination,
  2345. pubpageNo: data.data.pageNo,
  2346. });
  2347. }.bind(this),
  2348. }).always(
  2349. function () {
  2350. this.setState({
  2351. loading: false,
  2352. });
  2353. }.bind(this)
  2354. );
  2355. },
  2356. // 重置公出列表查询
  2357. resetAll() {
  2358. this.setState(
  2359. {
  2360. releaseDate: [],
  2361. theCustomerTypes: undefined,
  2362. status: undefined,
  2363. clockIn: undefined,
  2364. depId: undefined,
  2365. auto: "",
  2366. auto1: "",
  2367. customer: "",
  2368. theTypes: undefined,
  2369. theTypes1: undefined,
  2370. type: undefined,
  2371. },
  2372. () => {
  2373. this.pubData();
  2374. }
  2375. );
  2376. },
  2377. //公出导出
  2378. pubexportExec() {
  2379. this.setState({
  2380. exportPendingLoading: true,
  2381. });
  2382. message.config({
  2383. duration: 20,
  2384. });
  2385. let loading = message.loading("下载中...");
  2386. let rows = this.state.selectedRows[0]
  2387. let searchInfor = {
  2388. releaseStart: this.state.releaseDate[0] || undefined,
  2389. releaseEnd: this.state.releaseDate[1] || undefined,
  2390. aid: this.state.theTypes || undefined,
  2391. sid: this.state.theTypes1 || undefined,
  2392. status: this.state.status,
  2393. clockIn: this.state.clockIn,
  2394. depId: this.state.depId || undefined,
  2395. publicType: this.state.type,
  2396. }
  2397. let data = Object.assign(searchInfor, {
  2398. pageNo: this.state.pubpageNo || 1,
  2399. pageSize: 9999999,
  2400. uid: rows.buyerId,
  2401. exportType: 1,
  2402. });
  2403. for (let i of Object.keys(data)) {
  2404. if (i === "status" || i === "clockIn") {
  2405. if (isNaN(parseInt(data[i]))) {
  2406. delete data[i];
  2407. }
  2408. } else if (!data[i]) {
  2409. delete data[i];
  2410. }
  2411. }
  2412. $.ajax({
  2413. method: "get",
  2414. dataType: "json",
  2415. crossDomain: false,
  2416. url: globalConfig.context + "/api/admin/release/publicReleaseDtails/export",
  2417. data,
  2418. success: function (data) {
  2419. if (data.error.length === 0) {
  2420. this.download(data.data);
  2421. } else {
  2422. message.warning(data.error[0].message);
  2423. }
  2424. }.bind(this),
  2425. }).always(
  2426. function () {
  2427. loading();
  2428. this.setState({
  2429. exportPendingLoading: false,
  2430. });
  2431. }.bind(this)
  2432. );
  2433. },
  2434. // 下载
  2435. download(fileName) {
  2436. window.location.href =
  2437. globalConfig.context + "/open/download?fileName=" + fileName;
  2438. },
  2439. checkRemark(record) {
  2440. this.setState({
  2441. checkVisible: true,
  2442. checkOrderNo: record.orderNo,
  2443. });
  2444. },
  2445. checkOk() {
  2446. if (!this.state.checkData) {
  2447. message.warning("请填写审核内容");
  2448. return;
  2449. }
  2450. if (!this.state.checkData.replace(/\s+/g, '')) {
  2451. message.warning("请填写审核内容");
  2452. return;
  2453. }
  2454. this.setState({
  2455. loading: true,
  2456. });
  2457. let ajaxObj = $.ajax({
  2458. method: "post",
  2459. dataType: "json",
  2460. crossDomain: false,
  2461. url: globalConfig.context + "/api/admin/financial/financeApproval",
  2462. data: {
  2463. orderNo: this.state.checkOrderNo,
  2464. remarks: this.state.checkData,
  2465. },
  2466. success: function (data) {
  2467. let theArr = [];
  2468. if (!data.data) {
  2469. if (data.error && data.error.length) {
  2470. message.warning(data.error[0].message);
  2471. }
  2472. } else {
  2473. message.success("通过成功!");
  2474. this.loadData();
  2475. this.setState({
  2476. checkVisible: false,
  2477. checkData: "",
  2478. });
  2479. }
  2480. }.bind(this),
  2481. }).always(
  2482. function () {
  2483. this.setState({
  2484. loading: false,
  2485. financeApprovalAjaxObj: null
  2486. });
  2487. }.bind(this)
  2488. );
  2489. this.setState({
  2490. financeApprovalAjaxObj: ajaxObj
  2491. })
  2492. },
  2493. tableRowClickPro(record) {
  2494. this.setState({
  2495. pvisible: true,
  2496. record,
  2497. });
  2498. },
  2499. kaiPiaoData(record) {
  2500. this.setState({
  2501. avisible: true,
  2502. });
  2503. this.invoiceData(record.id)
  2504. },
  2505. invoiceData(id) {
  2506. this.setState({
  2507. loading: true,
  2508. });
  2509. $.ajax({
  2510. method: "get",
  2511. dataType: "json",
  2512. crossDomain: false,
  2513. url:
  2514. globalConfig.context + "/api/admin/orderInvoice/selectByIdOrderInvoice",
  2515. data: {
  2516. id,
  2517. },
  2518. success: function (data) {
  2519. let thisdata = data.data;
  2520. let obj = {
  2521. contractNo: thisdata.contractNo,
  2522. orderNo: thisdata.orderNo,
  2523. approval: thisdata.approval,
  2524. type: thisdata.type,
  2525. status: thisdata.status,
  2526. remarks: thisdata.remarks,
  2527. invoiceType: thisdata.invoiceType,
  2528. unitName: thisdata.unitName,
  2529. taxNumber: thisdata.taxNumber,
  2530. amount: thisdata.amount,
  2531. banks: thisdata.banks,
  2532. content: thisdata.content,
  2533. unitAddress: thisdata.unitAddress,
  2534. invoiceRemarks: thisdata.invoiceRemarks,
  2535. unitMobile: thisdata.unitMobile,
  2536. post: thisdata.post,
  2537. addressee: thisdata.addressee,
  2538. addresseeMobile: thisdata.addresseeMobile,
  2539. addresseeProvince: thisdata.addresseeProvince,
  2540. addresseeCity: thisdata.addresseeCity,
  2541. addresseeArea: thisdata.addresseeArea,
  2542. alreadyAmount: thisdata.alreadyAmount,
  2543. recipientAddress: thisdata.recipientAddress,
  2544. orgCodeUrl: thisdata.voucherUrl
  2545. ? splitUrl(
  2546. thisdata.voucherUrl,
  2547. ",",
  2548. globalConfig.avatarHost + "/upload"
  2549. )
  2550. : [],
  2551. };
  2552. this.setState({
  2553. modalData: obj,
  2554. });
  2555. }.bind(this),
  2556. }).done(
  2557. function () {
  2558. this.setState({
  2559. loading: false,
  2560. });
  2561. }.bind(this)
  2562. );
  2563. },
  2564. visitCancels() {
  2565. this.setState({
  2566. avisible: false
  2567. })
  2568. },
  2569. selectAuto(value, options) {
  2570. this.setState({
  2571. auto: value,
  2572. });
  2573. },
  2574. selectAuto1(value, options) {
  2575. this.setState({
  2576. auto1: value,
  2577. });
  2578. },
  2579. blurChange(e) {
  2580. let theType = "";
  2581. let contactLists = this.state.customerArr || [];
  2582. if (e) {
  2583. contactLists.map(function (item) {
  2584. if (item.name == e.toString()) {
  2585. theType = item.id;
  2586. }
  2587. });
  2588. }
  2589. this.setState({
  2590. theTypes: theType,
  2591. });
  2592. },
  2593. blurChange1(e) {
  2594. let theType = "";
  2595. let contactLists = this.state.customerArr1 || [];
  2596. if (e) {
  2597. contactLists.map(function (item) {
  2598. if (item.name == e.toString()) {
  2599. theType = item.id;
  2600. }
  2601. });
  2602. }
  2603. this.setState({
  2604. theTypes1: theType,
  2605. });
  2606. },
  2607. httpChange(e) {
  2608. if (e.length >= 1) {
  2609. this.supervisor(e);
  2610. }
  2611. this.setState({
  2612. auto: e,
  2613. });
  2614. },
  2615. httpChange1(e) {
  2616. if (e.length >= 1) {
  2617. this.supervisor1(e);
  2618. }
  2619. this.setState({
  2620. auto1: e,
  2621. });
  2622. },
  2623. supervisor(e) {
  2624. $.ajax({
  2625. method: "get",
  2626. dataType: "json",
  2627. crossDomain: false,
  2628. url: globalConfig.context + "/api/admin/customer/listAdminByName",
  2629. data: {
  2630. adminName: e,
  2631. },
  2632. success: function (data) {
  2633. if (data.error && data.error.length === 0) {
  2634. this.setState({
  2635. customerArr: data.data,
  2636. });
  2637. } else {
  2638. message.warning(data.error[0].message);
  2639. }
  2640. }.bind(this),
  2641. }).always(function () { }.bind(this));
  2642. },
  2643. supervisor1(e) {
  2644. $.ajax({
  2645. method: "get",
  2646. dataType: "json",
  2647. crossDomain: false,
  2648. url: globalConfig.context + "/api/admin/customer/listAdminByName",
  2649. data: {
  2650. adminName: e,
  2651. },
  2652. success: function (data) {
  2653. if (data.error && data.error.length === 0) {
  2654. this.setState({
  2655. customerArr1: data.data,
  2656. });
  2657. } else {
  2658. message.warning(data.error[0].message);
  2659. }
  2660. }.bind(this),
  2661. }).always(function () { }.bind(this));
  2662. },
  2663. render() {
  2664. const formItemLayout = {
  2665. labelCol: { span: 8 },
  2666. wrapperCol: { span: 14 },
  2667. };
  2668. const { RangePicker } = DatePicker;
  2669. var departmentArr = this.state.departmentArr || [];
  2670. const { loading, selectedRowKeys, visible } = this.state;
  2671. const rowSelection = {
  2672. selectedRowKeys,
  2673. onChange: this.onSelectChange,
  2674. hideDefaultSelections: true,
  2675. type: "radio",
  2676. };
  2677. const dataSources = this.state.customerArr || [];
  2678. const dataSources1 = this.state.customerArr1 || [];
  2679. const options = dataSources.map((group) => (
  2680. <Select.Option key={group.id} value={group.name}>
  2681. {group.name}
  2682. </Select.Option>
  2683. ));
  2684. const options1 = dataSources1.map((group) => (
  2685. <Select.Option key={group.id} value={group.name}>
  2686. {group.name}
  2687. </Select.Option>
  2688. ));
  2689. const approvaChildren = approvalOptions.map(i => (
  2690. <Option key={i.value}>{i.label}</Option>
  2691. ));
  2692. return (
  2693. <div className="user-content">
  2694. {this.state.resVisible ? (
  2695. <ResolutionDetail
  2696. cancel={this.resCancel}
  2697. detail={this.state.resRecord}
  2698. visible={this.state.resVisible}
  2699. id={this.state.resRecord.orderNo}
  2700. />
  2701. ) : (
  2702. ""
  2703. )}
  2704. <div className="content-title" style={{ marginBottom: 10 }}>
  2705. <span style={{ fontWeight: 900, fontSize: 16 }}>收款结算</span>
  2706. </div>
  2707. <Tabs defaultActiveKey="2" onChange={this.callback} className="test">
  2708. <TabPane tab="更改表格显示数据" key="1">
  2709. <div style={{ marginLeft: 10 }}>
  2710. <ChooseList
  2711. columns={this.state.columns}
  2712. changeFn={this.changeList}
  2713. changeList={this.state.changeList}
  2714. top={55}
  2715. margin={11}
  2716. />
  2717. </div>
  2718. </TabPane>
  2719. <TabPane tab="搜索" key="2">
  2720. <div className="user-search" style={{ padding: "0 20px 0 10px" }}>
  2721. <Input
  2722. style={{ width: 200 }}
  2723. placeholder="订单编号"
  2724. value={this.state.orderNoSearch}
  2725. onChange={(e) => {
  2726. this.setState({ orderNoSearch: e.target.value });
  2727. }}
  2728. />
  2729. <Input
  2730. style={{ width: 200 }}
  2731. placeholder="合同编号"
  2732. value={this.state.contractNoSearch}
  2733. onChange={(e) => {
  2734. this.setState({
  2735. contractNoSearch: e.target.value,
  2736. });
  2737. }}
  2738. />
  2739. <Input
  2740. style={{ width: 200 }}
  2741. placeholder="客户名称"
  2742. value={this.state.nameSearch}
  2743. onChange={(e) => {
  2744. this.setState({ nameSearch: e.target.value });
  2745. }}
  2746. />
  2747. <Cascaders
  2748. ref={node => this.Cascaders = node}
  2749. placeholder="订单部门"
  2750. id="id"
  2751. name="name"
  2752. children="list"
  2753. height={28}
  2754. onSel={(e) => {
  2755. this.setState({
  2756. departmenttList: JSON.stringify(e),
  2757. });
  2758. }}
  2759. />
  2760. {/* <Select
  2761. placeholder="订单部门"
  2762. style={{ width: 190, marginRight: 10 }}
  2763. value={this.state.departmenttList}
  2764. onChange={(e) => {
  2765. this.setState({ departmenttList: e });
  2766. }}
  2767. >
  2768. {departmentArr.map(function (item) {
  2769. return (
  2770. <Select.Option key={item.id}>{item.name}</Select.Option>
  2771. );
  2772. })}
  2773. </Select> */}
  2774. <Select
  2775. placeholder="流程状态"
  2776. onChange={(e) => {
  2777. this.setState({ processStatusSearch: e });
  2778. }}
  2779. style={{ width: 150, marginRight: 10 }}
  2780. value={this.state.processStatusSearch}
  2781. >
  2782. <Option value="3">未分配</Option>
  2783. <Option value="4">已分配</Option>
  2784. <Option value="9">已驳回</Option>
  2785. </Select>
  2786. <Select
  2787. placeholder="结算状态"
  2788. onChange={(e) => {
  2789. this.setState({ liquidationStatus: e });
  2790. }}
  2791. style={{ width: 150, marginRight: 10 }}
  2792. value={this.state.liquidationStatus}
  2793. >
  2794. <Option value="0">首付待付清</Option>
  2795. <Option value="1">尾款待付清</Option>
  2796. <Option value="2">已付清</Option>
  2797. </Select>
  2798. <Select
  2799. style={{ width: 150 }}
  2800. placeholder="签单金额"
  2801. value={this.state.amountStatus}
  2802. onChange={(e) => {
  2803. this.setState({
  2804. amountStatus: e,
  2805. });
  2806. }}
  2807. >
  2808. <Option value="0">10万元以下</Option>
  2809. <Option value="1">10~20万元</Option>
  2810. <Option value="2">20~30万元</Option>
  2811. <Option value="3">30~40万元</Option>
  2812. <Option value="4">40万元以上</Option>
  2813. </Select>
  2814. <Select
  2815. style={{ width: 150 }}
  2816. placeholder="特批状态"
  2817. value={this.state.approval}
  2818. onChange={(e) => {
  2819. this.setState({
  2820. approval: e,
  2821. });
  2822. }}
  2823. >
  2824. <Option value="0">非特批</Option>
  2825. <Option value="1">特批待审</Option>
  2826. <Option value="2">特批通过</Option>
  2827. <Option value="4">全部特批</Option>
  2828. </Select>
  2829. <Select
  2830. style={{ width: 150 }}
  2831. placeholder="会员状态"
  2832. value={this.state.projectType}
  2833. onChange={(e) => {
  2834. this.setState({
  2835. projectType: e,
  2836. });
  2837. }}
  2838. >
  2839. <Option value="1">会员</Option>
  2840. <Option value="0">非会员</Option>
  2841. </Select>
  2842. <Select
  2843. mode="multiple"
  2844. style={{ width: 200 }}
  2845. placeholder="特批类型"
  2846. value={this.state.approvaType}
  2847. onChange={e => {
  2848. this.setState({
  2849. approvaType: e
  2850. })
  2851. }}
  2852. >
  2853. {approvaChildren}
  2854. </Select>
  2855. <span style={{}}>下单日期:</span>
  2856. <RangePicker
  2857. value={[
  2858. this.state.releaseDate[0]
  2859. ? moment(this.state.releaseDate[0])
  2860. : null,
  2861. this.state.releaseDate[1]
  2862. ? moment(this.state.releaseDate[1])
  2863. : null,
  2864. ]}
  2865. onChange={(data, dataString) => {
  2866. this.setState({ releaseDate: dataString });
  2867. }}
  2868. />
  2869. <span style={{ marginLeft: 10 }}>最近收款:</span>
  2870. <RangePicker
  2871. value={[
  2872. this.state.shouKuanDate[0]
  2873. ? moment(this.state.shouKuanDate[0])
  2874. : null,
  2875. this.state.shouKuanDate[1]
  2876. ? moment(this.state.shouKuanDate[1])
  2877. : null,
  2878. ]}
  2879. onChange={(data, dataString) => {
  2880. this.setState({ shouKuanDate: dataString });
  2881. }}
  2882. />
  2883. <span style={{}}>签单日期:</span>
  2884. <RangePicker
  2885. style={{ width: 170 }}
  2886. value={[
  2887. this.state.startSignTime
  2888. ? moment(this.state.startSignTime)
  2889. : null,
  2890. this.state.endSignTime
  2891. ? moment(this.state.endSignTime)
  2892. : null,
  2893. ]}
  2894. onChange={(data, dataString) => {
  2895. this.setState({
  2896. startSignTime: dataString[0],
  2897. endSignTime: dataString[1],
  2898. });
  2899. }}
  2900. />
  2901. <Button
  2902. type="primary"
  2903. onClick={this.search}
  2904. style={{ marginLeft: 10 }}
  2905. disabled={this.state.loadingA ? true : false}
  2906. >
  2907. 搜索
  2908. </Button>
  2909. <Button onClick={this.reset}>重置</Button>
  2910. </div>
  2911. </TabPane>
  2912. <TabPane tab="打印" key="3">
  2913. <Button
  2914. type="primary"
  2915. style={{ margin: "11px 0px 10px 10px" }}
  2916. onClick={this.printAll}
  2917. disabled={!this.state.dataSource.length}
  2918. >
  2919. 打印所有列表信息
  2920. </Button>
  2921. <Button
  2922. type="primary"
  2923. disabled={this.state.selectedRowKeys.length != 1}
  2924. style={{ margin: "11px 0px 10px 10px" }}
  2925. onClick={() => {
  2926. this.inRecordData();
  2927. this.setState({
  2928. bvisible: true,
  2929. });
  2930. }}
  2931. >
  2932. 打印开票详情
  2933. </Button>
  2934. <Button
  2935. type="primary"
  2936. disabled={this.state.selectedRowKeys.length != 1}
  2937. style={{ margin: "11px 0px 10px 10px" }}
  2938. onClick={() => {
  2939. this.waterData();
  2940. this.setState({
  2941. cvisible: true,
  2942. });
  2943. }}
  2944. >
  2945. 打印收款流水
  2946. </Button>
  2947. <Button
  2948. type="primary"
  2949. disabled={this.state.selectedRowKeys.length != 1}
  2950. style={{ margin: "11px 0px 10px 10px" }}
  2951. onClick={() => {
  2952. this.timeData();
  2953. this.setState({
  2954. timeVisible: true,
  2955. });
  2956. }}
  2957. >
  2958. 打印工时信息
  2959. </Button>
  2960. <Button
  2961. type="primary"
  2962. disabled={this.state.selectedRowKeys.length != 1}
  2963. style={{ margin: "11px 0px 10px 10px" }}
  2964. onClick={() => {
  2965. this.cuiData();
  2966. this.setState({
  2967. cuiVisible: true,
  2968. });
  2969. }}
  2970. >
  2971. 打印催款信息
  2972. </Button>
  2973. <Button
  2974. type="primary"
  2975. disabled={this.state.selectedRowKeys.length != 1}
  2976. style={{ margin: "11px 0px 10px 10px" }}
  2977. onClick={() => {
  2978. this.proData();
  2979. this.setState({
  2980. proVisible: true,
  2981. });
  2982. }}
  2983. >
  2984. 打印项目进度
  2985. </Button>
  2986. </TabPane>
  2987. <TabPane tab="导出Excel" key="4">
  2988. <Button
  2989. type="primary"
  2990. style={{ margin: "11px 0px 10px 10px" }}
  2991. onClick={this.exportAll}
  2992. >
  2993. 导出当前列表
  2994. </Button>
  2995. <Button
  2996. type="primary"
  2997. disabled={this.state.selectedRowKeys.length != 1}
  2998. style={{ margin: "11px 0px 10px 10px" }}
  2999. onClick={this.exportKaip}
  3000. >
  3001. 导出所选开票详情
  3002. </Button>
  3003. <Button
  3004. type="primary"
  3005. disabled={this.state.selectedRowKeys.length != 1}
  3006. style={{ margin: "11px 0px 10px 10px" }}
  3007. onClick={this.exportWater}
  3008. >
  3009. 导出所选收款详情流水
  3010. </Button>
  3011. <Button
  3012. type="primary"
  3013. disabled={this.state.selectedRowKeys.length != 1}
  3014. style={{ margin: "11px 0px 10px 10px" }}
  3015. onClick={this.exportTime}
  3016. >
  3017. 导出所选工时信息
  3018. </Button>
  3019. <Button
  3020. type="primary"
  3021. disabled={this.state.selectedRowKeys.length != 1}
  3022. style={{ margin: "11px 0px 10px 10px" }}
  3023. onClick={this.exportCui}
  3024. >
  3025. 导出催款信息
  3026. </Button>
  3027. <Button
  3028. type="primary"
  3029. disabled={this.state.selectedRowKeys.length != 1}
  3030. style={{ margin: "11px 0px 10px 10px" }}
  3031. onClick={this.exportPro}
  3032. >
  3033. 导出项目进度
  3034. </Button>
  3035. </TabPane>
  3036. <TabPane tab="查看" key="5">
  3037. <Button
  3038. type="primary"
  3039. disabled={this.state.selectedRowKeys.length != 1}
  3040. style={{ margin: "11px 0px 10px 10px" }}
  3041. onClick={() => {
  3042. this.inRecordData();
  3043. this.setState({
  3044. // bvisible: true,
  3045. newVisible: "开票历史记录",
  3046. });
  3047. }}
  3048. >
  3049. 查看开票详情
  3050. </Button>
  3051. <Button
  3052. type="primary"
  3053. disabled={this.state.selectedRowKeys.length != 1}
  3054. style={{ margin: "11px 0px 10px 10px" }}
  3055. onClick={() => {
  3056. this.waterData();
  3057. this.setState({
  3058. // cvisible: true,
  3059. newVisible: "详细收款流水",
  3060. });
  3061. }}
  3062. >
  3063. 详情收款流水
  3064. </Button>
  3065. <Button
  3066. type="primary"
  3067. disabled={this.state.selectedRowKeys.length != 1}
  3068. style={{ margin: "11px 0px 10px 10px" }}
  3069. onClick={() => {
  3070. this.timeData();
  3071. this.setState({
  3072. // timeVisible: true,
  3073. newVisible: "工时详情",
  3074. });
  3075. }}
  3076. >
  3077. 工时信息
  3078. </Button>
  3079. <Button
  3080. type="primary"
  3081. disabled={this.state.selectedRowKeys.length != 1}
  3082. style={{ margin: "11px 0px 10px 10px" }}
  3083. onClick={() => {
  3084. this.cuiData();
  3085. this.setState({
  3086. // cuiVisible: true,
  3087. newVisible: "催款详情",
  3088. });
  3089. }}
  3090. >
  3091. 催款信息
  3092. </Button>
  3093. <Button
  3094. type="primary"
  3095. disabled={this.state.selectedRowKeys.length != 1}
  3096. style={{ margin: "11px 0px 10px 10px" }}
  3097. onClick={() => {
  3098. this.proData();
  3099. this.setState({
  3100. // proVisible: true,
  3101. newVisible: "项目进度",
  3102. });
  3103. }}
  3104. >
  3105. 项目进度
  3106. </Button>
  3107. <Button
  3108. type="primary"
  3109. disabled={this.state.selectedRowKeys.length != 1}
  3110. style={{ margin: "11px 0px 10px 10px" }}
  3111. onClick={() => {
  3112. this.pubData();
  3113. this.selectSuperId();
  3114. this.setState({
  3115. // pubVisible: true,
  3116. newVisible: "公出详细列表",
  3117. });
  3118. }}
  3119. >
  3120. 查看公出
  3121. </Button>
  3122. </TabPane>
  3123. {/* <TabPane tab="批量操作" key="6">
  3124. <Button
  3125. type="primary"
  3126. disabled={this.state.selectedRowKeys.length == 0}
  3127. style={{ margin: "0px 0px 10px 10px" }}
  3128. onClick={e => {
  3129. e.stopPropagation(),
  3130. this.evaluateY(this.state.selectedRowKeys, "财务专员");
  3131. }}
  3132. >
  3133. 转交
  3134. </Button>
  3135. </TabPane> */}
  3136. </Tabs>
  3137. <div className="patent-table">
  3138. <Spin spinning={this.state.loadingA}>
  3139. <Table
  3140. bordered
  3141. columns={
  3142. this.state.changeList == undefined
  3143. ? this.state.columns
  3144. : this.state.changeList
  3145. }
  3146. dataSource={this.state.dataSource}
  3147. rowSelection={rowSelection}
  3148. scroll={{ x: "max-content", y: 0 }}
  3149. pagination={this.state.pagination}
  3150. onRowDoubleClick={this.tableRowClick.bind(this)}
  3151. size="small"
  3152. />
  3153. </Spin>
  3154. <p
  3155. style={{ display: "inline-block", fontSize: "14px", color: "red" }}
  3156. >
  3157. {
  3158. <span style={{ marginRight: 10 }}>
  3159. {`收款金额总计(万元):${this.state.hui ? this.state.hui : "0"}`}
  3160. </span>
  3161. }
  3162. {
  3163. <span>
  3164. {`合同额总计(万元):${this.state.totalHui ? this.state.totalHui : "0"
  3165. }`}
  3166. </span>
  3167. }
  3168. </p>
  3169. </div>
  3170. <Assign
  3171. title="任务"
  3172. selApi={"/api/admin/newOrder/updateFinance"}
  3173. data={this.state.assignDataY}
  3174. showDesc={this.state.assignVisibleY}
  3175. closeDesc={this.closeAssignY.bind(this)}
  3176. // fenpaiData={8}
  3177. specially={0}
  3178. roleName={this.state.nub}
  3179. requestMethod={"get"}
  3180. />
  3181. <OrderDesc
  3182. data={this.state.RowData}
  3183. showDesc={this.state.showDesc}
  3184. closeDesc={this.closeDesc.bind(this)}
  3185. />
  3186. <Receivable
  3187. title="收款记录"
  3188. api="/api/admin/financial/addReceiptsFlow"
  3189. data={this.state.assignDataX}
  3190. showDesc={this.state.assignVisibleX}
  3191. closeDesc={this.closeAssignX.bind(this)}
  3192. />
  3193. <Modal
  3194. visible={this.state.boHuiVisible}
  3195. width="400px"
  3196. title="驳回备注"
  3197. footer=""
  3198. onOk={this.boHuiOk}
  3199. onCancel={this.boHuiCancel}
  3200. >
  3201. <Form layout="horizontal" onSubmit={this.boHuiSubmit}>
  3202. <Spin spinning={this.state.loading}>
  3203. <FormItem
  3204. labelCol={{ span: 5 }}
  3205. wrapperCol={{ span: 16 }}
  3206. label={
  3207. <span>
  3208. <strong style={{ color: "#f00" }}>*</strong>驳回原因
  3209. </span>
  3210. }
  3211. >
  3212. <Input
  3213. type="textarea"
  3214. rows={4}
  3215. placeholder="请输入驳回原因"
  3216. value={this.state.content}
  3217. onChange={(e) => {
  3218. this.setState({ content: e.target.value });
  3219. }}
  3220. />
  3221. </FormItem>
  3222. <FormItem wrapperCol={{ span: 12, offset: 5 }}>
  3223. <Button
  3224. type="primary"
  3225. htmlType="submit"
  3226. style={{ marginRight: 20 }}
  3227. >
  3228. 驳回
  3229. </Button>
  3230. <Button
  3231. type="default"
  3232. onClick={() => {
  3233. this.boHuiCancel();
  3234. }}
  3235. >
  3236. 取消
  3237. </Button>
  3238. </FormItem>
  3239. </Spin>
  3240. </Form>
  3241. </Modal>
  3242. <Modal
  3243. visible={this.state.bvisible}
  3244. footer=""
  3245. title="开票历史记录"
  3246. className="admin-desc-content"
  3247. width="1200px"
  3248. onCancel={this.inRecordCanl}
  3249. >
  3250. <Spin spinning={this.state.loading}>
  3251. <div
  3252. className="patent-table"
  3253. ref={(e) => {
  3254. this.refs.kaiPiao = e;
  3255. }}
  3256. >
  3257. <Table
  3258. columns={this.state.columnsDate}
  3259. dataSource={this.state.recordData}
  3260. onRowClick={this.kaiPiaoData}
  3261. pagination={false}
  3262. bordered
  3263. size="small"
  3264. />
  3265. <div className="clearfix" style={{ marginTop: "20px" }}>
  3266. <FormItem
  3267. className="half-item"
  3268. {...formItemLayout}
  3269. label={<span style={{ fontSize: "14px" }}>开票总计</span>}
  3270. >
  3271. <span>{this.state.sum + "(万元)"}</span>
  3272. </FormItem>
  3273. </div>
  3274. <ReactToPrint
  3275. trigger={() => (
  3276. <Button
  3277. type="primary"
  3278. style={{
  3279. float: "right",
  3280. // marginTop: 10,
  3281. position: "absolute",
  3282. top: -54,
  3283. right: 30,
  3284. }}
  3285. >
  3286. 打印
  3287. </Button>
  3288. )}
  3289. content={() => this.refs.kaiPiao}
  3290. />
  3291. </div>
  3292. </Spin>
  3293. </Modal>
  3294. <Modal
  3295. visible={this.state.cvisible}
  3296. footer=""
  3297. title="详细收款流水"
  3298. className="admin-desc-content"
  3299. width="1300px"
  3300. onCancel={this.waterCanl}
  3301. >
  3302. <Spin spinning={this.state.loading}>
  3303. <div
  3304. className="patent-table"
  3305. ref={(e) => {
  3306. this.refs.shouKuan = e;
  3307. }}
  3308. >
  3309. <Table
  3310. columns={this.state.waterlistDate}
  3311. dataSource={this.state.waterData}
  3312. pagination={false}
  3313. scroll={{ x: "max-content", y: 0 }}
  3314. bordered
  3315. size="small"
  3316. />
  3317. <div className="clearfix" style={{ marginTop: "20px" }}>
  3318. <FormItem
  3319. className="half-item"
  3320. {...formItemLayout}
  3321. label={<span style={{ fontSize: "14px" }}>总计金额</span>}
  3322. >
  3323. <span>{this.state.waterSum + "(万元)"}</span>
  3324. </FormItem>
  3325. </div>
  3326. <ReactToPrint
  3327. trigger={() => (
  3328. <Button
  3329. type="primary"
  3330. style={{
  3331. float: "right",
  3332. position: "absolute",
  3333. top: -54,
  3334. right: 30,
  3335. }}
  3336. >
  3337. 打印
  3338. </Button>
  3339. )}
  3340. content={() => this.refs.shouKuan}
  3341. />
  3342. </div>
  3343. </Spin>
  3344. </Modal>
  3345. <Modal
  3346. visible={this.state.dvisible}
  3347. footer=""
  3348. title="所有列表信息"
  3349. className="admin-desc-content"
  3350. width="1300px"
  3351. onCancel={() => {
  3352. this.loadData();
  3353. this.setState({
  3354. dvisible: false,
  3355. });
  3356. }}
  3357. >
  3358. <Spin spinning={this.state.loading}>
  3359. <div
  3360. className="patent-table"
  3361. style={{
  3362. // width: 900,
  3363. // position: "relative",
  3364. // left: "50%",
  3365. // transform: "translate(-50%)",
  3366. padding: "25px 0 30px 30px",
  3367. }}
  3368. ref={(e) => {
  3369. this.refs.all = e;
  3370. }}
  3371. >
  3372. <Table
  3373. columns={this.state.printColumns}
  3374. dataSource={this.state.dataSource}
  3375. pagination={false}
  3376. bordered
  3377. size="small"
  3378. />
  3379. </div>
  3380. </Spin>
  3381. <ReactToPrint
  3382. trigger={() => (
  3383. <Button
  3384. type="primary"
  3385. style={{
  3386. float: "right",
  3387. marginTop: 10,
  3388. position: "absolute",
  3389. top: 0,
  3390. right: 30,
  3391. }}
  3392. >
  3393. 打印
  3394. </Button>
  3395. )}
  3396. content={() => this.refs.all}
  3397. />
  3398. </Modal>
  3399. <Project
  3400. record={this.state.record}
  3401. visible={this.state.pvisible}
  3402. isAuditPayment={true}
  3403. cancel={() => {
  3404. this.setState({ pvisible: false });
  3405. }}
  3406. />
  3407. {/* 工时详情 */}
  3408. <Modal
  3409. visible={this.state.timeVisible}
  3410. footer=""
  3411. title="工时详情"
  3412. className="admin-desc-content"
  3413. width="1300px"
  3414. pagination={false}
  3415. onCancel={() => {
  3416. this.loadData();
  3417. this.setState({
  3418. timeVisible: false,
  3419. });
  3420. }}
  3421. >
  3422. <Spin spinning={this.state.loading}>
  3423. <div
  3424. className="patent-table"
  3425. style={
  3426. {
  3427. // width: 900,
  3428. // position: "relative",
  3429. // left: "50%",
  3430. // transform: "translate(-50%)",
  3431. // padding: "25px 0 30px 30px"
  3432. }
  3433. }
  3434. ref={(e) => {
  3435. this.refs.all = e;
  3436. }}
  3437. >
  3438. <Table
  3439. columns={this.state.timeColumns}
  3440. dataSource={this.state.timeDataList}
  3441. onRowClick={this.tableRowClickPro}
  3442. scroll={{ x: "max-content", y: 0 }}
  3443. pagination={false}
  3444. bordered
  3445. size="small"
  3446. />
  3447. </div>
  3448. </Spin>
  3449. <ReactToPrint
  3450. trigger={() => (
  3451. <Button
  3452. type="primary"
  3453. style={{
  3454. float: "right",
  3455. marginTop: 10,
  3456. position: "absolute",
  3457. top: 0,
  3458. right: 30,
  3459. }}
  3460. >
  3461. 打印
  3462. </Button>
  3463. )}
  3464. content={() => this.refs.all}
  3465. />
  3466. </Modal>
  3467. {/* 催款详情 */}
  3468. <Modal
  3469. visible={this.state.cuiVisible}
  3470. footer=""
  3471. title="催款详情"
  3472. className="admin-desc-content"
  3473. width="1300px"
  3474. pagination={false}
  3475. onCancel={() => {
  3476. this.loadData();
  3477. this.setState({
  3478. cuiVisible: false,
  3479. cuiTabKey: "1",
  3480. });
  3481. }}
  3482. >
  3483. <Tabs activeKey={this.state.cuiTabKey} onChange={this.cuiTabChange}>
  3484. <TabPane tab="催款节点" key="1">
  3485. <Spin spinning={this.state.loading}>
  3486. <div
  3487. className="patent-table"
  3488. ref={(e) => {
  3489. this.refs.all = e;
  3490. }}
  3491. >
  3492. <Table
  3493. columns={this.state.cuiColumns}
  3494. dataSource={this.state.cuiDataList}
  3495. scroll={{ x: "max-content", y: 0 }}
  3496. pagination={false}
  3497. bordered
  3498. size="small"
  3499. />
  3500. </div>
  3501. <ReactToPrint
  3502. trigger={() => (
  3503. <Button
  3504. type="primary"
  3505. style={{
  3506. float: "right",
  3507. marginTop: 10,
  3508. position: "absolute",
  3509. top: "-60px",
  3510. right: 30,
  3511. }}
  3512. >
  3513. 打印
  3514. </Button>
  3515. )}
  3516. content={() => this.refs.all}
  3517. />
  3518. </Spin>
  3519. </TabPane>
  3520. <TabPane tab="欠款催收记录" key="2">
  3521. <Spin spinning={this.state.loading}>
  3522. <div
  3523. className="patent-table"
  3524. ref={(e) => {
  3525. this.refs.all = e;
  3526. }}
  3527. >
  3528. <Table
  3529. columns={this.state.qianColumns}
  3530. dataSource={this.state.qianDataList}
  3531. scroll={{ x: "max-content", y: 0 }}
  3532. pagination={false}
  3533. bordered
  3534. size="small"
  3535. />
  3536. </div>
  3537. <ReactToPrint
  3538. trigger={() => (
  3539. <Button
  3540. type="primary"
  3541. style={{
  3542. float: "right",
  3543. marginTop: 10,
  3544. position: "absolute",
  3545. top: "-60px",
  3546. right: 30,
  3547. }}
  3548. >
  3549. 打印
  3550. </Button>
  3551. )}
  3552. content={() => this.refs.all}
  3553. />
  3554. </Spin>
  3555. </TabPane>
  3556. </Tabs>
  3557. </Modal>
  3558. {/* 项目进度 */}
  3559. <Modal
  3560. visible={this.state.proVisible}
  3561. footer=""
  3562. title="项目进度"
  3563. className="admin-desc-content"
  3564. width="1300px"
  3565. pagination={false}
  3566. onCancel={() => {
  3567. this.loadData(this.state.page);
  3568. this.setState({
  3569. proVisible: false,
  3570. });
  3571. }}
  3572. >
  3573. <Spin spinning={this.state.loading}>
  3574. <div
  3575. className="patent-table"
  3576. ref={(e) => {
  3577. this.refs.all = e;
  3578. }}
  3579. >
  3580. <Table
  3581. columns={this.state.proColumns}
  3582. dataSource={this.state.proDataList}
  3583. scroll={{ x: "max-content", y: 0 }}
  3584. onRowClick={this.tableRowClickPro}
  3585. pagination={false}
  3586. bordered
  3587. size="small"
  3588. />
  3589. </div>
  3590. <span style={{ display: "block", marginTop: 10, color: "red" }}>
  3591. 外包(内部)价格总计(万元):{this.state.totalWaibao}
  3592. </span>
  3593. </Spin>
  3594. <ReactToPrint
  3595. trigger={() => (
  3596. <Button
  3597. type="primary"
  3598. style={{
  3599. float: "right",
  3600. marginTop: 10,
  3601. position: "absolute",
  3602. top: 0,
  3603. right: 30,
  3604. }}
  3605. >
  3606. 打印
  3607. </Button>
  3608. )}
  3609. content={() => this.refs.all}
  3610. />
  3611. </Modal>
  3612. {/* 查看公出 */}
  3613. <Modal
  3614. visible={this.state.pubVisible}
  3615. footer=""
  3616. title={<span>公出详细列表(
  3617. {this.state.selectedRows.length > 0 && this.state.selectedRows[0].buyerName}
  3618. )</span>}
  3619. className="admin-desc-content"
  3620. width="1500px"
  3621. pagination={false}
  3622. onCancel={() => {
  3623. this.pubData();
  3624. this.setState({
  3625. pubVisible: false,
  3626. });
  3627. }}
  3628. >
  3629. <div
  3630. className="user-search"
  3631. style={{
  3632. marginTop: "10px",
  3633. marginLeft: "10px",
  3634. marginRight: "10px",
  3635. }}
  3636. >
  3637. <span style={{ marginRight: "10px" }}>
  3638. <Select
  3639. placeholder="请选择审核状态"
  3640. style={{ width: 120 }}
  3641. value={this.state.status}
  3642. onChange={(e) => {
  3643. this.setState({ status: e });
  3644. }}
  3645. >
  3646. {clockState.map((v, k) => (
  3647. <Select.Option key={k} value={v.id}>
  3648. {v.title}
  3649. </Select.Option>
  3650. ))}
  3651. </Select>
  3652. </span>
  3653. <span style={{ marginRight: "10px" }}>
  3654. <Select
  3655. placeholder="请选择打卡状态"
  3656. style={{ width: 120 }}
  3657. value={this.state.clockIn}
  3658. onChange={(e) => {
  3659. this.setState({ clockIn: e });
  3660. }}
  3661. >
  3662. <Select.Option value={1}>已打卡</Select.Option>
  3663. <Select.Option value={0}>未打卡</Select.Option>
  3664. </Select>
  3665. </span>
  3666. <span style={{ marginRight: "10px" }}>
  3667. <Select
  3668. placeholder="请选择公出类型"
  3669. style={{ width: 120 }}
  3670. value={this.state.type}
  3671. onChange={(e) => {
  3672. this.setState({ type: e });
  3673. }}
  3674. >
  3675. <Select.Option value={0}>业务打卡</Select.Option>
  3676. <Select.Option value={1}>技术打卡</Select.Option>
  3677. <Select.Option value={2}>行政打卡</Select.Option>
  3678. <Select.Option value={3}>技术协单</Select.Option>
  3679. </Select>
  3680. </span>
  3681. <span style={{ marginRight: "10px" }}>
  3682. <AutoComplete
  3683. className="certain-category-search"
  3684. dropdownClassName="certain-category-search-dropdown"
  3685. dropdownMatchSelectWidth={false}
  3686. style={{ width: "120px" }}
  3687. dataSource={options}
  3688. placeholder="输入公出申请人"
  3689. value={this.state.auto}
  3690. onChange={this.httpChange}
  3691. filterOption={true}
  3692. onBlur={this.blurChange}
  3693. onSelect={this.selectAuto}
  3694. >
  3695. <Input />
  3696. </AutoComplete>
  3697. </span>
  3698. <span style={{ marginRight: "10px" }}>
  3699. <AutoComplete
  3700. className="certain-category-search"
  3701. dropdownClassName="certain-category-search-dropdown"
  3702. dropdownMatchSelectWidth={false}
  3703. style={{ width: "120px" }}
  3704. dataSource={options1}
  3705. placeholder="输入跟单人"
  3706. value={this.state.auto1}
  3707. onChange={this.httpChange1}
  3708. filterOption={true}
  3709. onBlur={this.blurChange1}
  3710. onSelect={this.selectAuto1}
  3711. >
  3712. <Input />
  3713. </AutoComplete>
  3714. </span>
  3715. <span style={{ marginRight: "10px" }}>
  3716. <Select
  3717. placeholder="请选择公出部门"
  3718. style={{ width: 200 }}
  3719. value={this.state.depId}
  3720. onChange={(e) => {
  3721. this.setState({ depId: e });
  3722. }}
  3723. notFoundContent="未获取到上级组织列表"
  3724. >
  3725. {this.state.contactsOption}
  3726. </Select>
  3727. </span>
  3728. <span style={{ marginRight: "10px" }}>
  3729. <span style={{ marginRight: "5px", marginBottom: "10px" }}>
  3730. 公出时间 :
  3731. </span>
  3732. <RangePicker
  3733. style={{ marginRight: "10px", marginBottom: "10px" }}
  3734. value={[
  3735. this.state.releaseDate[0]
  3736. ? moment(this.state.releaseDate[0])
  3737. : null,
  3738. this.state.releaseDate[1]
  3739. ? moment(this.state.releaseDate[1])
  3740. : null,
  3741. ]}
  3742. onChange={(data, dataString) => {
  3743. this.setState({ releaseDate: dataString });
  3744. }}
  3745. />
  3746. </span>
  3747. <Button
  3748. type="primary"
  3749. onClick={() => {
  3750. this.pubData();
  3751. }}
  3752. style={{ marginRight: "10px", marginBottom: "10px" }}
  3753. >
  3754. 搜索
  3755. </Button>
  3756. <Button
  3757. onClick={this.resetAll}
  3758. style={{ marginRight: "10px", marginBottom: "10px" }}
  3759. >
  3760. 重置
  3761. </Button>
  3762. </div>
  3763. <Spin spinning={this.state.loading}>
  3764. <div
  3765. className="patent-table"
  3766. ref={(e) => {
  3767. this.refs.all = e;
  3768. }}
  3769. >
  3770. <Table
  3771. columns={this.state.pubColumns}
  3772. dataSource={this.state.pubDataList}
  3773. scroll={{ x: "max-content", y: 0 }}
  3774. pagination={false}
  3775. bordered
  3776. size="small"
  3777. />
  3778. </div>
  3779. </Spin>
  3780. <Button
  3781. type="primary"
  3782. style={{
  3783. float: "right",
  3784. marginTop: 10,
  3785. position: "absolute",
  3786. top: 0,
  3787. right: 120,
  3788. }}
  3789. loading={this.state.exportPendingLoading}
  3790. onClick={() => { this.pubexportExec() }}
  3791. >
  3792. 导出
  3793. </Button>
  3794. <ReactToPrint
  3795. trigger={() => (
  3796. <Button
  3797. type="primary"
  3798. style={{
  3799. float: "right",
  3800. marginTop: 10,
  3801. position: "absolute",
  3802. top: 0,
  3803. right: 30,
  3804. }}
  3805. >
  3806. 打印
  3807. </Button>
  3808. )}
  3809. content={() => this.refs.all}
  3810. />
  3811. </Modal>
  3812. <Spin spinning={this.state.loading}>
  3813. {this.state.checkVisible ? <Modal
  3814. title="审核订单"
  3815. visible={this.state.checkVisible}
  3816. onOk={this.checkOk}
  3817. confirmLoading={this.state.loading}
  3818. okText={"通过"}
  3819. onCancel={() => {
  3820. this.state.financeApprovalAjaxObj ? this.state.financeApprovalAjaxObj.abort() : null;
  3821. this.setState({
  3822. financeApprovalAjaxObj: null
  3823. })
  3824. this.loadData();
  3825. this.setState({
  3826. checkVisible: false,
  3827. checkData: "",
  3828. });
  3829. }}
  3830. >
  3831. <TextArea
  3832. value={this.state.checkData}
  3833. onChange={(e, recard) => {
  3834. this.setState({
  3835. checkData: e.target.value,
  3836. });
  3837. }}
  3838. placeholder="请填写审核内容"
  3839. />
  3840. </Modal> : <div />}
  3841. </Spin>
  3842. <KaiPiaoModal
  3843. visible={this.state.avisible}
  3844. data={this.state.modalData}
  3845. onCancel={this.visitCancels}
  3846. loading={this.state.loading}
  3847. />
  3848. {/* 合并查看 */}
  3849. {
  3850. this.state.newVisible != "" &&
  3851. <Modal
  3852. visible={this.state.newVisible != ""}
  3853. footer=""
  3854. title={this.state.newVisible}
  3855. className="admin-desc-content"
  3856. width="1500px"
  3857. pagination={false}
  3858. onCancel={() => {
  3859. this.setState({
  3860. newVisible: "",
  3861. });
  3862. }}
  3863. >
  3864. <Spin spinning={this.state.loading}>
  3865. <div style={{ margin: 20 }}>
  3866. <div style={{ marginBottom: 20 }}>
  3867. <Table
  3868. bordered
  3869. columns={this.state.columns}
  3870. dataSource={this.state.newData}
  3871. scroll={{ x: "max-content", y: 0 }}
  3872. pagination={false}
  3873. onRowDoubleClick={this.tableRowClick.bind(this)}
  3874. size="small"
  3875. />
  3876. </div>
  3877. <div>
  3878. <Button
  3879. type="primary"
  3880. style={{
  3881. margin: "11px 0px 10px 10px",
  3882. background: this.state.newVisible == "开票历史记录" ? "#f04134" : "",
  3883. }}
  3884. onClick={() => {
  3885. this.inRecordData();
  3886. this.setState({
  3887. newVisible: "开票历史记录"
  3888. });
  3889. }}
  3890. >
  3891. 查看开票详情
  3892. </Button>
  3893. <Button
  3894. type="primary"
  3895. style={{
  3896. margin: "11px 0px 10px 10px",
  3897. background: this.state.newVisible == "详细收款流水" ? "#f04134" : "",
  3898. }}
  3899. onClick={() => {
  3900. this.waterData();
  3901. this.setState({
  3902. newVisible: "详细收款流水",
  3903. });
  3904. }}
  3905. >
  3906. 详情收款流水
  3907. </Button>
  3908. <Button
  3909. type="primary"
  3910. style={{
  3911. margin: "11px 0px 10px 10px",
  3912. background: this.state.newVisible == "工时详情" ? "#f04134" : "",
  3913. }}
  3914. onClick={() => {
  3915. this.timeData();
  3916. this.setState({
  3917. newVisible: "工时详情",
  3918. });
  3919. }}
  3920. >
  3921. 工时信息
  3922. </Button>
  3923. <Button
  3924. type="primary"
  3925. style={{
  3926. margin: "11px 0px 10px 10px",
  3927. background: this.state.newVisible == "催款详情" ? "#f04134" : "",
  3928. }}
  3929. onClick={() => {
  3930. this.cuiData();
  3931. this.setState({
  3932. newVisible: "催款详情",
  3933. });
  3934. }}
  3935. >
  3936. 催款信息
  3937. </Button>
  3938. <Button
  3939. type="primary"
  3940. style={{
  3941. margin: "11px 0px 10px 10px",
  3942. background: this.state.newVisible == "项目进度" ? "#f04134" : "",
  3943. }}
  3944. onClick={() => {
  3945. this.proData();
  3946. this.setState({
  3947. newVisible: "项目进度",
  3948. });
  3949. }}
  3950. >
  3951. 项目进度
  3952. </Button>
  3953. <Button
  3954. type="primary"
  3955. style={{
  3956. margin: "11px 0px 10px 10px",
  3957. background: this.state.newVisible == "公出详细列表" ? "#f04134" : "",
  3958. }}
  3959. onClick={() => {
  3960. this.pubData();
  3961. this.selectSuperId();
  3962. this.setState({
  3963. newVisible: "公出详细列表",
  3964. });
  3965. }}
  3966. >
  3967. 查看公出
  3968. </Button>
  3969. </div>
  3970. {
  3971. this.state.newVisible == "公出详细列表" &&
  3972. <div
  3973. className="user-search"
  3974. style={{
  3975. marginTop: "10px",
  3976. marginLeft: "10px",
  3977. marginRight: "10px",
  3978. }}
  3979. >
  3980. <span style={{ marginRight: "10px" }}>
  3981. <Select
  3982. placeholder="请选择审核状态"
  3983. style={{ width: 120 }}
  3984. value={this.state.status}
  3985. onChange={(e) => {
  3986. this.setState({ status: e });
  3987. }}
  3988. >
  3989. {clockState.map((v, k) => (
  3990. <Select.Option key={k} value={v.id}>
  3991. {v.title}
  3992. </Select.Option>
  3993. ))}
  3994. </Select>
  3995. </span>
  3996. <span style={{ marginRight: "10px" }}>
  3997. <Select
  3998. placeholder="请选择打卡状态"
  3999. style={{ width: 120 }}
  4000. value={this.state.clockIn}
  4001. onChange={(e) => {
  4002. this.setState({ clockIn: e });
  4003. }}
  4004. >
  4005. <Select.Option value={1}>已打卡</Select.Option>
  4006. <Select.Option value={0}>未打卡</Select.Option>
  4007. </Select>
  4008. </span>
  4009. <span style={{ marginRight: "10px" }}>
  4010. <Select
  4011. placeholder="请选择公出类型"
  4012. style={{ width: 120 }}
  4013. value={this.state.type}
  4014. onChange={(e) => {
  4015. this.setState({ type: e });
  4016. }}
  4017. >
  4018. <Select.Option value={0}>业务打卡</Select.Option>
  4019. <Select.Option value={1}>技术打卡</Select.Option>
  4020. <Select.Option value={2}>行政打卡</Select.Option>
  4021. <Select.Option value={3}>技术协单</Select.Option>
  4022. </Select>
  4023. </span>
  4024. <span style={{ marginRight: "10px" }}>
  4025. <AutoComplete
  4026. className="certain-category-search"
  4027. dropdownClassName="certain-category-search-dropdown"
  4028. dropdownMatchSelectWidth={false}
  4029. style={{ width: "120px" }}
  4030. dataSource={options}
  4031. placeholder="输入公出申请人"
  4032. value={this.state.auto}
  4033. onChange={this.httpChange}
  4034. filterOption={true}
  4035. onBlur={this.blurChange}
  4036. onSelect={this.selectAuto}
  4037. >
  4038. <Input />
  4039. </AutoComplete>
  4040. </span>
  4041. <span style={{ marginRight: "10px" }}>
  4042. <AutoComplete
  4043. className="certain-category-search"
  4044. dropdownClassName="certain-category-search-dropdown"
  4045. dropdownMatchSelectWidth={false}
  4046. style={{ width: "120px" }}
  4047. dataSource={options1}
  4048. placeholder="输入跟单人"
  4049. value={this.state.auto1}
  4050. onChange={this.httpChange1}
  4051. filterOption={true}
  4052. onBlur={this.blurChange1}
  4053. onSelect={this.selectAuto1}
  4054. >
  4055. <Input />
  4056. </AutoComplete>
  4057. </span>
  4058. <span style={{ marginRight: "10px" }}>
  4059. <Select
  4060. placeholder="请选择公出部门"
  4061. style={{ width: 200 }}
  4062. value={this.state.depId}
  4063. onChange={(e) => {
  4064. this.setState({ depId: e });
  4065. }}
  4066. notFoundContent="未获取到上级组织列表"
  4067. >
  4068. {this.state.contactsOption}
  4069. </Select>
  4070. </span>
  4071. <span style={{ marginRight: "10px" }}>
  4072. <span style={{ marginRight: "5px", marginBottom: "10px" }}>
  4073. 公出时间 :
  4074. </span>
  4075. <RangePicker
  4076. style={{ marginRight: "10px", marginBottom: "10px" }}
  4077. value={[
  4078. this.state.releaseDate[0]
  4079. ? moment(this.state.releaseDate[0])
  4080. : null,
  4081. this.state.releaseDate[1]
  4082. ? moment(this.state.releaseDate[1])
  4083. : null,
  4084. ]}
  4085. onChange={(data, dataString) => {
  4086. this.setState({ releaseDate: dataString });
  4087. }}
  4088. />
  4089. </span>
  4090. <Button
  4091. type="primary"
  4092. onClick={() => {
  4093. this.pubData();
  4094. }}
  4095. style={{ marginRight: "10px", marginBottom: "10px" }}
  4096. >
  4097. 搜索
  4098. </Button>
  4099. <Button
  4100. onClick={this.resetAll}
  4101. style={{ marginRight: "10px", marginBottom: "10px" }}
  4102. >
  4103. 重置
  4104. </Button>
  4105. </div>
  4106. }
  4107. {
  4108. this.state.newVisible == "催款详情"
  4109. ? <Tabs activeKey={this.state.cuiTabKey} onChange={this.cuiTabChange}>
  4110. <TabPane tab="催款节点" key="1">
  4111. <Spin spinning={this.state.loading}>
  4112. <div
  4113. className="patent-table"
  4114. ref={(e) => {
  4115. this.refs.all = e;
  4116. }}
  4117. >
  4118. <Table
  4119. columns={this.state.cuiColumns}
  4120. dataSource={this.state.cuiDataList}
  4121. scroll={{ x: "max-content", y: 0 }}
  4122. pagination={false}
  4123. bordered
  4124. size="small"
  4125. />
  4126. </div>
  4127. <Button
  4128. type="primary"
  4129. style={{
  4130. float: "right",
  4131. marginTop: 10,
  4132. position: "absolute",
  4133. top: "-60px",
  4134. right: "100px",
  4135. }}
  4136. loading={this.state.exportPendingLoading}
  4137. onClick={() => { this.exportCui() }}
  4138. >
  4139. 导出
  4140. </Button>
  4141. <ReactToPrint
  4142. trigger={() => (
  4143. <Button
  4144. type="primary"
  4145. style={{
  4146. float: "right",
  4147. marginTop: 10,
  4148. position: "absolute",
  4149. top: "-60px",
  4150. right: "10px",
  4151. }}
  4152. >
  4153. 打印
  4154. </Button>
  4155. )}
  4156. content={() => this.refs.all}
  4157. />
  4158. </Spin>
  4159. </TabPane>
  4160. <TabPane tab="欠款催收记录" key="2">
  4161. <Spin spinning={this.state.loading}>
  4162. <div
  4163. className="patent-table"
  4164. ref={(e) => {
  4165. this.refs.all = e;
  4166. }}
  4167. >
  4168. <Table
  4169. columns={this.state.qianColumns}
  4170. dataSource={this.state.qianDataList}
  4171. scroll={{ x: "max-content", y: 0 }}
  4172. pagination={false}
  4173. bordered
  4174. size="small"
  4175. />
  4176. </div>
  4177. <ReactToPrint
  4178. trigger={() => (
  4179. <Button
  4180. type="primary"
  4181. style={{
  4182. float: "right",
  4183. marginTop: 10,
  4184. position: "absolute",
  4185. top: "-60px",
  4186. right: "10px",
  4187. }}
  4188. >
  4189. 打印
  4190. </Button>
  4191. )}
  4192. content={() => this.refs.all}
  4193. />
  4194. </Spin>
  4195. </TabPane>
  4196. </Tabs>
  4197. : <div
  4198. className="patent-table"
  4199. style={{ position: "relative" }}
  4200. ref={(e) => {
  4201. this.refs.all = e;
  4202. }}
  4203. >
  4204. <Table
  4205. bordered
  4206. columns={
  4207. this.state.newVisible == "开票历史记录"
  4208. ? this.state.columnsDate : this.state.newVisible == "详细收款流水"
  4209. ? this.state.waterlistDate : this.state.newVisible == "工时详情"
  4210. ? this.state.timeColumns : this.state.newVisible == "催款详情"
  4211. ? this.state.cuiColumns : this.state.newVisible == "项目进度"
  4212. ? this.state.proColumns : this.state.newVisible == "公出详细列表"
  4213. && this.state.pubColumns
  4214. }
  4215. dataSource={
  4216. this.state.newVisible == "开票历史记录"
  4217. ? this.state.recordData : this.state.newVisible == "详细收款流水"
  4218. ? this.state.waterData : this.state.newVisible == "工时详情"
  4219. ? this.state.timeDataList : this.state.newVisible == "催款详情"
  4220. ? this.state.cuiDataList : this.state.newVisible == "项目进度"
  4221. ? this.state.proDataList : this.state.newVisible == "公出详细列表"
  4222. && this.state.pubDataList
  4223. }
  4224. pagination={false}
  4225. scroll={{ x: "max-content", y: 0 }}
  4226. size="small"
  4227. onRowClick={this.tableonRowClick.bind(this)}
  4228. />
  4229. {
  4230. this.state.newVisible == "开票历史记录" &&
  4231. <div className="clearfix" style={{ marginTop: "20px" }}>
  4232. <FormItem
  4233. className="half-item"
  4234. {...formItemLayout}
  4235. label={<span style={{ fontSize: "14px" }}>开票总计</span>}
  4236. >
  4237. <span>{this.state.sum + "(万元)"}</span>
  4238. </FormItem>
  4239. </div>
  4240. }
  4241. {
  4242. this.state.newVisible == "开票历史记录" &&
  4243. <Button
  4244. type="primary"
  4245. style={{
  4246. float: "right",
  4247. position: "absolute",
  4248. top: "-40px",
  4249. right: "100px",
  4250. }}
  4251. loading={this.state.exportPendingLoading}
  4252. onClick={() => { this.exportKaip() }}
  4253. >
  4254. 导出
  4255. </Button>
  4256. }
  4257. {
  4258. this.state.newVisible == "开票历史记录" &&
  4259. <ReactToPrint
  4260. trigger={() => (
  4261. <Button type="primary"
  4262. style={{
  4263. float: "right",
  4264. position: "absolute",
  4265. top: "-40px",
  4266. right: "10px",
  4267. }}
  4268. >打印</Button>
  4269. )}
  4270. content={() => this.refs.kaiPiao}
  4271. />
  4272. }
  4273. {
  4274. this.state.newVisible == "详细收款流水" &&
  4275. <div className="clearfix" style={{ marginTop: "20px" }}>
  4276. <FormItem
  4277. className="half-item"
  4278. {...formItemLayout}
  4279. label={<span style={{ fontSize: "14px" }}>总计金额</span>}
  4280. >
  4281. <span>{this.state.waterSum + "(万元)"}</span>
  4282. </FormItem>
  4283. </div>
  4284. }
  4285. {
  4286. this.state.newVisible == "详细收款流水" &&
  4287. <Button
  4288. type="primary"
  4289. style={{
  4290. float: "right",
  4291. position: "absolute",
  4292. top: "-40px",
  4293. right: "100px",
  4294. }}
  4295. loading={this.state.exportPendingLoading}
  4296. onClick={() => { this.exportWater() }}
  4297. >
  4298. 导出
  4299. </Button>
  4300. }
  4301. {
  4302. this.state.newVisible == "详细收款流水" &&
  4303. <ReactToPrint
  4304. trigger={() => (
  4305. <Button
  4306. type="primary"
  4307. style={{
  4308. float: "right",
  4309. position: "absolute",
  4310. top: "-40px",
  4311. right: "10px",
  4312. }}
  4313. >
  4314. 打印
  4315. </Button>
  4316. )}
  4317. content={() => this.refs.shouKuan}
  4318. />
  4319. }
  4320. {
  4321. this.state.newVisible == "工时详情" &&
  4322. <Button
  4323. type="primary"
  4324. style={{
  4325. float: "right",
  4326. position: "absolute",
  4327. top: "-40px",
  4328. right: "100px",
  4329. }}
  4330. loading={this.state.exportPendingLoading}
  4331. onClick={() => { this.exportTime() }}
  4332. >
  4333. 导出
  4334. </Button>
  4335. }
  4336. {
  4337. this.state.newVisible == "工时详情" &&
  4338. <ReactToPrint
  4339. trigger={() => (
  4340. <Button
  4341. type="primary"
  4342. style={{
  4343. float: "right",
  4344. position: "absolute",
  4345. top: "-40px",
  4346. right: "10px",
  4347. }}
  4348. >
  4349. 打印
  4350. </Button>
  4351. )}
  4352. content={() => this.refs.all}
  4353. />
  4354. }
  4355. {
  4356. this.state.newVisible == "项目进度" &&
  4357. <span style={{ display: "block", marginTop: 10, color: "red" }}>
  4358. 外包(内部)价格总计(万元):{this.state.totalWaibao}
  4359. </span>
  4360. }
  4361. {
  4362. this.state.newVisible == "项目进度" &&
  4363. <Button
  4364. type="primary"
  4365. style={{
  4366. float: "right",
  4367. position: "absolute",
  4368. top: "-40px",
  4369. right: "100px",
  4370. }}
  4371. loading={this.state.exportPendingLoading}
  4372. onClick={() => { this.exportPro() }}
  4373. >
  4374. 导出
  4375. </Button>
  4376. }
  4377. {
  4378. this.state.newVisible == "项目进度" &&
  4379. <ReactToPrint
  4380. trigger={() => (
  4381. <Button
  4382. type="primary"
  4383. style={{
  4384. float: "right",
  4385. position: "absolute",
  4386. top: "-40px",
  4387. right: "10px",
  4388. }}
  4389. >
  4390. 打印
  4391. </Button>
  4392. )}
  4393. content={() => this.refs.all}
  4394. />
  4395. }
  4396. {
  4397. this.state.newVisible == "公出详细列表" &&
  4398. <Button
  4399. type="primary"
  4400. style={{
  4401. float: "right",
  4402. position: "absolute",
  4403. top: "-90px",
  4404. right: "100px",
  4405. }}
  4406. loading={this.state.exportPendingLoading}
  4407. onClick={() => { this.pubexportExec() }}
  4408. >
  4409. 导出
  4410. </Button>
  4411. }
  4412. {
  4413. this.state.newVisible == "公出详细列表" &&
  4414. <ReactToPrint
  4415. trigger={() => (
  4416. <Button
  4417. type="primary"
  4418. style={{
  4419. float: "right",
  4420. position: "absolute",
  4421. top: "-90px",
  4422. right: "10px",
  4423. }}
  4424. >
  4425. 打印
  4426. </Button>
  4427. )}
  4428. content={() => this.refs.all}
  4429. />
  4430. }
  4431. </div>
  4432. }
  4433. </div>
  4434. </Spin>
  4435. </Modal>
  4436. }
  4437. <textarea id="copyText" style={{ opacity: 0 }} />
  4438. </div>
  4439. );
  4440. },
  4441. });
  4442. export default ShouKuang;