myTask.jsx 258 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468
  1. import React from 'react'
  2. import $ from 'jquery'
  3. import moment from 'moment'
  4. import Picture from '@/manageCenter/publicComponent/picture'
  5. import '@/manageCenter/financialManage/distribute/public.less'
  6. import '@/manageCenter/financialManage/distribute/shouKuan.less'
  7. import OrderDetail from '../../order/orderNew/changeComponent/orderDetail'
  8. import ResolutionDetail from '@/resolutionDetail'
  9. import {Button,
  10. Form,
  11. Input,
  12. Select,
  13. Spin,
  14. Table,
  15. message,
  16. DatePicker,
  17. Modal,
  18. Radio,
  19. Cascader,
  20. Popconfirm,
  21. Switch,
  22. Tabs,
  23. Col,
  24. Icon,
  25. Upload,
  26. Tag, Row,
  27. } from 'antd'
  28. import Assign from '@/manageCenter/publicComponent/assign'
  29. import { areaSelect } from '@/NewDicProvinceList'
  30. import { ChooseList } from '../../order/orderNew/chooseList'
  31. import OrderRiZi from '@/orderRiZi.jsx'
  32. import './table.less'
  33. import {getMaterialStatus,
  34. getUrgentStatus,
  35. getProcessStatus,
  36. getApproval,
  37. getTaskStatus,
  38. getLiquidationStatus,
  39. splitUrl,
  40. getboutique,
  41. ShowModal,
  42. getRefundStatus,
  43. getProjectName} from '@/tools'
  44. import {cuiJieDian,projectStatusCascader } from '@/dataDic.js'
  45. import ShowModalDiv from '@/showModal.jsx';
  46. import NowProjectStatus from '../../../common/nowProjectStatus';
  47. import DeclarationProgress from '../../../../component/common/declarationProgress';
  48. import CheckProject from '../../components/checkProject';
  49. import NewSupplier from './newSupplier';
  50. import ImgList from "../../../common/imgList";
  51. import OperationPayNode from "./operationPayNode";
  52. import PatentSchedule from './patentSchedule';
  53. import ProjectDetailsReadOnly from "../../../common/projectDetailsReadOnly";
  54. const confirm = Modal.confirm
  55. const FormItem = Form.Item
  56. const { TabPane } = Tabs
  57. const { TextArea } = Input
  58. const { Option } = Select
  59. const PicturesWall = React.createClass({
  60. getInitialState() {
  61. return {
  62. fileList: [],
  63. }
  64. },
  65. handleChange(info) {
  66. let fileList = info.fileList
  67. this.setState({
  68. fileList,
  69. })
  70. this.props.fileList(fileList)
  71. },
  72. componentWillReceiveProps(nextProps) {
  73. this.state.fileList = nextProps.pictureUrl
  74. this.state.pojectApplicationUrl = undefined
  75. },
  76. render() {
  77. const { fileList } = this.state
  78. return (
  79. <div style={{ display: 'inline-block' }}>
  80. <ImgList
  81. domId={this.props.domId}
  82. uploadConfig={{
  83. action:globalConfig.context + '/api/admin/outsourceOrg/uploadOutsourceFile',
  84. multiple:true,
  85. data:{ sign: 'order_outsource' },
  86. listType:"picture-card",
  87. }}
  88. onChange={(infor)=>{
  89. this.handleChange(infor)
  90. }}
  91. fileList={fileList}
  92. />
  93. </div>
  94. )
  95. },
  96. })
  97. const Task = React.createClass({
  98. loadData(pageNo) {
  99. this.state.data = []
  100. this.setState({
  101. page: pageNo,
  102. loading: true,
  103. })
  104. $.ajax({
  105. method: 'get',
  106. dataType: 'json',
  107. crossDomain: false,
  108. url: globalConfig.context + '/api/admin/orderProject/orderTaskList',
  109. data: {
  110. pageNo: pageNo || 1,
  111. pageSize: this.state.pagination.pageSize,
  112. specially: 0, //个人
  113. name: this.state.nameSearch, //客户名称
  114. depId: this.state.departmenttSearch, //订单部门
  115. orderNo: this.state.orderNoSearch, //订单编号
  116. contractNo: this.state.contractNoSearch, //合同编号
  117. taskId: this.state.taskNoSearch, //项目编号
  118. taskStatus: this.state.taskStatuSearch, //项目状态
  119. projectStatus: this.state.projectStatusSearch && this.state.projectStatusSearch.length > 0 ?
  120. (typeof this.state.projectStatusSearch[0] === 'string' ? this.state.projectStatusSearch[1] : this.state.projectStatusSearch[0]) : undefined, //项目状态
  121. adminName: this.state.adminName, //项目受理人
  122. approval: this.state.approvalSearch, //特批状态搜索
  123. outsourceStatus:
  124. this.state.outsourceStatusSearch >= 999
  125. ? undefined
  126. : this.state.outsourceStatusSearch, //外包状态搜索
  127. },
  128. success: function (data) {
  129. ShowModal(this)
  130. let theArr = []
  131. if (!data.data || !data.data.list) {
  132. if (data.error && data.error.length) {
  133. message.warning(data.error[0].message)
  134. }
  135. } else {
  136. for (let i = 0; i < data.data.list.length; i++) {
  137. let thisdata = data.data.list[i];
  138. thisdata.key = i;
  139. thisdata.userName = thisdata.taskName.substring(0, 5) === '软件著作权'
  140. ? thisdata.userName +
  141. '(' +
  142. thisdata.commodityQuantity.toString() +
  143. '/' +
  144. thisdata.alreadyNumber +
  145. ')'
  146. : thisdata.userName;
  147. theArr.push(thisdata)
  148. }
  149. }
  150. this.state.pagination.current = data.data.pageNo
  151. this.state.pagination.total = data.data.totalCount
  152. if (data.data && data.data.list && !data.data.list.length) {
  153. this.state.pagination.current = 0
  154. this.state.pagination.total = 0
  155. }
  156. this.setState({
  157. dataSource: theArr,
  158. pagination: this.state.pagination,
  159. })
  160. }.bind(this),
  161. }).always(
  162. function () {
  163. this.setState({
  164. loading: false,
  165. })
  166. }.bind(this)
  167. )
  168. },
  169. getInitialState() {
  170. return {
  171. containOfficialFees:0,//官费缴费情况
  172. audit: 1,
  173. declarationBatch: 1,
  174. dataInfor: {},
  175. projectType: '', //项目分类
  176. paySubject: [],
  177. paySubjectName: '', //付款科目名称
  178. PayNodeCompany: [],
  179. thirdMaterial: 0, //第三方信息材料 0-无 1-有
  180. thirdUrgent: 0, //第三方信息加急状态
  181. thirdCompanyName: '',
  182. thirdUnitPrice: '',
  183. currentCompanyName: '', //当前选中供应商名称
  184. thirdQuantity: 1,
  185. payNodeQuantity: 1,
  186. thirdRemarks: '',
  187. customerArr: [],
  188. timeRecordparse:{},
  189. currentTotalPrice: 0, //当前修改页面的总价
  190. saveThirdList: [],
  191. orderData: [],
  192. orderNo: '',
  193. jiedian: [],
  194. jiedianNew: [],
  195. timeVisible: false,
  196. ThirdListVisible: false,
  197. PayNodeVisible: false, //新增付款节点
  198. searchMore: true,
  199. assignVisible: false,
  200. releaseDate: [],
  201. patentType: -1,
  202. patentNameType: -1,
  203. startType: 0, //外包供应商类型
  204. // 判断是否是退回给咨询师经理
  205. flag: false,
  206. roleName: '',
  207. activeKey: '1',
  208. //特批状态搜索
  209. approvalSearch: undefined,
  210. testFlag: true,
  211. boHuivisible: false,
  212. selectedRowKeys: [],
  213. avisible: false,
  214. departmentArr: [],
  215. selectedRows: [],
  216. attachmentUrl: [],
  217. contactList: [],
  218. paginations: false,
  219. loading: false,
  220. pagination: {
  221. defaultCurrent: 1,
  222. defaultPageSize: 10,
  223. showQuickJumper: true,
  224. pageSize: 10,
  225. onChange: function (page) {
  226. this.loadData(page)
  227. }.bind(this),
  228. showTotal: function (total) {
  229. return '共' + total + '条数据'
  230. },
  231. },
  232. // 子组件改变的表格title数组
  233. changeList: undefined,
  234. columnsTime: [
  235. {
  236. title: '工作时长(小时)',
  237. dataIndex: 'hours',
  238. key: 'hours',
  239. },
  240. {
  241. title: '工作时间',
  242. dataIndex: 'taskDays',
  243. key: 'taskDays',
  244. },
  245. // {
  246. // title: "项目负责人",
  247. // dataIndex: "remarks",
  248. // key: "remarks"
  249. // },
  250. {
  251. title: '备注',
  252. dataIndex: 'remarks',
  253. key: 'remarks',
  254. },
  255. ],
  256. columns: [
  257. {
  258. title: '项目编号',
  259. dataIndex: 'id',
  260. key: 'id',
  261. render: (text, record) => {
  262. if (record.splitStatus == 2) {
  263. return <span>{record.splitSuper + '-' + record.splitId}</span>
  264. } else {
  265. return text
  266. }
  267. },
  268. },
  269. {
  270. title: '项目名称',
  271. dataIndex: 'taskName',
  272. key: 'taskName',
  273. render: (text) => {
  274. return text && text.length > 8 ? text.substr(0, 8) + '…' : text
  275. },
  276. },
  277. {
  278. title: '项目数量',
  279. dataIndex: 'commodityQuantity',
  280. key: 'commodityQuantity',
  281. },
  282. {
  283. title: '订单编号',
  284. dataIndex: 'orderNo',
  285. key: 'orderNo',
  286. },
  287. {
  288. title: '合同编号',
  289. dataIndex: 'contractNo',
  290. key: 'contractNo',
  291. },
  292. {
  293. title: '业务类别',
  294. dataIndex: 'cname',
  295. key: 'cname',
  296. },
  297. {
  298. title: '客户名称',
  299. dataIndex: 'userName',
  300. key: 'userName',
  301. className: 'userName',
  302. },
  303. {
  304. title: '分配状态',
  305. dataIndex: 'taskStatus',
  306. key: 'taskStatus',
  307. render: (text) => {
  308. return getTaskStatus(text)
  309. },
  310. },
  311. {
  312. title: '项目状态',
  313. dataIndex: 'projectStatus',
  314. key: 'projectStatus',
  315. render: (text) => {
  316. return getProjectName(parseInt(text))
  317. },
  318. },
  319. {
  320. title: '审核状态',
  321. dataIndex: 'outsourceStatus',
  322. key: 'outsourceStatus',
  323. render: (text,record) => {
  324. if(record.outsourceType === 1){
  325. return '供应商'
  326. }else{
  327. if (text === 0) {
  328. return <Tag color="#f50">外包待审核</Tag>
  329. } else if (text === 1) {
  330. return <Tag color="#87d068">外包已通过</Tag>
  331. } else if (text === 2) {
  332. return <Tag color="#2db7f5">外包被驳回</Tag>
  333. } else {
  334. return <div style={{textAlign:'center'}}>/</div>
  335. }
  336. return text
  337. }
  338. },
  339. },
  340. {
  341. title: '分配时间',
  342. dataIndex: 'taskDate',
  343. key: 'taskDate',
  344. },
  345. {
  346. title: '订单部门',
  347. dataIndex: 'depName',
  348. key: 'depName',
  349. },
  350. {
  351. title: '累计工时(小时)',
  352. dataIndex: 'hours',
  353. key: 'hours',
  354. },
  355. {
  356. title: "项目金额(万元)",
  357. dataIndex: "commodityPrice",
  358. key: "commodityPrice",
  359. },
  360. // {
  361. // title: "外包成本(万元)",
  362. // dataIndex: "costAmount",
  363. // key: "costAmount",
  364. // render: (text, record) => {
  365. // return (<span>
  366. // {
  367. // isNaN(parseFloat(text)) ? text : parseFloat(text)
  368. // }
  369. // </span>)
  370. // }
  371. // },
  372. {
  373. title: "已付(万元)",
  374. dataIndex: "partyAmount",
  375. key: "partyAmount",
  376. render: (text, record) => {
  377. return (<span>
  378. {
  379. isNaN(parseFloat(text)) ? text : parseFloat(text)
  380. }
  381. </span>)
  382. }
  383. },
  384. {
  385. title: '操作',
  386. dataIndex: 'caozuo',
  387. key: 'caozuo',
  388. render: (text, record) => {
  389. return (
  390. <div>
  391. <Button
  392. type="primary"
  393. onClick={(e) => {
  394. e.stopPropagation(), this.evaluate(record, '技术员')
  395. }}
  396. >
  397. 转交
  398. </Button>
  399. <Button
  400. type="primary"
  401. style={{ marginLeft: 10 }}
  402. onClick={(e) => {
  403. e.stopPropagation(),
  404. this.evaluate(record, '技术经理', true)
  405. }}
  406. >
  407. 回退
  408. </Button>
  409. <Button
  410. type="primary"
  411. style={{ margin: '0 10px' }}
  412. onClick={(e) => {
  413. e.stopPropagation(), this.okCancel(record)
  414. }}
  415. >
  416. 添加工时
  417. </Button>
  418. <Button
  419. type="primary"
  420. onClick={(e) => {
  421. e.stopPropagation()
  422. this.setState({
  423. timeVisible: true,
  424. })
  425. this.timeDetail(record)
  426. }}
  427. >
  428. 工时记录
  429. </Button>
  430. </div>
  431. )
  432. },
  433. },
  434. ],
  435. dataSource: [],
  436. searchTime: [],
  437. columnsX: [
  438. {
  439. title: '业务项目名称',
  440. dataIndex: 'commodityName',
  441. key: 'commodityName',
  442. },
  443. {
  444. title: '项目类别',
  445. dataIndex: 'cname',
  446. key: 'cname',
  447. },
  448. {
  449. title: '项目数量',
  450. dataIndex: 'commodityQuantity',
  451. key: 'commodityQuantity',
  452. render: (text, record) => {
  453. if (record.splitStatus == 1) {
  454. return (
  455. <span>
  456. {text}{' '}
  457. <Tag
  458. color="#108ee9"
  459. onClick={(e) => {
  460. e.stopPropagation()
  461. this.showRes(record)
  462. }}
  463. >
  464. 已拆
  465. </Tag>
  466. </span>
  467. )
  468. } else {
  469. return text
  470. }
  471. },
  472. },
  473. {
  474. title: '金额(万元)',
  475. dataIndex: 'commodityPrice',
  476. key: 'commodityPrice',
  477. render: (text, record) => {
  478. return (
  479. <span>
  480. {this.props.isZxs || text === -1 ? '***' : text}
  481. </span>
  482. )
  483. }
  484. },
  485. {
  486. title: '负责人',
  487. dataIndex: 'contacts',
  488. key: 'contacts',
  489. },
  490. {
  491. title: '负责人电话',
  492. dataIndex: 'contactsMobile',
  493. key: 'contactsMobile',
  494. },
  495. {
  496. title: '主要项目',
  497. dataIndex: 'main',
  498. key: 'main',
  499. render: (text) => {
  500. return text ? '是' : '否'
  501. },
  502. },
  503. {
  504. title: '项目说明',
  505. dataIndex: 'taskComment',
  506. key: 'taskComment',
  507. render: (text) => {
  508. return text && text.length > 8 ? text.substr(0, 8) + '…' : text
  509. },
  510. },
  511. ],
  512. columnsA: [
  513. {
  514. title: '流程',
  515. dataIndex: 'content',
  516. key: 'content',
  517. align: 'center',
  518. },
  519. {
  520. title: '操作人',
  521. dataIndex: 'aName',
  522. key: 'aName',
  523. align: 'center',
  524. },
  525. {
  526. title: '时间',
  527. dataIndex: 'createTimes',
  528. key: 'createTimes',
  529. align: 'center',
  530. },
  531. ],
  532. dataSourceX: [],
  533. dataSourceA: [],
  534. ContactsLists: [
  535. {
  536. title: '批次',
  537. dataIndex: 'num',
  538. key: 'num',
  539. },
  540. {
  541. title: '下证时间',
  542. dataIndex: 'licenceTimes',
  543. key: 'licenceTimes',
  544. render: (text, record) => {
  545. return (
  546. <div>
  547. <DatePicker
  548. style={{ marginTop: '5px' }}
  549. disabled={record.flag}
  550. showTime
  551. format="YYYY-MM-DD"
  552. onOk={() => {}}
  553. value={
  554. record.licenceTimes ? moment(record.licenceTimes) : null
  555. }
  556. onChange={(data, dataString) => {
  557. record.licenceTimes = dataString
  558. this.setState({ contactList: this.state.contactList })
  559. }}
  560. />
  561. </div>
  562. )
  563. },
  564. },
  565. {
  566. title: '下证数量',
  567. dataIndex: 'alreadyNumber',
  568. key: 'alreadyNumber',
  569. render: (text, record) => {
  570. return (
  571. <div>
  572. {
  573. <Input
  574. value={record.alreadyNumber}
  575. disabled={record.flag}
  576. placeholder="请输入下证数量"
  577. key={record.id}
  578. required="required"
  579. onChange={(e) => {
  580. record.alreadyNumber = e.target.value
  581. this.setState({ contactList: this.state.contactList })
  582. }}
  583. style={{ width: '120px' }}
  584. />
  585. }
  586. </div>
  587. )
  588. },
  589. },
  590. {
  591. title: '未下证数量',
  592. dataIndex: 'notCount',
  593. key: 'notCount',
  594. },
  595. {
  596. title: '操作',
  597. dataIndex: 'dels',
  598. key: 'dels',
  599. render: (text, record, index) => {
  600. return (
  601. <div>
  602. {
  603. <Popconfirm
  604. title="是否删除?"
  605. onConfirm={() => {
  606. this.confirmDelet(record)
  607. }}
  608. okText="删除"
  609. cancelText="不删除"
  610. >
  611. <Button
  612. style={{
  613. marginRight: '10px',
  614. color: '#ffffff',
  615. background: '#f00',
  616. border: 'none',
  617. }}
  618. >
  619. 删除
  620. </Button>
  621. </Popconfirm>
  622. }
  623. {record.flag ? (
  624. ''
  625. ) : (
  626. <Button
  627. type="primary"
  628. onClick={(e) => {
  629. e.stopPropagation(), this.contactSave(record, index)
  630. }}
  631. >
  632. 保存
  633. </Button>
  634. )}
  635. </div>
  636. )
  637. },
  638. },
  639. ],
  640. // 专利
  641. ContactsListsNew: [],
  642. //付款节点表头
  643. PayNodeTableColunms: [],
  644. }
  645. },
  646. /* 分派 */
  647. evaluate(record, nub, flag) {
  648. this.setState(
  649. {
  650. nub: nub,
  651. assignData: record,
  652. flag,
  653. },
  654. () => {
  655. this.setState({
  656. assignVisible: true,
  657. })
  658. }
  659. )
  660. },
  661. componentWillMount() {
  662. this.departmentList()
  663. this.loadData()
  664. },
  665. componentDidMount() {
  666. // this.setColor()
  667. },
  668. //用于判断 第三方信息表格显示
  669. projectTypeTabContent(projectType) {
  670. //0正常 1专利 2软著 3审计 this.state.startType 0外包 1供应商 外包时当普通单处理 projectType大于3的都用通用表格
  671. if(projectType === 0 || !projectType || this.state.startType === 0 || projectType > 3){
  672. this.setState({
  673. ContactsListsNew: [
  674. {
  675. title: '供应商名称',
  676. dataIndex: 'companyName',
  677. key: 'companyName',
  678. render: (text, record, index) => {
  679. if (text) {
  680. return <span>{text}</span>
  681. }
  682. },
  683. },
  684. {
  685. title: '单价(万元)',
  686. dataIndex: 'unitPrice',
  687. key: 'unitPrice',
  688. render: (text, record) => {
  689. if (text) {
  690. return <span>
  691. {
  692. isNaN(text) ? text : parseFloat(text)
  693. }
  694. </span>
  695. }
  696. },
  697. },
  698. {
  699. title: '数量',
  700. dataIndex: 'quantity',
  701. key: 'quantity',
  702. render: (text, record) => {
  703. if (text) {
  704. return <span>{text}</span>
  705. }
  706. },
  707. },
  708. {
  709. title: '总价(万元)',
  710. dataIndex: 'totalAmount',
  711. key: 'totalAmount',
  712. render: (text, record) => {
  713. return <span>
  714. {
  715. isNaN(text) ? text : parseFloat(text)
  716. }
  717. </span>
  718. },
  719. },
  720. {
  721. title: '备注',
  722. dataIndex: 'remarks',
  723. key: 'remarks',
  724. },
  725. {
  726. title: '操作',
  727. dataIndex: 'action',
  728. key: 'action',
  729. render: (text, record) => {
  730. return (
  731. <div>
  732. {/*外包审核通过后,咨询师/咨询经理可申请付款*/}
  733. {/*存在支付节点时不显示第三方的申请付款*/}
  734. {/*0-待审核 ,1-审核通过,2-审核拒绝 true [NULL]*/}
  735. {
  736. <Button disabled={
  737. !(this.props.isPreviewPay && (this.props.status === 1 || parseInt(this.props.startType) === 1) && this.props.dataSource.length === 0)
  738. } type="primary" onClick={() => {
  739. this.setState({
  740. previewPayVisible: true,
  741. previewPayInfor: record,
  742. })
  743. }}>
  744. 申请付款
  745. </Button>
  746. }
  747. <Popconfirm
  748. title="是否删除?"
  749. onConfirm={() => {
  750. this.confirmDeletNew(record)
  751. }}
  752. okText="删除"
  753. cancelText="不删除"
  754. >
  755. <Button
  756. onClick={(e) => {
  757. e.stopPropagation()
  758. }}
  759. style={{
  760. marginLeft: '10px',
  761. color: '#ffffff',
  762. background: '#f00',
  763. border: 'none',
  764. }}
  765. >
  766. 删除
  767. </Button>
  768. </Popconfirm>
  769. </div>
  770. )
  771. },
  772. },
  773. ],
  774. })
  775. }else if(projectType === 2){ //2软著
  776. this.setState({
  777. ContactsListsNew: [
  778. {
  779. title: '供应商名称',
  780. dataIndex: 'companyName',
  781. key: 'companyName',
  782. render: (text, record, index) => {
  783. if (text) {
  784. return <span>{text}</span>
  785. }
  786. },
  787. },
  788. {
  789. title: '单价(万元)',
  790. dataIndex: 'unitPrice',
  791. key: 'unitPrice',
  792. render: (text, record) => {
  793. if (text) {
  794. return <span>
  795. {
  796. isNaN(text) ? text : parseFloat(text)
  797. }
  798. </span>
  799. }
  800. },
  801. },
  802. {
  803. title: '数量',
  804. dataIndex: 'quantity',
  805. key: 'quantity',
  806. render: (text, record) => {
  807. if (text) {
  808. return <span>{text}</span>
  809. }
  810. },
  811. },
  812. {
  813. title: '总价(万元)',
  814. dataIndex: 'totalAmount',
  815. key: 'totalAmount',
  816. render: (text, record) => {
  817. return <span>
  818. {
  819. isNaN(text) ? text : parseFloat(text)
  820. }
  821. </span>
  822. },
  823. },
  824. {
  825. title: '材料',
  826. dataIndex: 'material',
  827. key: 'material',
  828. render: (text, record) => {
  829. return getMaterialStatus(text)
  830. },
  831. },
  832. {
  833. title: '加急',
  834. dataIndex: 'urgent',
  835. key: 'urgent',
  836. render: (text, record) => {
  837. return getUrgentStatus(text)
  838. },
  839. },
  840. {
  841. title: '操作',
  842. dataIndex: 'action',
  843. key: 'action',
  844. render: (text, record) => {
  845. return (
  846. <div>
  847. {/*外包审核通过后,咨询师/咨询经理可申请付款*/}
  848. {/*存在支付节点时不显示第三方的申请付款*/}
  849. {/*0-待审核 ,1-审核通过,2-审核拒绝 true [NULL]*/}
  850. {
  851. <Button disabled={
  852. !(this.props.isPreviewPay && (this.props.status === 1 || parseInt(this.props.startType) === 1) && this.props.dataSource.length === 0)
  853. } type="primary" onClick={() => {
  854. this.setState({
  855. previewPayVisible: true,
  856. previewPayInfor: record,
  857. })
  858. }}>
  859. 申请付款
  860. </Button>
  861. }
  862. <Popconfirm
  863. title="是否删除?"
  864. onConfirm={() => {
  865. this.confirmDeletNew(record)
  866. }}
  867. okText="删除"
  868. cancelText="不删除"
  869. >
  870. <Button
  871. onClick={(e) => {
  872. e.stopPropagation()
  873. }}
  874. style={{
  875. marginLeft: '10px',
  876. color: '#ffffff',
  877. background: '#f00',
  878. border: 'none',
  879. }}
  880. >
  881. 删除
  882. </Button>
  883. </Popconfirm>
  884. </div>
  885. )
  886. },
  887. },
  888. ],
  889. })
  890. }else if(projectType === 1){ //1专利
  891. if(this.state.patentType === 0){ //专利申请
  892. this.setState({
  893. ContactsListsNew: [
  894. {
  895. title: '供应商名称',
  896. dataIndex: 'companyName',
  897. key: 'companyName',
  898. render: (text, record, index) => {
  899. if (text) {
  900. return <span>{text}</span>
  901. }
  902. },
  903. },
  904. {
  905. title: '单价(万元)',
  906. dataIndex: 'unitPrice',
  907. key: 'unitPrice',
  908. render: (text, record) => {
  909. if (text) {
  910. return <span>
  911. {
  912. isNaN(text) ? text : parseFloat(text)
  913. }
  914. </span>
  915. }
  916. },
  917. },
  918. {
  919. title: '数量',
  920. dataIndex: 'quantity',
  921. key: 'quantity',
  922. render: (text, record) => {
  923. if (text) {
  924. return <span>{text}</span>
  925. }
  926. },
  927. },
  928. // {
  929. // title: "官费",
  930. // dataIndex: "officialCost",
  931. // key: "officialCost",
  932. // render: (text) => {
  933. // return text === 1 ? '有官费' : '无官费'
  934. // },
  935. // },
  936. {
  937. title: "费减",
  938. dataIndex: "costReduction",
  939. key: "costReduction",
  940. render: (text) => {
  941. return text === 1 ? '有费减' : '无费减'
  942. },
  943. },
  944. {
  945. title: '总价(万元)',
  946. dataIndex: 'totalAmount',
  947. key: 'totalAmount',
  948. render: (text, record) => {
  949. return <span>
  950. {
  951. isNaN(text) ? text : parseFloat(text)
  952. }
  953. </span>
  954. },
  955. },
  956. {
  957. title: '备注',
  958. dataIndex: 'remarks',
  959. key: 'remarks',
  960. },
  961. {
  962. title: '操作',
  963. dataIndex: 'action',
  964. key: 'action',
  965. render: (text, record) => {
  966. return (
  967. <div>
  968. {/*外包审核通过后,咨询师/咨询经理可申请付款*/}
  969. {/*存在支付节点时不显示第三方的申请付款*/}
  970. {/*0-待审核 ,1-审核通过,2-审核拒绝 true [NULL]*/}
  971. {
  972. <Button disabled={
  973. !(this.props.isPreviewPay && (this.props.status === 1 || parseInt(this.props.startType) === 1) && this.props.dataSource.length === 0)
  974. } type="primary" onClick={() => {
  975. this.setState({
  976. previewPayVisible: true,
  977. previewPayInfor: record,
  978. })
  979. }}>
  980. 申请付款
  981. </Button>
  982. }
  983. {
  984. <Button
  985. type="primary"
  986. style={{
  987. marginLeft: '10px',
  988. }}
  989. disabled={!(this.props.isPreviewPay && (this.props.status === 1 || parseInt(this.props.startType) === 1) && this.props.dataSource.length === 0)}
  990. onClick={() => {
  991. this.setState({
  992. previewPayVisible: true,
  993. previewPayInfor: record,
  994. })
  995. }}>
  996. 付官费
  997. </Button>
  998. }
  999. <Popconfirm
  1000. title="是否删除?"
  1001. onConfirm={() => {
  1002. this.confirmDeletNew(record)
  1003. }}
  1004. okText="删除"
  1005. cancelText="不删除"
  1006. >
  1007. <Button
  1008. onClick={(e) => {
  1009. e.stopPropagation()
  1010. }}
  1011. style={{
  1012. marginLeft: '10px',
  1013. color: '#ffffff',
  1014. background: '#f00',
  1015. border: 'none',
  1016. }}
  1017. >
  1018. 删除
  1019. </Button>
  1020. </Popconfirm>
  1021. </div>
  1022. )
  1023. },
  1024. },
  1025. ]
  1026. })
  1027. }else{
  1028. this.setState({
  1029. ContactsListsNew: [
  1030. {
  1031. title: '供应商名称',
  1032. dataIndex: 'companyName',
  1033. key: 'companyName',
  1034. render: (text, record, index) => {
  1035. if (text) {
  1036. return <span>{text}</span>
  1037. }
  1038. },
  1039. },
  1040. {
  1041. title: '单价(万元)',
  1042. dataIndex: 'unitPrice',
  1043. key: 'unitPrice',
  1044. render: (text, record) => {
  1045. if (text) {
  1046. return <span>
  1047. {
  1048. isNaN(text) ? text : parseFloat(text)
  1049. }
  1050. </span>
  1051. }
  1052. },
  1053. },
  1054. {
  1055. title: '数量',
  1056. dataIndex: 'quantity',
  1057. key: 'quantity',
  1058. render: (text, record) => {
  1059. if (text) {
  1060. return <span>{text}</span>
  1061. }
  1062. },
  1063. },
  1064. {
  1065. title: '总价(万元)',
  1066. dataIndex: 'totalAmount',
  1067. key: 'totalAmount',
  1068. render: (text, record) => {
  1069. return <span>
  1070. {
  1071. isNaN(text) ? text : parseFloat(text)
  1072. }
  1073. </span>
  1074. },
  1075. },
  1076. {
  1077. title: '备注',
  1078. dataIndex: 'remarks',
  1079. key: 'remarks',
  1080. },
  1081. {
  1082. title: '操作',
  1083. dataIndex: 'action',
  1084. key: 'action',
  1085. render: (text, record) => {
  1086. return (
  1087. <div>
  1088. {/*外包审核通过后,咨询师/咨询经理可申请付款*/}
  1089. {/*存在支付节点时不显示第三方的申请付款*/}
  1090. {/*0-待审核 ,1-审核通过,2-审核拒绝 true [NULL]*/}
  1091. {
  1092. <Button disabled={
  1093. !(this.props.isPreviewPay && (this.props.status === 1 || parseInt(this.props.startType) === 1) && this.props.dataSource.length === 0)
  1094. } type="primary" onClick={() => {
  1095. this.setState({
  1096. previewPayVisible: true,
  1097. previewPayInfor: record,
  1098. })
  1099. }}>
  1100. 申请付款
  1101. </Button>
  1102. }
  1103. <Popconfirm
  1104. title="是否删除?"
  1105. onConfirm={() => {
  1106. this.confirmDeletNew(record)
  1107. }}
  1108. okText="删除"
  1109. cancelText="不删除"
  1110. >
  1111. <Button
  1112. onClick={(e) => {
  1113. e.stopPropagation()
  1114. }}
  1115. style={{
  1116. marginLeft: '10px',
  1117. color: '#ffffff',
  1118. background: '#f00',
  1119. border: 'none',
  1120. }}
  1121. >
  1122. 删除
  1123. </Button>
  1124. </Popconfirm>
  1125. </div>
  1126. )
  1127. },
  1128. },
  1129. ]
  1130. })
  1131. }
  1132. }else if(projectType === 3){ //3审计
  1133. this.setState({
  1134. ContactsListsNew: [
  1135. {
  1136. title: '供应商名称',
  1137. dataIndex: 'companyName',
  1138. key: 'companyName',
  1139. render: (text, record, index) => {
  1140. if (text) {
  1141. return <span>{text}</span>
  1142. }
  1143. },
  1144. },
  1145. {
  1146. title: '单价(万元)',
  1147. dataIndex: 'unitPrice',
  1148. key: 'unitPrice',
  1149. render: (text, record) => {
  1150. if (text) {
  1151. return <span>
  1152. {
  1153. isNaN(text) ? text : parseFloat(text)
  1154. }
  1155. </span>
  1156. }
  1157. },
  1158. },
  1159. {
  1160. title: '数量',
  1161. dataIndex: 'quantity',
  1162. key: 'quantity',
  1163. render: (text, record) => {
  1164. if (text) {
  1165. return <span>{text}</span>
  1166. }
  1167. },
  1168. },
  1169. {
  1170. title: '总价(万元)',
  1171. dataIndex: 'totalAmount',
  1172. key: 'totalAmount',
  1173. render: (text, record) => {
  1174. return <span>
  1175. {
  1176. isNaN(text) ? text : parseFloat(text)
  1177. }
  1178. </span>
  1179. },
  1180. },
  1181. {
  1182. title: '审计',
  1183. dataIndex: 'audit',
  1184. key: 'audit',
  1185. render: (text, record) => {
  1186. if (text) {
  1187. return <span>{text===0?'无审计':text===1?'年审':'专审'}</span>
  1188. }
  1189. },
  1190. },
  1191. {
  1192. title: '公司资产(万元)',
  1193. dataIndex: 'assets',
  1194. key: 'assets',
  1195. render: (text, record) => {
  1196. if (text) {
  1197. return <span>{text}</span>
  1198. }
  1199. },
  1200. },
  1201. {
  1202. title: '收入(万元)',
  1203. dataIndex: 'income',
  1204. key: 'income',
  1205. render: (text, record) => {
  1206. return <span>
  1207. {
  1208. isNaN(text) ? text : parseFloat(text)
  1209. }
  1210. </span>
  1211. },
  1212. },
  1213. {
  1214. title: '操作',
  1215. dataIndex: 'action',
  1216. key: 'action',
  1217. render: (text, record) => {
  1218. return (
  1219. <div>
  1220. {/*外包审核通过后,咨询师/咨询经理可申请付款*/}
  1221. {/*存在支付节点时不显示第三方的申请付款*/}
  1222. {/*0-待审核 ,1-审核通过,2-审核拒绝 true [NULL]*/}
  1223. {
  1224. <Button disabled={
  1225. !(this.props.isPreviewPay && (this.props.status === 1 || parseInt(this.props.startType) === 1) && this.props.dataSource.length === 0)
  1226. } type="primary" onClick={() => {
  1227. this.setState({
  1228. previewPayVisible: true,
  1229. previewPayInfor: record,
  1230. })
  1231. }}>
  1232. 申请付款
  1233. </Button>
  1234. }
  1235. <Popconfirm
  1236. title="是否删除?"
  1237. onConfirm={() => {
  1238. this.confirmDeletNew(record)
  1239. }}
  1240. okText="删除"
  1241. cancelText="不删除"
  1242. >
  1243. <Button
  1244. onClick={(e) => {
  1245. e.stopPropagation()
  1246. }}
  1247. style={{
  1248. marginLeft: '10px',
  1249. color: '#ffffff',
  1250. background: '#f00',
  1251. border: 'none',
  1252. }}
  1253. >
  1254. 删除
  1255. </Button>
  1256. </Popconfirm>
  1257. </div>
  1258. )
  1259. },
  1260. },
  1261. ]
  1262. })
  1263. }
  1264. this.setState({
  1265. //付款节点表头
  1266. PayNodeTableColunms: [
  1267. {
  1268. title: '供应商名称',
  1269. dataIndex: 'companyName',
  1270. key: 'companyName',
  1271. render: (text, record, index) => {
  1272. if (text) {
  1273. return <span>{text}</span>
  1274. }
  1275. },
  1276. },
  1277. {
  1278. title: '付款科目',
  1279. dataIndex: 'dunType',
  1280. key: 'dunType',
  1281. render: (text, record) => {
  1282. if (text) {
  1283. return <span>{text}</span>
  1284. }
  1285. },
  1286. },
  1287. {
  1288. title: '付款时间',
  1289. dataIndex: 'partyTimes',
  1290. key: 'partyTimes',
  1291. render: (text, record) => {
  1292. return <span>{text ? text : '/'}</span>
  1293. },
  1294. },
  1295. {
  1296. title: '数量',
  1297. dataIndex: 'quantity',
  1298. key: 'quantity',
  1299. render: (text, record) => {
  1300. if (text) {
  1301. return <span>{text}</span>
  1302. }
  1303. },
  1304. },
  1305. {
  1306. title: '总价(万元)',
  1307. dataIndex: 'totalAmount',
  1308. key: 'totalAmount',
  1309. render: (text, record) => {
  1310. return <span>
  1311. {
  1312. isNaN(text) ? text : parseFloat(text)
  1313. }
  1314. </span>
  1315. },
  1316. },
  1317. {
  1318. title: '已付',
  1319. dataIndex: 'partyAmount',
  1320. key: 'partyAmount',
  1321. render: (text, record) => {
  1322. if (text) {
  1323. return <span>{text}</span>
  1324. }
  1325. },
  1326. },
  1327. {
  1328. title: '操作',
  1329. dataIndex: 'dels',
  1330. key: 'dels',
  1331. render: (text, record, index) => {
  1332. return (
  1333. <div>
  1334. <Popconfirm
  1335. title="是否删除?"
  1336. onConfirm={() => {
  1337. this.payNodeConfirmDeletNew(record)
  1338. }}
  1339. okText="删除"
  1340. cancelText="不删除"
  1341. >
  1342. <Button
  1343. onClick={(e) => {
  1344. e.stopPropagation()
  1345. }}
  1346. style={{
  1347. marginRight: '10px',
  1348. color: '#ffffff',
  1349. background: '#f00',
  1350. border: 'none',
  1351. }}
  1352. >
  1353. 删除
  1354. </Button>
  1355. </Popconfirm>
  1356. </div>
  1357. )
  1358. },
  1359. },
  1360. ],
  1361. })
  1362. },
  1363. setColor() {
  1364. $('.userName span').after(
  1365. "(<span class='ruanzhu'>软著数</span>/<span class='xiazheng'>下证数</span>)"
  1366. )
  1367. },
  1368. // 获取csort下的数据
  1369. getCsortData(cSort) {
  1370. return cuiJieDian.map((item) => {
  1371. if (item.value == cSort) {
  1372. this.setState({
  1373. paySubject: item.children,
  1374. })
  1375. }
  1376. })
  1377. },
  1378. async tableRowClick(record) {
  1379. this.state.RowData = record
  1380. let str = record.taskName
  1381. let test = str.indexOf('会员')
  1382. if (test == -1) {
  1383. this.setState({
  1384. isHuiyuan: false,
  1385. })
  1386. } else {
  1387. this.setState({
  1388. isHuiyuan: true,
  1389. })
  1390. }
  1391. // if (record.taskName.substring(0, 5) === '软件著作权') {
  1392. // this.setState({
  1393. // speVisible: true,
  1394. // id: record.id,
  1395. // splitStatus: record.splitStatus,
  1396. // splitSuper: record.splitSuper,
  1397. // splitId: record.splitId,
  1398. // dataArr: record,
  1399. // commodityQuantity: record.commodityQuantity,
  1400. // })
  1401. // } else {
  1402. // this.setState({
  1403. // visible: true,
  1404. // splitStatus: record.splitStatus,
  1405. // splitSuper: record.splitSuper,
  1406. // splitId: record.splitId,
  1407. // })
  1408. // }
  1409. this.setState({
  1410. visible: true,
  1411. splitStatus: record.splitStatus,
  1412. splitSuper: record.splitSuper,
  1413. splitId: record.splitId,
  1414. })
  1415. this.setState({
  1416. projectType: record.projectType,
  1417. isIso: record.taskName.indexOf("贯标") !== -1,
  1418. orderNo: record.orderNo,
  1419. id:record.id,
  1420. tid:record.id,
  1421. })
  1422. await this.xiangqing(record.id);
  1423. // 获取Csort
  1424. await this.getCsortData(localStorage.getItem('cSort'))
  1425. this.xiangqings(record.orderNo)
  1426. this.xiangmu(record.orderNo)
  1427. this.loaduserss(record)
  1428. // 获取第三方信息表格
  1429. // this.thirdTable(record.id);
  1430. //获取支付节点信息表格
  1431. // this.payNodeTable(record.id);
  1432. //查看外包状态日志
  1433. this.getSelectOutsourceLog(record.id);
  1434. this.projectTypeTabContent(record.projectType);
  1435. },
  1436. //点击修改项目详情
  1437. tijiaoOk(status='',fn) {
  1438. let attachmentUrls = []
  1439. if (this.state.attachmentUrl.length) {
  1440. let picArr = []
  1441. this.state.attachmentUrl.map(function (item) {
  1442. if (item.response && item.response.data && item.response.data.length) {
  1443. picArr.push(item.response.data)
  1444. }
  1445. })
  1446. attachmentUrls = picArr.join(',')
  1447. }
  1448. this.setState({
  1449. loading: true,
  1450. })
  1451. $.ajax({
  1452. method: 'POST',
  1453. dataType: 'json',
  1454. crossDomain: false,
  1455. url: globalConfig.context + '/api/admin/orderProject/updateOrderTask',
  1456. data: {
  1457. id: this.state.id, //项目编号
  1458. orderNo: this.state.orderNo, //订单编号
  1459. projectStatus: status || this.state.projectStatus, //项目状态
  1460. taskStatus: this.state.taskStatus, //项目状态
  1461. taskComment: this.state.taskComment, //说明
  1462. startDate: this.state.startDate, //启动日期
  1463. endDate: this.state.endDate, //结束日期
  1464. acceptDate: this.state.acceptDate, //受理日期
  1465. reviewDate: this.state.reviewDate, //评审日期
  1466. publicityDate: this.state.publicityDate, //公示日期
  1467. licenceDate: this.state.licenceDate, //发证日期
  1468. attachmentUrl: attachmentUrls.length ? attachmentUrls : '', //附件
  1469. contacts: this.state.contacts, //联系人
  1470. contactMobile: this.state.contactMobile, //联系人电话
  1471. legalPerson: this.state.legalPerson, //法人
  1472. legalPersonTel: this.state.legalPersonTel, //法人电话
  1473. certificateNumber: this.state.certificateNumber, //证书编号
  1474. status: this.state.status, //状态
  1475. formRetrieve: this.state.formRetrieve, //满意度表格
  1476. taskRefund: this.state.taskRefund, //退单
  1477. refundContent: this.state.refundContent, //退单信息
  1478. retrieveContent: this.state.retrieveContent, //回收信息
  1479. locationProvince: this.state.ProvinceCity[0],
  1480. locationCity: this.state.ProvinceCity[1],
  1481. locationArea: this.state.ProvinceCity[2],
  1482. postalAddress: this.state.postalAddress, //详细地址
  1483. arrivalMoney: this.state.arrivalMoney, //是否到款
  1484. setUpAmount: this.state.setUpAmount, //立项金额
  1485. declareUser: this.state.declareUser, //账号
  1486. declarePwd: this.state.declarePwd, //密码
  1487. outsourceName: this.state.outsourceName, //外包公司
  1488. outsourcePrice: this.state.outsourcePrice, //外包价格
  1489. declarationBatch: this.state.declarationBatch,
  1490. specialComment: this.state.specialComment || undefined,//特别说明
  1491. setUpStatus: typeof this.state.setUpStatus === 'number' ? this.state.setUpStatus : undefined,//是否立项
  1492. setUpTime: this.state.setUpTime || undefined,//立项时间
  1493. highTechStatus: typeof this.state.highTechStatus === 'number' ? this.state.highTechStatus : undefined,//是否高新
  1494. spotCheckStatus: typeof this.state.spotCheckStatus === 'number' ? this.state.spotCheckStatus : undefined,//是否抽查 0否 1未通过 2通过
  1495. urgentDay: typeof this.state.urgentDay === 'number' ? this.state.urgentDay : undefined,//加急天数
  1496. ifMaterial: typeof this.state.ifMaterial === 'number' ? this.state.ifMaterial : undefined,//有无材料
  1497. acceptCount: this.state.acceptCount || undefined,
  1498. certificatesCount: this.state.certificatesCount || undefined,
  1499. rejectCount: this.state.rejectCount || undefined,
  1500. certificationCorporate: this.state.certificationCorporate || undefined,//认证费公司
  1501. certificationFee: this.state.certificationFee,//认证费
  1502. ifCertificationFee: this.state.ifCertificationFee,//是否包含认证费
  1503. },
  1504. }).done(
  1505. function (data) {
  1506. this.setState({
  1507. loading: false,
  1508. })
  1509. if (!data.error.length) {
  1510. message.success('保存成功!')
  1511. fn ? fn():this.visitCancel();
  1512. } else {
  1513. message.warning(data.error[0].message)
  1514. }
  1515. }.bind(this)
  1516. )
  1517. },
  1518. //点击修改项目详情
  1519. tianjiaOk() {
  1520. if (this.state.attachmentUrl.length) {
  1521. let picArr = []
  1522. this.state.attachmentUrl.map(function (item) {
  1523. if (item.response && item.response.data && item.response.data.length) {
  1524. picArr.push(item.response.data)
  1525. }
  1526. })
  1527. }
  1528. this.setState({
  1529. loading: true,
  1530. })
  1531. $.ajax({
  1532. method: 'POST',
  1533. dataType: 'json',
  1534. crossDomain: false,
  1535. url: globalConfig.context + '/api/admin/orderProject/addTaskHours',
  1536. data: {
  1537. taskId: this.state.taskId, //项目编号
  1538. hours: this.state.hours, //工时
  1539. remarks: this.state.remarks, //说明
  1540. taskDate: this.state.taskDate, //日期
  1541. taskComment: this.state.taskComment, //说明
  1542. },
  1543. }).done(
  1544. function (data) {
  1545. this.setState({
  1546. loading: false,
  1547. })
  1548. if (!data.error.length) {
  1549. message.success('保存成功!')
  1550. this.noCancel()
  1551. } else {
  1552. message.warning(data.error[0].message)
  1553. }
  1554. }.bind(this)
  1555. )
  1556. },
  1557. //订单详情
  1558. xiangqing(id){
  1559. return $.ajax({
  1560. method: 'get',
  1561. dataType: 'json',
  1562. crossDomain: false,
  1563. url: globalConfig.context + '/api/admin/orderProject/orderTaskDetail',
  1564. data: {
  1565. id: id,
  1566. },
  1567. success: function (data) {
  1568. let thisdata = data.data
  1569. if (data.error.length || data.data.list == '') {
  1570. if (data.error && data.error.length) {
  1571. message.warning(data.error[0].message)
  1572. }
  1573. } else {
  1574. localStorage.setItem('cSort', thisdata.sort)
  1575. this.setState({
  1576. certificationCorporate: thisdata.certificationCorporate,//认证费公司
  1577. certificationFee: thisdata.certificationFee,//认证费
  1578. ifCertificationFee: thisdata.ifCertificationFee,//是否包含认证费
  1579. sort: thisdata.sort,
  1580. cSort: thisdata.sort,
  1581. id: thisdata.id, //ID
  1582. splitId: thisdata.splitId,//拆分序号
  1583. splitStatus: thisdata.splitStatus,//0未拆分 1已拆分
  1584. splitSuper: thisdata.splitSuper,//拆分前项目编号
  1585. orderNo: thisdata.orderNo, //订单编号
  1586. userName: thisdata.userName, //客户名称
  1587. taskName: thisdata.taskName, //项目名称
  1588. cname: thisdata.cname, //项目品类
  1589. contractNo: thisdata.contractNo, //合同编号
  1590. projectStatus: thisdata.projectStatus.toString(), //项目状态
  1591. taskStatus: thisdata.taskStatus.toString(), //项目状态
  1592. taskDate: thisdata.taskDate, //分配时间
  1593. taskComment: thisdata.taskComment, //说明
  1594. taskCommentData: thisdata.taskComment,
  1595. attachmentUrl: thisdata.attachmentUrl
  1596. ? splitUrl(
  1597. thisdata.attachmentUrl,
  1598. ',',
  1599. globalConfig.avatarHost + '/upload'
  1600. )
  1601. : [], //图片地址
  1602. salesmanName: thisdata.salesmanName, //订单负责人
  1603. startDate: thisdata.startDate, //启动日期
  1604. endDate: thisdata.endDate, //结束日期
  1605. acceptDate: thisdata.acceptDate, //受理日期
  1606. reviewDate: thisdata.reviewDate, //评审日期
  1607. publicityDate: thisdata.publicityDate, //公示日期
  1608. licenceDate: thisdata.licenceDate, //发证日期
  1609. contacts: thisdata.contacts, //联系人
  1610. contactMobile: thisdata.contactMobile, //联系人电话
  1611. legalPerson: thisdata.legalPerson, //法人
  1612. legalPersonTel: thisdata.legalPersonTel, //法人电话
  1613. certificateNumber: thisdata.certificateNumber, //证书编号
  1614. status: thisdata.status, //状态 0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  1615. formRetrieve: thisdata.formRetrieve, //满意度表格
  1616. taskRefund: thisdata.taskRefund, //退单
  1617. refundContent: thisdata.refundContent, //退单信息
  1618. retrieveContent: thisdata.retrieveContent, //回收信息
  1619. arrivalMoney: thisdata.arrivalMoney, //是否到款
  1620. setUpAmount: thisdata.setUpAmount, //立项金额
  1621. declareUser: thisdata.declareUser, //账号
  1622. declarePwd: thisdata.declarePwd, //密码
  1623. outsourceName: thisdata.outsourceName, //外包公司
  1624. outsourcePrice: thisdata.outsourcePrice, //外包价格
  1625. declarationBatch: thisdata.declarationBatch,
  1626. orderTaskOfficialCost: thisdata.officialCost, //官费 0无 1有
  1627. bpType:thisdata.bpType,//0 正常 1专利 2软著 3审计 4双软 5高新 6商标
  1628. specialComment: thisdata.specialComment,
  1629. urgentDay: thisdata.urgentDay, //有无材料
  1630. ifMaterial: thisdata.ifMaterial, //加急情况
  1631. spotCheckStatus: thisdata.spotCheckStatus,
  1632. setUpStatus: thisdata.setUpStatus,
  1633. setUpTime: thisdata.setUpTime,
  1634. highTechStatus: thisdata.highTechStatus,
  1635. acceptCount:thisdata.acceptCount, //受理数
  1636. certificatesCount:thisdata.certificatesCount, //授权数
  1637. rejectCount:thisdata.rejectCount, //驳回数
  1638. commodityQuantity:thisdata.commodityQuantity, //派单项目数
  1639. timeRecord: thisdata.timeRecord || '{}',//项目状态JSON
  1640. timeRecordparse: thisdata.timeRecord ? JSON.parse(thisdata.timeRecord) : {},//项目状态JSON
  1641. })
  1642. }
  1643. }.bind(this),
  1644. }).always(
  1645. function () {
  1646. this.setState({
  1647. loading: false,
  1648. })
  1649. }.bind(this)
  1650. )
  1651. },
  1652. //订单详情
  1653. xiangqings(orderNos) {
  1654. $.ajax({
  1655. method: 'get',
  1656. dataType: 'json',
  1657. crossDomain: false,
  1658. url: globalConfig.context + '/api/admin/newOrder/getOrderNewDetail',
  1659. data: {
  1660. orderNo: orderNos,
  1661. },
  1662. success: function (data) {
  1663. let thisdata = data.data
  1664. let ProvinceCityArr = []
  1665. let ProvinceS = thisdata.locationProvince //省
  1666. let citys = thisdata.locationCity //市
  1667. let Areas = thisdata.locationArea //区
  1668. ProvinceCityArr.push(ProvinceS, citys, Areas)
  1669. if (data.error.length || data.data.list == '') {
  1670. if (data.error && data.error.length) {
  1671. message.warning(data.error[0].message)
  1672. }
  1673. } else {
  1674. this.setState({
  1675. processStatus: thisdata.processStatus, //流程状态
  1676. liquidationStatus: thisdata.liquidationStatus, //结算状态
  1677. approval: thisdata.approval, //特批状态
  1678. orderRemarks: thisdata.orderRemarks, //订单留言
  1679. salesmanName: thisdata.salesmanName, //营销员名称
  1680. salesmanMobile: thisdata.salesmanMobile, //营销员电话
  1681. financeName: thisdata.financeName, //财务名称
  1682. financeMobile: thisdata.financeMobile, //财务电话
  1683. oldSalesmanName: thisdata.oldSalesmanName, //营销员名称
  1684. oldSalesmanMobile: thisdata.oldSalesmanMobile, //营销员电话
  1685. nowFinance: thisdata.nowFinance, //财务名称
  1686. nowFinanceMobile: thisdata.nowFinanceMobile, //财务电话
  1687. depName: thisdata.depName, //订单部门
  1688. ProvinceCity: ProvinceCityArr[0] === null ? [] : ProvinceCityArr,
  1689. postalAddress: thisdata.postalAddress, //详细地址
  1690. })
  1691. }
  1692. }.bind(this),
  1693. }).always(
  1694. function () {
  1695. this.setState({
  1696. loading: false,
  1697. })
  1698. }.bind(this)
  1699. )
  1700. },
  1701. //项目列表
  1702. xiangmu(orderNos) {
  1703. $.ajax({
  1704. method: 'get',
  1705. dataType: 'json',
  1706. crossDomain: false,
  1707. url: globalConfig.context + '/api/admin/newOrder/getOrderTask',
  1708. data: {
  1709. orderNo: orderNos,
  1710. },
  1711. success: function (data) {
  1712. let theArr = []
  1713. if (data.error.length || data.data.list == '') {
  1714. if (data.error && data.error.length) {
  1715. message.warning(data.error[0].message)
  1716. }
  1717. } else {
  1718. for (let i = 0; i < data.data.length; i++) {
  1719. let thisdata = data.data[i]
  1720. thisdata.key = i;
  1721. thisdata.sort = thisdata.cSort;
  1722. theArr.push(thisdata);
  1723. }
  1724. }
  1725. this.setState({
  1726. dataSourceX: theArr,
  1727. type: theArr[0].type,
  1728. })
  1729. }.bind(this),
  1730. }).always(
  1731. function () {
  1732. this.setState({
  1733. loading: false,
  1734. })
  1735. }.bind(this)
  1736. )
  1737. },
  1738. //导出
  1739. exportExec() {
  1740. let departmentName = '',
  1741. depart = this.state.departmentArr || []
  1742. depart.map((item) => {
  1743. if (this.state.departmentId == item.id) {
  1744. departmentName = item.name
  1745. return
  1746. }
  1747. })
  1748. let data = {
  1749. departmentId: this.state.departmentId,
  1750. departmentName: departmentName,
  1751. salesName: this.state.orderRefundSearch, //订单负责人
  1752. startTime: this.state.releaseDate[0],
  1753. endTime: this.state.releaseDate[1],
  1754. grantStatus: this.state.grantStatus,
  1755. }
  1756. window.location.href =
  1757. globalConfig.context +
  1758. '/api/admin/orderProject/exporProjectList?' +
  1759. $.param(data)
  1760. },
  1761. //关闭详情
  1762. visitCancel() {
  1763. this.setState({
  1764. visible: false,
  1765. speVisible: false,
  1766. activeKey: '1',
  1767. updataSwicth: false,
  1768. projectSituationVisible: false,
  1769. })
  1770. this.reset()
  1771. },
  1772. visitOk() {
  1773. this.setState({
  1774. visible: false,
  1775. speVisible: false,
  1776. })
  1777. this.reset()
  1778. },
  1779. closeDesc(e, s) {
  1780. this.state.showDesc = e
  1781. if (s) {
  1782. this.loadData(this.state.page)
  1783. }
  1784. },
  1785. closeAssign(e, s) {
  1786. this.state.roleName = ''
  1787. this.state.assignVisible = e
  1788. if (s) {
  1789. this.loadData(this.state.page)
  1790. }
  1791. },
  1792. //添加工时
  1793. okCancel(record) {
  1794. this.setState({
  1795. lookVisible: true,
  1796. taskId: record.id,
  1797. })
  1798. },
  1799. //测试
  1800. getOrgCodeUrl(e) {
  1801. this.setState({ orgCodeUrl: e })
  1802. },
  1803. //查看下证信息
  1804. loaduserss(record) {
  1805. $.ajax({
  1806. method: 'get',
  1807. dataType: 'json',
  1808. crossDomain: false,
  1809. url: globalConfig.context + '/api/admin/orderProject/selectTaskProgress',
  1810. data: {
  1811. tid: record.id,
  1812. },
  1813. success: function (data) {
  1814. let theArr = []
  1815. let thisData = []
  1816. if (!thisData) {
  1817. if (data.error && data.error.length) {
  1818. message.warning(data.error[0].message)
  1819. }
  1820. thisData = {}
  1821. } else {
  1822. for (let i = 0; i < data.data.length; i++) {
  1823. thisData = data.data[i]
  1824. theArr.push({
  1825. num: i + 1,
  1826. key: i,
  1827. id: thisData.id, //编号
  1828. alreadyNumber: thisData.alreadyNumber, //下证数
  1829. licenceTimes: thisData.licenceTimes, //下证时间
  1830. notCount: thisData.notCount, //未下证数
  1831. flag: true,
  1832. })
  1833. }
  1834. this.setState({
  1835. contactList: theArr,
  1836. tid: record.id,
  1837. })
  1838. }
  1839. }.bind(this),
  1840. }).always(
  1841. function () {
  1842. this.setState({
  1843. loading: false,
  1844. })
  1845. }.bind(this)
  1846. )
  1847. },
  1848. // 拆分详细
  1849. showRes(record) {
  1850. this.setState({
  1851. resVisible: true,
  1852. resRecord: record,
  1853. })
  1854. },
  1855. resCancel() {
  1856. this.setState({
  1857. resVisible: false,
  1858. })
  1859. },
  1860. //下证信息保存
  1861. contactSave(record) {
  1862. if (!record.licenceTimes) {
  1863. message.warning('下证日期不能为空')
  1864. return
  1865. }
  1866. if (!record.alreadyNumber) {
  1867. message.warning('下证数量不能为空')
  1868. return
  1869. }
  1870. this.setState({
  1871. loading: true,
  1872. })
  1873. $.ajax({
  1874. url: globalConfig.context + '/api/admin/orderProject/createTaskProgress',
  1875. method: 'post',
  1876. data: {
  1877. taskId: this.state.id,
  1878. licenceTimes: record.licenceTimes,
  1879. alreadyNumber: record.alreadyNumber,
  1880. },
  1881. }).done(
  1882. function (data) {
  1883. this.setState({
  1884. loading: false,
  1885. })
  1886. if (!data.error.length) {
  1887. message.success('保存成功!')
  1888. record.flag = true
  1889. this.loaduserss(this.state.dataArr)
  1890. } else {
  1891. message.warning(data.error[0].message)
  1892. }
  1893. }.bind(this)
  1894. )
  1895. },
  1896. //下证信息删除
  1897. contactDele(record) {
  1898. this.setState({
  1899. loading: true,
  1900. })
  1901. $.ajax({
  1902. url: globalConfig.context + '/api/admin/orderProject/delectTaskProgress',
  1903. method: 'post',
  1904. data: {
  1905. id: record.id,
  1906. },
  1907. }).done(
  1908. function (data) {
  1909. this.setState({
  1910. loading: false,
  1911. })
  1912. if (!data.error.length) {
  1913. this.loaduserss(this.state.dataArr)
  1914. } else {
  1915. message.warning(data.error[0].message)
  1916. }
  1917. }.bind(this)
  1918. )
  1919. },
  1920. //点击新增下证信息
  1921. addcontact() {
  1922. this.state.contactList.push({
  1923. num: this.state.contactList.length + 1,
  1924. key: this.state.contactList.length,
  1925. licenceTimes: '',
  1926. alreadyNumber: '',
  1927. notCount: '',
  1928. dels: '',
  1929. flag: false,
  1930. aflag: false,
  1931. })
  1932. this.setState({
  1933. contactList: this.state.contactList,
  1934. })
  1935. },
  1936. //删除下证信息
  1937. confirmDelet(record) {
  1938. this.state.contactList.splice(record.key, 1)
  1939. this.setState({
  1940. contactList: this.state.contactList,
  1941. })
  1942. if (record.id) {
  1943. this.contactDele(record)
  1944. }
  1945. },
  1946. caozuorizhi() {
  1947. this.setState({
  1948. visibleA: true,
  1949. })
  1950. $.ajax({
  1951. method: 'get',
  1952. dataType: 'json',
  1953. crossDomain: false,
  1954. url: globalConfig.context + '/api/admin/orderProject/TaskLogList',
  1955. data: {
  1956. id: this.state.id,
  1957. },
  1958. success: function (data) {
  1959. let theArr = []
  1960. if (data.error.length || data.data.list == '') {
  1961. if (data.error && data.error.length) {
  1962. message.warning(data.error[0].message)
  1963. }
  1964. } else {
  1965. for (let i = 0; i < data.data.length; i++) {
  1966. let thisdata = data.data[i]
  1967. theArr.push({
  1968. key: i,
  1969. id: thisdata.id, //日志ID
  1970. content: thisdata.content, //流程
  1971. taskId: thisdata.taskId, //项目ID
  1972. aName: thisdata.aName, //负责人
  1973. createTimes: thisdata.createTimes, //时间
  1974. })
  1975. }
  1976. }
  1977. this.setState({
  1978. dataSourceA: theArr,
  1979. })
  1980. }.bind(this),
  1981. }).always(
  1982. function () {
  1983. this.setState({
  1984. loading: false,
  1985. })
  1986. }.bind(this)
  1987. )
  1988. },
  1989. //关闭操作工时
  1990. visitCancelA() {
  1991. this.setState({
  1992. visibleA: false,
  1993. })
  1994. },
  1995. nextCancel() {
  1996. this.setState({
  1997. addnextVisible: false,
  1998. displayFees: 'none',
  1999. officialCost: '', //是否有官费
  2000. costReduction: '', //是否有费减
  2001. })
  2002. },
  2003. //点击打卡项目详情
  2004. tableRowClickX(record) {
  2005. if (record.type == '1') {
  2006. this.setState({
  2007. displayFees: 'block',
  2008. costReduction: record.costReduction,
  2009. officialCost: record.officialCost,
  2010. })
  2011. }
  2012. this.setState({
  2013. jid: record.id, //项目ID
  2014. kid: record.commodityId, //商品ID
  2015. commodityName: record.commodityName, //金额
  2016. commodityPrice: record.commodityPrice, //金额
  2017. commodityQuantity: record.commodityQuantity, //数量
  2018. taskComment: record.taskComment, //备注
  2019. taskCommentData: record.taskComment,
  2020. main: record.main.toString(), //是否为主要
  2021. addnextVisible: true,
  2022. dataInfor:record,
  2023. addState: 0,
  2024. })
  2025. },
  2026. //关闭添加工时
  2027. noCancel() {
  2028. this.setState({
  2029. lookVisible: false,
  2030. })
  2031. this.reset()
  2032. },
  2033. search() {
  2034. this.loadData()
  2035. },
  2036. reset(flag) {
  2037. if (flag) {
  2038. this.setState({
  2039. nameSearch : '',
  2040. orderNoSearch : '',
  2041. contractNoSearch : undefined,
  2042. taskNoSearch : '',
  2043. departmenttSearch : undefined,
  2044. projectStatusSearch : [], //项目状态
  2045. approvalSearch : undefined,
  2046. outsourceStatusSearch : [],
  2047. })
  2048. }
  2049. this.setState({
  2050. oldInfor: {},
  2051. outsourceRemarks: undefined,
  2052. thirdInfoList: [],
  2053. payNodeList: [],
  2054. orderNo: '',//订单编号
  2055. tid: '',
  2056. id : '', //项目编号
  2057. projectStatus : undefined, //项目状态
  2058. taskStatuSearch : undefined, //项目状态
  2059. startDate : '', //启动日期
  2060. endDate : '', //结束日期
  2061. acceptDate : '', //受理日期
  2062. reviewDate : '', //评审日期
  2063. publicityDate : '', //公示日期
  2064. licenceDate : '', //发证日期
  2065. partyTimes : '', //付款时间
  2066. attachmentUrl: [], //附件
  2067. contacts : '', //联系人
  2068. contactMobile : '', //联系人电话
  2069. legalPerson : '', //法人
  2070. legalPersonTel : '', //法人电话
  2071. taskId : '', //项目编号
  2072. hours : '', //工时
  2073. remarks : '', //说明
  2074. taskDate : '', //日期
  2075. taskComment : '', //说明
  2076. taskCommentData: '',
  2077. releaseDate : [],
  2078. outsourceName : '',
  2079. outsourcePrice : undefined,
  2080. distribution : undefined,
  2081. companyName : undefined,
  2082. unitPrice : undefined,
  2083. unitNumber : undefined,
  2084. amount : undefined,
  2085. pictureUrl : [],
  2086. allTotalAmount: 0,
  2087. urgentDay: '', //有无材料
  2088. ifMaterial: '', //加急情况
  2089. specialComment: '', //特别说明
  2090. spotCheckStatus: '',
  2091. setUpStatus: '',
  2092. setUpTime: '',
  2093. highTechStatus: '',
  2094. },()=>{
  2095. this.loadData(flag ? '' : this.state.page)
  2096. })
  2097. },
  2098. searchSwitch() {
  2099. this.setState({
  2100. searchMore: !this.state.searchMore,
  2101. })
  2102. },
  2103. //部门
  2104. departmentList() {
  2105. this.setState({
  2106. loading: true,
  2107. })
  2108. $.ajax({
  2109. method: 'get',
  2110. dataType: 'json',
  2111. crossDomain: false,
  2112. url: globalConfig.context + '/api/admin/organization/selectSuperId',
  2113. data: {},
  2114. success: function (data) {
  2115. let thedata = data.data
  2116. let theArr = []
  2117. if (!thedata) {
  2118. if (data.error && data.error.length) {
  2119. message.warning(data.error[0].message)
  2120. }
  2121. thedata = {}
  2122. } else {
  2123. thedata.map(function (item, index) {
  2124. theArr.push({
  2125. key: index,
  2126. name: item.name,
  2127. id: item.id,
  2128. })
  2129. })
  2130. }
  2131. this.setState({
  2132. departmentArr: theArr,
  2133. })
  2134. }.bind(this),
  2135. }).always(
  2136. function () {
  2137. this.setState({
  2138. loading: false,
  2139. })
  2140. }.bind(this)
  2141. )
  2142. },
  2143. changeList(arr) {
  2144. const newArr = []
  2145. this.state.columns.forEach((item) => {
  2146. arr.forEach((val) => {
  2147. if (val === item.title) {
  2148. newArr.push(item)
  2149. }
  2150. })
  2151. })
  2152. this.setState({
  2153. changeList: newArr,
  2154. })
  2155. },
  2156. timeClose() {
  2157. this.setState({
  2158. timeVisible: false,
  2159. })
  2160. },
  2161. timeDetail(record) {
  2162. console.log(record)
  2163. this.setState({
  2164. loading: true,
  2165. recordHour: record.hours,
  2166. })
  2167. $.ajax({
  2168. method: 'get',
  2169. dataType: 'json',
  2170. crossDomain: false,
  2171. url:
  2172. globalConfig.context + '/api/admin/orderProject/taskHoursDetailsList',
  2173. data: {
  2174. taskId: record.id,
  2175. },
  2176. success: function (data) {
  2177. if (data.error && data.error.length) {
  2178. message.warning(data.error[0].message)
  2179. } else {
  2180. this.setState({
  2181. dataSourceTime: data.data,
  2182. })
  2183. console.log(this.state.dataSourceTime)
  2184. }
  2185. }.bind(this),
  2186. }).always(
  2187. function () {
  2188. this.setState({
  2189. loading: false,
  2190. })
  2191. }.bind(this)
  2192. )
  2193. },
  2194. showDeleteConfirm(num, fn) {
  2195. let text = getProjectName(num)
  2196. confirm({
  2197. title: <p style={{ fontSize: 16, fontWeight: 900 }}>注意</p>,
  2198. content: (
  2199. <p style={{ fontWeight: 900, color: 'red' }}>
  2200. 当前的项目状态为{text},保存后将触发对应的催款节点!!!您确定保存?
  2201. </p>
  2202. ),
  2203. okText: '确定',
  2204. okType: 'danger',
  2205. cancelText: '取消',
  2206. onOk() {
  2207. fn()
  2208. },
  2209. onCancel() {},
  2210. })
  2211. },
  2212. // 项目发起外包
  2213. sureOut(startType) {
  2214. if (this.state.startType !== 0 && this.state.startType !== 1) {
  2215. message.warning('请选择类型')
  2216. return
  2217. }
  2218. //0正常 1专利 2软著 3审计
  2219. if (this.state.projectType === 1) {
  2220. //专利
  2221. if (this.state.patentType === -1) {
  2222. message.warning('请选择专利类型')
  2223. return
  2224. }
  2225. if (this.state.patentNameType === -1) {
  2226. message.warning('请选择专利类型名称')
  2227. return
  2228. }
  2229. if (this.state.patentNameType == 3) {
  2230. if (!this.state.patentName) {
  2231. message.warning('请填写专利名称')
  2232. return
  2233. }
  2234. }
  2235. }
  2236. if (!this.state.outsourceRemarks) {
  2237. message.warning('备注不能为空')
  2238. return
  2239. }
  2240. //refundStatus 0-待审核 ,1-审核通过,2-审核拒绝
  2241. //类型为供应商时不需要发起原因
  2242. //this.state.startType 0外包 1供应商
  2243. if(!this.state.reason && (this.state.refundStatus === 2 || typeof this.state.refundStatus === 'undefined') && this.state.startType !== 1){
  2244. message.warning('发起原因不能为空')
  2245. return
  2246. }
  2247. // if (!this.state.pictureUrl && !Array.isArray(this.state.pictureUrl)) {
  2248. // message.warning('合同扫描件不能为空')
  2249. // return
  2250. // }
  2251. // if(this.state.pictureUrl.length === 0){
  2252. // message.warning('合同扫描件不能为空')
  2253. // return
  2254. // }
  2255. let _this = this;
  2256. let ajaxObj = null;
  2257. confirm({
  2258. title: startType === 0 ? '确定要发起外包吗?' : '确定要提交供应商信息吗?',
  2259. content: startType === 0 ? '高于总部价格,费用个人承担' : '确定提交供应商信息后,不可修改',
  2260. onOk() {
  2261. return new Promise((resolve, reject) => {
  2262. _this.setState({
  2263. sureOutLoading: true,
  2264. })
  2265. let data = {
  2266. tid: _this.state.id,
  2267. orderNo: _this.state.orderNo,
  2268. type: 1, //分类 0订单 1项目
  2269. startType: _this.state.startType, //支付类型 0外包 1供应商 false 0
  2270. companyName: _this.state.companyName,
  2271. amount: _this.state.amount,
  2272. outsourceRemarks: _this.state.outsourceRemarks,
  2273. unitNumber: _this.state.unitNumber,
  2274. unitPrice: _this.state.unitPrice,
  2275. id: _this.state.refundStatus === 2 ? _this.state.mid : undefined,//被拒绝外包申请时,需要传id
  2276. }
  2277. if(_this.state.startType !== 0){
  2278. data.actualOfficial = _this.state.containOfficialFees;//0实际已缴费 1实际未缴费
  2279. }
  2280. //refundStatus 0-待审核 ,1-审核通过,2-审核拒绝 审核被驳回时和第一次发起外包时,要填写发起原因
  2281. //this.state.startType 0外包 1供应商
  2282. //类型为外包时不需要传 发起原因
  2283. if((_this.state.refundStatus === 2 || typeof _this.state.refundStatus === 'undefined') && _this.state.startType !== 1){
  2284. data.reason = _this.state.reason
  2285. }
  2286. if (_this.state.projectType === 1) {
  2287. data.patentType = _this.state.patentType;
  2288. data.patentNameType = _this.state.patentNameType;
  2289. if (_this.state.patentNameType == 3) {
  2290. data.patentName = _this.state.patentName;
  2291. }
  2292. }
  2293. if (_this.state.pictureUrl && Array.isArray(_this.state.pictureUrl) && _this.state.pictureUrl.length !== 0){
  2294. data.pictureUrl = _this.getUrl(_this.state.pictureUrl).length
  2295. ? _this.getUrl(_this.state.pictureUrl)
  2296. : ''
  2297. }
  2298. ajaxObj = $.ajax({
  2299. method: 'POST',
  2300. dataType: 'json',
  2301. crossDomain: false,
  2302. url:
  2303. globalConfig.context + '/api/admin/outsourceOrg/outsourceProjectAudit',
  2304. data: data,
  2305. }).done(
  2306. async function (data) {
  2307. _this.setState({
  2308. sureOutLoading: false,
  2309. })
  2310. if (!data.error.length) {
  2311. resolve();
  2312. message.success('提交成功!')
  2313. _this.waiDetail();
  2314. _this.thirdTable(_this.state.tid);
  2315. _this.getSelectOutsourceLog(_this.state.tid);
  2316. if(_this.state.paySubject.length === 0 ){
  2317. await _this.xiangqing(_this.state.tid);
  2318. // 获取Csort
  2319. await _this.getCsortData(localStorage.getItem('cSort'))
  2320. await _this.payNodeTable(_this.state.tid);
  2321. }else{
  2322. _this.payNodeTable(_this.state.tid)
  2323. }
  2324. } else {
  2325. message.warning(data.error[0].message);
  2326. reject();
  2327. }
  2328. }.bind(_this)
  2329. )
  2330. }).catch((err) => console.log(err));
  2331. },
  2332. onCancel() {
  2333. ajaxObj ? ajaxObj.abort() : '';
  2334. _this.setState({
  2335. sureOutLoading: false,
  2336. })
  2337. },
  2338. });
  2339. },
  2340. callback(e) {
  2341. this.setState({
  2342. activeKey: e,
  2343. })
  2344. if (e == 3) {
  2345. this.orderDetailData(this.state.orderNo)
  2346. this.xiangmu(this.state.orderNo)
  2347. this.jiedian(this.state.orderNo)
  2348. this.jiedianNew(this.state.orderNo)
  2349. }
  2350. },
  2351. getOrgCodeUrlWai(e) {
  2352. this.setState({ pictureUrl: e })
  2353. },
  2354. getUrl(url) {
  2355. let theorgCodeUrl = []
  2356. if (url.length) {
  2357. let picArr = []
  2358. url.map(function (item) {
  2359. if (item.response && item.response.data && item.response.data.length) {
  2360. picArr.push(item.response.data)
  2361. }
  2362. })
  2363. theorgCodeUrl = picArr.join(',')
  2364. }
  2365. return theorgCodeUrl
  2366. },
  2367. waiDetail() {
  2368. let url = window.location.href.substring(7)
  2369. this.setState({
  2370. waiDetailLoading: true,
  2371. })
  2372. let ajaxObj = $.ajax({
  2373. method: 'get',
  2374. dataType: 'json',
  2375. crossDomain: false,
  2376. url:
  2377. globalConfig.context + '/api/admin/outsourceOrg/orderOutsourceDtails',
  2378. data: {
  2379. tid: this.state.id,
  2380. orderNo: this.state.orderNo,
  2381. },
  2382. }).done(
  2383. function (data) {
  2384. if (!data.error.length && data.data) {
  2385. if(!isNaN(parseFloat(data.data.unitNumber))){
  2386. this.setState({
  2387. oldInfor: {
  2388. companyName:data.data.companyName,
  2389. unitPrice:data.data.unitPrice,
  2390. unitNumber:data.data.unitNumber,
  2391. amount:data.data.amount,
  2392. outsourceRemarks:data.data.outsourceRemarks,
  2393. refundStatus: data.data.refundStatus,
  2394. pictureUrl: data.data.pictureUrl
  2395. ? splitUrl(
  2396. data.data.pictureUrl,
  2397. ',',
  2398. globalConfig.avatarHost + '/upload',
  2399. url
  2400. )
  2401. : [], //图片地址
  2402. },
  2403. })
  2404. }else{
  2405. this.setState({
  2406. oldInfor: {},
  2407. })
  2408. }
  2409. this.setState({
  2410. containOfficialFees: data.data.actualOfficial,//官费类型 0实际已缴费 1实际未缴费
  2411. startType: data.data.startType, //类型
  2412. patentType: data.data.patentType, //专利类型
  2413. patentNameType: data.data.patentNameType, //专利名称类型
  2414. patentName: data.data.patentName, //专利名称
  2415. outsourceRemarks: data.data.outsourceRemarks,
  2416. remarks: data.data.remarks,
  2417. companyName: data.data.companyName,
  2418. amount: data.data.amount,
  2419. mid: data.data.id,
  2420. unitPrice: data.data.unitPrice,
  2421. refundStatus: data.data.refundStatus,
  2422. unitNumber: data.data.unitNumber, //如果存在 证明是以前的旧数据
  2423. pictureUrl: data.data.pictureUrl
  2424. ? splitUrl(
  2425. data.data.pictureUrl,
  2426. ',',
  2427. globalConfig.avatarHost + '/upload',
  2428. url
  2429. )
  2430. : [], //图片地址
  2431. createTimes: data.data.createTimes,
  2432. auditTimes: data.data.auditTimes,
  2433. },()=>{
  2434. this.setState({
  2435. waiDetailLoading: false,
  2436. })
  2437. })
  2438. } else if (data.error && data.error.length) {
  2439. message.warning(data.error[0].message);
  2440. this.setState({
  2441. waiDetailLoading: false,
  2442. })
  2443. } else if (!data.data) {
  2444. this.setState({
  2445. refundStatus: undefined,
  2446. waiDetailLoading: false,
  2447. })
  2448. }
  2449. }.bind(this)
  2450. )
  2451. this.setState({
  2452. orderOutsourceDtailsAjaxObj: ajaxObj
  2453. })
  2454. },
  2455. rizhi() {
  2456. this.setState({
  2457. loading: true,
  2458. })
  2459. $.ajax({
  2460. method: 'get',
  2461. dataType: 'json',
  2462. crossDomain: false,
  2463. url: '/api/admin/newOrder/selectOrderLog',
  2464. data: {
  2465. orderNo: this.state.orderNo,
  2466. },
  2467. success: function (data) {
  2468. let theArr = []
  2469. let thisData = data.data
  2470. if (!thisData.length) {
  2471. if (data.error && data.error.length) {
  2472. message.warning(data.error[0].message)
  2473. }
  2474. thisData = {}
  2475. } else {
  2476. for (let i = 0; i < data.data.length; i++) {
  2477. let thisdata = data.data[i]
  2478. theArr.push({
  2479. processName: thisdata.processName,
  2480. adminName: thisdata.adminName,
  2481. createDate: thisdata.createDate,
  2482. remarks: thisdata.remarks,
  2483. })
  2484. }
  2485. }
  2486. this.setState({
  2487. dataSourceY: theArr,
  2488. })
  2489. }.bind(this),
  2490. }).always(
  2491. function () {
  2492. this.setState({
  2493. loading: false,
  2494. })
  2495. }.bind(this)
  2496. )
  2497. },
  2498. closeOrderLog() {
  2499. this.setState({
  2500. avisible: false,
  2501. })
  2502. },
  2503. getOrderLog() {
  2504. this.setState({
  2505. avisible: true,
  2506. })
  2507. this.rizhi()
  2508. },
  2509. async orderChange(key) {
  2510. this.setState({
  2511. activeKey: key,
  2512. })
  2513. if (key === '3') {
  2514. this.orderDetailData(this.state.orderNo)
  2515. this.xiangmu(this.state.orderNo)
  2516. this.jiedian(this.state.orderNo)
  2517. this.jiedianNew(this.state.orderNo)
  2518. }else if (key === '2') {
  2519. this.waiDetail();
  2520. this.thirdTable(this.state.tid);
  2521. if(this.state.paySubject.length === 0 ){
  2522. await this.xiangqing(this.state.tid);
  2523. // 获取Csort
  2524. await this.getCsortData(localStorage.getItem('cSort'))
  2525. await this.payNodeTable(this.state.tid);
  2526. }else{
  2527. await this.payNodeTable(this.state.tid)
  2528. }
  2529. this.getSelectOutsourceLog(this.state.tid);
  2530. }else if(key === "1"){
  2531. this.xiangqing(this.state.tid);
  2532. }
  2533. },
  2534. //节点列表
  2535. jiedian(orderNos) {
  2536. $.ajax({
  2537. method: 'get',
  2538. dataType: 'json',
  2539. crossDomain: false,
  2540. url: globalConfig.context + '/api/admin/newOrder/selectOrderDun',
  2541. data: {
  2542. orderNo: orderNos,
  2543. },
  2544. success: function (data) {
  2545. let theArr = []
  2546. let thisData = []
  2547. if (data.error.length || data.data.list == '') {
  2548. if (data.error && data.error.length) {
  2549. message.warning(data.error[0].message)
  2550. }
  2551. } else {
  2552. for (let i = 0; i < data.data.length; i++) {
  2553. thisData = data.data[i]
  2554. theArr.push({
  2555. key: i,
  2556. dunSubject: thisData.dunSubject
  2557. ? thisData.dunSubject.toString()
  2558. : '', //催款科目
  2559. id: thisData.id, //节点Id
  2560. money: thisData.money, //催款金额
  2561. dunStatus: thisData.dunStatus, //催款状态
  2562. })
  2563. }
  2564. this.setState({
  2565. jiedian: theArr,
  2566. })
  2567. }
  2568. }.bind(this),
  2569. })
  2570. },
  2571. jiedianNew(orderNos) {
  2572. $.ajax({
  2573. method: 'get',
  2574. dataType: 'json',
  2575. crossDomain: false,
  2576. url:
  2577. globalConfig.context + '/api/admin/newOrderDun/selectListNewOrderDun',
  2578. data: {
  2579. orderNo: orderNos,
  2580. },
  2581. success: function (data) {
  2582. if (data.error && data.error.length) {
  2583. message.warning(data.error[0].message)
  2584. } else {
  2585. let theArr = []
  2586. let thisData = []
  2587. let arr = data.data || []
  2588. let totalCui = 0
  2589. for (let i = 0; i < arr.length; i++) {
  2590. thisData = arr[i]
  2591. totalCui += +thisData.money
  2592. theArr.push({
  2593. key: i,
  2594. dunSubject: thisData.dunSubject
  2595. ? thisData.dunSubject.toString()
  2596. : '', //催款科目
  2597. id: thisData.id, //节点Id
  2598. tid: thisData.tid, //节点指定的第三方id
  2599. money: thisData.money, //催款金额
  2600. // orderNo: record ? record.orderNo : this.props.datauser.orderNo,
  2601. commodityName: thisData.commodityName,
  2602. projectType: thisData.projectType,
  2603. dunTypeName: thisData.dunTypeName,
  2604. status: thisData.status,
  2605. waitDay: thisData.waitDay,
  2606. effectiveCount: thisData.effectiveCount,
  2607. startDate: thisData.startDate,
  2608. dunType: thisData.dunType,
  2609. appropriationRatio: thisData.appropriationRatio,
  2610. customizeName: thisData.customizeName,
  2611. customizeTimes: thisData.customizeTimes,
  2612. })
  2613. }
  2614. if (!totalCui) {
  2615. totalCui = 0
  2616. }
  2617. totalCui = (Math.round(totalCui * 1000000) / 1000000).toFixed(6)
  2618. this.setState({
  2619. jiedianNew: theArr,
  2620. totalCui,
  2621. })
  2622. }
  2623. }.bind(this),
  2624. }).always(
  2625. function () {
  2626. this.setState({
  2627. loading: false,
  2628. })
  2629. }.bind(this)
  2630. )
  2631. },
  2632. orderDetailData(orderNos) {
  2633. this.setState({
  2634. loading: true,
  2635. })
  2636. $.ajax({
  2637. method: 'get',
  2638. dataType: 'json',
  2639. crossDomain: false,
  2640. url: globalConfig.context + '/api/admin/newOrder/getOrderNewDetail',
  2641. data: {
  2642. orderNo: orderNos,
  2643. },
  2644. success: function (data) {
  2645. if (data.error.length || data.data.list == '') {
  2646. if (data.error && data.error.length) {
  2647. message.warning(data.error[0].message)
  2648. this.setState({
  2649. loading: false,
  2650. })
  2651. }
  2652. } else {
  2653. let thisdata = data.data
  2654. this.setState({
  2655. loading: false,
  2656. userName: thisdata.userName,
  2657. primaryOrderNo: thisdata.primaryOrder,
  2658. additionalOrder: thisdata.additionalOrder,
  2659. contractNo: thisdata.contractNo,
  2660. orderData: thisdata,
  2661. isAddition: thisdata.additionalOrder ? true : false,
  2662. contractPictureUrl: thisdata.contractPictureUrl
  2663. ? splitUrl(
  2664. thisdata.contractPictureUrl,
  2665. ',',
  2666. globalConfig.avatarHost + '/upload'
  2667. )
  2668. : [],
  2669. })
  2670. }
  2671. }.bind(this),
  2672. })
  2673. },
  2674. //点击新增供应商
  2675. addcontactNew() {
  2676. this.state.contactListNew.push({
  2677. key: this.state.contactListNew.length,
  2678. money: '',
  2679. dunSubject: undefined,
  2680. orderNo: this.state.orderNo,
  2681. dunTarget: this.state.kehuId,
  2682. })
  2683. this.setState({
  2684. contactListNew: this.state.contactListNew,
  2685. cuiFlag: true,
  2686. })
  2687. },
  2688. //查看第三方信息表格
  2689. thirdTable(id) {
  2690. this.setState({
  2691. thirdInfoLoading: true,
  2692. })
  2693. let ajaxObj = $.ajax({
  2694. method: 'get',
  2695. dataType: 'json',
  2696. crossDomain: false,
  2697. url: globalConfig.context + '/api/admin/company/selectCompany',
  2698. data: {
  2699. tid: id,
  2700. },
  2701. success: function (data) {
  2702. if (data.error && data.error.length) {
  2703. message.warning(data.error[0].message)
  2704. } else {
  2705. let companyNameArr = [];
  2706. let theArr = [];
  2707. let thisData = [];
  2708. let arr = data.data || [];
  2709. let allTotalAmount = 0;
  2710. let type = 0;
  2711. let startType = 0;
  2712. let patentNameType = 0;
  2713. for (let i = 0; i < arr.length; i++) {
  2714. thisData = arr[i]
  2715. allTotalAmount =
  2716. (allTotalAmount * 10000 + thisData.totalAmount * 10000) / 10000
  2717. companyNameArr.push(thisData.companyName);
  2718. thisData.key = i;
  2719. type=thisData.patentType;
  2720. thisData.patentType = thisData.type;
  2721. theArr.push(thisData);
  2722. startType=thisData.startType;
  2723. patentNameType= thisData.patentNameType
  2724. }
  2725. if (!allTotalAmount) {
  2726. allTotalAmount = 0
  2727. }
  2728. for(let d=0;d<theArr.length;d++){
  2729. theArr[d].companyName = theArr[d].companyName+ '-' + theArr[d].id;
  2730. companyNameArr[d] = {
  2731. companyName: theArr[d].companyName,
  2732. id: theArr[d].id,
  2733. }
  2734. }
  2735. if(type === 0 || type === 1){
  2736. this.setState({
  2737. patentType: type === 0 ? 0 : 1, //0专利申请 1专利买卖
  2738. patentNameType: patentNameType, //0实用新型 1发明专利 2外观专利 3 其他
  2739. })
  2740. }
  2741. //设置项目类型
  2742. if(arr.length >0){
  2743. this.setState({
  2744. startType: startType
  2745. })
  2746. }
  2747. this.setState({
  2748. tid: id,
  2749. PayNodeCompany: companyNameArr,
  2750. thirdInfoList: theArr,
  2751. allTotalAmount: allTotalAmount,
  2752. },()=>{
  2753. this.projectTypeTabContent(this.state.projectType);
  2754. })
  2755. }
  2756. }.bind(this),
  2757. }).always(
  2758. function () {
  2759. this.setState({
  2760. thirdInfoLoading: false,
  2761. })
  2762. }.bind(this)
  2763. )
  2764. this.setState({
  2765. selectCompanyAjaxObj:ajaxObj
  2766. })
  2767. },
  2768. //外包日志列表
  2769. getSelectOutsourceLog(tid){
  2770. this.setState({
  2771. loading: true,
  2772. })
  2773. $.ajax({
  2774. method: 'get',
  2775. dataType: 'json',
  2776. crossDomain: false,
  2777. url: globalConfig.context + '/api/admin/outsourceOrg/selectOutsourceLog',
  2778. data: {
  2779. tid: tid,
  2780. },
  2781. success: function (data) {
  2782. if (data.error.length) {
  2783. if (data.error && data.error.length) {
  2784. message.warning(data.error[0].message);
  2785. }
  2786. } else {
  2787. this.setState({
  2788. outsourceLogs: data.data
  2789. })
  2790. }
  2791. this.setState({
  2792. loading: false,
  2793. })
  2794. }.bind(this),
  2795. }).always(
  2796. function () {
  2797. this.setState({
  2798. loading: false,
  2799. })
  2800. }.bind(this)
  2801. )
  2802. },
  2803. payNodeTable(id) {
  2804. this.setState({
  2805. payNodeLoading: true,
  2806. })
  2807. let ajaxObj = $.ajax({
  2808. method: 'get',
  2809. dataType: 'json',
  2810. crossDomain: false,
  2811. url: globalConfig.context + '/api/admin/company/selectPaymentNode',
  2812. data: {
  2813. tid: id,
  2814. },
  2815. success: function (data) {
  2816. if (data.error && data.error.length) {
  2817. message.warning(data.error[0].message)
  2818. } else {
  2819. let payNodeArr = []
  2820. let thisData = []
  2821. let arr = data.data || []
  2822. //对#5283自定义的补充展示
  2823. let infor = [...this.state.paySubject];
  2824. infor.push({ key: '自定义', value: '0' });
  2825. this.setState({
  2826. paySubject: infor
  2827. });
  2828. for (let i = 0; i < arr.length; i++) {
  2829. thisData = arr[i]
  2830. //遍历paySubject,获取当前dunType对应的key
  2831. infor.map((item) => {
  2832. if (item.value == thisData.dunType) {
  2833. thisData.dunType = item.key
  2834. }
  2835. })
  2836. payNodeArr.push({
  2837. key: i,
  2838. id: thisData.id, //付款节点Id
  2839. nodeId: thisData.id, //付款节点Id
  2840. tid: thisData.tid,
  2841. companyName: thisData.companyName, //供应商名称
  2842. projectType: thisData.projectType, //项目分类
  2843. dunType: thisData.dunType, //催款分类
  2844. unitPrice: thisData.unitPrice, //单价
  2845. quantity: thisData.quantity, //数量
  2846. totalAmount: thisData.totalAmount, //总价
  2847. partyAmount: thisData.partyAmount, //付款
  2848. partyTimes: thisData.partyTimes, //付款时间
  2849. cid: thisData.cid, //机构id
  2850. status: thisData.status, //催款状态 0-未支付 1-待全款 ,2已全款 status=2的时候已经全款,申请付款按钮可以去掉了
  2851. })
  2852. }
  2853. for(let d=0;d<payNodeArr.length;d++){
  2854. payNodeArr[d].companyName = payNodeArr[d].companyName+ '-' + payNodeArr[d].cid;
  2855. }
  2856. this.setState({
  2857. tid: id,
  2858. payNodeList: payNodeArr,
  2859. })
  2860. }
  2861. }.bind(this),
  2862. }).always(
  2863. function () {
  2864. this.setState({
  2865. payNodeLoading: false,
  2866. })
  2867. }.bind(this)
  2868. )
  2869. this.setState({
  2870. selectPaymentNodeAjaxObj: ajaxObj
  2871. })
  2872. return ajaxObj;
  2873. },
  2874. // 新增第三方供应商信息
  2875. addThirdList() {
  2876. this.setState({
  2877. ThirdListVisible: true,
  2878. })
  2879. },
  2880. updateProjectStatus(projectStatus,fn){
  2881. $.ajax({
  2882. url: globalConfig.context + '/api/admin/orderProject/updateProjectStatus',
  2883. method: 'post',
  2884. data: {
  2885. tid:this.state.tid,
  2886. projectStatus: projectStatus,
  2887. timeRecord: '{}'
  2888. },
  2889. }).done(
  2890. function (data) {
  2891. if (!data.error.length) {
  2892. this.setState({
  2893. timeRecordparse: {},
  2894. })
  2895. message.success('保存成功!');
  2896. fn();
  2897. } else {
  2898. message.warning(data.error[0].message)
  2899. }
  2900. }.bind(this)
  2901. )
  2902. },
  2903. // 新增支付节点
  2904. addPayNode() {
  2905. this.setState({
  2906. PayNodeVisible: true,
  2907. })
  2908. },
  2909. // 第三方信息自动计算总金额
  2910. calculatedAmount() {
  2911. let currentTotalPrice
  2912. currentTotalPrice = this.state.thirdUnitPrice * this.state.thirdQuantity
  2913. currentTotalPrice = currentTotalPrice.toFixed(6)
  2914. this.setState({
  2915. currentTotalPrice: currentTotalPrice,
  2916. })
  2917. },
  2918. // 付款节点自动计算总金额
  2919. payNodeCalculatedAmount(num) {
  2920. let currentTotalPrice,quantity,unitPrice
  2921. //获取当前供应商名称对应的单价并更新
  2922. this.state.thirdInfoList.forEach((item) => {
  2923. if (item.companyName === this.state.thirdCompanyName) {
  2924. currentTotalPrice = num ? item.unitPrice * num : item.quantity * item.unitPrice;
  2925. currentTotalPrice = currentTotalPrice.toFixed(6);
  2926. quantity = num ? num : item.quantity;
  2927. unitPrice = item.unitPrice;
  2928. }
  2929. })
  2930. this.setState({
  2931. payNodeQuantity: num ? num : quantity,
  2932. })
  2933. if(this.state.projectType !== 2){
  2934. this.setState({
  2935. currentTotalPrice: currentTotalPrice,
  2936. thirdUnitPrice: unitPrice
  2937. })
  2938. }
  2939. },
  2940. // 保存供应商信息
  2941. handleCancelq() {
  2942. let api
  2943. if (this.state.ThirdId) {
  2944. //修改
  2945. api = '/api/admin/company/updateCompany'
  2946. } else {
  2947. //新增
  2948. api = '/api/admin/company/addCompany'
  2949. }
  2950. let customerId = 0;
  2951. let isHave =this.state.customerArr.some((value)=>{
  2952. if(value.companyName === this.state.thirdCompanyName){
  2953. customerId = value.id
  2954. return true;
  2955. }
  2956. });
  2957. if(!isHave && this.state.projectType !== 0){
  2958. message.warning('请输入正确的供应商名称')
  2959. return;
  2960. }
  2961. this.setState({
  2962. loading: true,
  2963. })
  2964. // material: this.state.thirdMaterial, //材料
  2965. // urgent: this.state.thirdUrgent, //加急
  2966. // unitPrice: this.state.thirdUnitPrice, //单价
  2967. let data = {
  2968. id: this.state.ThirdId, //id
  2969. tid: this.state.tid, //订单编号
  2970. companyName: this.state.thirdCompanyName, //第三方名称
  2971. quantity: this.state.thirdQuantity, //数量
  2972. // totalAmount: this.state.currentTotalPrice, //总价
  2973. remarks: this.state.thirdRemarks, //备注
  2974. }
  2975. if(this.state.projectType === 0){
  2976. data.unitPrice = this.state.thirdUnitPrice;
  2977. }
  2978. if(isHave){
  2979. data.cid = customerId ////公司id
  2980. }
  2981. $.ajax({
  2982. url: globalConfig.context + api,
  2983. method: 'post',
  2984. dataType: 'json',
  2985. crossDomain: false,
  2986. data: data,
  2987. }).done(
  2988. function (data) {
  2989. this.setState({
  2990. loading: false,
  2991. })
  2992. if (!data.error.length) {
  2993. message.success('保存成功!')
  2994. this.setState({
  2995. ThirdId: '',
  2996. ThirdListVisible: false,
  2997. thirdCompanyName: '', //第三方名称
  2998. thirdUnitPrice: '', //单价
  2999. thirdQuantity: '', //数量
  3000. currentTotalPrice: '', //总价
  3001. thirdRemarks: '',
  3002. thirdUrgent: 0,
  3003. })
  3004. // this.visitCancel();
  3005. this.thirdTable(this.state.tid)
  3006. } else {
  3007. message.warning(data.error[0].message)
  3008. }
  3009. }.bind(this)
  3010. )
  3011. },
  3012. //保存付款节点
  3013. savePayNode() {
  3014. let api
  3015. if (this.state.ThirdId) {
  3016. //修改
  3017. api = '/api/admin/company/updatePaymentNode'
  3018. } else {
  3019. //新增
  3020. api = '/api/admin/company/addPaymentNode'
  3021. }
  3022. // totalAmount: this.state.currentTotalPrice, //总价
  3023. // partyAmount: this.state.partyAmount, //付款金额
  3024. //
  3025. let customerId=0;
  3026. this.state.PayNodeCompany.some((value)=>{
  3027. if(value.companyName === this.state.thirdCompanyName){
  3028. customerId = value.id
  3029. return true;
  3030. }
  3031. });
  3032. if(!this.state.thirdCompanyName){
  3033. message.error('请选择供应商名称');
  3034. return;
  3035. }
  3036. if(!this.state.paySubjectName){
  3037. message.error('请选择付款科目');
  3038. return;
  3039. }
  3040. if(!this.state.payNodeQuantity){
  3041. message.error('请输入数量');
  3042. return;
  3043. }
  3044. let data = {
  3045. id: this.state.ThirdId, //id
  3046. tid: this.state.tid, //订单编号
  3047. cid: customerId,//对应的第三方信息
  3048. companyName: this.state.thirdCompanyName.split('-')[0], //第三方名称
  3049. quantity: this.state.payNodeQuantity, //数量
  3050. dunType: this.state.dunType, //催款节点
  3051. projectType: this.state.cSort, //项目分类
  3052. }
  3053. if(this.state.paySubjectName === '0'){
  3054. if(!this.state.partyTimes){
  3055. message.error('请选择付款时间');
  3056. return;
  3057. }
  3058. data.partyTimes = this.state.partyTimes //付款时间
  3059. }
  3060. if(this.state.projectType !== 2){ //其他类型 0正常 1专利 2软著 3审计
  3061. data.totalAmount = this.state.currentTotalPrice //总价
  3062. data.unitPrice = this.state.thirdUnitPrice //单价
  3063. }
  3064. this.setState({
  3065. loading: true,
  3066. })
  3067. $.ajax({
  3068. url: globalConfig.context + api,
  3069. method: 'post',
  3070. dataType: 'json',
  3071. crossDomain: false,
  3072. data: data,
  3073. }).done(
  3074. function (data) {
  3075. this.setState({
  3076. loading: false,
  3077. })
  3078. if (!data.error.length) {
  3079. message.success('保存成功!')
  3080. this.setState({
  3081. ThirdId: '',
  3082. PayNodeVisible: false,
  3083. thirdCompanyName: '', //第三方名称
  3084. paySubjectName: '', //付款科目名称
  3085. thirdUnitPrice: '', //单价
  3086. thirdQuantity: '', //数量
  3087. payNodeQuantity: 1, //付款节点数量
  3088. currentTotalPrice: '', //总价
  3089. partyAmount: '', //付款金额
  3090. partyTimes: '', //付款时间
  3091. dunType: '', //催款节点
  3092. })
  3093. // this.visitCancel();
  3094. this.payNodeTable(this.state.tid)
  3095. } else {
  3096. message.warning(data.error[0].message)
  3097. }
  3098. }.bind(this)
  3099. )
  3100. },
  3101. // 取消
  3102. handleCancelclose() {
  3103. this.setState({
  3104. PayNodeVisible: false,
  3105. payNodeInfor: {},
  3106. ThirdId: '',
  3107. ThirdListVisible: false,
  3108. thirdCompanyName: '', //第三方名称
  3109. paySubjectName: '', //付款科目名称
  3110. thirdUnitPrice: '', //单价
  3111. partyTimes: '',
  3112. thirdQuantity: 1, //数量
  3113. payNodeQuantity: 1,
  3114. currentTotalPrice: '', //总价
  3115. thirdRemarks: '',
  3116. thirdUrgent: 0, //加急状态
  3117. })
  3118. },
  3119. // 删除供应商信息
  3120. confirmDeletNew(index,resolve=()=>{},reject=()=>{}) {
  3121. let arr = this.state.payNodeList.filter((v)=>{
  3122. return v.companyName === index.companyName
  3123. });
  3124. let _this = this;
  3125. if(arr.length > 0){
  3126. confirm({
  3127. title: '确定要删除此供应商信息吗?',
  3128. content: '此供应商存在'+arr.length+'条付款节点信息,删除后对应的付款节点也会一起删除',
  3129. onOk() {
  3130. return new Promise((resolve, reject) => {
  3131. let str = '';
  3132. arr.map((value)=>{
  3133. str+=value.id+',';
  3134. })
  3135. _this.payNodeConfirmDeletNew({
  3136. id: str
  3137. });
  3138. _this.handleConfirmDelet(index,resolve,reject)
  3139. }).catch(() => console.log('Oops errors!'));
  3140. },
  3141. onCancel() {},
  3142. });
  3143. }else{
  3144. this.handleConfirmDelet(index,resolve,reject)
  3145. }
  3146. },
  3147. handleConfirmDelet(index,resolve=()=>{},reject=()=>{}) {
  3148. this.setState({
  3149. loading: true,
  3150. ThirdListVisible: false,
  3151. })
  3152. const hide = message.loading('删除中...', 0);
  3153. let id = '';
  3154. if(index === -1){
  3155. if(this.state.thirdInfoList.length === 1){
  3156. id = this.state.thirdInfoList[0].id
  3157. }else{
  3158. this.state.thirdInfoList.map((value,index)=>{
  3159. id+=value.id+',';
  3160. })
  3161. }
  3162. }else{
  3163. id = index.id
  3164. }
  3165. $.ajax({
  3166. url: globalConfig.context + '/api/admin/company/deleteCompany',
  3167. method: 'post',
  3168. data: {
  3169. id: id,
  3170. },
  3171. }).done(
  3172. function (data) {
  3173. this.setState({
  3174. loading: false,
  3175. });
  3176. hide();
  3177. if (!data.error.length) {
  3178. message.success('删除成功!')
  3179. this.thirdTable(this.state.tid)
  3180. resolve();
  3181. } else {
  3182. message.warning(data.error[0].message)
  3183. reject();
  3184. }
  3185. }.bind(this)
  3186. )
  3187. },
  3188. // 删除付款节点
  3189. payNodeConfirmDeletNew(index,resolve=()=>{},reject=()=>{}) {
  3190. this.setState({
  3191. loading: true,
  3192. PayNodeVisible: false,
  3193. })
  3194. let id = '';
  3195. if(index === -1){
  3196. this.state.payNodeList.map((value,index)=>{
  3197. id+=value.id+',';
  3198. })
  3199. }else{
  3200. id = index.id
  3201. }
  3202. $.ajax({
  3203. url: globalConfig.context + '/api/admin/company/deletePaymentNode',
  3204. method: 'post',
  3205. data: {
  3206. id: id,
  3207. },
  3208. }).done(
  3209. function (data) {
  3210. this.setState({
  3211. loading: false,
  3212. })
  3213. if (!data.error.length) {
  3214. message.success('删除成功!')
  3215. resolve();
  3216. this.payNodeTable(this.state.tid)
  3217. } else {
  3218. message.warning(data.error[0].message)
  3219. reject();
  3220. }
  3221. }.bind(this)
  3222. )
  3223. },
  3224. //点击供应商详情
  3225. tableRowClickOne(record) {
  3226. this.setState({
  3227. ThirdListVisible: true,
  3228. ThirdId: record.id, //供应商id
  3229. thirdCompanyName: record.companyName, //第三方名称
  3230. thirdUnitPrice: record.unitPrice, //单价
  3231. thirdQuantity: record.quantity, //数量
  3232. currentTotalPrice: record.totalAmount, //总价
  3233. thirdMaterial: record.material, //有无材料
  3234. thirdUrgent: record.urgent, //加急情况
  3235. thirdRemarks: record.remarks,
  3236. audit: record.audit,//审计
  3237. assets: record.assets,//公司资产
  3238. income: record.income,//收入
  3239. })
  3240. },
  3241. //点击付款节点详情
  3242. payNodeTableRowClickOne(record) {
  3243. this.setState({
  3244. PayNodeVisible: true,
  3245. ThirdId: record.id, //供应商id
  3246. thirdCompanyName: record.companyName, //第三方名称
  3247. thirdUnitPrice: record.unitPrice, //单价
  3248. thirdQuantity: record.quantity, //供应商数量
  3249. payNodeQuantity: record.quantity, //付款节点数量
  3250. currentTotalPrice: record.totalAmount, //总价
  3251. partyTimes: record.partyTimes,
  3252. paySubjectName: record.dunType,
  3253. });
  3254. let obj = JSON.parse(JSON.stringify(record));
  3255. this.state.paySubject.some((value)=>{
  3256. if(value.key === obj.dunType){
  3257. obj.dunType = value.value;
  3258. return true;
  3259. }
  3260. });
  3261. this.setState({
  3262. payNodeInfor: obj, //付款节点详情
  3263. });
  3264. },
  3265. render() {
  3266. const formItemLayout = {
  3267. labelCol: { span: 8 },
  3268. wrapperCol: { span: 14 },
  3269. }
  3270. let departmentArr = this.state.departmentArr || []
  3271. return (
  3272. <div className="user-content">
  3273. {this.state.resVisible ? (
  3274. <ResolutionDetail
  3275. cancel={this.resCancel}
  3276. detail={this.state.resRecord}
  3277. visible={this.state.resVisible}
  3278. id={this.state.resRecord.orderNo}
  3279. />
  3280. ) : (
  3281. ''
  3282. )}
  3283. <ShowModalDiv ShowModal={this.state.showModal} />
  3284. <div className="content-title" style={{ marginBottom: 10 }}>
  3285. <span style={{ fontWeight: 900, fontSize: 16 }}>项目任务</span>
  3286. </div>
  3287. <Tabs defaultActiveKey="2" className="test" bordered>
  3288. <TabPane tab="搜索" key="2">
  3289. <div className="user-search" style={{ marginLeft: 10 }}>
  3290. <Input
  3291. placeholder="客户名称"
  3292. value={this.state.nameSearch}
  3293. onChange={(e) => {
  3294. this.setState({ nameSearch: e.target.value })
  3295. }}
  3296. />
  3297. <Input
  3298. placeholder="订单编号"
  3299. value={this.state.orderNoSearch}
  3300. onChange={(e) => {
  3301. this.setState({ orderNoSearch: e.target.value })
  3302. }}
  3303. />
  3304. <Input
  3305. placeholder="合同编号"
  3306. value={this.state.contractNoSearch}
  3307. onChange={(e) => {
  3308. this.setState({ contractNoSearch: e.target.value })
  3309. }}
  3310. />
  3311. <Input
  3312. placeholder="项目编号"
  3313. value={this.state.taskNoSearch}
  3314. onChange={(e) => {
  3315. this.setState({ taskNoSearch: e.target.value })
  3316. }}
  3317. />
  3318. <Select
  3319. placeholder="选择部门"
  3320. style={{ width: 150, marginRight: '10px' }}
  3321. value={this.state.departmenttSearch}
  3322. onChange={(e) => {
  3323. this.setState({ departmenttSearch: e })
  3324. }}
  3325. >
  3326. {departmentArr.map(function (item) {
  3327. return (
  3328. <Select.Option key={item.id}>{item.name}</Select.Option>
  3329. )
  3330. })}
  3331. </Select>
  3332. <Cascader
  3333. placeholder="项目状态"
  3334. style={{ width: 150, marginRight: '10px' }}
  3335. options={projectStatusCascader}
  3336. value={this.state.projectStatusSearch}
  3337. onChange={(e)=>{
  3338. this.setState({
  3339. projectStatusSearch: e
  3340. })
  3341. }}
  3342. />
  3343. <Select
  3344. placeholder="特批状态"
  3345. style={{ width: 150, marginRight: '10px' }}
  3346. value={this.state.approvalSearch}
  3347. onChange={(e) => {
  3348. this.setState({ approvalSearch: e })
  3349. console.log(this.state.approvalSearch)
  3350. }}
  3351. >
  3352. <Select.Option key={0}>非特批</Select.Option>
  3353. <Select.Option key={1}>特批</Select.Option>
  3354. </Select>
  3355. {/*<Select*/}
  3356. {/* placeholder="外包状态"*/}
  3357. {/* style={{ width: 150, marginRight: '10px' }}*/}
  3358. {/* value={this.state.outsourceStatusSearch}*/}
  3359. {/* onChange={(e) => {*/}
  3360. {/* this.setState({ outsourceStatusSearch: e })*/}
  3361. {/* console.log(this.state.outsourceStatusSearch)*/}
  3362. {/* }}*/}
  3363. {/*>*/}
  3364. {/* <Select.Option key={0}>外包待审核</Select.Option>*/}
  3365. {/* /!* <Select.Option key={1}>外包审核通过</Select.Option> *!/*/}
  3366. {/* <Select.Option key={2}>外包审核驳回</Select.Option>*/}
  3367. {/* <Select.Option key={999}>全部</Select.Option>*/}
  3368. {/*</Select>*/}
  3369. <Button type="primary" onClick={this.search}>
  3370. 搜索
  3371. </Button>
  3372. <Button
  3373. onClick={(e) => {
  3374. this.reset(true)
  3375. }}
  3376. >
  3377. 重置
  3378. </Button>
  3379. {/* <span>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch.bind(this)} /></span>
  3380. <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
  3381. <span>订单时间 :</span>
  3382. <RangePicker
  3383. value={[this.state.releaseDate[0] ? moment(this.state.releaseDate[0]) : null,
  3384. this.state.releaseDate[1] ? moment(this.state.releaseDate[1]) : null]}
  3385. onChange={(data, dataString) => { this.setState({ releaseDate: dataString }); }} />
  3386. </div> */}
  3387. </div>
  3388. </TabPane>
  3389. <TabPane tab="导出Excel" key="3">
  3390. <Button
  3391. type="primary"
  3392. style={{ margin: '11px 0 10px 10px' }}
  3393. onClick={this.exportExec}
  3394. >
  3395. 导出Excel
  3396. </Button>
  3397. </TabPane>
  3398. <TabPane tab="更改表格显示数据" key="1">
  3399. <div style={{ marginLeft: 10 }}>
  3400. <ChooseList
  3401. columns={this.state.columns}
  3402. changeFn={this.changeList}
  3403. changeList={this.state.changeList}
  3404. top={55}
  3405. margin={11}
  3406. />
  3407. </div>
  3408. </TabPane>
  3409. {/* <TabPane tab="批量操作" key="6">
  3410. <Button
  3411. type="primary"
  3412. disabled={this.state.selectedRowKeys.length == 0}
  3413. style={{ margin: "0px 0px 10px 10px" }}
  3414. onClick={e => {
  3415. e.stopPropagation(),
  3416. this.evaluateY(this.state.selectedRowKeys, "财务专员");
  3417. }}
  3418. >
  3419. 转交
  3420. </Button>
  3421. </TabPane> */}
  3422. </Tabs>
  3423. {/* <div className="user-search">
  3424. <Input
  3425. placeholder="客户名称"
  3426. value={this.state.nameSearch}
  3427. onChange={e => {
  3428. this.setState({ nameSearch: e.target.value });
  3429. }}
  3430. />
  3431. <Input
  3432. placeholder="订单编号"
  3433. value={this.state.orderNoSearch}
  3434. onChange={e => {
  3435. this.setState({ orderNoSearch: e.target.value });
  3436. }}
  3437. />
  3438. <Input
  3439. placeholder="项目编号"
  3440. value={this.state.taskNoSearch}
  3441. onChange={e => {
  3442. this.setState({ taskNoSearch: e.target.value });
  3443. }}
  3444. />
  3445. <Select
  3446. placeholder="选择部门"
  3447. style={{ width: 150, marginRight: "10px" }}
  3448. value={this.state.departmenttSearch}
  3449. onChange={e => {
  3450. this.setState({ departmenttSearch: e });
  3451. }}
  3452. >
  3453. {departmentArr.map(function(item) {
  3454. return <Select.Option key={item.id}>{item.name}</Select.Option>;
  3455. })}
  3456. </Select>
  3457. <Button type="primary" onClick={this.search}>
  3458. 搜索
  3459. </Button>
  3460. <Button onClick={this.reset}>重置</Button>
  3461. <Button
  3462. type="primary"
  3463. style={{ marginLeft: "10px" }}
  3464. onClick={this.exportExec}
  3465. >
  3466. 导出Excel
  3467. </Button>
  3468. <span>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch.bind(this)} /></span>
  3469. <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
  3470. <span>订单时间 :</span>
  3471. <RangePicker
  3472. value={[this.state.releaseDate[0] ? moment(this.state.releaseDate[0]) : null,
  3473. this.state.releaseDate[1] ? moment(this.state.releaseDate[1]) : null]}
  3474. onChange={(data, dataString) => { this.setState({ releaseDate: dataString }); }} />
  3475. </div>
  3476. </div> */}
  3477. <div className="patent-table">
  3478. <Spin spinning={this.state.loading}>
  3479. <Table
  3480. columns={
  3481. this.state.changeList == undefined
  3482. ? this.state.columns
  3483. : this.state.changeList
  3484. }
  3485. style={{
  3486. cursor: 'pointer',
  3487. }}
  3488. dataSource={this.state.dataSource}
  3489. pagination={this.state.pagination}
  3490. scroll={{ x: 'max-content', y: 0 }}
  3491. onRowClick={this.tableRowClick.bind(this)}
  3492. bordered
  3493. size={'small'}
  3494. />
  3495. </Spin>
  3496. </div>
  3497. <Assign
  3498. title="项目"
  3499. selApi={'/api/admin/orderProject/projectDistribution'}
  3500. data={this.state.assignData}
  3501. showDesc={this.state.assignVisible}
  3502. closeDesc={this.closeAssign.bind(this)}
  3503. fenpaiData={8}
  3504. specially={0}
  3505. roleName={this.state.nub}
  3506. requestMethod={'post'}
  3507. flag={this.state.flag}
  3508. all={this.state}
  3509. />
  3510. {this.state.visible ? <Modal
  3511. className="customeDetails"
  3512. footer=""
  3513. title=""
  3514. width="900px"
  3515. visible={this.state.visible}
  3516. maskClosable={false}
  3517. onOk={()=>{
  3518. this.visitOk();
  3519. this.state.selectCompanyAjaxObj ? this.state.selectCompanyAjaxObj.abort() : null;
  3520. this.state.selectPaymentNodeAjaxObj ? this.state.selectPaymentNodeAjaxObj.abort() : null;
  3521. this.state.orderOutsourceDtailsAjaxObj ? this.state.orderOutsourceDtailsAjaxObj.abort() : null;
  3522. }}
  3523. onCancel={()=>{
  3524. this.visitCancel();
  3525. this.state.selectCompanyAjaxObj ? this.state.selectCompanyAjaxObj.abort() : null;
  3526. this.state.selectPaymentNodeAjaxObj ? this.state.selectPaymentNodeAjaxObj.abort() : null;
  3527. this.state.orderOutsourceDtailsAjaxObj ? this.state.orderOutsourceDtailsAjaxObj.abort() : null;
  3528. }}
  3529. >
  3530. <div style={{position:"relative"}}>
  3531. <div style={{
  3532. position: "absolute",
  3533. inset:'-15px',
  3534. zIndex: 1000,
  3535. //0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  3536. display: parseInt(this.state.projectStatus) === 0 ? 'flex' : 'none',
  3537. justifyContent:'center',
  3538. paddingTop: '300px',
  3539. background: 'rgba(0,0,0,0.7)',
  3540. borderRadius: '4px',
  3541. borderTopRightRadius: '96px',
  3542. left: 0,
  3543. right: 0,
  3544. top: 0,
  3545. bottom: 0,
  3546. }}>
  3547. <Button
  3548. type="primary"
  3549. size='large'
  3550. onClick={()=>{
  3551. //0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  3552. this.updateProjectStatus(1,()=>{
  3553. this.xiangqing(this.state.id)
  3554. });
  3555. }}>
  3556. 开始启动项目
  3557. </Button>
  3558. </div>
  3559. <Tabs
  3560. tabBarExtraContent={
  3561. <div style={{fontWeight:'bold',paddingRight:'15px'}}>
  3562. <span>
  3563. 项目名称:
  3564. <span style={{color:'#F00',paddingRight:'5px'}}>{this.state.taskName}</span>
  3565. </span>
  3566. <span style={{marginLeft:'15px'}}>
  3567. 项目编号:
  3568. <span style={{color:'#F00',paddingRight:'5px'}}>
  3569. {this.state.id}
  3570. {
  3571. this.state.splitStatus === 2 ? '('+this.state.splitSuper+'-'+this.state.splitId+')' : ''
  3572. }
  3573. </span>
  3574. </span>
  3575. </div>
  3576. }
  3577. activeKey={this.state.activeKey}
  3578. onChange={(e) => {
  3579. this.callback(e)
  3580. if (e === "2") {
  3581. this.waiDetail();
  3582. this.thirdTable(this.state.tid);
  3583. this.payNodeTable(this.state.tid);
  3584. this.getSelectOutsourceLog(this.state.tid);
  3585. }else if(e === "1"){
  3586. this.xiangqing(this.state.tid);
  3587. }
  3588. }}
  3589. >
  3590. <TabPane tab="项目概况" key="1">
  3591. {this.state.activeKey === "1" ? <Form
  3592. layout="horizontal"
  3593. onSubmit={this.handleSubmit}
  3594. id="demand-form"
  3595. style={{ paddingBottom: '00px' }}
  3596. >
  3597. <Spin spinning={this.state.loading}>
  3598. <div className="clearfix" style={{paddingTop:'15px'}}>
  3599. <div className="clearfix">
  3600. <FormItem
  3601. className="half-item"
  3602. {...formItemLayout}
  3603. label="项目状态"
  3604. >
  3605. {
  3606. getProjectName(parseInt(this.state.projectStatus))
  3607. }
  3608. {
  3609. this.state.projectStatus !== 0 ? <Button
  3610. type="primary"
  3611. size="small"
  3612. style={{
  3613. marginLeft: '5px',
  3614. }}
  3615. onClick={()=>{
  3616. this.setState({
  3617. projectSituationVisible: true,
  3618. })
  3619. }}
  3620. >
  3621. 修改
  3622. </Button> : null
  3623. }
  3624. <Button
  3625. type="primary"
  3626. size="small"
  3627. style={{
  3628. position: "absolute",
  3629. zIndex: 1,
  3630. marginLeft: '5px',
  3631. }}
  3632. onClick={this.caozuorizhi}
  3633. >
  3634. 操作日志
  3635. </Button>
  3636. </FormItem>
  3637. <FormItem
  3638. className="half-item"
  3639. {...formItemLayout}
  3640. label="合同编号"
  3641. >
  3642. <span>{this.state.contractNo}</span>
  3643. </FormItem>
  3644. </div>
  3645. <div className="clearfix">
  3646. <FormItem
  3647. className="half-item"
  3648. {...formItemLayout}
  3649. label="是否特批"
  3650. >
  3651. <span>{getApproval(this.state.approval)}</span>
  3652. </FormItem>
  3653. <FormItem
  3654. className="half-item"
  3655. {...formItemLayout}
  3656. label="结算状态"
  3657. >
  3658. <span>
  3659. {getLiquidationStatus(this.state.liquidationStatus)}
  3660. </span>
  3661. </FormItem>
  3662. <FormItem
  3663. className="half-item"
  3664. {...formItemLayout}
  3665. label="流程状态"
  3666. >
  3667. <span>
  3668. {getProcessStatus(this.state.processStatus)}
  3669. </span>
  3670. </FormItem>
  3671. <FormItem
  3672. className="half-item"
  3673. {...formItemLayout}
  3674. label="订单编号"
  3675. >
  3676. <span>{this.state.orderNo}</span>
  3677. </FormItem>
  3678. </div>
  3679. <div className="clearfix">
  3680. <FormItem
  3681. className="half-item"
  3682. {...formItemLayout}
  3683. label="满意度表格"
  3684. >
  3685. <Radio.Group
  3686. value={this.state.formRetrieve}
  3687. onChange={(e) => {
  3688. this.setState({ formRetrieve: e.target.value })
  3689. }}
  3690. >
  3691. <Radio value={0}>未收回</Radio>
  3692. <Radio value={1}>已收回</Radio>
  3693. <Radio value={2}>其他</Radio>
  3694. </Radio.Group>
  3695. </FormItem>
  3696. <FormItem
  3697. className="half-item"
  3698. {...formItemLayout}
  3699. label="(满意度)备注"
  3700. >
  3701. <Input
  3702. type="textarea"
  3703. placeholder="请输入备注"
  3704. rows={2}
  3705. value={this.state.retrieveContent}
  3706. onChange={(e) => {
  3707. this.setState({
  3708. retrieveContent: e.target.value,
  3709. })
  3710. }}
  3711. />
  3712. </FormItem>
  3713. {/*<FormItem*/}
  3714. {/* className="half-item"*/}
  3715. {/* {...formItemLayout}*/}
  3716. {/* label="退单"*/}
  3717. {/*>*/}
  3718. {/* <Radio.Group*/}
  3719. {/* value={this.state.taskRefund}*/}
  3720. {/* onChange={(e) => {*/}
  3721. {/* this.setState({ taskRefund: e.target.value })*/}
  3722. {/* }}*/}
  3723. {/* >*/}
  3724. {/* <Radio value={0}>已完成</Radio>*/}
  3725. {/* <Radio value={1}>未完成</Radio>*/}
  3726. {/* <Radio value={2}>其他</Radio>*/}
  3727. {/* </Radio.Group>*/}
  3728. {/*</FormItem>*/}
  3729. </div>
  3730. <div className="clearfix">
  3731. {/*<FormItem*/}
  3732. {/* className="half-item"*/}
  3733. {/* {...formItemLayout}*/}
  3734. {/* label="(退单)备注"*/}
  3735. {/*>*/}
  3736. {/* <Input*/}
  3737. {/* type="textarea"*/}
  3738. {/* placeholder="请输入备注"*/}
  3739. {/* rows={2}*/}
  3740. {/* value={this.state.refundContent}*/}
  3741. {/* onChange={(e) => {*/}
  3742. {/* this.setState({ refundContent: e.target.value })*/}
  3743. {/* }}*/}
  3744. {/* />*/}
  3745. {/*</FormItem>*/}
  3746. <div style={{
  3747. paddingLeft: '8%',
  3748. }}>
  3749. <div style={{color:'#000',fontWeight:500}}>
  3750. 特别说明
  3751. <span style={{color: '#58a3ff',}}>(针对项目的特殊情况说明)</span>
  3752. </div>
  3753. <div style={{display:'flex',alignItems:'center',paddingTop: '10px'}}>
  3754. <div>备注:</div>
  3755. <Input
  3756. type="textarea"
  3757. placeholder="请输入备注"
  3758. rows={3}
  3759. style={{
  3760. width:'33%',
  3761. marginLeft: '10px',
  3762. }}
  3763. value={this.state.specialComment}
  3764. onChange={(e) => {
  3765. this.setState({ specialComment: e.target.value });
  3766. }}
  3767. />
  3768. </div>
  3769. </div>
  3770. </div>
  3771. <div className="clearfix">
  3772. <h3 className="sub-title">订单负责人信息</h3>
  3773. <FormItem
  3774. className="half-item"
  3775. {...formItemLayout}
  3776. label="负责人"
  3777. >
  3778. <span>
  3779. {this.state.salesmanName +
  3780. '(' +
  3781. this.state.depName +
  3782. ')'}
  3783. </span>
  3784. </FormItem>
  3785. <FormItem
  3786. className="half-item"
  3787. {...formItemLayout}
  3788. label="负责人电话"
  3789. >
  3790. <span>{this.state.salesmanMobile}</span>
  3791. </FormItem>
  3792. <FormItem
  3793. className="half-item"
  3794. {...formItemLayout}
  3795. label="当前财务负责人"
  3796. >
  3797. <span>{this.state.nowFinance}</span>
  3798. </FormItem>
  3799. <FormItem
  3800. className="half-item"
  3801. {...formItemLayout}
  3802. label="当前财务负责人电话"
  3803. >
  3804. <span>{this.state.nowFinanceMobile}</span>
  3805. </FormItem>
  3806. <FormItem
  3807. className="half-item"
  3808. {...formItemLayout}
  3809. style={{ opacity: '.5' }}
  3810. label="原负责人"
  3811. >
  3812. <span>{this.state.oldSalesmanName}</span>
  3813. </FormItem>
  3814. <FormItem
  3815. className="half-item"
  3816. {...formItemLayout}
  3817. style={{ opacity: '.5' }}
  3818. label="原负责人电话"
  3819. >
  3820. <span>{this.state.oldSalesmanMobile}</span>
  3821. </FormItem>
  3822. <FormItem
  3823. className="half-item"
  3824. {...formItemLayout}
  3825. style={{ opacity: '.5' }}
  3826. label="实际财务操作人"
  3827. >
  3828. <span>{this.state.financeName}</span>
  3829. </FormItem>
  3830. <FormItem
  3831. className="half-item"
  3832. {...formItemLayout}
  3833. style={{ opacity: '.5' }}
  3834. label="实际财务操作人电话"
  3835. >
  3836. <span>{this.state.financeMobile}</span>
  3837. </FormItem>
  3838. <FormItem
  3839. className="half-item"
  3840. {...formItemLayout}
  3841. label="订单留言"
  3842. >
  3843. <span>{this.state.orderRemarks}</span>
  3844. </FormItem>
  3845. <FormItem
  3846. className="half-item"
  3847. {...formItemLayout}
  3848. label=""
  3849. >
  3850. <Button onClick={this.getOrderLog}>查看订单日志</Button>
  3851. </FormItem>
  3852. <OrderRiZi
  3853. dataSourcerizhi={this.state.dataSourceY}
  3854. closeOrderLog={this.closeOrderLog}
  3855. visible={this.state.avisible}
  3856. loading={this.state.loading}
  3857. />
  3858. </div>
  3859. {/*<div className="clearfix">*/}
  3860. {/* <h3 className="sub-title">外包信息</h3>*/}
  3861. {/* <FormItem*/}
  3862. {/* className="half-item"*/}
  3863. {/* {...formItemLayout}*/}
  3864. {/* label="外包公司"*/}
  3865. {/* >*/}
  3866. {/* <Input*/}
  3867. {/* value={this.state.outsourceName}*/}
  3868. {/* onChange={(e) => {*/}
  3869. {/* this.setState({*/}
  3870. {/* outsourceName: e.target.value,*/}
  3871. {/* })*/}
  3872. {/* }}*/}
  3873. {/* placeholder="请输入外包公司"*/}
  3874. {/* style={{ width: '200px' }}*/}
  3875. {/* />*/}
  3876. {/* </FormItem>*/}
  3877. {/* <FormItem*/}
  3878. {/* className="half-item"*/}
  3879. {/* {...formItemLayout}*/}
  3880. {/* label="外包成本(万元)"*/}
  3881. {/* >*/}
  3882. {/* <Input*/}
  3883. {/* value={this.state.outsourcePrice}*/}
  3884. {/* onChange={(e) => {*/}
  3885. {/* this.setState({*/}
  3886. {/* outsourcePrice: e.target.value,*/}
  3887. {/* })*/}
  3888. {/* }}*/}
  3889. {/* placeholder="请输入外包成本"*/}
  3890. {/* style={{ width: '200px' }}*/}
  3891. {/* />*/}
  3892. {/* </FormItem>*/}
  3893. {/*</div>*/}
  3894. {/*<hr style={{border:'1px dashed #aaa', width:"90%",margin:'auto'}}/>*/}
  3895. <div className="clearfix">
  3896. <h3 className="sub-title">联系信息</h3>
  3897. <FormItem
  3898. className="half-item"
  3899. {...formItemLayout}
  3900. label="客户名称"
  3901. >
  3902. <span>{this.state.userName}</span>
  3903. </FormItem>
  3904. <FormItem
  3905. className="half-item"
  3906. {...formItemLayout}
  3907. label="企业法人"
  3908. >
  3909. <Input
  3910. placeholder="请输入法人名称"
  3911. value={this.state.legalPerson}
  3912. style={{ width: '200px' }}
  3913. onChange={(e) => {
  3914. this.setState({ legalPerson: e.target.value })
  3915. }}
  3916. ref="commodityQuantity"
  3917. />
  3918. </FormItem>
  3919. <FormItem
  3920. className="half-item"
  3921. {...formItemLayout}
  3922. label="法人电话"
  3923. >
  3924. <Input
  3925. placeholder="请输入法人电话"
  3926. value={this.state.legalPersonTel}
  3927. style={{ width: '200px' }}
  3928. onChange={(e) => {
  3929. this.setState({ legalPersonTel: e.target.value })
  3930. }}
  3931. ref="commodityQuantity"
  3932. />
  3933. </FormItem>
  3934. <FormItem
  3935. className="half-item"
  3936. {...formItemLayout}
  3937. label="客户联系人"
  3938. >
  3939. <Input
  3940. placeholder="请输入联系人名称"
  3941. value={this.state.contacts}
  3942. style={{ width: '200px' }}
  3943. onChange={(e) => {
  3944. this.setState({ contacts: e.target.value })
  3945. }}
  3946. ref="commodityQuantity"
  3947. />
  3948. </FormItem>
  3949. <FormItem
  3950. className="half-item"
  3951. {...formItemLayout}
  3952. label="联系人电话"
  3953. >
  3954. <Input
  3955. placeholder="请输入联系人电话"
  3956. value={this.state.contactMobile}
  3957. style={{ width: '200px' }}
  3958. onChange={(e) => {
  3959. this.setState({ contactMobile: e.target.value })
  3960. }}
  3961. ref="commodityQuantity"
  3962. />
  3963. </FormItem>
  3964. <FormItem
  3965. className="half-item"
  3966. {...formItemLayout}
  3967. label="企业地址"
  3968. >
  3969. <Cascader
  3970. options={areaSelect()}
  3971. value={this.state.ProvinceCity}
  3972. placeholder="选择城市"
  3973. style={{ width: '200px' }}
  3974. onChange={(e) => {
  3975. this.setState({ ProvinceCity: e })
  3976. }}
  3977. />
  3978. </FormItem>
  3979. <FormItem
  3980. className="half-item"
  3981. {...formItemLayout}
  3982. label=""
  3983. ></FormItem>
  3984. <FormItem
  3985. className="half-item"
  3986. {...formItemLayout}
  3987. label=""
  3988. >
  3989. <Input
  3990. placeholder="请输入详细地址"
  3991. value={this.state.postalAddress}
  3992. style={{ width: '200px', marginLeft: '12em' }}
  3993. onChange={(e) => {
  3994. this.setState({ postalAddress: e.target.value })
  3995. }}
  3996. ref="commodityQuantity"
  3997. />
  3998. </FormItem>
  3999. </div>
  4000. {/*<hr style={{border:'1px dashed #aaa', width:"90%",margin:'auto'}}/>*/}
  4001. <div className="clearfix">
  4002. <h3 className="sub-title">项目信息</h3>
  4003. {/*0通用 1专利 2软著 3审计 4双软 5高新 6商标*/}
  4004. {/*贯标需要显示*/}
  4005. {
  4006. this.state.isIso ?
  4007. <div>
  4008. <FormItem
  4009. className="half-item"
  4010. {...formItemLayout}
  4011. label="认证费"
  4012. >
  4013. <span>
  4014. {
  4015. this.state.ifCertificationFee === 1 ? '包含' : '不包含'
  4016. }
  4017. </span>
  4018. </FormItem>
  4019. {this.state.ifCertificationFee === 1 ?<FormItem
  4020. className="half-item"
  4021. {...formItemLayout}
  4022. label="认证费(万元)"
  4023. >
  4024. <Input
  4025. placeholder="请输入认证金额"
  4026. value={this.state.certificationFee}
  4027. style={{ width: '200px'}}
  4028. onChange={(e) => {
  4029. this.setState({ certificationFee: e.target.value })
  4030. }}
  4031. />
  4032. </FormItem> : null}
  4033. {this.state.ifCertificationFee === 1 ? <FormItem
  4034. className="half-item"
  4035. {...formItemLayout}
  4036. label=""
  4037. /> : null}
  4038. {this.state.ifCertificationFee === 1 ? <FormItem
  4039. className="half-item"
  4040. {...formItemLayout}
  4041. label="付款公司名称"
  4042. >
  4043. <Input
  4044. placeholder="请输入代付款公司名称"
  4045. value={this.state.certificationCorporate}
  4046. style={{ width: '200px'}}
  4047. onChange={(e) => {
  4048. this.setState({ certificationCorporate: e.target.value })
  4049. }}
  4050. ref="commodityQuantity"
  4051. />
  4052. </FormItem>:null}
  4053. </div> : null
  4054. }
  4055. <FormItem
  4056. className="half-item"
  4057. {...formItemLayout}
  4058. label="项目编号"
  4059. >
  4060. <span>
  4061. {this.state.splitStatus == 2
  4062. ? this.state.splitSuper + '-' + this.state.splitId
  4063. : this.state.id}
  4064. </span>
  4065. </FormItem>
  4066. <FormItem
  4067. className="half-item"
  4068. {...formItemLayout}
  4069. label="项目名称"
  4070. >
  4071. <span>{this.state.taskName}</span>
  4072. </FormItem>
  4073. {/*<FormItem*/}
  4074. {/* className="half-item"*/}
  4075. {/* {...formItemLayout}*/}
  4076. {/* label="项目状态"*/}
  4077. {/*>*/}
  4078. {/* <Select*/}
  4079. {/* placeholder="选择项目状态"*/}
  4080. {/* style={{ width: '200px' }}*/}
  4081. {/* value={this.state.taskStatus}*/}
  4082. {/* onChange={(e) => {*/}
  4083. {/* this.setState({ taskStatus: e })*/}
  4084. {/* }}*/}
  4085. {/* >*/}
  4086. {/* {taskStatus.map(function (item) {*/}
  4087. {/* return (*/}
  4088. {/* <Select.Option key={item.value}>*/}
  4089. {/* {item.key}*/}
  4090. {/* </Select.Option>*/}
  4091. {/* )*/}
  4092. {/* })}*/}
  4093. {/* </Select>*/}
  4094. {/*</FormItem>*/}
  4095. <FormItem
  4096. className="half-item"
  4097. {...formItemLayout}
  4098. label="项目类别"
  4099. >
  4100. <span>{this.state.cname}</span>
  4101. </FormItem>
  4102. <FormItem
  4103. className="half-item"
  4104. {...formItemLayout}
  4105. label="证书编号"
  4106. >
  4107. {this.state.certificateNumber}
  4108. </FormItem>
  4109. </div>
  4110. <div className="clearfix">
  4111. <h3 className="sub-title">申报系统账户信息</h3>
  4112. {/*<span style={{color:'red'}}>注:仅技术部可见</span>*/}
  4113. <FormItem
  4114. className="half-item"
  4115. {...formItemLayout}
  4116. label="用户名"
  4117. >
  4118. <Input
  4119. placeholder="请输入用户名"
  4120. value={this.state.declareUser}
  4121. style={{ width: '200px' }}
  4122. onChange={(e) => {
  4123. this.setState({ declareUser: e.target.value })
  4124. }}
  4125. />
  4126. </FormItem>
  4127. <FormItem
  4128. className="half-item"
  4129. {...formItemLayout}
  4130. label="密码"
  4131. >
  4132. <Input
  4133. placeholder="请输入密码"
  4134. value={this.state.declarePwd}
  4135. style={{ width: '200px' }}
  4136. onChange={(e) => {
  4137. this.setState({ declarePwd: e.target.value })
  4138. }}
  4139. />
  4140. </FormItem>
  4141. </div>
  4142. <div className="clearfix">
  4143. <h3 className="sub-title">项目申报进度</h3>
  4144. <DeclarationProgress
  4145. timeRecordparse={this.state.timeRecordparse}
  4146. startDate={this.state.startDate}
  4147. taskDate={this.state.taskDate}
  4148. list={[
  4149. {id:4,name:'完成时间',value:this.state.endDate},
  4150. {id:6,name:'受理时间',value:this.state.acceptDate},
  4151. {id:8,name:'公示时间',value:this.state.publicityDate},
  4152. {id:10,name:'发证时间',value:this.state.licenceDate},
  4153. {id:15,name:'立项金额',value:this.state.setUpAmount}
  4154. ]}/>
  4155. {/*专利显示 bpType: 0 正常 1专利 2软著 3审计 4双软 5高新 6商标*/}
  4156. {
  4157. this.state.bpType === 1 || this.state.bpType === 6 ?
  4158. <div>
  4159. <FormItem
  4160. className="half-item"
  4161. {...formItemLayout}
  4162. label="是否高新企业"
  4163. >
  4164. <Radio.Group
  4165. value={this.state.highTechStatus}
  4166. onChange={(e) => {
  4167. this.setState({ highTechStatus: e.target.value })
  4168. }}
  4169. >
  4170. <Radio value={1}>是</Radio>
  4171. <Radio value={0}>否</Radio>
  4172. </Radio.Group>
  4173. </FormItem>
  4174. <FormItem/>
  4175. <PatentSchedule
  4176. taskId={this.state.id}
  4177. bpType={this.state.bpType}
  4178. acceptCount={this.state.acceptCount}
  4179. certificatesCount={this.state.certificatesCount}
  4180. rejectCount={this.state.rejectCount}
  4181. commodityQuantity={this.state.commodityQuantity}
  4182. refresh={()=>{this.xiangqing(this.state.id)}}
  4183. onChange={(key,value)=>{
  4184. if(key === 'acceptCount'){
  4185. this.setState({
  4186. acceptCount: value
  4187. })
  4188. }
  4189. if(key === 'certificatesCount'){
  4190. this.setState({
  4191. certificatesCount: value
  4192. })
  4193. }
  4194. if(key === 'rejectCount'){
  4195. this.setState({
  4196. rejectCount: value
  4197. })
  4198. }
  4199. }}
  4200. />
  4201. </div> :
  4202. <div>
  4203. {/*高新显示 bpType: 0 正常 1专利 2软著 3审计 4双软 5高新 6商标*/}
  4204. {this.state.bpType === 5 ? <FormItem
  4205. className="half-item"
  4206. {...formItemLayout}
  4207. label="是否抽查">
  4208. <Radio.Group
  4209. value={this.state.spotCheckStatus}
  4210. onChange={(e) => {
  4211. this.setState({ spotCheckStatus: e.target.value })
  4212. }}
  4213. >
  4214. <Radio value={0}>否</Radio>
  4215. <Radio value={1}>是,未通过</Radio>
  4216. <Radio value={2}>是,通过</Radio>
  4217. </Radio.Group>
  4218. </FormItem> : null}
  4219. {this.state.bpType === 5 ? <FormItem/> : null}
  4220. {this.state.bpType === 5 ? <FormItem
  4221. className="half-item"
  4222. {...formItemLayout}
  4223. label="是否立项"
  4224. >
  4225. <Radio.Group
  4226. value={this.state.setUpStatus}
  4227. onChange={(e) => {
  4228. this.setState({ setUpStatus: e.target.value })
  4229. }}
  4230. >
  4231. <Radio value={0}>否</Radio>
  4232. <Radio value={1}>是</Radio>
  4233. </Radio.Group>
  4234. </FormItem> : null}
  4235. {this.state.bpType === 5 ? <FormItem
  4236. className="half-item"
  4237. {...formItemLayout}
  4238. label={this.state.setUpStatus === 1 ? "立项时间" : ''}
  4239. >
  4240. {this.state.setUpStatus === 1 ?<DatePicker
  4241. style={{
  4242. marginTop: '2px',
  4243. width: '200px',
  4244. height: '32px',
  4245. }}
  4246. showTime
  4247. format="YYYY-MM-DD"
  4248. onOk={() => {}}
  4249. value={
  4250. this.state.setUpTime
  4251. ? moment(this.state.setUpTime)
  4252. : null
  4253. }
  4254. onChange={(data, dataString) => {
  4255. this.setState({ setUpTime: dataString })
  4256. }}
  4257. /> : null }
  4258. </FormItem> : null}
  4259. {/*高新和科技项目显示 bpType: 0 正常 1专利 2软著 3审计 4双软 5高新 6商标*/}
  4260. {/*cSort: 3 科技项目 6: 会员*/}
  4261. {(this.state.bpType === 5 || this.state.cSort === 3) && <FormItem
  4262. className="half-item"
  4263. {...formItemLayout}
  4264. label="申报批次"
  4265. >
  4266. <Select
  4267. style={{ width: 200 }}
  4268. placeholder="请选择批次"
  4269. value={
  4270. this.state.declarationBatch
  4271. ? this.state.declarationBatch
  4272. : undefined
  4273. }
  4274. onChange={(e) => {
  4275. this.setState({
  4276. declarationBatch: e,
  4277. })
  4278. }}
  4279. >
  4280. <Option value={1}>第一批</Option>
  4281. <Option value={2}>第二批</Option>
  4282. <Option value={3}>第三批</Option>
  4283. <Option value={4}>第四批</Option>
  4284. </Select>
  4285. </FormItem>}
  4286. {/*只有科技项目才有是否到款*/}
  4287. {/*cSort: 3 科技项目 6: 会员*/}
  4288. {this.state.cSort === 3 && <FormItem
  4289. className="half-item"
  4290. {...formItemLayout}
  4291. label="是否到款"
  4292. >
  4293. <Radio.Group
  4294. value={this.state.arrivalMoney}
  4295. onChange={(e) => {
  4296. this.setState({ arrivalMoney: e.target.value })
  4297. }}
  4298. >
  4299. <Radio value={0}>未到企业</Radio>
  4300. <Radio value={1}>已到企业</Radio>
  4301. </Radio.Group>
  4302. </FormItem>}
  4303. </div>}
  4304. </div>
  4305. {this.state.bpType !== 1 && this.state.bpType !== 6 ? <div className="clearfix">
  4306. <FormItem
  4307. labelCol={{ span: 3 }}
  4308. wrapperCol={{ span: 16 }}
  4309. label="附件"
  4310. >
  4311. <Picture
  4312. domId={'myTask1'}
  4313. fileList={(e) => {
  4314. this.setState({ attachmentUrl: e })
  4315. }}
  4316. pictureUrl={this.state.attachmentUrl}
  4317. visible={this.props.visible}
  4318. data={{
  4319. sign: 'order_task_file',
  4320. url: '/api/admin/orderProject/uploadOrderTaskFile',
  4321. }}
  4322. />
  4323. </FormItem>
  4324. </div> : null}
  4325. {this.state.bpType !== 1 && this.state.bpType !== 6 ? <div className="clearfix">
  4326. <FormItem
  4327. labelCol={{ span: 3 }}
  4328. wrapperCol={{ span: 16 }}
  4329. label="项目说明"
  4330. >
  4331. <Input
  4332. type="textarea"
  4333. placeholder="请输入项目说明"
  4334. rows={4}
  4335. disabled
  4336. value={this.state.taskComment}
  4337. onChange={(e) => {
  4338. if(this.state.taskCommentData){
  4339. let len = this.state.taskCommentData.length;
  4340. if(e.target.value.slice(0,len) !== this.state.taskCommentData){
  4341. message.warning('项目说明不允许删除与修改已存在的内容');
  4342. return;
  4343. }
  4344. }
  4345. this.setState({ taskComment: e.target.value })
  4346. }}
  4347. />
  4348. </FormItem>
  4349. </div> : null}
  4350. <div>
  4351. <h3 className="sub-title">项目业务</h3>
  4352. {this.state.processStatus == 0 ? (
  4353. <Button
  4354. type="primary"
  4355. onClick={this.addDetailed}
  4356. style={{
  4357. float: 'right',
  4358. marginRight: '50px',
  4359. marginBottom: '15px',
  4360. }}
  4361. >
  4362. 添加项目明细
  4363. </Button>
  4364. ) : (
  4365. ''
  4366. )}
  4367. </div>
  4368. <div className="patent-table">
  4369. <Spin spinning={this.state.loading}>
  4370. <Table
  4371. columns={this.state.columnsX}
  4372. dataSource={this.state.dataSourceX}
  4373. pagination={this.state.paginations}
  4374. onRowClick={this.tableRowClickX}
  4375. bordered
  4376. size="small"
  4377. />
  4378. </Spin>
  4379. </div>
  4380. <div className="clearfix">
  4381. <Button
  4382. className="cancel"
  4383. type="primary"
  4384. // onClick={this.tijiaoOk}
  4385. onClick={() => {
  4386. let num = this.state.projectStatus
  4387. if (
  4388. num != 1 &&
  4389. num != 20 &&
  4390. num != 21
  4391. ) {
  4392. this.showDeleteConfirm(num, this.tijiaoOk)
  4393. } else {
  4394. this.tijiaoOk()
  4395. }
  4396. }}
  4397. style={{ marginLeft: '200px', marginTop: '10px' }}
  4398. htmlType="submit"
  4399. >
  4400. 保存
  4401. </Button>
  4402. <Button
  4403. className="cancel"
  4404. type="ghost"
  4405. onClick={this.visitCancel}
  4406. style={{ marginLeft: '50px', marginTop: '10px' }}
  4407. >
  4408. 取消
  4409. </Button>
  4410. </div>
  4411. </div>
  4412. </Spin>
  4413. </Form> : <div/>}
  4414. </TabPane>
  4415. {/*<TabPane tab="外包/供应商信息" key="2">*/}
  4416. {/* <Spin spinning={this.state.sureOutLoading || this.state.waiDetailLoading || this.state.payNodeLoading || this.state.thirdInfoLoading}>*/}
  4417. {/* {this.state.refundStatus != 0 && this.state.refundStatus != 1 ? (*/}
  4418. {/* <div style={{ marginTop: 10 }}>*/}
  4419. {/* <div className="clearfix">*/}
  4420. {/* <FormItem*/}
  4421. {/* className="half-item"*/}
  4422. {/* labelCol={{ span: 3 }}*/}
  4423. {/* wrapperCol={{ span: 14 }}*/}
  4424. {/* label={*/}
  4425. {/* <span>*/}
  4426. {/* <strong style={{ color: '#f00' }}>*</strong>*/}
  4427. {/* 类型*/}
  4428. {/* </span>*/}
  4429. {/* }*/}
  4430. {/* >*/}
  4431. {/* <Radio.Group*/}
  4432. {/* disabled={this.state.payNodeLoading || this.state.thirdInfoLoading}*/}
  4433. {/* value={this.state.startType}*/}
  4434. {/* onChange={(e) => {*/}
  4435. {/* let _this = this;*/}
  4436. {/* if(this.state.thirdInfoList.length >0){*/}
  4437. {/* confirm({*/}
  4438. {/* title: '确定要切换吗?',*/}
  4439. {/* content: '切换将删除所有第三信息和付款节点',*/}
  4440. {/* onOk() {*/}
  4441. {/* return new Promise((resolve, reject) => {*/}
  4442. {/* _this.setState({ startType: e.target.value },()=>{*/}
  4443. {/* _this.projectTypeTabContent(_this.state.projectType);*/}
  4444. {/* })*/}
  4445. {/* _this.confirmDeletNew(-1,resolve,reject)*/}
  4446. {/* if(_this.state.payNodeList.length > 0){*/}
  4447. {/* _this.payNodeConfirmDeletNew(-1,resolve,reject);*/}
  4448. {/* }*/}
  4449. {/* }).catch(() => console.log('Oops errors!'));*/}
  4450. {/* },*/}
  4451. {/* onCancel() {},*/}
  4452. {/* });*/}
  4453. {/* }else{*/}
  4454. {/* this.setState({ startType: e.target.value },()=>{*/}
  4455. {/* this.projectTypeTabContent(this.state.projectType);*/}
  4456. {/* })*/}
  4457. {/* }*/}
  4458. {/* }}*/}
  4459. {/* >*/}
  4460. {/* <Radio value={0}>外包(不走总部)</Radio>*/}
  4461. {/* <Radio value={1}>供应商信息</Radio>*/}
  4462. {/* </Radio.Group>*/}
  4463. {/* </FormItem>*/}
  4464. {/* </div>*/}
  4465. {/* /!* 专利类型 *!/*/}
  4466. {/* <div*/}
  4467. {/* className="clearfix"*/}
  4468. {/* style={{*/}
  4469. {/* display: this.state.projectType === 1 ? 'block' : 'none',*/}
  4470. {/* }}*/}
  4471. {/* >*/}
  4472. {/* <FormItem*/}
  4473. {/* className="half-item"*/}
  4474. {/* labelCol={{ span: 4 }}*/}
  4475. {/* wrapperCol={{ span: 14 }}*/}
  4476. {/* label={*/}
  4477. {/* <span>*/}
  4478. {/* <strong style={{ color: '#f00' }}>*</strong>*/}
  4479. {/* 专利类型*/}
  4480. {/* </span>*/}
  4481. {/* }*/}
  4482. {/* >*/}
  4483. {/* <Radio.Group*/}
  4484. {/* disabled={this.state.payNodeLoading || this.state.thirdInfoLoading}*/}
  4485. {/* value={this.state.patentType}*/}
  4486. {/* onChange={(e) => {*/}
  4487. {/* let _this = this;*/}
  4488. {/* if(this.state.thirdInfoList.length >0){*/}
  4489. {/* confirm({*/}
  4490. {/* title: '确定要切换吗?',*/}
  4491. {/* content: '切换将删除所有第三信息和付款节点',*/}
  4492. {/* onOk() {*/}
  4493. {/* return new Promise((resolve, reject) => {*/}
  4494. {/* _this.setState({ patentType: e.target.value },()=>{*/}
  4495. {/* _this.projectTypeTabContent(_this.state.projectType);*/}
  4496. {/* })*/}
  4497. {/* _this.confirmDeletNew(-1,resolve,reject)*/}
  4498. {/* if(_this.state.payNodeList.length > 0){*/}
  4499. {/* _this.payNodeConfirmDeletNew(-1,resolve,reject);*/}
  4500. {/* }*/}
  4501. {/* }).catch(() => console.log('Oops errors!'));*/}
  4502. {/* },*/}
  4503. {/* onCancel() {},*/}
  4504. {/* });*/}
  4505. {/* }else{*/}
  4506. {/* this.setState({ patentType: e.target.value },()=>{*/}
  4507. {/* this.projectTypeTabContent(this.state.projectType);*/}
  4508. {/* })*/}
  4509. {/* }*/}
  4510. {/* }}*/}
  4511. {/* >*/}
  4512. {/* <Radio value={0}>专利申请/变更/转让</Radio>*/}
  4513. {/* <Radio value={1}>专利买卖</Radio>*/}
  4514. {/* </Radio.Group>*/}
  4515. {/* </FormItem>*/}
  4516. {/* </div>*/}
  4517. {/* <div*/}
  4518. {/* className="clearfix"*/}
  4519. {/* style={{*/}
  4520. {/* display: this.state.projectType === 1? 'block' : 'none',*/}
  4521. {/* }}*/}
  4522. {/* >*/}
  4523. {/* <FormItem*/}
  4524. {/* className="half-item"*/}
  4525. {/* labelCol={{ span: 4 }}*/}
  4526. {/* wrapperCol={{ span: 14 }}*/}
  4527. {/* label={*/}
  4528. {/* <span>*/}
  4529. {/* <strong style={{ color: '#f00' }}>*</strong>*/}
  4530. {/* 专利名称*/}
  4531. {/* </span>*/}
  4532. {/* }*/}
  4533. {/* >*/}
  4534. {/* <Radio.Group*/}
  4535. {/* disabled={this.state.payNodeLoading || this.state.thirdInfoLoading}*/}
  4536. {/* value={this.state.patentNameType}*/}
  4537. {/* onChange={(e) => {*/}
  4538. {/* let _this = this;*/}
  4539. {/* if(this.state.thirdInfoList.length >0){*/}
  4540. {/* confirm({*/}
  4541. {/* title: '确定要切换吗?',*/}
  4542. {/* content: '切换将删除所有第三信息和付款节点',*/}
  4543. {/* onOk() {*/}
  4544. {/* return new Promise((resolve, reject) => {*/}
  4545. {/* _this.setState({ patentNameType: e.target.value },()=>{*/}
  4546. {/* _this.projectTypeTabContent(_this.state.projectType);*/}
  4547. {/* })*/}
  4548. {/* _this.confirmDeletNew(-1,resolve,reject)*/}
  4549. {/* if(_this.state.payNodeList.length > 0){*/}
  4550. {/* _this.payNodeConfirmDeletNew(-1,resolve,reject);*/}
  4551. {/* }*/}
  4552. {/* }).catch(() => console.log('Oops errors!'));*/}
  4553. {/* },*/}
  4554. {/* onCancel() {},*/}
  4555. {/* });*/}
  4556. {/* }else{*/}
  4557. {/* this.setState({ patentNameType: e.target.value },()=>{*/}
  4558. {/* this.projectTypeTabContent(this.state.projectType);*/}
  4559. {/* })*/}
  4560. {/* }*/}
  4561. {/* }}*/}
  4562. {/* >*/}
  4563. {/* <Radio value={0}>实用新型专利</Radio>*/}
  4564. {/* <Radio value={1}>发明专利</Radio>*/}
  4565. {/* <Radio value={2}>外观专利</Radio>*/}
  4566. {/* /!*<Radio value={3}>*!/*/}
  4567. {/* /!* 其他*!/*/}
  4568. {/* /!* <Input*!/*/}
  4569. {/* /!* disabled={this.state.patentNameType !== 3}*!/*/}
  4570. {/* /!* value={this.state.patentName}*!/*/}
  4571. {/* /!* style={{ marginLeft: '15px' }}*!/*/}
  4572. {/* /!* onChange={(e) => {*!/*/}
  4573. {/* /!* this.setState({*!/*/}
  4574. {/* /!* patentName: e.target.value,*!/*/}
  4575. {/* /!* })*!/*/}
  4576. {/* /!* }}*!/*/}
  4577. {/* /!* placeholder="请填写专利名称"*!/*/}
  4578. {/* /!* />*!/*/}
  4579. {/* /!*</Radio>*!/*/}
  4580. {/* </Radio.Group>*/}
  4581. {/* </FormItem>*/}
  4582. {/* </div>*/}
  4583. {/* /!*外包类型无此选项*!/*/}
  4584. {/* {this.state.orderTaskOfficialCost === 1 && this.state.startType !== 0 ? <div className="clearfix">*/}
  4585. {/* <FormItem*/}
  4586. {/* className="half-item"*/}
  4587. {/* labelCol={{ span: 4 }}*/}
  4588. {/* wrapperCol={{ span: 14 }}*/}
  4589. {/* label={<span>官费</span>}>*/}
  4590. {/* <Radio.Group*/}
  4591. {/* value={this.state.containOfficialFees}*/}
  4592. {/* onChange={(e) => {*/}
  4593. {/* this.setState({ containOfficialFees: e.target.value })*/}
  4594. {/* }}*/}
  4595. {/* >*/}
  4596. {/* <Radio value={0}>实际已缴费</Radio>*/}
  4597. {/* <Radio value={1}>实际未缴费</Radio>*/}
  4598. {/* </Radio.Group>*/}
  4599. {/* </FormItem>*/}
  4600. {/* </div> : <div/>}*/}
  4601. {/* /!* 第三方信息专利 *!/*/}
  4602. {/* <div>*/}
  4603. {/* <span*/}
  4604. {/* style={{*/}
  4605. {/* fontSize: '18px',*/}
  4606. {/* }}*/}
  4607. {/* >*/}
  4608. {/* 第三方信息*/}
  4609. {/* </span>*/}
  4610. {/* <span*/}
  4611. {/* style={{*/}
  4612. {/* display: 'inline-block',*/}
  4613. {/* marginLeft: 10,*/}
  4614. {/* color: 'red',*/}
  4615. {/* }}*/}
  4616. {/* >*/}
  4617. {/* 金额总计(万元): {this.state.allTotalAmount}*/}
  4618. {/* </span>*/}
  4619. {/* <Button*/}
  4620. {/* type="primary"*/}
  4621. {/* onClick={(e) => {*/}
  4622. {/* //this.state.startType 0外包 1供应商 类型为外包时,当普通单*/}
  4623. {/* if(this.state.projectType === 1 && this.state.patentType === -1){*/}
  4624. {/* message.info('请先选择专利类型');*/}
  4625. {/* }else if(this.state.projectType === 1 && this.state.patentNameType === -1){*/}
  4626. {/* message.info('请先选择专利名称');*/}
  4627. {/* } else{*/}
  4628. {/* this.addThirdList()*/}
  4629. {/* }*/}
  4630. {/* }}*/}
  4631. {/* style={{*/}
  4632. {/* float: 'right',*/}
  4633. {/* marginRight: '50px',*/}
  4634. {/* marginBottom: '15px',*/}
  4635. {/* }}*/}
  4636. {/* >*/}
  4637. {/* +新增供应商名称*/}
  4638. {/* </Button>*/}
  4639. {/* </div>*/}
  4640. {/* <div*/}
  4641. {/* className="clearfix"*/}
  4642. {/* style={{*/}
  4643. {/* // display: this.state.type == 1 ? "block" : "none",*/}
  4644. {/* display: this.state.type == 1 ? 'block' : 'block',*/}
  4645. {/* }}*/}
  4646. {/* >*/}
  4647. {/* <Spin spinning={this.state.thirdInfoLoading}>*/}
  4648. {/* <Form layout="horizontal">*/}
  4649. {/* <Table*/}
  4650. {/* pagination={false}*/}
  4651. {/* columns={this.state.ContactsListsNew}*/}
  4652. {/* dataSource={this.state.thirdInfoList}*/}
  4653. {/* onRowClick={this.tableRowClickOne}*/}
  4654. {/* scroll={{ x: 'max-content', y: 0 }}*/}
  4655. {/* bordered*/}
  4656. {/* size="small"*/}
  4657. {/* />*/}
  4658. {/* <Col*/}
  4659. {/* span={24}*/}
  4660. {/* offset={9}*/}
  4661. {/* style={{ marginTop: '15px' }}*/}
  4662. {/* />*/}
  4663. {/* </Form>*/}
  4664. {/* </Spin>*/}
  4665. {/* </div>*/}
  4666. {/* /!*如果是软著类或者专利类的专利申请,隐藏付款节点 但当为外包类型时,无需隐藏*!/*/}
  4667. {/* /!*this.state.startType 0外包 1供应商*!/*/}
  4668. {/* <div*/}
  4669. {/* style={{*/}
  4670. {/* display: this.state.startType === 0 ? 'block' : ((this.state.projectType === 1 && this.state.patentType === 0) || this.state.projectType === 2? 'none' : 'block'), //0正常 1专利 2软著 3审计*/}
  4671. {/* }}*/}
  4672. {/* >*/}
  4673. {/* <span*/}
  4674. {/* style={{*/}
  4675. {/* fontSize: '18px',*/}
  4676. {/* }}*/}
  4677. {/* >*/}
  4678. {/* 付款节点*/}
  4679. {/* </span>*/}
  4680. {/* <span*/}
  4681. {/* style={{*/}
  4682. {/* display: 'inline-block',*/}
  4683. {/* marginLeft: 10,*/}
  4684. {/* color: 'red',*/}
  4685. {/* }}*/}
  4686. {/* />*/}
  4687. {/* <Button*/}
  4688. {/* type="primary"*/}
  4689. {/* onClick={(e) => {*/}
  4690. {/* this.addPayNode()*/}
  4691. {/* }}*/}
  4692. {/* style={{*/}
  4693. {/* float: 'right',*/}
  4694. {/* marginRight: '50px',*/}
  4695. {/* marginBottom: '15px',*/}
  4696. {/* }}*/}
  4697. {/* >*/}
  4698. {/* +新增付款节点*/}
  4699. {/* </Button>*/}
  4700. {/* </div>*/}
  4701. {/* /!*如果是软著类或者专利类的专利申请,隐藏付款节点 但当为外包类型时,无需隐藏*!/*/}
  4702. {/* <div*/}
  4703. {/* className="clearfix"*/}
  4704. {/* style={{*/}
  4705. {/* display: this.state.startType === 0 ? 'block' : ((this.state.projectType === 1 && this.state.patentType === 0) || this.state.projectType === 2? 'none' : 'block'), //0正常 1专利 2软著 3审计*/}
  4706. {/* }}*/}
  4707. {/* >*/}
  4708. {/* <Spin spinning={this.state.payNodeLoading}>*/}
  4709. {/* <Form layout="horizontal">*/}
  4710. {/* <Table*/}
  4711. {/* pagination={false}*/}
  4712. {/* columns={this.state.PayNodeTableColunms}*/}
  4713. {/* dataSource={this.state.payNodeList}*/}
  4714. {/* onRowClick={this.payNodeTableRowClickOne}*/}
  4715. {/* scroll={{ x: 'max-content', y: 0 }}*/}
  4716. {/* bordered*/}
  4717. {/* size="small"*/}
  4718. {/* />*/}
  4719. {/* <Col*/}
  4720. {/* span={24}*/}
  4721. {/* offset={9}*/}
  4722. {/* style={{ marginTop: '15px' }}*/}
  4723. {/* />*/}
  4724. {/* </Form>*/}
  4725. {/* </Spin>*/}
  4726. {/* </div>*/}
  4727. {/* <div className="clearfix">*/}
  4728. {/* <FormItem*/}
  4729. {/* className="half-item"*/}
  4730. {/* {...formItemLayout}*/}
  4731. {/* label={*/}
  4732. {/* <span>*/}
  4733. {/* <strong style={{ color: '#f00' }}>*</strong>备注*/}
  4734. {/* </span>*/}
  4735. {/* }*/}
  4736. {/* >*/}
  4737. {/* <TextArea*/}
  4738. {/* rows={4}*/}
  4739. {/* value={this.state.outsourceRemarks}*/}
  4740. {/* onChange={(e) => {*/}
  4741. {/* this.setState({*/}
  4742. {/* outsourceRemarks: e.target.value,*/}
  4743. {/* })*/}
  4744. {/* }}*/}
  4745. {/* placeholder="请输入备注"*/}
  4746. {/* />*/}
  4747. {/* </FormItem>*/}
  4748. {/* </div>*/}
  4749. {/*<div className="clearfix">
  4750. <FormItem className="half-item"
  4751. {...formItemLayout}
  4752. label="上传协议文件" style={{height:"auto"}}>
  4753. <Upload header={{authorization: 'authorization-text'}} action={globalConfig.context + "/api/admin/outsourceOrg/uploadOutsourceFile"}
  4754. data={(e)=>{
  4755. return {
  4756. 'sign': e.name.substring(0,e.name.lastIndexOf("."))
  4757. }
  4758. }}
  4759. fileList={this.state.fileUrl}
  4760. onChange={(e)=>{
  4761. this.setState({
  4762. attachmentUrl:e.fileList,
  4763. fileUrl:e.fileList
  4764. })
  4765. }}>
  4766. {fileUrl.length>1?null:<Button>
  4767. <Icon type="upload" /> 点击上传
  4768. </Button>}
  4769. </Upload>
  4770. <span className="tip" style={{display:"inline-block"}}>支持文件格式: doc,excel,ppt</span>
  4771. </FormItem>
  4772. </div>*/}
  4773. {/* <p*/}
  4774. {/* className="tip"*/}
  4775. {/* style={{*/}
  4776. {/* paddingBottom: '12px',*/}
  4777. {/* width: '240px',*/}
  4778. {/* marginLeft: '145px',*/}
  4779. {/* color: 'red',*/}
  4780. {/* }}*/}
  4781. {/* >*/}
  4782. {/* 首次派单项目,需上传协议,第2次起,同项目,只需写外包公司*/}
  4783. {/* </p>*/}
  4784. {/* <div className="clearfix">*/}
  4785. {/* <FormItem*/}
  4786. {/* labelCol={{ span: 4 }}*/}
  4787. {/* wrapperCol={{ span: 18 }}*/}
  4788. {/* label={*/}
  4789. {/* <span>*/}
  4790. {/* 合同/协议扫描件*/}
  4791. {/* </span>*/}
  4792. {/* }*/}
  4793. {/* >*/}
  4794. {/* <PicturesWall*/}
  4795. {/* domId={'myTask3'}*/}
  4796. {/* fileList={this.getOrgCodeUrlWai}*/}
  4797. {/* pictureUrl={this.state.pictureUrl}*/}
  4798. {/* />*/}
  4799. {/* <p style={{ color: 'red' }}>图片建议:要清晰。</p>*/}
  4800. {/* </FormItem>*/}
  4801. {/* </div>*/}
  4802. {/* /!*只有审核拒绝和第一次发起外包的时候才要填写发起原因 如果是类型为供应商则不需要发起原因*!/*/}
  4803. {/* /!*this.state.startType 0外包 1供应商*!/*/}
  4804. {/* {(typeof this.state.refundStatus === 'undefined' || this.state.refundStatus === 2) && this.state.startType !== 1 ? <div className="clearfix">*/}
  4805. {/* <FormItem*/}
  4806. {/* className="half-item"*/}
  4807. {/* {...formItemLayout}*/}
  4808. {/* label={*/}
  4809. {/* <span>*/}
  4810. {/* <strong style={{ color: '#f00' }}>*</strong>发起原因*/}
  4811. {/* </span>*/}
  4812. {/* }*/}
  4813. {/* >*/}
  4814. {/* <TextArea*/}
  4815. {/* rows={4}*/}
  4816. {/* value={this.state.reason}*/}
  4817. {/* onChange={(e) => {*/}
  4818. {/* this.setState({*/}
  4819. {/* reason: e.target.value,*/}
  4820. {/* })*/}
  4821. {/* }}*/}
  4822. {/* placeholder="请输入发起原因"*/}
  4823. {/* />*/}
  4824. {/* </FormItem>*/}
  4825. {/* </div> : <div/>}*/}
  4826. {/* <div className="clearfix">*/}
  4827. {/* <div*/}
  4828. {/* style={{*/}
  4829. {/* display: 'inline-black',*/}
  4830. {/* textAlign: 'center',*/}
  4831. {/* }}*/}
  4832. {/* >*/}
  4833. {/* <Button*/}
  4834. {/* type="primary"*/}
  4835. {/* loading={this.state.loading}*/}
  4836. {/* onClick={()=>{*/}
  4837. {/* this.sureOut(this.state.startType);*/}
  4838. {/* }}*/}
  4839. {/* >*/}
  4840. {/* {*/}
  4841. {/* this.state.startType === 0 ? "确认发起外包,不通过总部" : "提交供应商信息"*/}
  4842. {/* }*/}
  4843. {/* </Button>*/}
  4844. {/* <p className="tip" style={{ color: 'red' }}>*/}
  4845. {/* {*/}
  4846. {/* this.state.startType === 0 ? "提示:高于总部价格,费用个人承担" : "确定提交供应商信息,提交后,不可修改"*/}
  4847. {/* }*/}
  4848. {/* </p>*/}
  4849. {/* </div>*/}
  4850. {/* </div>*/}
  4851. {/* </div>*/}
  4852. {/*) : (*/}
  4853. {/* <div>*/}
  4854. {/* {*/}
  4855. {/* this.state.visible && this.state.activeKey === '2' ?*/}
  4856. {/* <CheckProject*/}
  4857. {/* {...this.props}*/}
  4858. {/* orderTaskOfficialCost={this.state.orderTaskOfficialCost} //是否含官费 0无1有*/}
  4859. {/* containOfficialFees={this.state.containOfficialFees} //0:实际已缴费 1:实际未缴费*/}
  4860. {/* tid={this.state.tid}*/}
  4861. {/* oldInfor={this.state.oldInfor}*/}
  4862. {/* projectType={this.state.projectType} //0正常 1专利 2软著 3审计*/}
  4863. {/* patentNameType={this.state.patentNameType}*/}
  4864. {/* patentName={this.state.patentName}*/}
  4865. {/* patentType={this.state.patentType}*/}
  4866. {/* status={this.state.refundStatus}*/}
  4867. {/* isPreviewPay={true}*/}
  4868. {/* mid={this.state.mid}*/}
  4869. {/* thirdInfoList={this.state.thirdInfoList}*/}
  4870. {/* dataSource={this.state.payNodeList}*/}
  4871. {/* outsourceRemarks={this.state.outsourceRemarks}*/}
  4872. {/* fileList={this.state.pictureUrl}*/}
  4873. {/* startType={this.state.startType}*/}
  4874. {/* projectStatus={this.state.projectStatus}*/}
  4875. {/* onRefresh={()=>{*/}
  4876. {/* this.waiDetail();*/}
  4877. {/* this.thirdTable(this.state.tid);*/}
  4878. {/* this.getSelectOutsourceLog(this.state.tid);*/}
  4879. {/* this.payNodeTable(this.state.tid)*/}
  4880. {/* this.loadData(this.state.page)*/}
  4881. {/* }}*/}
  4882. {/* /> : <div/>*/}
  4883. {/* }*/}
  4884. {/* </div>*/}
  4885. {/*)}*/}
  4886. {/*{(this.state.refundStatus == 1 ||*/}
  4887. {/* this.state.refundStatus == 0 ||*/}
  4888. {/* this.state.refundStatus == 2) &&*/}
  4889. {/*this.state.startType !== 1*/}
  4890. {/* ? (*/}
  4891. {/* <div className="clearfix"*/}
  4892. {/* style={{*/}
  4893. {/* display: this.state.refundStatus == 0 ? 'none' : 'block',*/}
  4894. {/* }}*/}
  4895. {/* >*/}
  4896. {/* <hr className="division" />*/}
  4897. {/* {parseInt(this.state.startType) !== 1 ? <div style={{*/}
  4898. {/* color:'#F00',*/}
  4899. {/* fontWeight: 'bolder',*/}
  4900. {/* paddingBottom: '20px',*/}
  4901. {/* }}>*/}
  4902. {/* 审核结果: <span style={{paddingLeft:'20px'}}>{getRefundStatus(this.state.refundStatus)}</span>*/}
  4903. {/* </div> : <div/>}*/}
  4904. {/* <div className="outsourceLogList">*/}
  4905. {/* {*/}
  4906. {/* this.state.outsourceLogs && this.state.outsourceLogs.map((value,index)=>(*/}
  4907. {/* <div key={index} className="outsourceLogItem outsource">*/}
  4908. {/* <div style={{*/}
  4909. {/* display:'flex',*/}
  4910. {/* flexFlow:'row nowrap',*/}
  4911. {/* paddingBottom: '3px',*/}
  4912. {/* paddingTop: '3px',*/}
  4913. {/* }}>*/}
  4914. {/* <div>*/}
  4915. {/* {value.aname}*/}
  4916. {/* </div>*/}
  4917. {/* <div style={{paddingLeft:'5px'}}>*/}
  4918. {/* {*/}
  4919. {/* value.status === 0 ?*/}
  4920. {/* <Tag color="#2db7f5">发起外包审核</Tag> :*/}
  4921. {/* value.status === 1 ? <Tag color="#87d068">通过</Tag> :*/}
  4922. {/* <Tag color="#f50">驳回</Tag>*/}
  4923. {/* }*/}
  4924. {/* </div>*/}
  4925. {/* <div style={{*/}
  4926. {/* wordBreak: 'break-all',*/}
  4927. {/* maxWidth:'67%',*/}
  4928. {/* }}>*/}
  4929. {/* {value.remarks}*/}
  4930. {/* </div>*/}
  4931. {/* <div style={{paddingLeft: '10px'}}>*/}
  4932. {/* {value.createTimes}*/}
  4933. {/* </div>*/}
  4934. {/* </div>*/}
  4935. {/* </div>*/}
  4936. {/* ))*/}
  4937. {/* }*/}
  4938. {/* </div>*/}
  4939. {/* <div*/}
  4940. {/* className="clearfix"*/}
  4941. {/* style={{*/}
  4942. {/* display: this.state.refundStatus == 0 ? 'none' : 'block',*/}
  4943. {/* }}*/}
  4944. {/* >*/}
  4945. {/* <FormItem*/}
  4946. {/* className="half-item"*/}
  4947. {/* {...formItemLayout}*/}
  4948. {/* label="审核意见"*/}
  4949. {/* >*/}
  4950. {/* <span>{this.state.remarks}</span>*/}
  4951. {/* </FormItem>*/}
  4952. {/* </div>*/}
  4953. {/* {parseInt(this.state.startType) !== 1 ?<div className="clearfix">*/}
  4954. {/* <FormItem*/}
  4955. {/* className="half-item"*/}
  4956. {/* {...formItemLayout}*/}
  4957. {/* label="审核结果"*/}
  4958. {/* >*/}
  4959. {/* <span>{getRefundStatus(this.state.refundStatus)}</span>*/}
  4960. {/* </FormItem>*/}
  4961. {/* </div> : <div/>}*/}
  4962. {/* <div*/}
  4963. {/* className="clearfix"*/}
  4964. {/* style={{*/}
  4965. {/* display: this.state.refundStatus == 0 ? 'none' : 'block',*/}
  4966. {/* }}*/}
  4967. {/* >*/}
  4968. {/* <FormItem*/}
  4969. {/* className="half-item"*/}
  4970. {/* {...formItemLayout}*/}
  4971. {/* label="审核时间"*/}
  4972. {/* >*/}
  4973. {/* <span>{this.state.auditTimes}</span>*/}
  4974. {/* </FormItem>*/}
  4975. {/* </div>*/}
  4976. {/* </div>*/}
  4977. {/* ) : (*/}
  4978. {/* ''*/}
  4979. {/* )}*/}
  4980. {/* </Spin>*/}
  4981. {/*</TabPane>*/}
  4982. {!this.props.isZxs || (this.state.isHuiyuan && this.props.isZxs) ? (
  4983. <TabPane tab="订单详情" key="3">
  4984. <div style={{paddingTop:'15px'}}>
  4985. <Spin spinning={this.state.loading}>
  4986. {this.state.activeKey === "3" ? <OrderDetail
  4987. orderData={this.state.orderData}
  4988. getOrderLog={this.getOrderLog}
  4989. dataSourceX={this.state.dataSourceX}
  4990. contactList={this.state.jiedian}
  4991. orderNo={this.state.orderNo}
  4992. totalCui={this.state.totalCui}
  4993. contactListNew={this.state.jiedianNew}
  4994. pictureUrl={this.state.contractPictureUrl}
  4995. /> : <div/>}
  4996. </Spin>
  4997. <OrderRiZi
  4998. dataSourcerizhi={this.state.dataSourceY}
  4999. closeOrderLog={this.closeOrderLog}
  5000. visible={this.state.avisible}
  5001. loading={this.state.loading}
  5002. />
  5003. </div>
  5004. </TabPane>
  5005. ) : (
  5006. ''
  5007. )}
  5008. </Tabs>
  5009. </div>
  5010. </Modal> : <div/>}
  5011. <Modal
  5012. maskClosable={false}
  5013. visible={this.state.lookVisible}
  5014. onOk={this.noCancel}
  5015. onCancel={this.noCancel}
  5016. width="500px"
  5017. title={'添加工时'}
  5018. footer=""
  5019. className="admin-desc-content"
  5020. >
  5021. <Form layout="horizontal" id="demand-form">
  5022. <div className="clearfix">
  5023. <FormItem {...formItemLayout} label="工作日期">
  5024. <DatePicker
  5025. style={{ marginTop: '2px', width: '200px', height: '32px' }}
  5026. showTime
  5027. format="YYYY-MM-DD"
  5028. onOk={() => {}}
  5029. value={
  5030. this.state.taskDate ? moment(this.state.taskDate) : null
  5031. }
  5032. onChange={(data, dataString) => {
  5033. this.setState({ taskDate: dataString })
  5034. }}
  5035. />
  5036. </FormItem>
  5037. </div>
  5038. <div className="clearfix">
  5039. <FormItem {...formItemLayout} label="工作时长">
  5040. <Input
  5041. placeholder="请输入工作时长"
  5042. value={this.state.hours}
  5043. style={{ width: '200px' }}
  5044. onChange={(e) => {
  5045. this.setState({ hours: e.target.value })
  5046. }}
  5047. ref="commodityQuantity"
  5048. />
  5049. </FormItem>
  5050. </div>
  5051. <div className="clearfix">
  5052. <FormItem {...formItemLayout} label="工作内容">
  5053. <Input
  5054. type="textarea"
  5055. placeholder="请输入备注"
  5056. rows={4}
  5057. value={this.state.remarks}
  5058. onChange={(e) => {
  5059. this.setState({ remarks: e.target.value })
  5060. }}
  5061. />
  5062. </FormItem>
  5063. </div>
  5064. <div className="clearfix">
  5065. <Button
  5066. className="cancel"
  5067. type="primary"
  5068. onClick={this.tianjiaOk}
  5069. loading={this.state.loading}
  5070. style={{ marginLeft: '100px' }}
  5071. htmlType="submit"
  5072. >
  5073. 确定
  5074. </Button>
  5075. <Button
  5076. className="cancel"
  5077. type="ghost"
  5078. onClick={this.noCancel}
  5079. style={{ marginLeft: '50px' }}
  5080. >
  5081. 取消
  5082. </Button>
  5083. </div>
  5084. </Form>
  5085. </Modal>
  5086. {this.state.speVisible ? <Modal
  5087. maskClosable={false}
  5088. visible={this.state.speVisible}
  5089. onOk={()=>{
  5090. this.visitOk();
  5091. this.state.selectCompanyAjaxObj ? this.state.selectCompanyAjaxObj.abort() : null;
  5092. this.state.selectPaymentNodeAjaxObj ? this.state.selectPaymentNodeAjaxObj.abort() : null;
  5093. this.state.orderOutsourceDtailsAjaxObj ? this.state.orderOutsourceDtailsAjaxObj.abort() : null;
  5094. }}
  5095. onCancel={()=>{
  5096. this.visitCancel();
  5097. this.state.selectCompanyAjaxObj ? this.state.selectCompanyAjaxObj.abort() : null;
  5098. this.state.selectPaymentNodeAjaxObj ? this.state.selectPaymentNodeAjaxObj.abort() : null;
  5099. this.state.orderOutsourceDtailsAjaxObj ? this.state.orderOutsourceDtailsAjaxObj.abort() : null;
  5100. }}
  5101. width="900px"
  5102. title=""
  5103. footer=""
  5104. className="admin-desc-content"
  5105. >
  5106. <div style={{position:"relative"}}>
  5107. <div style={{
  5108. position: "absolute",
  5109. inset:'-15px',
  5110. zIndex: 1000,
  5111. display: parseInt(this.state.projectStatus) === 0 ? 'flex' : 'none',
  5112. justifyContent:'center',
  5113. paddingTop: '300px',
  5114. background: 'rgba(0,0,0,0.7)',
  5115. borderRadius: '4px',
  5116. borderTopRightRadius: '96px',
  5117. left: 0,
  5118. right: 0,
  5119. top: 0,
  5120. bottom: 0,
  5121. }}>
  5122. <Button
  5123. type="primary"
  5124. size='large'
  5125. onClick={()=>{
  5126. //0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  5127. this.updateProjectStatus(1,()=>{
  5128. this.xiangqing(this.state.id)
  5129. });
  5130. }}>
  5131. 开始启动项目
  5132. </Button>
  5133. </div>
  5134. <Tabs
  5135. tabBarExtraContent={
  5136. <div style={{fontWeight:'bold',paddingRight:'15px'}}>
  5137. <span>
  5138. 项目名称:
  5139. <span style={{color:'#F00',paddingRight:'5px'}}>{this.state.taskName}</span>
  5140. </span>
  5141. <span style={{marginLeft:'15px'}}>
  5142. 项目编号:
  5143. <span style={{color:'#F00',paddingRight:'5px'}}>
  5144. {this.state.id}
  5145. {
  5146. this.state.splitStatus === 2 ? '('+this.state.splitSuper+'-'+this.state.splitId+')' : ''
  5147. }
  5148. </span>
  5149. </span>
  5150. </div>
  5151. }
  5152. activeKey={this.state.activeKey}
  5153. onChange={this.orderChange}
  5154. >
  5155. <TabPane tab="项目概况" key="1">
  5156. <div className="clearfix">
  5157. <FormItem
  5158. className="half-item"
  5159. {...formItemLayout}
  5160. label="项目状态"
  5161. >
  5162. {
  5163. getProjectName(parseInt(this.state.projectStatus))
  5164. }
  5165. {
  5166. this.state.projectStatus !== 0 ? <Button
  5167. type="primary"
  5168. size="small"
  5169. style={{
  5170. marginLeft: '5px',
  5171. }}
  5172. onClick={()=>{
  5173. this.setState({
  5174. projectSituationVisible: true,
  5175. })
  5176. }}
  5177. >
  5178. 修改
  5179. </Button> : null
  5180. }
  5181. <Button
  5182. type="primary"
  5183. size="small"
  5184. style={{
  5185. position: "absolute",
  5186. zIndex: 1,
  5187. marginLeft: '5px',
  5188. }}
  5189. onClick={this.caozuorizhi}
  5190. >
  5191. 操作日志
  5192. </Button>
  5193. </FormItem>
  5194. <FormItem
  5195. className="half-item"
  5196. {...formItemLayout}
  5197. label="合同编号"
  5198. >
  5199. <span>{this.state.contractNo}</span>
  5200. </FormItem>
  5201. </div>
  5202. <div className="clearfix">
  5203. <FormItem
  5204. className="half-item"
  5205. {...formItemLayout}
  5206. label="是否特批"
  5207. >
  5208. <span>{getApproval(this.state.approval)}</span>
  5209. </FormItem>
  5210. <FormItem
  5211. className="half-item"
  5212. {...formItemLayout}
  5213. label="结算状态"
  5214. >
  5215. <span>
  5216. {getLiquidationStatus(this.state.liquidationStatus)}
  5217. </span>
  5218. </FormItem>
  5219. <FormItem
  5220. className="half-item"
  5221. {...formItemLayout}
  5222. label="流程状态"
  5223. >
  5224. <span>{getProcessStatus(this.state.processStatus)}</span>
  5225. </FormItem>
  5226. <FormItem
  5227. className="half-item"
  5228. {...formItemLayout}
  5229. label="订单编号"
  5230. >
  5231. <span>{this.state.orderNo}</span>
  5232. </FormItem>
  5233. </div>
  5234. <div className="clearfix">
  5235. <FormItem
  5236. className="half-item"
  5237. {...formItemLayout}
  5238. label="满意度表格"
  5239. >
  5240. <Radio.Group
  5241. value={this.state.formRetrieve}
  5242. onChange={(e) => {
  5243. this.setState({ formRetrieve: e.target.value })
  5244. }}
  5245. >
  5246. <Radio value={0}>未收回</Radio>
  5247. <Radio value={1}>已收回</Radio>
  5248. <Radio value={2}>其他</Radio>
  5249. </Radio.Group>
  5250. </FormItem>
  5251. {
  5252. <FormItem
  5253. className="half-item"
  5254. {...formItemLayout}
  5255. label="(满意度)备注"
  5256. >
  5257. <Input
  5258. type="textarea"
  5259. placeholder="请输入备注"
  5260. rows={2}
  5261. value={this.state.retrieveContent}
  5262. onChange={(e) => {
  5263. this.setState({ retrieveContent: e.target.value })
  5264. }}
  5265. />
  5266. </FormItem>
  5267. }
  5268. {/*<FormItem*/}
  5269. {/* className="half-item"*/}
  5270. {/* {...formItemLayout}*/}
  5271. {/* label="退单"*/}
  5272. {/*>*/}
  5273. {/* <Radio.Group*/}
  5274. {/* value={this.state.taskRefund}*/}
  5275. {/* onChange={(e) => {*/}
  5276. {/* this.setState({ taskRefund: e.target.value })*/}
  5277. {/* }}*/}
  5278. {/* >*/}
  5279. {/* <Radio value={0}>已完成</Radio>*/}
  5280. {/* <Radio value={1}>未完成</Radio>*/}
  5281. {/* <Radio value={2}>其他</Radio>*/}
  5282. {/* </Radio.Group>*/}
  5283. {/*</FormItem>*/}
  5284. </div>
  5285. {/*软著显示 bpType: 0 正常 1专利 2软著 3审计 4双软 5高新 6商标*/}
  5286. {this.state.bpType === 2 ? <div className="clearfix">
  5287. <FormItem
  5288. className="half-item"
  5289. {...formItemLayout}
  5290. label="加急天数"
  5291. >
  5292. <Radio.Group
  5293. value={this.state.urgentDay}
  5294. onChange={(e) => {
  5295. this.setState({ urgentDay: e.target.value })
  5296. }}
  5297. >
  5298. <Radio value={1}>是</Radio>
  5299. <Radio value={0}>否</Radio>
  5300. </Radio.Group>
  5301. </FormItem>
  5302. <FormItem
  5303. className="half-item"
  5304. {...formItemLayout}
  5305. label="有无材料"
  5306. >
  5307. <Radio.Group
  5308. value={this.state.ifMaterial}
  5309. onChange={(e) => {
  5310. this.setState({ ifMaterial: e.target.value })
  5311. }}
  5312. >
  5313. <Radio value={1}>是</Radio>
  5314. <Radio value={0}>否</Radio>
  5315. </Radio.Group>
  5316. </FormItem>
  5317. </div> : null}
  5318. <div className="clearfix">
  5319. <div style={{
  5320. paddingLeft: '8%',
  5321. }}>
  5322. <div style={{color:'#000',fontWeight:500}}>
  5323. 特别说明
  5324. <span style={{color: '#58a3ff',}}>(针对项目的特殊情况说明)</span>
  5325. </div>
  5326. <div style={{display:'flex',alignItems:'center',paddingTop: '10px'}}>
  5327. <div>备注:</div>
  5328. <Input
  5329. type="textarea"
  5330. placeholder="请输入备注"
  5331. rows={3}
  5332. style={{
  5333. width:'33%',
  5334. marginLeft: '10px',
  5335. }}
  5336. value={this.state.specialComment}
  5337. onChange={(e) => {
  5338. this.setState({ specialComment: e.target.value });
  5339. }}
  5340. />
  5341. </div>
  5342. </div>
  5343. {
  5344. // <FormItem
  5345. // className="half-item"
  5346. // {...formItemLayout}
  5347. // label="(退单)备注"
  5348. // >
  5349. // <Input
  5350. // type="textarea"
  5351. // placeholder="请输入备注"
  5352. // rows={2}
  5353. // value={this.state.refundContent}
  5354. // onChange={(e) => {
  5355. // this.setState({ refundContent: e.target.value })
  5356. // }}
  5357. // />
  5358. // </FormItem>
  5359. }
  5360. </div>
  5361. <div className="clearfix">
  5362. <h3 className="sub-title">订单负责人信息</h3>
  5363. <FormItem
  5364. className="half-item"
  5365. {...formItemLayout}
  5366. label="负责人"
  5367. >
  5368. <span>
  5369. {this.state.salesmanName + '(' + this.state.depName + ')'}
  5370. </span>
  5371. </FormItem>
  5372. <FormItem
  5373. className="half-item"
  5374. {...formItemLayout}
  5375. label="负责人电话"
  5376. >
  5377. <span>{this.state.salesmanMobile}</span>
  5378. </FormItem>
  5379. <FormItem
  5380. className="half-item"
  5381. {...formItemLayout}
  5382. label="当前财务负责人"
  5383. >
  5384. <span>{this.state.nowFinance}</span>
  5385. </FormItem>
  5386. <FormItem
  5387. className="half-item"
  5388. {...formItemLayout}
  5389. label="当前财务负责人电话"
  5390. >
  5391. <span>{this.state.nowFinanceMobile}</span>
  5392. </FormItem>
  5393. <FormItem
  5394. className="half-item"
  5395. {...formItemLayout}
  5396. style={{ opacity: '.5' }}
  5397. label="原负责人"
  5398. >
  5399. <span>{this.state.oldSalesmanName}</span>
  5400. </FormItem>
  5401. <FormItem
  5402. className="half-item"
  5403. {...formItemLayout}
  5404. style={{ opacity: '.5' }}
  5405. label="原负责人电话"
  5406. >
  5407. <span>{this.state.oldSalesmanMobile}</span>
  5408. </FormItem>
  5409. <FormItem
  5410. className="half-item"
  5411. {...formItemLayout}
  5412. style={{ opacity: '.5' }}
  5413. label="实际财务操作人"
  5414. >
  5415. <span>{this.state.financeName}</span>
  5416. </FormItem>
  5417. <FormItem
  5418. className="half-item"
  5419. {...formItemLayout}
  5420. style={{ opacity: '.5' }}
  5421. label="实际财务操作人电话"
  5422. >
  5423. <span>{this.state.financeMobile}</span>
  5424. </FormItem>
  5425. <FormItem
  5426. className="half-item"
  5427. {...formItemLayout}
  5428. label="订单留言"
  5429. >
  5430. <span>{this.state.orderRemarks}</span>
  5431. </FormItem>
  5432. <FormItem className="half-item" {...formItemLayout} label="">
  5433. <Button onClick={this.getOrderLog}>查看订单日志</Button>
  5434. </FormItem>
  5435. <OrderRiZi
  5436. dataSourcerizhi={this.state.dataSourceY}
  5437. closeOrderLog={this.closeOrderLog}
  5438. visible={this.state.avisible}
  5439. loading={this.state.loading}
  5440. />
  5441. </div>
  5442. {/*<hr style={{border:'1px dashed #aaa', width:"90%",margin:'auto'}}/>*/}
  5443. <div className="clearfix">
  5444. <h3 className="sub-title">联系信息</h3>
  5445. <FormItem
  5446. className="half-item"
  5447. {...formItemLayout}
  5448. label="客户名称"
  5449. >
  5450. <span>{this.state.userName}</span>
  5451. </FormItem>
  5452. <FormItem
  5453. className="half-item"
  5454. {...formItemLayout}
  5455. label="企业法人"
  5456. >
  5457. <Input
  5458. placeholder="请输入法人名称"
  5459. value={this.state.legalPerson}
  5460. style={{ width: '200px' }}
  5461. onChange={(e) => {
  5462. this.setState({ legalPerson: e.target.value })
  5463. }}
  5464. ref="commodityQuantity"
  5465. />
  5466. </FormItem>
  5467. <FormItem
  5468. className="half-item"
  5469. {...formItemLayout}
  5470. label="法人电话"
  5471. >
  5472. <Input
  5473. placeholder="请输入法人电话"
  5474. value={this.state.legalPersonTel}
  5475. style={{ width: '200px' }}
  5476. onChange={(e) => {
  5477. this.setState({ legalPersonTel: e.target.value })
  5478. }}
  5479. ref="commodityQuantity"
  5480. />
  5481. </FormItem>
  5482. <FormItem
  5483. className="half-item"
  5484. {...formItemLayout}
  5485. label="客户联系人"
  5486. >
  5487. <Input
  5488. placeholder="请输入联系人名称"
  5489. value={this.state.contacts}
  5490. style={{ width: '200px' }}
  5491. onChange={(e) => {
  5492. this.setState({ contacts: e.target.value })
  5493. }}
  5494. ref="commodityQuantity"
  5495. />
  5496. </FormItem>
  5497. <FormItem
  5498. className="half-item"
  5499. {...formItemLayout}
  5500. label="联系人电话"
  5501. >
  5502. <Input
  5503. placeholder="请输入联系人电话"
  5504. value={this.state.contactMobile}
  5505. style={{ width: '200px' }}
  5506. onChange={(e) => {
  5507. this.setState({ contactMobile: e.target.value })
  5508. }}
  5509. ref="commodityQuantity"
  5510. />
  5511. </FormItem>
  5512. <FormItem
  5513. className="half-item"
  5514. {...formItemLayout}
  5515. label="企业地址"
  5516. >
  5517. <Cascader
  5518. options={areaSelect()}
  5519. value={this.state.ProvinceCity}
  5520. placeholder="选择城市"
  5521. style={{ width: '200px' }}
  5522. onChange={(e) => {
  5523. this.setState({ ProvinceCity: e })
  5524. }}
  5525. />
  5526. </FormItem>
  5527. <FormItem
  5528. className="half-item"
  5529. {...formItemLayout}
  5530. label=""
  5531. />
  5532. <FormItem className="half-item" {...formItemLayout} label="">
  5533. <Input
  5534. placeholder="请输入详细地址"
  5535. value={this.state.postalAddress}
  5536. style={{ width: '200px', marginLeft: '12em' }}
  5537. onChange={(e) => {
  5538. this.setState({ postalAddress: e.target.value })
  5539. }}
  5540. ref="commodityQuantity"
  5541. />
  5542. </FormItem>
  5543. </div>
  5544. {/*<hr style={{border:'1px dashed #aaa', width:"90%",margin:'auto'}}/>*/}
  5545. <div className="clearfix">
  5546. <h3 className="sub-title">项目信息</h3>
  5547. <FormItem
  5548. className="half-item"
  5549. {...formItemLayout}
  5550. label="项目编号"
  5551. >
  5552. <span>
  5553. {this.state.splitStatus == 2
  5554. ? this.state.splitSuper + '-' + this.state.splitId
  5555. : this.state.id}
  5556. </span>
  5557. </FormItem>
  5558. <FormItem
  5559. className="half-item"
  5560. {...formItemLayout}
  5561. label="项目名称"
  5562. >
  5563. <span>{this.state.taskName}</span>
  5564. </FormItem>
  5565. {/*<FormItem*/}
  5566. {/* className="half-item"*/}
  5567. {/* {...formItemLayout}*/}
  5568. {/* label="项目状态"*/}
  5569. {/*>*/}
  5570. {/* <Select*/}
  5571. {/* placeholder="选择项目状态"*/}
  5572. {/* style={{ width: '200px' }}*/}
  5573. {/* value={this.state.taskStatus}*/}
  5574. {/* onChange={(e) => {*/}
  5575. {/* this.setState({ taskStatus: e })*/}
  5576. {/* }}*/}
  5577. {/* >*/}
  5578. {/* {taskStatus.map(function (item) {*/}
  5579. {/* return (*/}
  5580. {/* <Select.Option key={item.value}>*/}
  5581. {/* {item.key}*/}
  5582. {/* </Select.Option>*/}
  5583. {/* )*/}
  5584. {/* })}*/}
  5585. {/* </Select>*/}
  5586. {/*</FormItem>*/}
  5587. <FormItem
  5588. className="half-item"
  5589. {...formItemLayout}
  5590. label="项目类别"
  5591. >
  5592. <span>{this.state.cname}</span>
  5593. </FormItem>
  5594. <FormItem
  5595. className="half-item"
  5596. {...formItemLayout}
  5597. label="证书编号"
  5598. >
  5599. {this.state.certificateNumber}
  5600. </FormItem>
  5601. </div>
  5602. <div className="clearfix" style={{ marginTop: '10px' }}>
  5603. <FormItem
  5604. labelCol={{ span: 3 }}
  5605. wrapperCol={{ span: 14 }}
  5606. label="附件"
  5607. >
  5608. <Picture
  5609. domId={'myTask2'}
  5610. fileList={(e) => {
  5611. this.setState({ attachmentUrl: e })
  5612. }}
  5613. pictureUrl={this.state.attachmentUrl}
  5614. visible={this.props.visible}
  5615. data={{
  5616. sign: 'order_task_file',
  5617. url: '/api/admin/orderProject/uploadOrderTaskFile',
  5618. }}
  5619. />
  5620. </FormItem>
  5621. </div>
  5622. <div className="clearfix">
  5623. <FormItem
  5624. labelCol={{ span: 3 }}
  5625. wrapperCol={{ span: 16 }}
  5626. label="项目说明"
  5627. >
  5628. <Input
  5629. type="textarea"
  5630. placeholder="请输入项目说明"
  5631. rows={4}
  5632. disabled
  5633. value={this.state.taskComment}
  5634. onChange={(e) => {
  5635. if(this.state.taskCommentData){
  5636. let len = this.state.taskCommentData.length;
  5637. if(e.target.value.slice(0,len) !== this.state.taskCommentData){
  5638. message.warning('项目说明不允许删除与修改已存在的内容');
  5639. return;
  5640. }
  5641. }
  5642. this.setState({ taskComment: e.target.value })
  5643. }}
  5644. />
  5645. </FormItem>
  5646. </div>
  5647. <div className="clearfix">
  5648. <h3 className="sub-title">项目申报进度</h3>
  5649. <DeclarationProgress
  5650. timeRecordparse={this.state.timeRecordparse}
  5651. startDate={this.state.startDate}
  5652. taskDate={this.state.taskDate}
  5653. list={[
  5654. {id:4,name:'完成时间',value:this.state.endDate},
  5655. {id:6,name:'受理时间',value:this.state.acceptDate},
  5656. {id:8,name:'公示时间',value:this.state.publicityDate},
  5657. {id:10,name:'发证时间',value:this.state.licenceDate},
  5658. {id:15,name:'立项金额',value:this.state.setUpAmount}
  5659. ]}/>
  5660. {/*高新和科技项目显示 bpType: 0 正常 1专利 2软著 3审计 4双软 5高新 6商标*/}
  5661. {/*cSort: 3 科技项目 6: 会员*/}
  5662. {(this.state.bpType === 5 || this.state.cSort === 3) && <FormItem
  5663. className="half-item"
  5664. {...formItemLayout}
  5665. label="申报批次"
  5666. >
  5667. <Select
  5668. value={
  5669. this.state.declarationBatch
  5670. ? this.state.declarationBatch
  5671. : undefined
  5672. }
  5673. placeholder="请选择批次"
  5674. style={{ width: 200 }}
  5675. onChange={(e) => {
  5676. this.setState({
  5677. declarationBatch: e,
  5678. })
  5679. }}
  5680. >
  5681. <Option value={1}>第一批</Option>
  5682. <Option value={2}>第二批</Option>
  5683. <Option value={3}>第三批</Option>
  5684. <Option value={4}>第四批</Option>
  5685. </Select>
  5686. </FormItem>}
  5687. <FormItem
  5688. className="half-item"
  5689. {...formItemLayout}
  5690. label="软著派单数量"
  5691. >
  5692. <span>{this.state.commodityQuantity}</span>
  5693. <Button
  5694. type="primary"
  5695. size="small"
  5696. style={{ marginLeft: '45px' }}
  5697. onClick={this.addcontact}
  5698. >
  5699. +增加下证信息
  5700. </Button>
  5701. </FormItem>
  5702. <div className="patent-table">
  5703. <Spin spinning={this.state.loading}>
  5704. <Table
  5705. columns={this.state.ContactsLists}
  5706. dataSource={this.state.contactList}
  5707. pagination={false}
  5708. bordered
  5709. size="small"
  5710. />
  5711. </Spin>
  5712. </div>
  5713. </div>
  5714. <div className="clearfix">
  5715. <h3 className="sub-title">项目业务</h3>
  5716. <div className="patent-table">
  5717. <Spin spinning={this.state.loading}>
  5718. <Table
  5719. columns={this.state.columnsX}
  5720. dataSource={this.state.dataSourceX}
  5721. pagination={this.state.paginations}
  5722. onRowClick={this.tableRowClickX}
  5723. bordered
  5724. size="small"
  5725. />
  5726. </Spin>
  5727. </div>
  5728. </div>
  5729. <div className="clearfix">
  5730. <Button
  5731. className="cancel"
  5732. type="primary"
  5733. onClick={()=>{
  5734. this.tijiaoOk();
  5735. }}
  5736. style={{ marginLeft: '200px', marginTop: '10px' }}
  5737. htmlType="submit"
  5738. >
  5739. 保存
  5740. </Button>
  5741. <Button
  5742. className="cancel"
  5743. type="ghost"
  5744. onClick={this.visitCancel}
  5745. style={{ marginLeft: '50px', marginTop: '10px' }}
  5746. >
  5747. 取消
  5748. </Button>
  5749. </div>
  5750. </TabPane>
  5751. {/*<TabPane tab="外包/供应商信息" key="2">*/}
  5752. {/* <Spin spinning={this.state.sureOutLoading || this.state.waiDetailLoading || this.state.payNodeLoading || this.state.thirdInfoLoading}>*/}
  5753. {/* {this.state.refundStatus != 0 && this.state.refundStatus != 1 ? (*/}
  5754. {/* <div style={{ marginTop: 10 }}>*/}
  5755. {/* <div className="clearfix">*/}
  5756. {/* <FormItem*/}
  5757. {/* className="half-item"*/}
  5758. {/* labelCol={{ span: 3 }}*/}
  5759. {/* wrapperCol={{ span: 14 }}*/}
  5760. {/* label={*/}
  5761. {/* <span>*/}
  5762. {/* <strong style={{ color: '#f00' }}>*</strong>*/}
  5763. {/* 类型*/}
  5764. {/* </span>*/}
  5765. {/* }*/}
  5766. {/* >*/}
  5767. {/* <Radio.Group*/}
  5768. {/* disabled={this.state.payNodeLoading || this.state.thirdInfoLoading}*/}
  5769. {/* value={this.state.startType}*/}
  5770. {/* onChange={(e) => {*/}
  5771. {/* let _this = this;*/}
  5772. {/* if(this.state.thirdInfoList.length >0){*/}
  5773. {/* confirm({*/}
  5774. {/* title: '确定要切换吗?',*/}
  5775. {/* content: '切换将删除所有第三信息和付款节点',*/}
  5776. {/* onOk() {*/}
  5777. {/* return new Promise((resolve, reject) => {*/}
  5778. {/* _this.setState({ startType: e.target.value },()=>{*/}
  5779. {/* _this.projectTypeTabContent(_this.state.projectType);*/}
  5780. {/* })*/}
  5781. {/* _this.confirmDeletNew(-1,resolve,reject)*/}
  5782. {/* if(_this.state.payNodeList.length > 0){*/}
  5783. {/* _this.payNodeConfirmDeletNew(-1,resolve,reject);*/}
  5784. {/* }*/}
  5785. {/* }).catch(() => console.log('Oops errors!'));*/}
  5786. {/* },*/}
  5787. {/* onCancel() {},*/}
  5788. {/* });*/}
  5789. {/* }else{*/}
  5790. {/* this.setState({ startType: e.target.value },()=>{*/}
  5791. {/* this.projectTypeTabContent(this.state.projectType);*/}
  5792. {/* })*/}
  5793. {/* }*/}
  5794. {/* }}*/}
  5795. {/* >*/}
  5796. {/* <Radio value={0}>外包(不走总部)</Radio>*/}
  5797. {/* <Radio value={1}>供应商信息</Radio>*/}
  5798. {/* </Radio.Group>*/}
  5799. {/* </FormItem>*/}
  5800. {/* </div>*/}
  5801. {/* /!* 专利类型 *!/*/}
  5802. {/* <div*/}
  5803. {/* className="clearfix"*/}
  5804. {/* style={{*/}
  5805. {/* display: this.state.projectType === 1 ? 'block' : 'none',*/}
  5806. {/* }}*/}
  5807. {/* >*/}
  5808. {/* <FormItem*/}
  5809. {/* className="half-item"*/}
  5810. {/* labelCol={{ span: 4 }}*/}
  5811. {/* wrapperCol={{ span: 14 }}*/}
  5812. {/* label={*/}
  5813. {/* <span>*/}
  5814. {/* <strong style={{ color: '#f00' }}>*</strong>*/}
  5815. {/* 专利类型*/}
  5816. {/* </span>*/}
  5817. {/* }*/}
  5818. {/* >*/}
  5819. {/* <Radio.Group*/}
  5820. {/* disabled={this.state.payNodeLoading || this.state.thirdInfoLoading}*/}
  5821. {/* value={this.state.patentType}*/}
  5822. {/* onChange={(e) => {*/}
  5823. {/* let _this = this;*/}
  5824. {/* if(this.state.thirdInfoList.length >0){*/}
  5825. {/* confirm({*/}
  5826. {/* title: '确定要切换吗?',*/}
  5827. {/* content: '切换将删除所有第三信息和付款节点',*/}
  5828. {/* onOk() {*/}
  5829. {/* return new Promise((resolve, reject) => {*/}
  5830. {/* _this.setState({ patentType: e.target.value },()=>{*/}
  5831. {/* _this.projectTypeTabContent(_this.state.projectType);*/}
  5832. {/* })*/}
  5833. {/* _this.confirmDeletNew(-1,resolve,reject)*/}
  5834. {/* if(_this.state.payNodeList.length > 0){*/}
  5835. {/* _this.payNodeConfirmDeletNew(-1,resolve,reject);*/}
  5836. {/* }*/}
  5837. {/* }).catch(() => console.log('Oops errors!'));*/}
  5838. {/* },*/}
  5839. {/* onCancel() {},*/}
  5840. {/* });*/}
  5841. {/* }else{*/}
  5842. {/* this.setState({ patentType: e.target.value },()=>{*/}
  5843. {/* this.projectTypeTabContent(this.state.projectType);*/}
  5844. {/* })*/}
  5845. {/* }*/}
  5846. {/* }}*/}
  5847. {/* >*/}
  5848. {/* <Radio value={0}>专利申请/变更/转让</Radio>*/}
  5849. {/* <Radio value={1}>专利买卖</Radio>*/}
  5850. {/* </Radio.Group>*/}
  5851. {/* </FormItem>*/}
  5852. {/* </div>*/}
  5853. {/* <div*/}
  5854. {/* className="clearfix"*/}
  5855. {/* style={{*/}
  5856. {/* display: this.state.projectType === 1? 'block' : 'none',*/}
  5857. {/* }}*/}
  5858. {/* >*/}
  5859. {/* <FormItem*/}
  5860. {/* className="half-item"*/}
  5861. {/* labelCol={{ span: 3 }}*/}
  5862. {/* wrapperCol={{ span: 14 }}*/}
  5863. {/* label={*/}
  5864. {/* <span>*/}
  5865. {/* <strong style={{ color: '#f00' }}>*</strong>*/}
  5866. {/* 专利名称*/}
  5867. {/* </span>*/}
  5868. {/* }*/}
  5869. {/* >*/}
  5870. {/* <Radio.Group*/}
  5871. {/* disabled={this.state.payNodeLoading || this.state.thirdInfoLoading}*/}
  5872. {/* value={this.state.patentNameType}*/}
  5873. {/* onChange={(e) => {*/}
  5874. {/* let _this = this;*/}
  5875. {/* if(this.state.thirdInfoList.length >0){*/}
  5876. {/* confirm({*/}
  5877. {/* title: '确定要切换吗?',*/}
  5878. {/* content: '切换将删除所有第三信息和付款节点',*/}
  5879. {/* onOk() {*/}
  5880. {/* return new Promise((resolve, reject) => {*/}
  5881. {/* _this.setState({ patentNameType: e.target.value },()=>{*/}
  5882. {/* _this.projectTypeTabContent(_this.state.projectType);*/}
  5883. {/* })*/}
  5884. {/* _this.confirmDeletNew(-1,resolve,reject)*/}
  5885. {/* if(_this.state.payNodeList.length > 0){*/}
  5886. {/* _this.payNodeConfirmDeletNew(-1,resolve,reject);*/}
  5887. {/* }*/}
  5888. {/* }).catch(() => console.log('Oops errors!'));*/}
  5889. {/* },*/}
  5890. {/* onCancel() {},*/}
  5891. {/* });*/}
  5892. {/* }else{*/}
  5893. {/* this.setState({ patentNameType: e.target.value },()=>{*/}
  5894. {/* this.projectTypeTabContent(this.state.projectType);*/}
  5895. {/* })*/}
  5896. {/* }*/}
  5897. {/* }}*/}
  5898. {/* >*/}
  5899. {/* <Radio value={0}>实用新型专利</Radio>*/}
  5900. {/* <Radio value={1}>发明专利</Radio>*/}
  5901. {/* <Radio value={2}>外观专利</Radio>*/}
  5902. {/* /!*<Radio value={3}>*!/*/}
  5903. {/* /!* 其他*!/*/}
  5904. {/* /!* <Input*!/*/}
  5905. {/* /!* disabled={this.state.patentNameType !== 3}*!/*/}
  5906. {/* /!* value={this.state.patentName}*!/*/}
  5907. {/* /!* style={{ marginLeft: '15px' }}*!/*/}
  5908. {/* /!* onChange={(e) => {*!/*/}
  5909. {/* /!* this.setState({*!/*/}
  5910. {/* /!* patentName: e.target.value,*!/*/}
  5911. {/* /!* })*!/*/}
  5912. {/* /!* }}*!/*/}
  5913. {/* /!* placeholder="请填写专利名称"*!/*/}
  5914. {/* /!* />*!/*/}
  5915. {/* /!*</Radio>*!/*/}
  5916. {/* </Radio.Group>*/}
  5917. {/* </FormItem>*/}
  5918. {/* </div>*/}
  5919. {/* {this.state.orderTaskOfficialCost === 1 && this.state.startType !== 0 ? <div className="clearfix">*/}
  5920. {/* <FormItem*/}
  5921. {/* className="half-item"*/}
  5922. {/* labelCol={{ span: 4 }}*/}
  5923. {/* wrapperCol={{ span: 14 }}*/}
  5924. {/* label={<span>官费</span>}>*/}
  5925. {/* <Radio.Group*/}
  5926. {/* value={this.state.containOfficialFees}*/}
  5927. {/* onChange={(e) => {*/}
  5928. {/* this.setState({ containOfficialFees: e.target.value })*/}
  5929. {/* }}*/}
  5930. {/* >*/}
  5931. {/* <Radio value={0}>实际已缴费</Radio>*/}
  5932. {/* <Radio value={1}>实际未缴费</Radio>*/}
  5933. {/* </Radio.Group>*/}
  5934. {/* </FormItem>*/}
  5935. {/* </div> : <div/>}*/}
  5936. {/* /!* 第三方信息专利 *!/*/}
  5937. {/* <div*/}
  5938. {/* style={{*/}
  5939. {/* // display: this.state.type == 1 ? "block" : "none",*/}
  5940. {/* display: this.state.type == 1 ? 'block' : 'block',*/}
  5941. {/* }}*/}
  5942. {/* >*/}
  5943. {/* <span*/}
  5944. {/* style={{*/}
  5945. {/* fontSize: '18px',*/}
  5946. {/* }}*/}
  5947. {/* >*/}
  5948. {/* 第三方信息*/}
  5949. {/* </span>*/}
  5950. {/* <span*/}
  5951. {/* style={{*/}
  5952. {/* display: 'inline-block',*/}
  5953. {/* marginLeft: 10,*/}
  5954. {/* color: 'red',*/}
  5955. {/* }}*/}
  5956. {/* >*/}
  5957. {/* 金额总计(万元): {this.state.allTotalAmount}*/}
  5958. {/* </span>*/}
  5959. {/* <Button*/}
  5960. {/* type="primary"*/}
  5961. {/* onClick={(e) => {*/}
  5962. {/* //this.state.startType 类型为外包时,当普通单*/}
  5963. {/* if(this.state.projectType === 1 && this.state.patentType === -1){*/}
  5964. {/* message.info('请先选择专利类型');*/}
  5965. {/* }else if(this.state.projectType === 1 && this.state.patentNameType === -1){*/}
  5966. {/* message.info('请先选择专利名称');*/}
  5967. {/* } else{*/}
  5968. {/* this.addThirdList()*/}
  5969. {/* }*/}
  5970. {/* }}*/}
  5971. {/* style={{*/}
  5972. {/* float: 'right',*/}
  5973. {/* marginRight: '50px',*/}
  5974. {/* marginBottom: '15px',*/}
  5975. {/* }}>*/}
  5976. {/* +新增供应商名称*/}
  5977. {/* </Button>*/}
  5978. {/* </div>*/}
  5979. {/* <div*/}
  5980. {/* className="clearfix"*/}
  5981. {/* style={{*/}
  5982. {/* // display: this.state.type == 1 ? "block" : "none",*/}
  5983. {/* display: this.state.type == 1 ? 'block' : 'block',*/}
  5984. {/* }}*/}
  5985. {/* >*/}
  5986. {/* <Spin spinning={this.state.thirdInfoLoading}>*/}
  5987. {/* <Form layout="horizontal">*/}
  5988. {/* <Table*/}
  5989. {/* pagination={false}*/}
  5990. {/* columns={this.state.ContactsListsNew}*/}
  5991. {/* dataSource={this.state.thirdInfoList}*/}
  5992. {/* onRowClick={this.tableRowClickOne}*/}
  5993. {/* scroll={{ x: 'max-content', y: 0 }}*/}
  5994. {/* bordered*/}
  5995. {/* size="small"*/}
  5996. {/* />*/}
  5997. {/* <Col*/}
  5998. {/* span={24}*/}
  5999. {/* offset={9}*/}
  6000. {/* style={{ marginTop: '15px' }}*/}
  6001. {/* />*/}
  6002. {/* </Form>*/}
  6003. {/* </Spin>*/}
  6004. {/* </div>*/}
  6005. {/* /!*如果是软著类或者专利类的专利申请,隐藏付款节点*!/*/}
  6006. {/* <div*/}
  6007. {/* style={{*/}
  6008. {/* display: this.state.startType === 0 ? 'block' : ((this.state.projectType === 1 && this.state.patentType === 0) || this.state.projectType === 2? 'none' : 'block'), //0正常 1专利 2软著 3审计*/}
  6009. {/* }}*/}
  6010. {/* >*/}
  6011. {/* <span*/}
  6012. {/* style={{*/}
  6013. {/* fontSize: '18px',*/}
  6014. {/* }}*/}
  6015. {/* >*/}
  6016. {/* 付款节点*/}
  6017. {/* </span>*/}
  6018. {/* <span*/}
  6019. {/* style={{*/}
  6020. {/* display: 'inline-block',*/}
  6021. {/* marginLeft: 10,*/}
  6022. {/* color: 'red',*/}
  6023. {/* }}*/}
  6024. {/* />*/}
  6025. {/* <Button*/}
  6026. {/* type="primary"*/}
  6027. {/* onClick={(e) => {*/}
  6028. {/* this.addPayNode()*/}
  6029. {/* }}*/}
  6030. {/* style={{*/}
  6031. {/* float: 'right',*/}
  6032. {/* marginRight: '50px',*/}
  6033. {/* marginBottom: '15px',*/}
  6034. {/* }}*/}
  6035. {/* >*/}
  6036. {/* +新增付款节点*/}
  6037. {/* </Button>*/}
  6038. {/* </div>*/}
  6039. {/* /!*如果是软著类或者专利类的专利申请,隐藏付款节点但当为外包类型时,无需隐藏*!/*/}
  6040. {/* <div*/}
  6041. {/* className="clearfix"*/}
  6042. {/* style={{*/}
  6043. {/* display: this.state.startType === 0 ? 'block' : ((this.state.projectType === 1 && this.state.patentType === 0) || this.state.projectType === 2? 'none' : 'block'), //0正常 1专利 2软著 3审计*/}
  6044. {/* }}*/}
  6045. {/* >*/}
  6046. {/* <Spin spinning={this.state.payNodeLoading}>*/}
  6047. {/* <Form layout="horizontal">*/}
  6048. {/* <Table*/}
  6049. {/* pagination={false}*/}
  6050. {/* columns={this.state.PayNodeTableColunms}*/}
  6051. {/* dataSource={this.state.payNodeList}*/}
  6052. {/* onRowClick={this.payNodeTableRowClickOne}*/}
  6053. {/* scroll={{ x: 'max-content', y: 0 }}*/}
  6054. {/* bordered*/}
  6055. {/* size="small"*/}
  6056. {/* />*/}
  6057. {/* <Col*/}
  6058. {/* span={24}*/}
  6059. {/* offset={9}*/}
  6060. {/* style={{ marginTop: '15px' }}*/}
  6061. {/* />*/}
  6062. {/* </Form>*/}
  6063. {/* </Spin>*/}
  6064. {/* </div>*/}
  6065. {/* <div className="clearfix">*/}
  6066. {/* <FormItem*/}
  6067. {/* className="half-item"*/}
  6068. {/* {...formItemLayout}*/}
  6069. {/* label={*/}
  6070. {/* <span>*/}
  6071. {/* <strong style={{ color: '#f00' }}>*</strong>备注*/}
  6072. {/* </span>*/}
  6073. {/* }*/}
  6074. {/* >*/}
  6075. {/* <TextArea*/}
  6076. {/* rows={4}*/}
  6077. {/* value={this.state.outsourceRemarks}*/}
  6078. {/* onChange={(e) => {*/}
  6079. {/* this.setState({*/}
  6080. {/* outsourceRemarks: e.target.value,*/}
  6081. {/* })*/}
  6082. {/* }}*/}
  6083. {/* placeholder="请输入备注"*/}
  6084. {/* />*/}
  6085. {/* </FormItem>*/}
  6086. {/* </div>*/}
  6087. {/* <p*/}
  6088. {/* className="tip"*/}
  6089. {/* style={{*/}
  6090. {/* paddingBottom: '12px',*/}
  6091. {/* width: '240px',*/}
  6092. {/* marginLeft: '145px',*/}
  6093. {/* color: 'red',*/}
  6094. {/* }}*/}
  6095. {/* >*/}
  6096. {/* 首次派单项目,需上传协议,第2次起,同项目,只需写外包公司*/}
  6097. {/* </p>*/}
  6098. {/* <div className="clearfix">*/}
  6099. {/* <FormItem*/}
  6100. {/* labelCol={{ span: 4 }}*/}
  6101. {/* wrapperCol={{ span: 18 }}*/}
  6102. {/* label={*/}
  6103. {/* <span>*/}
  6104. {/* 合同/协议扫描件*/}
  6105. {/* </span>*/}
  6106. {/* }*/}
  6107. {/* >*/}
  6108. {/* <PicturesWall*/}
  6109. {/* domId={'myTask4'}*/}
  6110. {/* fileList={this.getOrgCodeUrlWai}*/}
  6111. {/* pictureUrl={this.state.pictureUrl}*/}
  6112. {/* />*/}
  6113. {/* <p style={{ color: 'red' }}>图片建议:要清晰。</p>*/}
  6114. {/* </FormItem>*/}
  6115. {/* </div>*/}
  6116. {/* /!*只有审核拒绝和第一次发起外包的时候才要填写发起原因 如果是类型为供应商则不需要发起原因*!/*/}
  6117. {/* /!*this.state.startType 0外包 1供应商*!/*/}
  6118. {/* {(typeof this.state.refundStatus === 'undefined' || this.state.refundStatus === 2) && this.state.startType !== 1 ? <div className="clearfix">*/}
  6119. {/* <FormItem*/}
  6120. {/* className="half-item"*/}
  6121. {/* {...formItemLayout}*/}
  6122. {/* label={*/}
  6123. {/* <span>*/}
  6124. {/* <strong style={{ color: '#f00' }}>*</strong>发起原因*/}
  6125. {/* </span>*/}
  6126. {/* }*/}
  6127. {/* >*/}
  6128. {/* <TextArea*/}
  6129. {/* rows={4}*/}
  6130. {/* value={this.state.reason}*/}
  6131. {/* onChange={(e) => {*/}
  6132. {/* this.setState({*/}
  6133. {/* reason: e.target.value,*/}
  6134. {/* })*/}
  6135. {/* }}*/}
  6136. {/* placeholder="请输入发起原因"*/}
  6137. {/* />*/}
  6138. {/* </FormItem>*/}
  6139. {/* </div> : <div/>}*/}
  6140. {/* <div className="clearfix">*/}
  6141. {/* <div*/}
  6142. {/* style={{*/}
  6143. {/* display: 'inline-black',*/}
  6144. {/* textAlign: 'center',*/}
  6145. {/* }}*/}
  6146. {/* >*/}
  6147. {/* <Button*/}
  6148. {/* type="primary"*/}
  6149. {/* loading={this.state.loading}*/}
  6150. {/* onClick={()=>{*/}
  6151. {/* this.sureOut(this.state.startType);*/}
  6152. {/* }}*/}
  6153. {/* >*/}
  6154. {/* {*/}
  6155. {/* this.state.startType === 0 ? "确认发起外包,不通过总部" : "提交供应商信息"*/}
  6156. {/* }*/}
  6157. {/* </Button>*/}
  6158. {/* <p className="tip" style={{ color: 'red' }}>*/}
  6159. {/* {*/}
  6160. {/* this.state.startType === 0 ? "提示:高于总部价格,费用个人承担" : "确定提交供应商信息,提交后,不可修改"*/}
  6161. {/* }*/}
  6162. {/* </p>*/}
  6163. {/* </div>*/}
  6164. {/* </div>*/}
  6165. {/* </div>*/}
  6166. {/* ) : (*/}
  6167. {/* <div>*/}
  6168. {/* {*/}
  6169. {/* this.state.speVisible && this.state.activeKey === '2' ?*/}
  6170. {/* <CheckProject*/}
  6171. {/* {...this.props}*/}
  6172. {/* tid={this.state.tid}*/}
  6173. {/* orderTaskOfficialCost={this.state.orderTaskOfficialCost} //是否含官费 0无1有*/}
  6174. {/* containOfficialFees={this.state.containOfficialFees} //0:实际已缴费 1:实际未缴费*/}
  6175. {/* oldInfor={this.state.oldInfor}*/}
  6176. {/* projectType={this.state.projectType} //0正常 1专利 2软著 3审计*/}
  6177. {/* patentNameType={this.state.patentNameType}*/}
  6178. {/* patentName={this.state.patentName}*/}
  6179. {/* patentType={this.state.patentType}*/}
  6180. {/* status={this.state.refundStatus}*/}
  6181. {/* isPreviewPay={true}*/}
  6182. {/* mid={this.state.mid}*/}
  6183. {/* thirdInfoList={this.state.thirdInfoList}*/}
  6184. {/* dataSource={this.state.payNodeList}*/}
  6185. {/* outsourceRemarks={this.state.outsourceRemarks}*/}
  6186. {/* fileList={this.state.pictureUrl}*/}
  6187. {/* startType={this.state.startType}*/}
  6188. {/* projectStatus={this.state.projectStatus}*/}
  6189. {/* onRefresh={()=>{*/}
  6190. {/* this.waiDetail();*/}
  6191. {/* this.thirdTable(this.state.tid);*/}
  6192. {/* this.getSelectOutsourceLog(this.state.tid);*/}
  6193. {/* this.payNodeTable(this.state.tid)*/}
  6194. {/* this.loadData(this.state.page)*/}
  6195. {/* }}*/}
  6196. {/* /> : <div/>*/}
  6197. {/* }*/}
  6198. {/* </div>*/}
  6199. {/* )}*/}
  6200. {/* {(this.state.refundStatus == 1 ||*/}
  6201. {/* this.state.refundStatus == 0 ||*/}
  6202. {/* this.state.refundStatus == 2) &&*/}
  6203. {/* this.state.startType !== 1*/}
  6204. {/* ? (*/}
  6205. {/* <div className="clearfix"*/}
  6206. {/* style={{*/}
  6207. {/* display: this.state.refundStatus == 0 ? 'none' : 'block',*/}
  6208. {/* }}*/}
  6209. {/* >*/}
  6210. {/* <hr className="division" />*/}
  6211. {/* {parseInt(this.state.startType) !== 1 ? <div style={{*/}
  6212. {/* color:'#F00',*/}
  6213. {/* fontWeight: 'bolder',*/}
  6214. {/* paddingBottom: '20px',*/}
  6215. {/* }}>*/}
  6216. {/* 审核结果: <span style={{paddingLeft:'20px'}}>{getRefundStatus(this.state.refundStatus)}</span>*/}
  6217. {/* </div> : <div/>}*/}
  6218. {/* <div className="outsourceLogList">*/}
  6219. {/* {*/}
  6220. {/* this.state.outsourceLogs && this.state.outsourceLogs.map((value,index)=>(*/}
  6221. {/* <div key={index} className="outsourceLogItem outsource">*/}
  6222. {/* <div style={{*/}
  6223. {/* display:'flex',*/}
  6224. {/* flexFlow:'row nowrap',*/}
  6225. {/* paddingBottom: '3px',*/}
  6226. {/* paddingTop: '3px',*/}
  6227. {/* }}>*/}
  6228. {/* <div>*/}
  6229. {/* {value.aname}*/}
  6230. {/* </div>*/}
  6231. {/* <div style={{paddingLeft:'5px'}}>*/}
  6232. {/* {*/}
  6233. {/* value.status === 0 ?*/}
  6234. {/* <Tag color="#2db7f5">发起外包审核</Tag> :*/}
  6235. {/* value.status === 1 ? <Tag color="#87d068">通过</Tag> :*/}
  6236. {/* <Tag color="#f50">驳回</Tag>*/}
  6237. {/* }*/}
  6238. {/* </div>*/}
  6239. {/* <div style={{*/}
  6240. {/* wordBreak: 'break-all',*/}
  6241. {/* maxWidth:'67%',*/}
  6242. {/* }}>*/}
  6243. {/* {value.remarks}*/}
  6244. {/* </div>*/}
  6245. {/* <div style={{paddingLeft: '10px'}}>*/}
  6246. {/* {value.createTimes}*/}
  6247. {/* </div>*/}
  6248. {/* </div>*/}
  6249. {/* </div>*/}
  6250. {/* ))*/}
  6251. {/* }*/}
  6252. {/* </div>*/}
  6253. {/* </div>*/}
  6254. {/* ) : (*/}
  6255. {/* ''*/}
  6256. {/* )}*/}
  6257. {/* </Spin>*/}
  6258. {/*</TabPane>*/}
  6259. {!this.props.isZxs || (this.state.isHuiyuan && this.props.isZxs) ? (
  6260. <TabPane tab="订单详情" key="3">
  6261. <div style={{paddingTop:'15px'}}>
  6262. <Spin spinning={this.state.loading}>
  6263. <OrderDetail
  6264. orderData={this.state.orderData}
  6265. getOrderLog={this.getOrderLog}
  6266. dataSourceX={this.state.dataSourceX}
  6267. contactList={this.state.jiedian}
  6268. orderNo={this.state.orderNo}
  6269. totalCui={this.state.totalCui}
  6270. contactListNew={this.state.jiedianNew}
  6271. pictureUrl={this.state.contractPictureUrl}
  6272. />
  6273. </Spin>
  6274. </div>
  6275. </TabPane>
  6276. ) : (
  6277. ''
  6278. )}
  6279. </Tabs>
  6280. </div>
  6281. </Modal> : <div/>}
  6282. {this.state.visibleA ? <Modal
  6283. width="800px"
  6284. visible={this.state.visibleA}
  6285. onCancel={this.visitCancelA}
  6286. title="操作日志"
  6287. footer=""
  6288. className="admin-desc-content"
  6289. >
  6290. <div className="patent-table patent-table-center">
  6291. <Spin spinning={this.state.loading}>
  6292. <Table
  6293. columns={this.state.columnsA}
  6294. dataSource={this.state.dataSourceA}
  6295. pagination={false}
  6296. bordered
  6297. size="small"
  6298. />
  6299. </Spin>
  6300. </div>
  6301. </Modal> : null}
  6302. {this.state.timeVisible ? <Modal
  6303. title="工时记录"
  6304. visible={this.state.timeVisible}
  6305. onCancel={this.timeClose}
  6306. width={800}
  6307. footer={null}
  6308. >
  6309. <Spin spinning={this.state.loading}>
  6310. <Table
  6311. columns={this.state.columnsTime}
  6312. dataSource={this.state.dataSourceTime}
  6313. pagination={false}
  6314. scroll={{ x: 'max-content', y: 0 }}
  6315. bordered
  6316. size={'small'}
  6317. />
  6318. <p style={{ marginTop: 10, color: 'red' }}>
  6319. 累计工时(小时):{this.state.recordHour}
  6320. </p>
  6321. </Spin>
  6322. </Modal> :null}
  6323. {this.state.ThirdListVisible ? <NewSupplier
  6324. patentNameType={this.state.patentNameType}
  6325. ThirdId={this.state.ThirdId}
  6326. tid={this.state.tid}
  6327. patentType={this.state.patentType}
  6328. projectType={this.state.startType === 0 ? 0 : this.state.projectType}
  6329. realProjectType={this.state.projectType} //真实的项目类型
  6330. startType={this.state.startType} //项目类型 0外包 1供应商
  6331. thirdCompanyName={this.state.thirdCompanyName}
  6332. thirdUnitPrice={this.state.thirdUnitPrice}
  6333. thirdQuantity={this.state.thirdQuantity}
  6334. thirdRemarks={this.state.thirdRemarks}
  6335. spinning={this.state.loading}
  6336. visible={this.state.ThirdListVisible}
  6337. thirdMaterial={this.state.thirdMaterial}
  6338. thirdUrgent={this.state.thirdUrgent}
  6339. audit={this.state.audit}
  6340. assets={this.state.assets}
  6341. income={this.state.income}
  6342. onDetermine={this.handleCancelq}
  6343. onCancel={()=>{
  6344. this.thirdTable(this.state.tid);
  6345. this.setState({
  6346. ThirdListVisible: false,
  6347. ThirdId: '', //供应商id
  6348. thirdCompanyName: '', //第三方名称
  6349. thirdUnitPrice: '', //单价
  6350. thirdQuantity: '', //数量
  6351. currentTotalPrice: '', //总价
  6352. thirdMaterial: 0, //有无材料
  6353. thirdUrgent: 0, //加急情况
  6354. thirdRemarks: '',
  6355. audit: 1,
  6356. assets: '',
  6357. income: '',
  6358. })
  6359. }}
  6360. otherOperations={(data)=>{
  6361. this.setState({
  6362. thirdMaterial: data.thirdMaterial,
  6363. thirdUrgent: data.thirdUrgent,
  6364. customerArr: data.customerArr,
  6365. thirdCompanyName: data.thirdCompanyName
  6366. })
  6367. }}/> : <div/>}
  6368. {this.state.PayNodeVisible ? <OperationPayNode
  6369. tid={this.state.tid}
  6370. cSort={this.state.cSort}
  6371. visible={this.state.PayNodeVisible}
  6372. thirdId={this.state.ThirdId}
  6373. thirdInfoList={this.state.thirdInfoList}
  6374. supplierList={this.state.PayNodeCompany}
  6375. payNodeInfor={this.state.payNodeInfor}
  6376. thirdUnitPrice={this.state.thirdUnitPrice}
  6377. onCancel={async ()=>{
  6378. this.setState({
  6379. PayNodeVisible: false,
  6380. payNodeInfor: {},
  6381. ThirdId: '',
  6382. thirdUnitPrice: '',
  6383. })
  6384. if(this.state.paySubject.length === 0 ){
  6385. await this.xiangqing(this.state.tid);
  6386. // 获取Csort
  6387. await this.getCsortData(localStorage.getItem('cSort'))
  6388. await this.payNodeTable(this.state.tid);
  6389. }else{
  6390. await this.payNodeTable(this.state.tid)
  6391. }
  6392. }}
  6393. /> : <div/>}
  6394. {this.state.projectSituationVisible ?
  6395. <NowProjectStatus
  6396. tid={this.state.tid}
  6397. cSort={parseInt(this.state.cSort)}
  6398. projectTypeJSON={this.state.timeRecord ? JSON.parse(this.state.timeRecord) : {}}
  6399. projectType={this.state.projectType}
  6400. projectStatus={this.state.projectStatus}
  6401. visible={this.state.projectSituationVisible}
  6402. oldData={{
  6403. endDate:this.state.endDate, //完成时间
  6404. acceptDate:this.state.acceptDate,//受理时间
  6405. publicityDate:this.state.publicityDate,//公示时间
  6406. licenceDate:this.state.licenceDate,//发证时间
  6407. setUpAmount:this.state.setUpAmount,//立项金额
  6408. }}
  6409. onCancel={()=>{
  6410. this.setState({
  6411. projectSituationVisible: false
  6412. })
  6413. }}
  6414. onPreservation={(value)=>{
  6415. this.xiangqing(this.state.id)
  6416. this.setState({
  6417. projectSituationVisible: false
  6418. })
  6419. }}
  6420. /> : null
  6421. }
  6422. {this.state.addnextVisible && <ProjectDetailsReadOnly
  6423. infor={this.state.dataInfor}
  6424. visible={this.state.addnextVisible}
  6425. onCancel={this.nextCancel}
  6426. />}
  6427. </div>
  6428. )
  6429. },
  6430. })
  6431. export default Task