123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911 |
- <template>
- <div class="app-container">
- <div v-if="login == 3">
- <kaihe-index />
- </div>
- <div v-else>
- <div v-show="mainTable == false">
- <el-form
- :model="tablefilter"
- ref="queryParams_s"
- v-show="showSearch"
- label-width="90px"
- >
- <el-row>
- <el-col :span="6">
- <el-form-item label="结算单位" prop="fCorpid">
- <el-select
- v-model="tablefilter.fCorpid"
- placeholder="请选择结算单位"
- filterable
- remote
- clearable
- size="small"
- style="width: 100%"
- @keyup.enter.native="handleQuery"
- :remote-method="corpsRemoteMethod"
- >
- <el-option
- v-for="(dict, index) in fMblnoOptions"
- :key="index.fId"
- :label="dict.fName"
- :value="dict.fId"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="状态" prop="fBillstatus">
- <el-select
- v-model="tablefilter.fBillstatus"
- placeholder="请选择状态"
- clearable
- style="width: 100%"
- >
- <el-option label="保存" value="1" />
- <el-option label="暂存" value="2" />
- <el-option label="审批驳回" value="3" />
- <el-option label="提交审核" value="4" />
- <el-option label="审批中" value="5" />
- <el-option label="审核完成" value="6" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="系统编号" prop="fBillno">
- <el-input
- v-model="tablefilter.fBillno"
- placeholder="请输入系统编号"
- clearable
- size="small"
- style="width: 100%"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="对账金额" prop="amount">
- <el-input
- v-model="tablefilter.firstMoney"
- placeholder="金额区间"
- style="width: 48%; margin-right: 4%"
- oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
- @keyup.enter.native="handleQuery"
- />
- <el-input
- v-model="tablefilter.lastMoney"
- placeholder="金额区间"
- @change="changeMoney"
- oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
- style="width: 48%"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <div v-show="show">
- <el-col :span="6">
- <el-form-item label="备注" prop="fRemarks">
- <el-input
- v-model="tablefilter.fRemarks"
- placeholder="请输入备注"
- clearable
- style="width: 100%"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="对账日期" prop="timeInterval">
- <el-date-picker
- v-model="tablefilter.timeInterval"
- size="small"
- style="width: 100%"
- value-format="yyyy-MM-dd"
- :default-time="['00:00:00', '23:59:59']"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- ></el-date-picker>
- </el-form-item>
- </el-col>
- </div>
- </el-row>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['finance:contrast:add']"
- >新增</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- icon="el-icon-edit"
- size="mini"
- :disabled="single"
- @click="handleUpdate"
- v-hasPermi="['warehouse:contrast:edit']"
- >修改</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['finance:contrast:export']"
- >导出</el-button
- >
- </el-col>
- <div class="tabSetting">
- <div style="margin-right: 20px">
- <el-button
- type="cyan"
- icon="el-icon-search"
- size="mini"
- @click="handleQuery"
- >搜索</el-button
- >
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
- >重置</el-button
- >
- <el-button
- v-show="show"
- @click="show = !show"
- icon="el-icon-arrow-up"
- size="mini"
- >展开</el-button
- >
- <el-button
- v-show="!show"
- @click="show = !show"
- icon="el-icon-arrow-down"
- size="mini"
- >展开</el-button
- >
- </div>
- <right-toolbar
- :showSearch.sync="showSearch"
- @queryTable="getList"
- ></right-toolbar>
- <div style="margin: 0 12px">
- <el-button
- icon="el-icon-setting"
- size="mini"
- circle
- @click="showSetting = !showSetting"
- v-if="typevalue != 2"
- ></el-button>
- <el-button
- icon="el-icon-setting"
- size="mini"
- circle
- @click="showSetting6 = !showSetting6"
- v-else
- ></el-button>
- </div>
- </div>
- </el-row>
- <el-dialog
- title="自定义列显示"
- :visible.sync="showSetting"
- width="700px"
- v-dialogDrag
- >
- <template slot="title">
- <div class="avue-crud__dialog__header">
- <span class="el-dialog__title">
- <span
- style="
- display: inline-block;
- width: 3px;
- height: 20px;
- margin-right: 5px;
- float: left;
- margin-top: 2px;
- "
- ></span>
- </span>
- </div>
- </template>
- <div>配置排序列数据(拖动调整顺序)</div>
- <div style="margin-left: 17px">
- <el-checkbox
- v-model="allCheck"
- label="全选"
- @change="allChecked"
- ></el-checkbox>
- </div>
- <div style="padding: 4px; display: flex; justify-content: center">
- <draggable
- v-model="setRowList"
- group="site"
- animation="300"
- @start="onStart"
- @end="onEnd"
- handle=".indraggable"
- >
- <transition-group>
- <div
- v-for="item in setRowList"
- :key="item.surface"
- class="listStyle"
- >
- <div style="width: 500px" class="indraggable">
- <div class="progress" :style="{ width: item.width + 'px' }">
- <el-checkbox
- :label="item.name"
- v-model="item.checked"
- :true-label="0"
- :false-label="1"
- >{{ item.name }}
- </el-checkbox>
- </div>
- </div>
- <el-input-number
- v-model.number="item.width"
- controls-position="right"
- :min="1"
- :max="500"
- size="mini"
- ></el-input-number>
- </div>
- </transition-group>
- </draggable>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="showSetting = false">取 消</el-button>
- <el-button @click="delRow" type="danger">重 置</el-button>
- <el-button type="primary" @click="save()">确 定</el-button>
- </span>
- </el-dialog>
- <el-table
- v-loading="loading"
- :data="contrastList"
- @selection-change="handleSelectionChange"
- show-summary
- :summary-method="listTotal"
- v-if="typevalue != 2"
- >
- <el-table-column width="100" align="center" type="selection" />
- <!-- <el-table-column label="制单部门" align="center" prop="fId" /> -->
- <el-table-column
- label="行号"
- align="center"
- type="index"
- fixed="left"
- />
- <el-table-column
- v-for="(item, index) in getRowList"
- :key="index"
- :label="item.name"
- :width="item.width"
- :prop="item.label"
- align="center"
- :fixed="item.fixed"
- :show-overflow-tooltip="true"
- />
- <el-table-column
- label="操作"
- align="center"
- class-name="small-padding fixed-width"
- min-width="180"
- fixed="right"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="check(scope.row, 0)"
- v-hasPermi="['finance:contrast:edit']"
- >查看</el-button
- >
- <el-button
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="check(scope.row, 1)"
- v-hasPermi="['finance:contrast:edit']"
- v-if="
- scope.row.fBillstatus == '提交审核' ||
- scope.row.fBillstatus == '审核中'
- "
- >审批进度</el-button
- >
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['finance:contrast:edit']"
- v-if="
- scope.row.fBillstatus == '保存' ||
- scope.row.fBillstatus == '暂存' ||
- scope.row.fBillstatus == '审批驳回' ||
- scope.row.fBillstatus == '新建'
- "
- >
- 修改</el-button
- >
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['finance:contrast:remove']"
- v-if="
- scope.row.fBillstatus == '保存' ||
- scope.row.fBillstatus == '暂存' ||
- scope.row.fBillstatus == '审批驳回' ||
- scope.row.fBillstatus == '新建'
- "
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <el-dialog
- title="自定义列显示"
- :visible.sync="showSetting6"
- width="700px"
- v-dialogDrag
- >
- <template slot="title">
- <div class="avue-crud__dialog__header">
- <span class="el-dialog__title">
- <span
- style="
- display: inline-block;
- width: 3px;
- height: 20px;
- margin-right: 5px;
- float: left;
- margin-top: 2px;
- "
- ></span>
- </span>
- </div>
- </template>
- <div>配置排序列数据(拖动调整顺序)</div>
- <div style="margin-left: 17px">
- <el-checkbox
- v-model="allCheck6"
- label="全选"
- @change="allChecked6"
- ></el-checkbox>
- </div>
- <div style="padding: 4px; display: flex; justify-content: center">
- <draggable
- v-model="setRowList6"
- group="site"
- animation="300"
- @start="onStart"
- @end="onEnd"
- handle=".indraggable"
- >
- <transition-group>
- <div
- v-for="item in setRowList6"
- :key="item.surface"
- class="listStyle"
- >
- <div style="width: 500px" class="indraggable">
- <div class="progress" :style="{ width: item.width + 'px' }">
- <el-checkbox
- :label="item.name"
- v-model="item.checked"
- :true-label="0"
- :false-label="1"
- >{{ item.name }}
- </el-checkbox>
- </div>
- </div>
- <el-input-number
- v-model.number="item.width"
- controls-position="right"
- :min="1"
- :max="500"
- size="mini"
- ></el-input-number>
- </div>
- </transition-group>
- </draggable>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="showSetting6 = false">取 消</el-button>
- <el-button @click="delRow6" type="danger">重 置</el-button>
- <el-button type="primary" @click="save6()">确 定</el-button>
- </span>
- </el-dialog>
- <el-table
- v-loading="loading"
- :data="contrastList"
- @selection-change="handleSelectionChange"
- show-summary
- :summary-method="listTotal"
- v-if="typevalue == 2"
- >
- <el-table-column width="100" align="center" type="selection" />
- <!-- <el-table-column label="制单部门" align="center" prop="fId" /> -->
- <el-table-column
- label="行号"
- align="center"
- type="index"
- fixed="left"
- />
- <el-table-column
- v-for="(item, index) in getRowList6"
- :key="index"
- :label="item.name"
- :width="item.width"
- :prop="item.label"
- align="center"
- :fixed="item.fixed"
- :show-overflow-tooltip="true"
- />
- <el-table-column
- label="操作"
- align="center"
- class-name="small-padding fixed-width"
- min-width="180"
- fixed="right"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="check(scope.row, 0)"
- v-hasPermi="['finance:contrast:edit']"
- >查看</el-button
- >
- <el-button
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="check(scope.row, 1)"
- v-hasPermi="['finance:contrast:edit']"
- v-if="
- scope.row.fBillstatus == '提交审核' ||
- scope.row.fBillstatus == '审核中'
- "
- >审批进度</el-button
- >
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['finance:contrast:edit']"
- v-if="
- scope.row.fBillstatus == '保存' ||
- scope.row.fBillstatus == '暂存' ||
- scope.row.fBillstatus == '审批驳回' ||
- scope.row.fBillstatus == '新建'
- "
- >
- 修改</el-button
- >
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['finance:contrast:remove']"
- v-if="
- scope.row.fBillstatus == '保存' ||
- scope.row.fBillstatus == '暂存' ||
- scope.row.fBillstatus == '审批驳回' ||
- scope.row.fBillstatus == '新建'
- "
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total > 0"
- :total="total"
- :page.sync="tablefilter.pageNum"
- :limit.sync="tablefilter.pageSize"
- @pagination="getList"
- />
- </div>
- <!-- 新增修改页面-->
- <div v-if="mainTable == true">
- <el-form
- ref="ruless"
- :model="queryParams"
- :rules="ruless"
- label-width="78px"
- :inline="true"
- v-show="showSearch"
- >
- <el-form-item label="结算单位" prop="fCorpid">
- <el-select
- v-model="queryParams.fCorpid"
- placeholder="请选择结算单位"
- filterable
- remote
- clearable
- :disabled="doNot"
- style="width: 200px"
- size="small"
- @keyup.enter.native="handleQuery"
- :remote-method="corpsRemoteMethod"
- >
- <el-option
- v-for="(dict, index) in fMblnoOptions"
- :key="index.fId"
- :label="dict.fName"
- :value="dict.fId"
- ></el-option>
- </el-select>
- </el-form-item>
- <!-- <el-form-item label="提单号" prop="tMblno">
- <el-input v-model="TWareHouseFees.tMblno" placeholder="" :disabled="true"/>
- </el-form-item> -->
- <el-form-item label="业务日期">
- <el-date-picker
- v-model="queryParams.fAccbilldate"
- size="small"
- style="width: 200px"
- value-format="yyyy-MM-dd"
- type="date"
- :disabled="notChange"
- placeholder="选择账单日期"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item
- label="制单日期"
- prop="createTime"
- v-if="typevalue == 2"
- >
- <el-date-picker
- v-model="queryParams.createTime"
- size="small"
- style="width: 200px"
- value-format="timestamp"
- type="date"
- disabled
- placeholder="选择制单日期"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item label="系统编号" prop="fBillno">
- <el-input
- v-model="queryParams.fBillno"
- placeholder=""
- clearable
- size="small"
- :disabled="true"
- style="width: 200px"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="录入人" prop="createBy">
- <el-input
- v-model="queryParams.createBy"
- disabled
- size="small"
- style="width: 200px"
- />
- </el-form-item>
- <el-form-item label="备注" prop="fRemarks">
- <el-input
- v-model="queryParams.fRemarks"
- size="small"
- style="width: 200px"
- :disabled="notChange"
- />
- </el-form-item>
- <div
- style="width: 100%; display: flex; justify-content: space-between"
- >
- <div style="display: flex">
- <el-button
- icon="el-icon-arrow-left"
- type="danger"
- v-if="cancelButton === true"
- size="mini"
- @click="cancel"
- >返回列表</el-button
- >
- <el-button
- icon="el-icon-arrow-left"
- type="danger"
- v-if="cancelButton === false"
- size="mini"
- @click="homePage"
- >返回首页</el-button
- >
- <el-button
- type="warning"
- size="mini"
- @click="reconciliation"
- :disabled="notChange"
- v-if="queryParams.fBillstatus < '4'"
- >检索</el-button
- >
- <el-button
- type="primary"
- size="mini"
- @click="confirmReconciliation"
- :disabled="notChange"
- v-if="queryParams.fBillstatus < '4'"
- >确认对账</el-button
- >
- <el-button type="warning" size="mini" @click="handleExportItems"
- >导出</el-button
- >
- <el-button
- type="success"
- size="mini"
- @click="backrRconciliation"
- v-if="queryParams.fBillstatus === '6'"
- >撤销对账</el-button
- >
- <!-- <el-button type="info" size="small" @click="exportData">导出</el-button>-->
- <el-button
- type="danger"
- size="mini"
- :disabled="disappear"
- v-if="queryParams.fBillstatus === '4'"
- @click="backApproval('f_billstatus')"
- >撤销审批</el-button
- >
- <el-button
- v-if="approve === true && queryParams.fBillstatus >= '4' && queryParams.fBillstatus < '6'"
- size="mini"
- @click="goApproval('f_billstatus')"
- >审批</el-button
- >
- <el-button
- type="primary"
- size="mini"
- v-if="queryParams.fBillstatus >= '3'"
- @click="addOrUpdateHandle('f_billstatus')"
- >查看审批流</el-button
- >
- <el-button
- type="success"
- size="mini"
- @click="submitForm(typevalue, 0)"
- :disabled="notChange"
- >保 存</el-button
- >
- <el-button
- @click="addPage"
- type="primary"
- :disabled="notChange"
- size="mini"
- >新 增</el-button
- >
- </div>
- <div style="margin: 0 12px">
- <el-button
- v-if="typevalue != 2"
- icon="el-icon-setting"
- size="mini"
- circle
- @click="showSetting2 = !showSetting2"
- ></el-button>
- <el-button
- v-if="typevalue == 2"
- icon="el-icon-setting"
- size="mini"
- circle
- @click="showSetting4 = !showSetting4"
- ></el-button>
- </div>
- </div>
- <!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> -->
- </el-form>
- <el-dialog
- title="自定义列显示"
- :visible.sync="showSetting2"
- width="700px"
- v-dialogDrag
- append-to-body
- >
- <template slot="title">
- <div class="avue-crud__dialog__header">
- <span class="el-dialog__title">
- <span
- style="
- display: inline-block;
- width: 3px;
- height: 20px;
- margin-right: 5px;
- float: left;
- margin-top: 2px;
- "
- ></span>
- </span>
- </div>
- </template>
- <div>配置排序列数据(拖动调整顺序)</div>
- <div style="margin-left: 17px">
- <el-checkbox
- v-model="allCheck2"
- label="全选"
- @change="allChecked2"
- ></el-checkbox>
- </div>
- <div style="padding: 4px; display: flex; justify-content: center">
- <draggable
- v-model="setRowList2"
- group="site"
- animation="300"
- @start="onStart"
- @end="onEnd"
- handle=".indraggable"
- >
- <transition-group>
- <div
- v-for="item in setRowList2"
- :key="item.surface"
- class="listStyle"
- >
- <div style="width: 500px" class="indraggable">
- <div class="progress" :style="{ width: item.width + 'px' }">
- <el-checkbox
- :label="item.name"
- v-model="item.checked"
- :true-label="0"
- :false-label="1"
- >{{ item.name }}
- </el-checkbox>
- </div>
- </div>
- <el-input-number
- v-model.number="item.width"
- controls-position="right"
- :min="1"
- :max="500"
- size="mini"
- ></el-input-number>
- </div>
- </transition-group>
- </draggable>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="showSetting2 = false">取 消</el-button>
- <el-button @click="delRow2" type="danger">重 置</el-button>
- <el-button type="primary" @click="save2()">确 定</el-button>
- </span>
- </el-dialog>
- <el-table
- v-loading="loading"
- :data="DzfeeList"
- @selection-change="handleSelectionChange_s"
- show-summary
- :summary-method="listTotal"
- v-if="typevalue != 2"
- >
- <el-table-column label="行号" align="center" type="index" />
- <el-table-column
- v-for="(item, index) in getRowList2"
- :key="index"
- :label="item.name"
- :width="item.width"
- :prop="item.label"
- align="center"
- :fixed="item.fixed"
- :show-overflow-tooltip="true"
- sortable
- >
- <template slot-scope="scope">
- <span v-if="item.label == 'fBsdate'">{{
- scope.row.fBsdate
- ? scope.row.fBsdate.slice(0, 10)
- : scope.row.fReviewDate
- }}</span>
- <span v-if="item.label == 'fSrcdc' && login == 3">{{
- scope.row.fSrcdc == "D" ? "收" : "付"
- }}</span>
- <span v-else>{{ scope.row[item.label] }}</span>
- </template>
- </el-table-column>
- <!-- <el-table-column label="提单号" align="center" prop="fMblno" />
- <el-table-column label="业务日期" align="center" prop="fBsdate">
- <template slot-scope="scope">
- <span v-if="scope.row.fBsdate === undefined">无</span>
- <span v-else>{{ scope.row.fBsdate.slice(0, 10) }}</span>
- </template>
- </el-table-column>
- <el-table-column label="费用名称" align="center" prop="fFeeName" />
- <el-table-column label="收/付" align="center" prop="fSrcdc">
- <template slot-scope="scope">
- <span v-if="scope.row.fSrcdc == 'D'">收</span>
- <span v-else-if="scope.row.fSrcdc == 'C'">付</span>
- </template>
- </el-table-column>
- <el-table-column label="金额" align="center" prop="fAmtdr" />
- <el-table-column label="计价单位" align="center" prop="fFeeunitid" />
- <el-table-column label="数量" align="center" prop="fQty" />
- <el-table-column label="单价" align="center" prop="fUnitprice" />
- <el-table-column label="本次金额" align="center" prop="fAmt" />
- <el-table-column label="作业类型" align="center" prop="fBusinessType" />
- <el-table-column label="业务类型" align="center" prop="fBilltype">
- <template slot-scope="scope">
- <span v-if="scope.row.fBilltype == 'SJRK'">入库</span>
- <span v-else-if="scope.row.fBilltype == 'SJCK'">出库</span>
- <span v-else-if="scope.row.fBilltype == 'CKDB'">调拨</span>
- <span v-else-if="scope.row.fBilltype == 'HQZY'">货权转移</span>
- <span v-else-if="scope.row.fBilltype == 'JSCCF'">仓储费</span>
- <span v-else>{{ scope.row.fBilltype }}</span>
- </template>
- </el-table-column>
- <el-table-column label="来源编号" align="center" prop="srcBillNo" />
- <el-table-column label="提单号" align="center" prop="fMblno" />
- <el-table-column label="货物品名" align="center" prop="fProductName" />
- <el-table-column label="品牌" align="center" prop="fMarks" />
- <el-table-column label="计费起始日期" align="center" prop="fChargedate">
- <template slot-scope="scope">
- <span v-if="scope.row.fChargedate === undefined">无</span>
- <span v-else>{{ scope.row.fChargedate.slice(0, 10) }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="计费截止日期"
- align="center"
- prop="fBillingDeadline"
- >
- <template slot-scope="scope">
- <span v-if="scope.row.fBillingDeadline === undefined">无</span>
- <span v-else>{{ scope.row.fBillingDeadline.slice(0, 10) }}</span>
- </template>
- </el-table-column>
- <el-table-column label="计费天数" align="center" prop="fBillingDays" />
- <el-table-column
- label="库存天数"
- align="center"
- prop="fInventoryDays"
- />
- <el-table-column label="备注" align="center" prop="fRemarks" /> -->
- <el-table-column
- label="操作"
- align="center"
- class-name="small-padding fixed-width"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- :disabled="notChange"
- @click.native.prevent="deleteRow(scope.$index, DzfeeList)"
- >删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-dialog
- title="自定义列显示"
- :visible.sync="showSetting4"
- width="700px"
- v-dialogDrag
- append-to-body
- >
- <template slot="title">
- <div class="avue-crud__dialog__header">
- <span class="el-dialog__title">
- <span
- style="
- display: inline-block;
- width: 3px;
- height: 20px;
- margin-right: 5px;
- float: left;
- margin-top: 2px;
- "
- ></span>
- </span>
- </div>
- </template>
- <div>配置排序列数据(拖动调整顺序)</div>
- <div style="margin-left: 17px">
- <el-checkbox
- v-model="allCheck4"
- label="全选"
- @change="allChecked4"
- ></el-checkbox>
- </div>
- <div style="padding: 4px; display: flex; justify-content: center">
- <draggable
- v-model="setRowList4"
- group="site"
- animation="300"
- @start="onStart"
- @end="onEnd"
- handle=".indraggable"
- >
- <transition-group>
- <div
- v-for="item in setRowList4"
- :key="item.surface"
- class="listStyle"
- >
- <div style="width: 500px" class="indraggable">
- <div class="progress" :style="{ width: item.width + 'px' }">
- <el-checkbox
- :label="item.name"
- v-model="item.checked"
- :true-label="0"
- :false-label="1"
- >{{ item.name }}
- </el-checkbox>
- </div>
- </div>
- <el-input-number
- v-model.number="item.width"
- controls-position="right"
- :min="1"
- :max="500"
- size="mini"
- ></el-input-number>
- </div>
- </transition-group>
- </draggable>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="showSetting4 = false">取 消</el-button>
- <el-button @click="delRow4" type="danger">重 置</el-button>
- <el-button type="primary" @click="save4()">确 定</el-button>
- </span>
- </el-dialog>
- <el-table
- v-loading="loading"
- :data="DzfeeList"
- @selection-change="handleSelectionChange_s"
- show-summary
- :summary-method="listTotal"
- v-if="typevalue == 2"
- >
- <el-table-column label="行号" align="center" type="index" />
- <el-table-column
- v-for="(item, index) in getRowList4"
- :key="index"
- :label="item.name"
- :width="item.width"
- :prop="item.label"
- align="center"
- :fixed="item.fixed"
- :show-overflow-tooltip="true"
- sortable
- >
- <!-- <template slot-scope="scope">
- <span v-if="item.label == 'fBsdate'">{{
- scope.row.fBsdate
- ? scope.row.fBsdate.slice(0, 10)
- : scope.row.fReviewDate
- }}</span>
- <span v-if="item.label == 'fSrcdc' && login == 3">{{
- scope.row.fSrcdc == "D" ? "收" : "付"
- }}</span>
- <span v-else>{{ scope.row[item.label] }}</span>
- </template> -->
- </el-table-column>
- <el-table-column
- label="操作"
- fixed="right"
- align="center"
- class-name="small-padding fixed-width"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- :disabled="notChange"
- @click.native.prevent="deleteRow(scope.$index, DzfeeList)"
- >删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <div slot="footer" class="dialog-footer">
- <add-or-update
- v-if="addOrUpdateVisible"
- ref="addOrUpdate"
- @refreshDataList="getDataList"
- ></add-or-update>
- <approval-comments
- v-if="addOrUpdateVisib"
- ref="ApprovalComments"
- @refreshDataList="returnData"
- ></approval-comments>
- </div>
- <!-- 添加或修改财务数据主对话框 -->
- <el-dialog
- v-dialogDrag
- :fullscreen="dialogFull"
- :close-on-click-modal="false"
- width="78%"
- :title="title"
- :visible.sync="innerVisible"
- append-to-body
- >
- <template slot="title">
- <div class="avue-crud__dialog__header">
- <span
- class="el-dialog__title"
- style="font-size: 18px; font-weight: bold; color: #606266"
- >
- <span
- style="
- display: inline-block;
- width: 3px;
- height: 20px;
- margin-right: 5px;
- float: left;
- margin-top: 2px;
- "
- ></span
- >检索
- </span>
- <div class="avue-crud__dialog__menu enlarge" @click="full">
- <i
- style="
- cursor: pointer;
- display: block;
- width: 12px;
- height: 12px;
- border: 1px solid #909399;
- border-top: 3px solid #909399;
- margin-top: -3px;
- "
- ></i>
- </div>
- </div>
- </template>
- <el-form
- :model="TWareHouseFees"
- ref="feeListRules"
- :rules="feeListRules"
- label-width="78px"
- >
- <el-row>
- <el-col :span="6">
- <el-form-item label="结算单位" prop="fToCorpid">
- <el-select
- v-model="TWareHouseFees.fToCorpid"
- placeholder="请选择结算单位"
- :disabled="doNot"
- filterable
- remote
- clearable
- style="width: 100%"
- size="small"
- @keyup.enter.native="handleQuery"
- :remote-method="corpsRemoteMethod"
- >
- <el-option
- v-for="(dict, index) in fMblnoOptions"
- :key="index.fId"
- :label="dict.fName"
- :value="dict.fId"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="业务日期" prop="acceptDateList">
- <el-date-picker
- v-model="TWareHouseFees.acceptDateList"
- size="small"
- unlink-panels
- style="width: 100%"
- value-format="yyyy-MM-dd"
- :default-time="['00:00:00', '23:59:59']"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- ></el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="提单号" prop="fMblno">
- <el-input
- clearable
- v-model="TWareHouseFees.fMblno"
- placeholder="请输入提单号"
- style="width: 100%"
- size="small"
- />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="应收应付" prop="fDc">
- <el-select
- v-model="TWareHouseFees.fDc"
- size="small"
- style="width: 100%"
- >
- <el-option label="应收" value="D" />
- <el-option label="应付" value="C" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="是否对账" prop="fReconciliation">
- <el-select
- v-model="TWareHouseFees.fReconciliation"
- size="small"
- style="width: 100%"
- >
- <el-option label="是" value="1" />
- <el-option label="否" value="0" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="费用名称" prop="fFeeid">
- <template>
- <el-select
- v-model="TWareHouseFees.fFeeid"
- filterable
- :disabled="browseStatus"
- remote
- size="small"
- style="width: 100%"
- :remote-method="fWRemoteMethod"
- placeholder="费用名称"
- multiple
- >
- <el-option
- v-for="item in fWbuOptions"
- :key="item.fId"
- :label="item.fName"
- :value="item.fId"
- >
- </el-option>
- </el-select>
- </template>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item
- label="仓储业务"
- prop="fFeeid"
- v-if="typevalue == 1 || typevalue == 3"
- >
- <el-select
- v-model="TWareHouseFees.fBilltype"
- size="small"
- style="width: 100%"
- @change="changefBilltype"
- placeholder="请选择仓储业务"
- >
- <el-option label="入库" value="SJRK"></el-option>
- <el-option label="出库" value="SJCK"></el-option>
- <el-option label="货权转移" value="HQZY"></el-option>
- <el-option label="调拨" value="CKDB"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="作业类型" prop="fBusinessType">
- <el-select
- v-model="TWareHouseFees.fBusinessType"
- filterable
- :disabled="browseStatus"
- remote
- size="small"
- style="width: 100%"
- placeholder="作业类型"
- multiple
- >
- <el-option
- v-for="(dict, index) in businessTypeOption"
- :key="index.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="8">
- <el-form-item
- label="审核日期"
- v-if="typevalue == 1 || typevalue == 3"
- >
- <el-date-picker
- style="width: 100%"
- size="small"
- v-model="TWareHouseFees.timeExamine"
- type="daterange"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- value-format="yyyy-MM-dd"
- :default-time="['00:00:00', '23:59:59']"
- unlink-panels
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item
- label="对账日期"
- label-width="85px"
- prop="timeReconci"
- v-if="TWareHouseFees.fReconciliation == '1'"
- >
- <el-date-picker
- v-model="TWareHouseFees.timeReconci"
- size="small"
- style="width: 240px"
- value-format="yyyy-MM-dd"
- type="daterange"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- :default-time="['00:00:00', '23:59:59']"
- ></el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="8" style="width: 320px">
- <el-form-item label="结算方式" prop="fBusinessType">
- <el-select
- v-model="TWareHouseFees.stlTypeid"
- filterable
- remote
- size="small"
- style="width: 160px"
- placeholder="选择结算方式"
- clearable
- >
- <el-option
- v-for="(item, index) in fStltypeOptions"
- :key="index.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <div style="margin-right: 20px; float: right">
- <el-button type="cyan" size="mini" @click="searchFee(typevalue)"
- >搜索</el-button
- >
- <el-button type="info" size="mini" @click="resetQuery_s"
- >重置</el-button
- >
- <el-button
- icon="el-icon-setting"
- size="mini"
- circle
- @click="showSetting3 = !showSetting3"
- v-if="typevalue != 2"
- ></el-button>
- <el-button
- icon="el-icon-setting"
- size="mini"
- circle
- @click="showSetting5 = !showSetting5"
- v-if="typevalue == 2"
- ></el-button>
- </div>
- <el-dialog
- title="自定义列显示"
- :visible.sync="showSetting3"
- width="700px"
- v-dialogDrag
- append-to-body
- >
- <template slot="title">
- <div class="avue-crud__dialog__header">
- <span class="el-dialog__title">
- <span
- style="
- display: inline-block;
- width: 3px;
- height: 20px;
- margin-right: 5px;
- float: left;
- margin-top: 2px;
- "
- ></span>
- </span>
- </div>
- </template>
- <div>配置排序列数据(拖动调整顺序)</div>
- <div style="margin-left: 17px">
- <el-checkbox
- v-model="allCheck3"
- label="全选"
- @change="allChecked3"
- ></el-checkbox>
- </div>
- <div style="padding: 4px; display: flex; justify-content: center">
- <draggable
- v-model="setRowList3"
- group="site"
- animation="300"
- @start="onStart"
- @end="onEnd"
- handle=".indraggable"
- >
- <transition-group>
- <div
- v-for="item in setRowList3"
- :key="item.surface"
- class="listStyle"
- >
- <div style="width: 500px" class="indraggable">
- <div
- class="progress"
- :style="{ width: item.width + 'px' }"
- >
- <el-checkbox
- :label="item.name"
- v-model="item.checked"
- :true-label="0"
- :false-label="1"
- >{{ item.name }}
- </el-checkbox>
- </div>
- </div>
- <el-input-number
- v-model.number="item.width"
- controls-position="right"
- :min="1"
- :max="500"
- size="mini"
- ></el-input-number>
- </div>
- </transition-group>
- </draggable>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="showSetting3 = false">取 消</el-button>
- <el-button @click="delRow3" type="danger">重 置</el-button>
- <el-button type="primary" @click="save3()">确 定</el-button>
- </span>
- </el-dialog>
- <el-table
- v-loading="loading"
- :data="feeList"
- ref="feeList"
- show-summary
- :summary-method="getSum"
- @selection-change="handleSelectionChange_s"
- v-if="typevalue != 2"
- >
- <el-table-column type="selection" width="55" align="center" />
- <!-- <el-table-column label="制单部门" align="center" prop="fId" /> -->
- <el-table-column label="行号" align="center" type="index" />
- <el-table-column
- v-for="(item, index) in getRowList3"
- :key="index"
- :label="item.name"
- :width="item.width"
- :prop="item.label"
- align="center"
- :fixed="item.fixed"
- :show-overflow-tooltip="true"
- sortable
- >
- <template slot-scope="scope">
- <span v-if="item.label == 'fName'">{{
- scope.row.fName
- }}</span>
- <span v-if="item.label == 'fFeesName'">{{
- scope.row.fFeesName
- }}</span>
- <span v-if="item.label == 'fMblno'">{{
- scope.row.fMblno
- }}</span>
- <span v-if="item.label == 'fProductName'">{{
- scope.row.fProductName
- }}</span>
- <span v-if="item.label == 'fBsdate'">{{
- scope.row.fBsdate
- ? scope.row.fBsdate.slice(0, 10)
- : scope.row.fReviewDate
- }}</span>
- <span v-if="item.label == 'fBilltype'">
- <template>
- <span v-if="scope.row.fBilltype == 'SJRK'">入库</span>
- <span v-else-if="scope.row.fBilltype == 'SJCK'"
- >出库</span
- >
- <span v-else-if="scope.row.fBilltype == 'CKDB'"
- >调拨</span
- >
- <span v-else-if="scope.row.fBilltype == 'HQZY'"
- >货权转移</span
- >
- <span v-else-if="scope.row.fBilltype == 'JSCCF'"
- >仓储费</span
- >
- <span v-else-if="scope.row.fBilltype == '1000'"
- >计划下达</span
- >
- <span v-else-if="scope.row.fBilltype == '1010'"
- >业务调度</span
- >
- <span v-else-if="scope.row.fBilltype == '1020'"
- >车队派车</span
- >
- <span v-else-if="scope.row.fBilltype == '1030'"
- >司机接单</span
- >
- <span v-else-if="scope.row.fBilltype == '1080'"
- >司机出车</span
- >
- <span v-else-if="scope.row.fBilltype == '1040'"
- >司机提箱</span
- >
- <span v-else-if="scope.row.fBilltype == '1050'"
- >司机装卸柜</span
- >
- <span v-else-if="scope.row.fBilltype == '1060'"
- >司机还卸柜</span
- >
- <span v-else-if="scope.row.fBilltype == '1070'"
- >司机回单</span
- >
- <span v-else-if="scope.row.fBilltype == '1090'"
- >费用补充</span
- >
- <span v-else-if="scope.row.fBilltype == 'KHDD'"
- >凯和订单</span
- >
- </template>
- </span>
- <span v-if="item.label == 'fBusinessType'">{{
- scope.row.fBusinessType
- }}</span>
- <span v-if="item.label == 'fReviewDate'">{{
- scope.row.fReviewDate
- }}</span>
- <span v-if="item.label == 'fAmtdr'">{{
- scope.row.fAmtdr
- }}</span>
- <el-input
- v-model="scope.row.fAmt"
- v-if="item.label == 'fAmt'"
- oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
- @change="imgChangeI(scope.row)"
- />
- <span v-if="item.label == 'fFeeName'">{{
- scope.row.fFeeName
- }}</span>
- <el-input
- v-model="scope.row.fRemarks"
- v-if="item.label == 'fRemarks'"
- />
- </template>
- </el-table-column>
- <!-- <el-table-column-->
- <!-- label="货权方"-->
- <!-- align="center"-->
- <!-- prop="fName"-->
- <!-- width="200px"-->
- <!-- />-->
- <!-- <el-table-column-->
- <!-- label="结算单位"-->
- <!-- align="center"-->
- <!-- prop="fFeesName"-->
- <!-- width="200px"-->
- <!-- />-->
- <!-- <!– <el-table-column label="账单日期" align="center" prop="fAccbilldate"/> –>-->
- <!-- <el-table-column label="提单号" align="center" prop="fMblno" />-->
- <!-- <el-table-column v-if="typevalue == 1 || typevalue == 2" label="品名" align="center" prop="fProductName" />-->
- <!-- <el-table-column v-if="typevalue == 1 || typevalue == 2" label="业务日期" align="center">-->
- <!-- <template slot-scope="scope" v-if="scope.row.fBsdate">-->
- <!-- <span>{{ scope.row.fBsdate.slice(0, 10) }}</span>-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column v-if="typevalue == 1 || typevalue == 2" label="业务类型" align="center" prop="fBilltype">-->
- <!-- <template slot-scope="scope">-->
- <!-- <span v-if="scope.row.fBilltype == 'SJRK'">入库</span>-->
- <!-- <span v-else-if="scope.row.fBilltype == 'SJCK'">出库</span>-->
- <!-- <span v-else-if="scope.row.fBilltype == 'CKDB'">调拨</span>-->
- <!-- <span v-else-if="scope.row.fBilltype == 'HQZY'">货权转移</span>-->
- <!-- <span v-else-if="scope.row.fBilltype == 'JSCCF'">仓储费</span>-->
- <!-- <span v-else-if="scope.row.fBilltype == '1000'">计划下达</span>-->
- <!-- <span v-else-if="scope.row.fBilltype == '1010'">业务调度</span>-->
- <!-- <span v-else-if="scope.row.fBilltype == '1020'">车队派车</span>-->
- <!-- <span v-else-if="scope.row.fBilltype == '1030'">司机接单</span>-->
- <!-- <span v-else-if="scope.row.fBilltype == '1080'">司机出车</span>-->
- <!-- <span v-else-if="scope.row.fBilltype == '1040'">司机提箱</span>-->
- <!-- <span v-else-if="scope.row.fBilltype == '1050'"-->
- <!-- >司机装卸柜</span-->
- <!-- >-->
- <!-- <span v-else-if="scope.row.fBilltype == '1060'"-->
- <!-- >司机还卸柜</span-->
- <!-- >-->
- <!-- <span v-else-if="scope.row.fBilltype == '1070'">司机回单</span>-->
- <!-- <span v-else-if="scope.row.fBilltype == '1090'">费用补充</span>-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column-->
- <!-- label="作业类型"-->
- <!-- align="center"-->
- <!-- prop="fBusinessType"-->
- <!-- />-->
- <!-- <!– <el-table-column label="单据类型" align="center" prop="fBilltype" />–>-->
- <!-- <el-table-column-->
- <!-- label="审核日期"-->
- <!-- align="center"-->
- <!-- prop="fReviewDate"-->
- <!-- />-->
- <!-- <el-table-column label="金额" align="center" prop="fAmtdr" />-->
- <!-- <el-table-column-->
- <!-- label="本次金额"-->
- <!-- align="center"-->
- <!-- prop="fAmt"-->
- <!-- width="100"-->
- <!-- >-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-input-->
- <!-- v-model="scope.row.fAmt"-->
- <!-- placeholder="请输入本次金额"-->
- <!-- clearable-->
- <!-- size="small"-->
- <!-- oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'-->
- <!-- @change="imgChangeI(scope.row)"-->
- <!-- />-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <!-- <el-table-column label="费用名称" align="center" prop="fFeeName" />-->
- <!-- <el-table-column label="备注" align="center" prop="fRemarks">-->
- <!-- <template slot-scope="scope">-->
- <!-- <el-input-->
- <!-- v-model="scope.row.fRemarks"-->
- <!-- placeholder="请输入备注"-->
- <!-- clearable-->
- <!-- size="small"-->
- <!-- width="100"-->
- <!-- />-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- </el-table>
- <el-dialog
- title="自定义列显示"
- :visible.sync="showSetting5"
- width="700px"
- v-dialogDrag
- append-to-body
- >
- <template slot="title">
- <div class="avue-crud__dialog__header">
- <span class="el-dialog__title">
- <span
- style="
- display: inline-block;
- width: 3px;
- height: 20px;
- margin-right: 5px;
- float: left;
- margin-top: 2px;
- "
- ></span>
- </span>
- </div>
- </template>
- <div>配置排序列数据(拖动调整顺序)</div>
- <div style="margin-left: 17px">
- <el-checkbox
- v-model="allCheck5"
- label="全选"
- @change="allChecked5"
- ></el-checkbox>
- </div>
- <div style="padding: 4px; display: flex; justify-content: center">
- <draggable
- v-model="setRowList5"
- group="site"
- animation="300"
- @start="onStart"
- @end="onEnd"
- handle=".indraggable"
- >
- <transition-group>
- <div
- v-for="item in setRowList5"
- :key="item.surface"
- class="listStyle"
- >
- <div style="width: 500px" class="indraggable">
- <div
- class="progress"
- :style="{ width: item.width + 'px' }"
- >
- <el-checkbox
- :label="item.name"
- v-model="item.checked"
- :true-label="0"
- :false-label="1"
- >{{ item.name }}
- </el-checkbox>
- </div>
- </div>
- <el-input-number
- v-model.number="item.width"
- controls-position="right"
- :min="1"
- :max="500"
- size="mini"
- ></el-input-number>
- </div>
- </transition-group>
- </draggable>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="showSetting5 = false">取 消</el-button>
- <el-button @click="delRow5" type="danger">重 置</el-button>
- <el-button type="primary" @click="save5()">确 定</el-button>
- </span>
- </el-dialog>
- <el-table
- v-loading="loading"
- :data="feeList"
- ref="feeList"
- show-summary
- :summary-method="getSum"
- @selection-change="handleSelectionChange_s"
- v-if="typevalue == 2"
- >
- <el-table-column type="selection" width="55" align="center" />
- <!-- <el-table-column label="制单部门" align="center" prop="fId" /> -->
- <el-table-column label="行号" align="center" type="index" />
- <el-table-column
- v-for="(item, index) in getRowList5"
- :key="index"
- :label="item.name"
- :width="item.width"
- :prop="item.label"
- align="center"
- :fixed="item.fixed"
- :show-overflow-tooltip="true"
- sortable
- >
- <template slot-scope="scope">
- <span v-if="item.label == 'fAmt'">
- <el-input
- v-model="scope.row.fAmt"
- v-input-limit="2"
- @change="changeAmt(scope.row.fAmt, scope.$index)"
- />
- </span>
- <span v-else>{{ scope.row[item.label] }}</span>
- </template>
- </el-table-column>
- </el-table>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button
- type="primary"
- @click="confirmImport"
- v-if="typevalue != 2"
- >确 定</el-button
- >
- <el-button
- type="primary"
- @click="confirmImport2"
- v-if="typevalue == 2"
- >确 定</el-button
- >
- <el-button @click="signOut">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </div>
- </div>
- </template>
- <script>
- import {
- RevocationApproval,
- backFee,
- detailFee,
- Cfee,
- listFee,
- getFee,
- delFee,
- addFee,
- updateFee,
- exportFee,
- importFee,
- importFleet,
- addFleet,
- listFleet,
- getFleet,
- delFleet,
- detailFleet,
- confirmFleet,
- listCorps,
- exporItems,
- contrastExport,
- exportWarehousebillsitems
- } from "@/api/finance/contrast";
- // import { listCorps } from "@/api/basicdata/corps";
- import { listFees } from "@/api/basicdata/fees";
- import AddOrUpdate from "@/views/viewApproval";
- import { queryUserVal } from "@/api/warehouseBusiness/agreement";
- import moment from "moment";
- import print from "print-js";
- import ApprovalComments from "@/views/startApproval";
- import Global from "@/layout/components/global";
- import Cookies from "js-cookie";
- import { addSet, select, resetModule } from "@/api/system/set";
- import draggable from "vuedraggable";
- import Vue from "vue";
- import { MessageBox } from "element-ui";
- import kaiheIndex from "./kaihe-index.vue";
- Vue.directive("dialogDrag", {
- bind(el, binding, vnode, oldVnode) {
- const dialogHeaderEl = el.querySelector(".el-dialog__header");
- const dragDom = el.querySelector(".el-dialog");
- const enlarge = el.querySelector(".enlarge");
- dialogHeaderEl.style.cursor = "move";
- // 获取原有属性 ie dom元素.currentStyle 火狐谷歌 window.getComputedStyle(dom元素, null);
- const sty = dragDom.currentStyle || window.getComputedStyle(dragDom, null);
- if (enlarge) {
- enlarge.onclick = (e) => {
- dragDom.style.top = "0px";
- dragDom.style.left = "0px";
- };
- }
- dialogHeaderEl.onmousedown = (e) => {
- // 鼠标按下,计算当前元素距离可视区的距离
- const disX = e.clientX - dialogHeaderEl.offsetLeft;
- const disY = e.clientY - dialogHeaderEl.offsetTop;
- // 获取到的值带px 正则匹配替换
- let styL, styT;
- // 注意在ie中 第一次获取到的值为组件自带50% 移动之后赋值为px
- if (sty.left.includes("%")) {
- styL =
- +document.body.clientWidth * (+sty.left.replace(/\%/g, "") / 100);
- styT =
- +document.body.clientHeight * (+sty.top.replace(/\%/g, "") / 100);
- } else {
- styL = +sty.left.replace(/\px/g, "");
- styT = +sty.top.replace(/\px/g, "");
- }
- document.onmousemove = function (e) {
- // 通过事件委托,计算移动的距离
- const l = e.clientX - disX;
- const t = e.clientY - disY;
- // 移动当前元素
- if (t + styT >= 0) {
- dragDom.style.top = `${t + styT}px`;
- }
- dragDom.style.left = `${l + styL}px`;
- // 将此时的位置传出去
- // binding.value({x:e.pageX,y:e.pageY})
- };
- document.onmouseup = function (e) {
- document.onmousemove = null;
- document.onmouseup = null;
- };
- };
- },
- });
- export default {
- name: "Fee",
- data() {
- return {
- login: Cookies.get("sysType"),
- show: false,
- mainTable: false,
- //全屏放大
- dialogFull: false,
- drag: false,
- typeoptions: [
- {
- value: "1",
- label: "仓储",
- },
- {
- value: "2",
- label: "车队",
- },
- {
- value: "3",
- label: "船务",
- },
- ],
- typevalue: "",
- tableDate: [
- {
- surface: "1",
- label: "fBillno",
- name: "系统编号",
- checked: 0,
- width: 100,
- },
- // {
- // surface: "2",
- // label: "fCtrlcorpid",
- // name: "货权方",
- // checked: 0,
- // width: 100,
- // },
- {
- surface: "3",
- label: "fCorpidName",
- name: "结算单位",
- checked: 0,
- width: 100,
- },
- {
- surface: "4",
- label: "fAccbilldate",
- name: "对账日期",
- checked: 0,
- width: 100,
- },
- {
- surface: "5",
- label: "tMblno",
- name: "提单号",
- checked: 0,
- width: 100,
- },
- {
- surface: "6",
- label: "fAmtdr",
- name: "金额",
- checked: 0,
- width: 100,
- },
- {
- surface: "7",
- label: "fAmtcr",
- name: "对账金额",
- checked: 0,
- width: 100,
- },
- {
- surface: "8",
- label: "fRemarks",
- name: "备注",
- checked: 0,
- width: 100,
- },
- {
- surface: "9",
- label: "fBillstatus",
- name: "状态",
- checked: 0,
- width: 100,
- },
- ],
- tableDate2: [
- {
- surface: "1",
- label: "fMblno",
- name: "提单号",
- checked: 0,
- width: 100,
- },
- {
- surface: "2",
- label: "fBsdate",
- name: "业务日期",
- checked: 0,
- width: 100,
- },
- {
- surface: "3",
- label: "fFeeName",
- name: "费用名称",
- checked: 0,
- width: 100,
- },
- {
- surface: "4",
- label: "fSrcdcName",
- name: "收/付",
- checked: 0,
- width: 100,
- },
- {
- surface: "5",
- label: "fAmtdr",
- name: "金额",
- checked: 0,
- width: 100,
- },
- {
- surface: "6",
- label: "fFeeunitid",
- name: "计价单位",
- checked: 0,
- width: 100,
- },
- {
- surface: "7",
- label: "fQty",
- name: "数量",
- checked: 0,
- width: 100,
- },
- {
- surface: "8",
- label: "fUnitprice",
- name: "单价",
- checked: 0,
- width: 100,
- },
- {
- surface: "9",
- label: "fAmt",
- name: "本次金额",
- checked: 0,
- width: 100,
- },
- {
- surface: "10",
- label: "fBusinessType",
- name: "作业类型",
- checked: 0,
- width: 100,
- },
- {
- surface: "11",
- label: "fBilltype",
- name: "业务类型",
- checked: 0,
- width: 100,
- },
- {
- surface: "12",
- label: "srcBillNo",
- name: "来源编号",
- checked: 0,
- width: 100,
- },
- {
- surface: "13",
- label: "fProductName",
- name: "货物品名",
- checked: 0,
- width: 100,
- },
- {
- surface: "14",
- label: "fMarks",
- name: "品牌",
- checked: 0,
- width: 100,
- },
- {
- surface: "15",
- label: "fChargedate",
- name: "计费起始日期",
- checked: 0,
- width: 100,
- },
- {
- surface: "16",
- label: "fBillingDeadline",
- name: "计费截止日期",
- checked: 0,
- width: 100,
- },
- {
- surface: "17",
- label: "fBillingDays",
- name: "计费天数",
- checked: 0,
- width: 100,
- },
- {
- surface: "18",
- label: "fInventoryDays",
- name: "库存天数",
- checked: 0,
- width: 100,
- },
- {
- surface: "19",
- label: "fRemarks",
- name: "备注",
- checked: 0,
- width: 100,
- },
- {
- surface: "20",
- label: "carLoadDate",
- name: "提箱日期",
- checked: 0,
- width: 100,
- },
- ],
- tableDate3: [
- // {
- // surface: "1",
- // label: "fName",
- // name: "货权方",
- // checked: 0,
- // width: 100,
- // },
- {
- surface: "2",
- label: "fFeesName",
- name: "结算单位",
- checked: 0,
- width: 100,
- },
- {
- surface: "3",
- label: "fMblno",
- name: "提单号",
- checked: 0,
- width: 100,
- },
- {
- surface: "4",
- label: "fProductName",
- name: "品名",
- checked: 0,
- width: 100,
- },
- {
- surface: "5",
- label: "fBsdate",
- name: "业务日期",
- checked: 0,
- width: 100,
- },
- {
- surface: "6",
- label: "fBilltype",
- name: "业务类型",
- checked: 0,
- width: 100,
- },
- {
- surface: "7",
- label: "fBusinessType",
- name: "作业类型",
- checked: 0,
- width: 100,
- },
- {
- surface: "8",
- label: "fReviewDate",
- name: "审核日期",
- checked: 0,
- width: 100,
- },
- {
- surface: "9",
- label: "fAmtdr",
- name: "金额",
- checked: 0,
- width: 100,
- },
- {
- surface: "10",
- label: "fAmt",
- name: "本次金额",
- checked: 0,
- width: 100,
- },
- {
- surface: "11",
- label: "fFeeName",
- name: "费用名称",
- checked: 0,
- width: 100,
- },
- {
- surface: "12",
- label: "fRemarks",
- name: "备注",
- checked: 0,
- width: 100,
- },
- ],
- tableDate4: [
- {
- surface: "1",
- label: "fFeesName",
- name: "客户名称",
- checked: 0,
- width: 100,
- },
- {
- surface: "2",
- label: "fMblno",
- name: "提单号",
- checked: 0,
- width: 100,
- },
- {
- surface: "3",
- label: "orderNo",
- name: "运单号",
- checked: 0,
- width: 100,
- },
- {
- surface: "4",
- label: "carregNo",
- name: "车牌号",
- checked: 0,
- width: 100,
- },
- {
- surface: "5",
- label: "billType",
- name: "业务类型",
- checked: 0,
- width: 100,
- },
- {
- surface: "6",
- label: "acceptDate",
- name: "接单日期",
- checked: 0,
- width: 100,
- },
- {
- surface: "7",
- label: "loadAddr",
- name: "提箱地点",
- checked: 0,
- width: 100,
- },
- {
- surface: "8",
- label: "mdLoadAddr",
- name: "卸货地点",
- checked: 0,
- width: 100,
- },
- {
- surface: "9",
- label: "fQty",
- name: "箱量",
- checked: 0,
- width: 100,
- },
- {
- surface: "10",
- label: "cntrId",
- name: "箱型",
- checked: 0,
- width: 100,
- },
- {
- surface: "11",
- label: "driverName",
- name: "司机",
- checked: 0,
- width: 100,
- },
- {
- surface: "12",
- label: "fFeeName",
- name: "费用名称",
- checked: 0,
- width: 100,
- },
- {
- surface: "13",
- label: "fAmtdr",
- name: "费用金额",
- checked: 0,
- width: 100,
- },
- {
- surface: "14",
- label: "fAmt",
- name: "本次金额",
- checked: 0,
- width: 100,
- },
- ],
- tableDate5: [
- {
- surface: "1",
- label: "fFeesName",
- name: "客户名称",
- checked: 0,
- width: 100,
- },
- {
- surface: "2",
- label: "fMblno",
- name: "提单号",
- checked: 0,
- width: 100,
- },
- {
- surface: "3",
- label: "orderNo",
- name: "运单号",
- checked: 0,
- width: 100,
- },
- {
- surface: "4",
- label: "carregNo",
- name: "车牌号",
- checked: 0,
- width: 100,
- },
- {
- surface: "5",
- label: "billType",
- name: "业务类型",
- checked: 0,
- width: 100,
- },
- {
- surface: "6",
- label: "acceptDate",
- name: "接单日期",
- checked: 0,
- width: 100,
- },
- {
- surface: "7",
- label: "loadAddr",
- name: "提箱地点",
- checked: 0,
- width: 100,
- },
- {
- surface: "8",
- label: "mdLoadAddr",
- name: "卸货地点",
- checked: 0,
- width: 100,
- },
- {
- surface: "9",
- label: "fQty",
- name: "箱量",
- checked: 0,
- width: 100,
- },
- {
- surface: "10",
- label: "cntrId",
- name: "箱型",
- checked: 0,
- width: 100,
- },
- {
- surface: "11",
- label: "driverName",
- name: "司机",
- checked: 0,
- width: 100,
- },
- {
- surface: "12",
- label: "fFeeName",
- name: "费用名称",
- checked: 0,
- width: 100,
- },
- {
- surface: "13",
- label: "fAmount",
- name: "费用金额",
- checked: 0,
- width: 100,
- },
- {
- surface: "14",
- label: "fAmt",
- name: "本次金额",
- checked: 0,
- width: 100,
- },
- ],
- tableDate6: [
- {
- surface: "1",
- label: "fBillno",
- name: "系统编号",
- checked: 0,
- width: 100,
- },
- {
- surface: "2",
- label: "fCorpidName",
- name: "对账单位",
- checked: 0,
- width: 100,
- },
- {
- surface: "3",
- label: "amt",
- name: "金额",
- checked: 0,
- width: 100,
- },
- {
- surface: "4",
- label: "createBy",
- name: "制单人",
- checked: 0,
- width: 100,
- },
- {
- surface: "5",
- label: "fAccbilldate",
- name: "对账日期",
- checked: 0,
- width: 100,
- },
- {
- surface: "6",
- label: "createTime",
- name: "制单日期",
- checked: 0,
- width: 100,
- },
- {
- surface: "7",
- label: "fBillstatus",
- name: "状态",
- checked: 0,
- width: 100,
- },
- {
- surface: "8",
- label: "fRemarks",
- name: "备注",
- checked: 0,
- width: 100,
- },
- ],
- setRowList: [],
- getRowList: [],
- allCheck: false,
- showSetting: false,
- setRowList2: [],
- getRowList2: [],
- allCheck2: false,
- showSetting2: false,
- setRowList3: [],
- getRowList3: [],
- allCheck3: false,
- showSetting3: false,
- setRowList4: [],
- getRowList4: [],
- allCheck4: false,
- showSetting4: false,
- setRowList5: [],
- getRowList5: [],
- allCheck5: false,
- showSetting5: false,
- setRowList6: [],
- getRowList6: [],
- allCheck6: false,
- showSetting6: false,
- //控制结算单位是否可操作
- doNot: false,
- jFeetunitOptions: [],
- // 总条数
- total: 0,
- totAL: 0,
- Ttime: 0,
- colseButton: true,
- approval: [],
- disappear: false,
- addIndex: [],
- addOrUpdateVisible: false,
- addOrUpdateVisib: false,
- contrastId: 210,
- // 审批状态
- approve: false,
- // 打印表
- printObject: [],
- //登陆人
- Lander: "",
- openPrint: false,
- statrGo: true,
- state_s: true,
- notChange: false,
- browseStatus: false,
- options: "",
- dateRange: "",
- // 遮罩层
- loading: true,
- fAccbilldate: "",
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 财务数据主表格数据
- feeList: [],
- // 客户(客户数据)
- fMblnoOptions: [],
- fFeeunitidOptions: [],
- fWbuOptions: [],
- KHblnoOptions: [],
- //打开内部弹窗
- innerVisible: false,
- selection: "",
- // 弹出层标题
- title: "",
- // 操作人
- Operator: "",
- // 是否显示弹出层
- open: false,
- dialogVisible: false,
- // 财务对账表格
- DzfeeList: [],
- // 财务主页面表格
- contrastList: [],
- empty: [],
- nothing: [],
- Fee: [],
- //导入从表传主表
- pass: {
- fAmtdr: "", //应收合计
- fAmtcr: "", //应付合计
- fMblno: "", //提单号
- fName: "", //货权方
- fFeesName: "", //结算单位
- fCorpid: "", //结算单位ID
- },
- hide: false,
- cancelButton: true,
- businessTypeOption: [],
- // 传值对象
- TWareHouseFees: {
- fCorpid: "",
- fToCorpid: "",
- fMblno: "",
- fStatementNo: "",
- fFeeid: "",
- timeExamine: "",
- timeInterval: "",
- fDc: "D",
- fReconciliation: "0",
- timeReconci: "",
- fBusinessType: "",
- fBilltype: "SJRK",
- },
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- fBillno: null,
- fCtrlcorpid: null,
- fCorpid: null,
- tMblno: null,
- fAmtdr: null,
- fAmtcr: null,
- fId: null,
- fBilltype: null,
- fBillstatus: null,
- fRemarks: null,
- fAccbilldate: null,
- fDeptid: null,
- createBy: null,
- timeReconci: null,
- fSystemType: Cookies.get("sysType"),
- },
- // 主表查询参数
- tablefilter: {
- pageNum: 1,
- pageSize: 10,
- fCtrlcorpid: null,
- fCorpid: null,
- fBillstatus: null,
- fBillno: null,
- amount: [],
- firstMoney: null,
- lastMoney: null,
- fRemarks: null,
- timeInterval: null,
- },
- // 表单参数
- form: {},
- // 表单校验
- ruless: {
- fCtrlcorpid: [{ required: true, message: " ", trigger: "blur" }],
- fCorpid: [{ required: true, message: " ", trigger: "blur" }],
- fAccbilldate: [{ required: true, message: " ", trigger: "blur" }],
- },
- feeListRules: {
- fDc: [{ required: true, message: " ", trigger: "blur" }],
- fToCorpid: [{ required: true, message: " ", trigger: "blur" }],
- fReconciliation: [{ required: true, message: " ", trigger: "blur" }],
- timeExamine: [{ required: true, message: " ", trigger: "blur" }],
- },
- fStltypeOptions: [],
- };
- },
- components: {
- draggable,
- AddOrUpdate,
- ApprovalComments,
- kaiheIndex,
- },
- created() {
- this.setRowList = this.tableDate;
- this.getRowList = this.tableDate;
- this.setRowList2 = this.tableDate2;
- this.getRowList2 = this.tableDate2;
- this.setRowList3 = this.tableDate3;
- this.getRowList3 = this.tableDate3;
- this.setRowList4 = this.tableDate4;
- this.getRowList4 = this.tableDate4;
- this.setRowList5 = this.tableDate5;
- this.getRowList5 = this.tableDate5;
- this.setRowList6 = this.tableDate6;
- this.getRowList6 = this.tableDate6;
- this.typevalue = Cookies.get("sysType");
- this.getList();
- this.register();
- this.getDicts("data_unitfees").then((response) => {
- this.jFeetunitOptions = response.data;
- });
- this.getDicts("st_in_type").then((response) => {
- this.businessTypeOption = response.data;
- });
- this.getDicts("data_stltype_type").then((response) => {
- this.fStltypeOptions = response.data;
- });
- this.getRow();
- this.getRow2();
- this.getRow3();
- this.getRow4();
- this.getRow5();
- this.getRow6();
- this.corpsRemoteMethod();
- },
- activated() {
- if (this.$route.query.data) {
- let data = JSON.parse(this.$route.query.data);
- if (data.key === 1) {
- this.handleAdd();
- } else {
- this.Jump();
- }
- }
- },
- methods: {
- changeMoney() {
- if (
- parseInt(this.tablefilter.lastMoney) <
- parseInt(this.tablefilter.firstMoney)
- ) {
- this.$message.error("第二个金额不能小于第一个金额,请重新输入");
- this.tablefilter.lastMoney = "";
- }
- },
- addPage() {
- MessageBox.confirm("是否已保存?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- this.handleAdd();
- });
- },
- full() {
- this.dialogFull = !this.dialogFull;
- },
- //列设置全选
- allChecked() {
- if (this.allCheck == true) {
- this.setRowList.map((e) => {
- return (e.checked = 0);
- });
- } else {
- this.setRowList.map((e) => {
- return (e.checked = 1);
- });
- }
- },
- //查询列数据
- getRow() {
- let that = this;
- this.data = {
- tableName: "对账列表页",
- userId: Cookies.get("userName"),
- };
- select(this.data).then((res) => {
- if (res.data.length != 0) {
- this.getRowList = res.data.filter((e) => e.checked == 0);
- this.setRowList = res.data;
- this.setRowList = this.setRowList.reduce((res, item) => {
- res.push({
- surface: item.surface,
- label: item.label,
- name: item.name,
- checked: item.checked,
- width: item.width,
- fixed: item.fixed,
- });
- return res;
- }, []);
- }
- });
- },
- //保存列设置
- save() {
- this.showSetting = false;
- this.data = {
- tableName: "对账列表页",
- userId: Cookies.get("userName"),
- sysTableSetList: this.setRowList,
- };
- addSet(this.data).then((res) => {
- this.getRowList = this.setRowList.filter((e) => e.checked == 0);
- });
- },
- //重置列表
- delRow() {
- this.data = {
- tableName: "对账列表页",
- userId: Cookies.get("userName"),
- };
- resetModule(this.data).then((res) => {
- if (res.code == 200) {
- this.showSetting = false;
- this.setRowList = this.getRowList = this.$options.data().tableDate;
- }
- });
- },
- //列设置全选
- allChecked2() {
- if (this.allCheck2 == true) {
- this.setRowList2.map((e) => {
- return (e.checked = 0);
- });
- } else {
- this.setRowList2.map((e) => {
- return (e.checked = 1);
- });
- }
- },
- //查询列数据
- getRow2() {
- let that = this;
- this.data = {
- tableName: "-列表对账明细",
- userId: Cookies.get("userName"),
- };
- select(this.data).then((res) => {
- if (res.data.length != 0) {
- this.getRowList2 = res.data.filter((e) => e.checked == 0);
- this.setRowList2 = res.data;
- this.setRowList2 = this.setRowList2.reduce((res, item) => {
- res.push({
- surface: item.surface,
- label: item.label,
- name: item.name,
- checked: item.checked,
- width: item.width,
- fixed: item.fixed,
- });
- return res;
- }, []);
- }
- });
- },
- //保存列设置
- save2() {
- this.showSetting2 = false;
- this.data = {
- tableName: "-列表对账明细",
- userId: Cookies.get("userName"),
- sysTableSetList: this.setRowList2,
- };
- addSet(this.data).then((res) => {
- this.getRowList2 = this.setRowList2.filter((e) => e.checked == 0);
- });
- },
- //重置列表
- delRow2() {
- this.data = {
- tableName: "-列表对账明细",
- userId: Cookies.get("userName"),
- };
- resetModule(this.data).then((res) => {
- if (res.code == 200) {
- this.showSetting2 = false;
- this.setRowList2 = this.getRowList2 = this.$options.data().tableDate2;
- }
- });
- },
- //列设置全选
- allChecked3() {
- if (this.allCheck3 == true) {
- this.setRowList3.map((e) => {
- return (e.checked = 0);
- });
- } else {
- this.setRowList3.map((e) => {
- return (e.checked = 1);
- });
- }
- },
- //查询列数据
- getRow3() {
- let that = this;
- this.data = {
- tableName: "_弹窗对账明细",
- userId: Cookies.get("userName"),
- };
- select(this.data).then((res) => {
- if (res.data.length != 0) {
- this.getRowList3 = res.data.filter((e) => e.checked == 0);
- this.setRowList3 = res.data;
- this.setRowList3 = this.setRowList3.reduce((res, item) => {
- res.push({
- surface: item.surface,
- label: item.label,
- name: item.name,
- checked: item.checked,
- width: item.width,
- fixed: item.fixed,
- });
- return res;
- }, []);
- }
- });
- },
- //保存列设置
- save3() {
- this.showSetting3 = false;
- this.data = {
- tableName: "_弹窗对账明细",
- userId: Cookies.get("userName"),
- sysTableSetList: this.setRowList3,
- };
- addSet(this.data).then((res) => {
- this.getRowList3 = this.setRowList3.filter((e) => e.checked == 0);
- });
- },
- //重置列表
- delRow3() {
- this.data = {
- tableName: "_弹窗对账明细",
- userId: Cookies.get("userName"),
- };
- resetModule(this.data).then((res) => {
- if (res.code == 200) {
- this.showSetting3 = false;
- this.setRowList3 = this.getRowList3 = this.$options.data().tableDate3;
- }
- });
- },
- //列设置全选
- allChecked4() {
- if (this.allCheck4 == true) {
- this.setRowList4.map((e) => {
- return (e.checked = 0);
- });
- } else {
- this.setRowList4.map((e) => {
- return (e.checked = 1);
- });
- }
- },
- //查询列数据
- getRow4() {
- let that = this;
- this.data = {
- tableName: "车队_列表对账明细",
- userId: Cookies.get("userName"),
- };
- select(this.data).then((res) => {
- if (res.data.length != 0) {
- this.getRowList4 = res.data.filter((e) => e.checked == 0);
- this.setRowList4 = res.data;
- this.setRowList4 = this.setRowList4.reduce((res, item) => {
- res.push({
- surface: item.surface,
- label: item.label,
- name: item.name,
- checked: item.checked,
- width: item.width,
- fixed: item.fixed,
- });
- return res;
- }, []);
- }
- });
- },
- //保存列设置
- save4() {
- this.showSetting4 = false;
- this.data = {
- tableName: "车队_列表对账明细",
- userId: Cookies.get("userName"),
- sysTableSetList: this.setRowList4,
- };
- addSet(this.data).then((res) => {
- this.getRowList4 = this.setRowList4.filter((e) => e.checked == 0);
- });
- },
- //重置列表
- delRow4() {
- this.data = {
- tableName: "车队_列表对账明细",
- userId: Cookies.get("userName"),
- };
- resetModule(this.data).then((res) => {
- if (res.code == 200) {
- this.showSetting4 = false;
- this.setRowList4 = this.getRowList4 = this.$options.data().tableDate4;
- }
- });
- },
- //列设置全选
- allChecked5() {
- if (this.allCheck5 == true) {
- this.setRowList5.map((e) => {
- return (e.checked = 0);
- });
- } else {
- this.setRowList5.map((e) => {
- return (e.checked = 1);
- });
- }
- },
- //查询列数据
- getRow5() {
- let that = this;
- this.data = {
- tableName: "车队_弹窗对账明细",
- userId: Cookies.get("userName"),
- };
- select(this.data).then((res) => {
- if (res.data.length != 0) {
- this.getRowList5 = res.data.filter((e) => e.checked == 0);
- this.setRowList5 = res.data;
- this.setRowList5 = this.setRowList5.reduce((res, item) => {
- res.push({
- surface: item.surface,
- label: item.label,
- name: item.name,
- checked: item.checked,
- width: item.width,
- fixed: item.fixed,
- });
- return res;
- }, []);
- }
- });
- },
- //保存列设置
- save5() {
- this.showSetting5 = false;
- this.data = {
- tableName: "车队_弹窗对账明细",
- userId: Cookies.get("userName"),
- sysTableSetList: this.setRowList5,
- };
- addSet(this.data).then((res) => {
- this.getRowList5 = this.setRowList5.filter((e) => e.checked == 0);
- });
- },
- //重置列表
- delRow5() {
- this.data = {
- tableName: "车队_弹窗对账明细",
- userId: Cookies.get("userName"),
- };
- resetModule(this.data).then((res) => {
- if (res.code == 200) {
- this.showSetting5 = false;
- this.setRowList5 = this.getRowList5 = this.$options.data().tableDate5;
- }
- });
- },
- //列设置全选
- allChecked6() {
- if (this.allCheck6 == true) {
- this.setRowList6.map((e) => {
- return (e.checked = 0);
- });
- } else {
- this.setRowList6.map((e) => {
- return (e.checked = 1);
- });
- }
- },
- //查询列数据
- getRow6() {
- let that = this;
- this.data = {
- tableName: "车队_对账列表页",
- userId: Cookies.get("userName"),
- };
- select(this.data).then((res) => {
- if (res.data.length != 0) {
- this.getRowList6 = res.data.filter((e) => e.checked == 0);
- this.setRowList6 = res.data;
- this.setRowList6 = this.setRowList6.reduce((res, item) => {
- res.push({
- surface: item.surface,
- label: item.label,
- name: item.name,
- checked: item.checked,
- width: item.width,
- fixed: item.fixed,
- });
- return res;
- }, []);
- }
- });
- },
- //保存列设置
- save6() {
- this.showSetting6 = false;
- this.data = {
- tableName: "车队_对账列表页",
- userId: Cookies.get("userName"),
- sysTableSetList: this.setRowList6,
- };
- addSet(this.data).then((res) => {
- this.getRowList6 = this.setRowList6.filter((e) => e.checked == 0);
- });
- },
- //重置列表
- delRow6() {
- this.data = {
- tableName: "车队_对账列表页",
- userId: Cookies.get("userName"),
- };
- resetModule(this.data).then((res) => {
- if (res.code == 200) {
- this.showSetting6 = false;
- this.setRowList6 = this.getRowList6 = this.$options.data().tableDate5;
- }
- });
- },
- //开始拖拽事件
- onStart() {
- this.drag = true;
- },
- //拖拽结束事件
- onEnd() {
- this.drag = false;
- },
- //对账页面合计
- listTotal(param) {
- const { columns, data } = param;
- const sums = [];
- if (data.length > 0) {
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = "合计";
- }
- if (
- column.label == "金额" ||
- column.label == "对账金额" ||
- column.label == "本次金额" ||
- column.label == "费用金额"
- ) {
- const values = data.map((item) => Number(item[column.property]));
- if (!values.every((value) => isNaN(value))) {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!isNaN(value)) {
- return (Number(prev) + Number(curr)).toSuperFixed(2);
- } else {
- return Number(prev).toSuperFixed(2);
- }
- }, 0);
- }
- }
- });
- // if (!data[0].fSrcdc) {
- // columns.forEach((column, index) => {
- // if (index === 0) {
- // sums[index] = "合计";
- // }
- // if (
- // column.label == "金额" ||
- // column.label == "对账金额" ||
- // column.label == "本次金额" ||
- // column.label == "费用金额"
- // ) {
- // const values = data.map((item) => Number(item[column.property]));
- // if (!values.every((value) => isNaN(value))) {
- // sums[index] = values.reduce((prev, curr) => {
- // const value = Number(curr);
- // if (!isNaN(value)) {
- // return prev + curr;
- // } else {
- // return prev;
- // }
- // }, 0);
- // }
- // }
- // });
- // } else {
- // columns.forEach((column, index) => {
- // if (index === 0) {
- // sums[index] = "合计";
- // }
- // if (
- // column.label == "金额" ||
- // column.label == "对账金额" ||
- // column.label == "本次金额" ||
- // column.label == "费用金额"
- // ) {
- // let number = 0;
- // data.forEach((item) => {
- // if (item.fSrcdc == "D") {
- // number = number + Number(item[column.property]);
- // } else {
- // number = number - Number(item[column.property]);
- // }
- // });
- // sums[index] = number;
- // }
- // });
- // }
- }
- return sums;
- },
- //财务主取消
- signOut() {
- if (this.DzfeeList.length == 0) {
- this.doNot = false;
- } else {
- this.doNot = true;
- }
- this.innerVisible = false;
- this.feeList = [];
- },
- // 审批跳转
- Jump() {
- this.approval = this.$route.query.data;
- if (this.approval) {
- this.colseButton = false;
- this.approval = JSON.parse(this.approval);
- this.hide = false;
- this.doNot = true;
- this.notChange = true;
- this.approve = true;
- this.mainTable = true;
- this.disappear = true;
- this.cancelButton = false;
- this.reset();
- this.pass = {
- fAmtdr: "", //应收合计
- fAmtcr: "", //应付合计
- fMblno: "", //提单号
- fName: "", //货权方
- fFeesName: "", //结算单位
- fCorpid: "", //结算单位ID
- };
- getFee(this.approval.billId).then((response) => {
- this.Operator = response.data.tFee.createBy;
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- // if (e.fSrcdc) {
- // if (e.fSrcdc == "D") {
- // e.fSrcdc = "收";
- // } else {
- // e.fSrcdc = "付";
- // }
- // }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- this.queryParams = response.data.tFee;
- this.fWbuOptions = response.data.feesList;
- this.fMblnoOptions = response.data.corps;
- this.mainTable = true;
- this.title = "修改财务数据主";
- });
- }
- },
- homepaGe() {
- let view = {
- fullPath: "/finance/contrast",
- hash: "",
- matched: Array(2),
- meta: Object,
- name: "Contrast",
- params: Object,
- path: "/finance/contrast",
- query: Object,
- title: "对账",
- };
- this.$router.push({ path: "/index" });
- this.$store
- .dispatch("tagsView/delView", view)
- .then(({ visitedViews }) => {
- if (this.isActive(view)) {
- this.toLastView(visitedViews, view);
- }
- });
- Global.$emit("removeCache", "closeSelectedTag", view);
- },
- homePage() {
- this.open = false;
- let view = {
- fullPath: "/finance/contrast",
- hash: "",
- matched: Array(2),
- meta: Object,
- name: "Contrast",
- params: Object,
- path: "/finance/contrast",
- query: Object,
- title: "对账",
- };
- this.$router.push({ path: "/index" });
- this.$store
- .dispatch("tagsView/delView", view)
- .then(({ visitedViews }) => {
- if (this.isActive(view)) {
- this.toLastView(visitedViews, view);
- }
- });
- Global.$emit("removeCache", "closeSelectedTag", view);
- },
- // 撤销审批
- backApproval(status) {
- if (Cookies.get("sysType") == 3) {
- let data = {
- id: this.queryParams.fId,
- actId: 430,
- billId: this.queryParams.fId,
- fidStatus: status,
- };
- RevocationApproval(data).then((response) => {
- if (response.code === 200) {
- this.msgSuccess("撤销审批成功");
- this.disappear = true;
- this.mainTable = false;
- this.open = false;
- this.getList();
- }
- });
- } else {
- let data = {
- id: this.queryParams.fId,
- actId: this.contrastId,
- billId: this.queryParams.fId,
- fidStatus: status,
- };
- RevocationApproval(data).then((response) => {
- this.msgSuccess("撤销审批成功");
- this.disappear = true;
- this.open = false;
- this.mainTable = false;
- this.getList();
- });
- }
- },
- returnData() {
- this.addOrUpdateVisib = false;
- this.open = false;
- this.homepaGe();
- },
- getDataList() {
- this.addOrUpdateVisible = false;
- },
- // 审批按钮
- goApproval(status) {
- this.addOrUpdateVisib = true;
- this.$nextTick(() => {
- if (Cookies.get("sysType") == 3) {
- this.$refs.ApprovalComments.init(this.queryParams.fId, status, 430);
- } else {
- this.$refs.ApprovalComments.init(
- this.queryParams.fId,
- status,
- this.contrastId
- );
- }
- });
- },
- // 查看审批流
- addOrUpdateHandle(status) {
- this.addOrUpdateVisible = true;
- this.addOrUpdateVisib = false;
- let id = null;
- if (this.queryParams.fId) {
- id = this.queryParams.fId;
- } else {
- id = this.queryParams.id;
- }
- this.$nextTick(() => {
- if (Cookies.get("sysType") == 3) {
- this.$refs.addOrUpdate.init(id, 430, status);
- } else {
- this.$refs.addOrUpdate.init(id, this.contrastId, status);
- }
- });
- },
- // 撤销对账
- backrRconciliation() {
- this.queryParams.fBillstatus = "1";
- let formDate = new window.FormData();
- formDate.append("tFee", JSON.stringify(this.queryParams));
- formDate.append("tFeeDo", JSON.stringify(this.DzfeeList));
- backFee(formDate).then((response) => {
- this.msgSuccess("撤回成功");
- this.open = false;
- this.mainTable = false;
- this.reset();
- this.getList();
- });
- },
- // 打印功能
- printing() {
- if (this.DzfeeList.length !== 0) {
- this.openPrint = true;
- this.printObject = this.DzfeeList;
- } else {
- this.$message.error("无数据,请检查是否有数据");
- }
- },
- // 确认打印
- printSomething() {
- // 此处的style即为打印时的样式
- const style =
- "table tr td,th { border-collapse: collapse;padding:15px;border:.5px #000 solid;text-align:center;}";
- // "@media print {} }";
- print({
- printable: "print_area2",
- type: "html",
- header: "对账表",
- headerStyle: "text-align:center;color:#000;width:100%;",
- style: style, // 亦可使用引入的外部css;
- scanStyles: false,
- });
- },
- // 确认对账按钮功能
- confirmReconciliation() {
- this.$refs["ruless"].validate((valid) => {
- if (valid) {
- if (this.DzfeeList.length) {
- // this.queryParams.fBillstatus = '4'
- let formDate = new window.FormData();
- formDate.append("tFee", JSON.stringify(this.queryParams));
- formDate.append("tFeeDo", JSON.stringify(this.DzfeeList));
- if (Cookies.get("sysType") == 1) {
- Cfee(formDate).then((response) => {
- this.open = false;
- this.msgSuccess("操作成功");
- this.getList();
- });
- this.handleAdd();
- } else if (Cookies.get("sysType") == 2) {
- confirmFleet(formDate).then((response) => {
- if (response.code == 200) {
- this.open = false;
- this.notChange = true;
- this.$set(this.queryParams, "fBillstatus", 6);
- this.msgSuccess("操作成功");
- this.getList();
- }
- });
- } else if (Cookies.get("sysType") == 3) {
- formDate.append("billsType", "KHDZ");
- Cfee(formDate).then((response) => {
- this.queryParams.fId = response.data.tFee.fId;
- this.queryParams.fBillno = response.data.tFee.fBillno;
- this.$message.success("操作成功");
- this.doNot = true;
- this.notChange = true;
- this.$set(this.queryParams, "fBillstatus", "4");
- // this.queryParams.fBillstatus = '4'
- if (this.Operator == this.Lander) {
- this.disappear = false;
- }
- this.getList();
- });
- }
- } else {
- this.$message.error("表单为空不允许操作");
- }
- }
- });
- },
- //导出
- handleExportItems() {
- let fIds = 0;
- if (Cookies.get("sysType") == 2) {
- fIds = this.queryParams.id;
- } else {
- fIds = this.queryParams.fId;
- }
- if (fIds !== null) {
- this.$confirm("是否确认导出所有计费物资明细数据?", "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(function () {
- if (Cookies.get("sysType") == 2) {
- return exporItems(fIds);
- } else {
- return exportWarehousebillsitems(fIds);
- }
- })
- .then((response) => {
- this.download(response.msg);
- });
- } else {
- this.$message("请先保存");
- }
- },
- // 对账按钮功能
- reconciliation() {
- if (!this.queryParams.fSystemType) {
- return this.$message("请先选择业务类型");
- }
- if (!this.queryParams.fCorpid) {
- return this.$message.error("请先选择结算单位");
- }
- this.queryParameter = {
- fToCorpid: this.queryParams.fCorpid,
- fReconciliation: 0,
- fDc: 'D'
- };
- importFee(this.queryParameter).then((response) => {
- this.feeList = response.rows;
- if (this.feeList.length !== 0) {
- this.$message.success("查询成功");
- this.totAL = 0;
- this.Ttime = 0;
- for (let item in this.feeList) {
- this.totAL += Number(this.feeList[item].fAmt);
- this.Ttime += Number(this.feeList[item].fAmtdr);
- this.$set(
- this.feeList[item],
- "fBsdate",
- this.feeList[item].fBsdate.substring(0, 10)
- );
- }
- } else {
- this.$message.error("暂无数据");
- }
- });
- this.innerVisible = true;
- this.feeList = [];
- // this.TWareHouseFees = {
- // fCorpid: "",
- // fToCorpid: this.queryParams.fCorpid,
- // fMblno: "",
- // fStatementNo: "",
- // fFeeid: "",
- // timeExamine: "",
- // timeInterval: "",
- // fSrcdc: "",
- // fReconciliation: "0",
- // timeReconci: "",
- // fDc: "D",
- // fBilltype: "",
- // };
- this.TWareHouseFees = {
- fToCorpid: this.queryParams.fCorpid,
- fReconciliation: "0",
- fDc: "D",
- };
- if (this.queryParams.fCorpid) {
- this.doNot = true;
- }
- },
- changeAmt(row, index) {
- if (row > this.feeList[index].fAmount) {
- this.$message.error("本次金额不能大于原定金额");
- this.feeList[index].fAmt = this.feeList[index].fAmount;
- }
- },
- // 默认录入人
- register() {
- queryUserVal().then((response) => {
- this.Lander = response.user.userName;
- });
- },
- // 合计
- getSum(param) {
- const { columns, data } = param;
- const sums = [];
- columns.forEach((column, index) => {
- if (this.selection.length == 0) {
- if (index === 0) {
- sums[index] = "合计";
- } else if (
- column.label == "金额" ||
- column.label == "本次金额" ||
- column.label == "费用金额"
- ) {
- const values = data.map((item) => Number(item[column.property]));
- if (!values.every((value) => isNaN(value))) {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!isNaN(value)) {
- return (Number(prev) + Number(curr)).toSuperFixed(2);
- } else {
- return Number(prev).toSuperFixed(2);
- }
- }, 0);
- }
- }
- } else {
- if (index === 0) {
- sums[index] = "合计";
- } else if (column.label == "金额" || column.label == "本次金额") {
- const values = this.selection.map((selection) =>
- Number(selection[column.property])
- );
- if (!values.every((value) => isNaN(value))) {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!isNaN(value)) {
- return (Number(prev) + Number(curr)).toSuperFixed(2);
- } else {
- return Number(prev).toSuperFixed(2);
- }
- }, 0);
- }
- }
- }
- });
- return sums;
- },
- // 导入多选框
- handleSelectionChange_s(selection) {
- // this.totAL = 0;
- // this.Ttime = 0;
- this.selection = selection;
- // if (this.selection.length == 0) {
- // for (let item in this.feeList) {
- // this.totAL += Number(this.feeList[item].fAmt);
- // this.Ttime += Number(this.feeList[item].fAmtdr);
- // }
- // } else {
- // for (let index in selection) {
- // this.totAL += Number(selection[index].fAmt);
- // this.Ttime += Number(selection[index].fAmtdr);
- // }
- // }
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.totAL = 0;
- this.ids = selection.map((item) => item.fId);
- this.single =
- selection.filter((e) => e.fBillstatus == "暂存").length != 1 ||
- selection.length != 1;
- this.multiple = !selection.length;
- },
- // 金额筛选
- imgChangeI(row) {
- if (row.fAmt && Number(row.fAmt) > Number(row.fAmtdr)) {
- this.$set(row, "fAmt", row.fAmtdr);
- this.state_s = true;
- }
- if (this.selection.length !== 0) {
- this.totAL = 0;
- this.Ttime = 0;
- for (let item in this.selection) {
- this.totAL += Number(this.selection[item].fAmt);
- this.Ttime += Number(this.selection[item].fAmtdr);
- }
- } else {
- this.totAL = 0;
- this.Ttime = 0;
- for (let item in this.feeList) {
- this.totAL += Number(this.feeList[item].fAmt);
- this.Ttime += Number(this.feeList[item].fAmtdr);
- }
- }
- },
- /* 添加财务数据主 导入*/
- confirmImport() {
- this.doNot = true;
- this.hide = true;
- this.pass.fAmtdr = 0;
- this.pass.fAmtcr = 0;
- for (let item in this.selection) {
- this.pass.fAmtcr = Number(this.pass.fAmtcr);
- this.pass.fAmtdr = Number(this.pass.fAmtdr);
- this.pass.fAmtcr += Number(this.selection[item].fAmt);
- this.pass.fAmtdr += Number(this.selection[item].fAmtdr);
- }
- // this.pass.fAmtcr.toFixed(2);
- if (this.state_s == true) {
- if (this.selection.length == "0") {
- this.$message.error("未选择导入行");
- } else {
- let Num = [];
- for (let item in this.selection) {
- this.empty.push(this.selection[item].fMblno);
- this.nothing.push(this.selection[item].fName);
- if (this.DzfeeList.length === 0) {
- this.DzfeeList = this.DzfeeList.concat(this.selection);
- this.DzfeeList.forEach(data => {
- data.fId = null
- })
- //去重提单号
- this.empty = new Set(this.empty);
- this.empty = Array.from(this.empty);
- //去重货权方
- this.nothing = new Set(this.nothing);
- this.nothing = Array.from(this.nothing);
- if (this.empty.length <= 1) {
- this.pass.fMblno = this.empty[0];
- } else {
- this.pass.fMblno = this.empty[0] + "...";
- }
- if (this.nothing.length <= 1) {
- this.pass.fName = this.nothing[0];
- } else {
- this.pass.fName = this.nothing[0] + "...";
- }
- // this.DzfeeList = this.DzfeeList.concat(this.Fee)
- this.queryParams.tMblno = this.pass.fMblno; //提单号
- this.queryParams.fCorpid = this.TWareHouseFees.fToCorpid;
- this.queryParams.fCtrlcorpid = this.pass.fName;
- this.queryParams.fAmtcr = this.pass.fAmtcr;
- this.queryParams.fAmtdr = this.pass.fAmtdr;
- this.innerVisible = false;
- this.feeList = [];
- // this.feeList = this.DzfeeList
- this.TWareHouseFees = {
- fCorpid: "",
- fToCorpid: "",
- fMblno: "",
- fStatementNo: "",
- fFeeid: "",
- timeExamine: "",
- timeInterval: "",
- fSrcdc: "",
- fReconciliation: "0",
- timeReconci: "",
- fDc: "D",
- };
- return;
- }
- }
- for (let li in this.DzfeeList) {
- for (let item in this.selection) {
- if (this.selection[item].fSrcid !== this.DzfeeList[li].fSrcid) {
- this.Fee = this.DzfeeList.concat(this.selection);
- let result = [];
- let obj = {};
- for (let lis in this.Fee) {
- if (!obj[this.Fee[lis].fSrcid]) {
- result.push(this.Fee[lis]);
- obj[this.Fee[lis].fSrcid] = true;
- }
- }
- //去重提单号
- this.empty = new Set(this.empty);
- this.empty = Array.from(this.empty);
- //去重货权方
- this.nothing = new Set(this.nothing);
- this.nothing = Array.from(this.nothing);
- if (this.empty.length <= 1) {
- this.pass.fMblno = this.empty[0];
- } else {
- this.pass.fMblno = this.empty[0] + "...";
- }
- if (this.nothing.length <= 1) {
- this.pass.fName = this.nothing[0];
- } else {
- this.pass.fName = this.nothing[0] + "...";
- }
- // this.DzfeeList = this.DzfeeList.concat(this.Fee)
- this.queryParams.tMblno = this.pass.fMblno; //提单号
- this.queryParams.fCorpid = this.TWareHouseFees.fToCorpid;
- this.queryParams.fCtrlcorpid = this.pass.fName;
- this.queryParams.fAmtcr = this.pass.fAmtcr;
- this.queryParams.fAmtdr = this.pass.fAmtdr;
- this.innerVisible = false;
- this.feeList = [];
- // this.feeList = this.DzfeeList
- this.TWareHouseFees = {
- fCorpid: "",
- fToCorpid: this.queryParams.fCorpid,
- fMblno: "",
- fStatementNo: "",
- fFeeid: "",
- timeExamine: "",
- timeInterval: "",
- fSrcdc: "",
- fReconciliation: "0",
- timeReconci: "",
- fDc: "D",
- };
- this.DzfeeList = result;
- this.DzfeeList.forEach(data => {
- data.fId = null
- })
- } else {
- let i = Number(li) + 1;
- Num += i + "、";
- }
- }
- }
- if (Num.length != 0) {
- MessageBox.confirm(
- "从表的第" +
- Num.slice(0, Num.length - 1) +
- "行重复,如本次金额变更,请删除后重新选择",
- "提示",
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }
- );
- }
- }
- } else if (this.state_s == false) {
- this.$message.error("本次金额不能大于原定金额");
- }
- },
- /* 添加财务数据主 导入*/
- confirmImport2() {
- this.doNot = true;
- this.hide = true;
- this.pass.fAmtdr = 0;
- this.pass.fAmtcr = 0;
- this.selection.map((e) => {
- e.fAmtdr = e.fAmount;
- e.fAmtcr = e.fAmt;
- });
- for (let item in this.selection) {
- this.pass.fAmtcr = Number(this.pass.fAmtcr);
- this.pass.fAmtdr = Number(this.pass.fAmtdr);
- this.pass.fAmtcr += Number(this.selection[item].fAmtcr);
- this.pass.fAmtdr += Number(this.selection[item].fAmtdr);
- }
- // this.pass.fAmtcr.toFixed(2);
- if (this.state_s == true) {
- if (this.selection.length == "0") {
- this.$message.error("未选择导入行");
- } else {
- let Num = [];
- for (let item in this.selection) {
- this.empty.push(this.selection[item].fMblno);
- this.nothing.push(this.selection[item].fName);
- if (this.DzfeeList.length === 0) {
- this.DzfeeList = this.DzfeeList.concat(this.selection);
- //去重提单号
- this.empty = new Set(this.empty);
- this.empty = Array.from(this.empty);
- //去重货权方
- this.nothing = new Set(this.nothing);
- this.nothing = Array.from(this.nothing);
- if (this.empty.length <= 1) {
- this.pass.fMblno = this.empty[0];
- } else {
- this.pass.fMblno = this.empty[0] + "...";
- }
- if (this.nothing.length <= 1) {
- this.pass.fName = this.nothing[0];
- } else {
- this.pass.fName = this.nothing[0] + "...";
- }
- // this.DzfeeList = this.DzfeeList.concat(this.Fee)
- this.queryParams.tMblno = this.pass.fMblno; //提单号
- this.queryParams.fCorpid = this.TWareHouseFees.fToCorpid;
- this.queryParams.fCtrlcorpid = this.pass.fName;
- this.queryParams.fAmtcr = this.pass.fAmtcr;
- this.queryParams.fAmtdr = this.pass.fAmtdr;
- this.innerVisible = false;
- this.feeList = [];
- // this.feeList = this.DzfeeList
- this.TWareHouseFees = {
- fCorpid: "",
- fToCorpid: "",
- fMblno: "",
- fStatementNo: "",
- fFeeid: "",
- timeExamine: "",
- timeInterval: "",
- fSrcdc: "",
- fReconciliation: "0",
- timeReconci: "",
- fDc: "D",
- };
- return;
- }
- }
- for (let li in this.DzfeeList) {
- for (let item in this.selection) {
- if (this.selection[item].fSrcid !== this.DzfeeList[li].fSrcid) {
- this.Fee = this.DzfeeList.concat(this.selection);
- let result = [];
- let obj = {};
- for (let lis in this.Fee) {
- if (!obj[this.Fee[lis].fSrcid]) {
- result.push(this.Fee[lis]);
- obj[this.Fee[lis].fSrcid] = true;
- }
- }
- //去重提单号
- this.empty = new Set(this.empty);
- this.empty = Array.from(this.empty);
- //去重货权方
- this.nothing = new Set(this.nothing);
- this.nothing = Array.from(this.nothing);
- if (this.empty.length <= 1) {
- this.pass.fMblno = this.empty[0];
- } else {
- this.pass.fMblno = this.empty[0] + "...";
- }
- if (this.nothing.length <= 1) {
- this.pass.fName = this.nothing[0];
- } else {
- this.pass.fName = this.nothing[0] + "...";
- }
- // this.DzfeeList = this.DzfeeList.concat(this.Fee)
- this.queryParams.tMblno = this.pass.fMblno; //提单号
- this.queryParams.fCorpid = this.TWareHouseFees.fToCorpid;
- this.queryParams.fCtrlcorpid = this.pass.fName;
- this.queryParams.fAmtcr = this.pass.fAmtcr;
- this.queryParams.fAmtdr = this.pass.fAmtdr;
- this.innerVisible = false;
- this.feeList = [];
- // this.feeList = this.DzfeeList
- this.TWareHouseFees = {
- fCorpid: "",
- fToCorpid: this.queryParams.fCorpid,
- fMblno: "",
- fStatementNo: "",
- fFeeid: "",
- timeExamine: "",
- timeInterval: "",
- fSrcdc: "",
- fReconciliation: "0",
- timeReconci: "",
- fDc: "D",
- };
- this.DzfeeList = result;
- } else {
- let i = Number(li) + 1;
- Num += i + "、";
- }
- }
- }
- if (Num.length != 0) {
- MessageBox.confirm(
- "从表的第" +
- Num.slice(0, Num.length - 1) +
- "行重复,如本次金额变更,请删除后重新选择",
- "提示",
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }
- );
- }
- }
- } else if (this.state_s == false) {
- this.$message.error("本次金额不能大于原定金额");
- }
- },
- // imgChangeI(fAmtdr,fAmt){
- // if (fAmt <= fAmtdr){
- // this.state_s = true
- // }else if(fAmt > fAmtdr){
- // this.$message.error('本次金额不能大于原定金额');
- // this.state_s = false
- // }
- // },
- // 导入搜索
- searchFee(type) {
- this.feeList = [];
- this.$refs["feeListRules"].validate((valid) => {
- if (valid) {
- if (type == 1) {
- importFee(this.TWareHouseFees).then((response) => {
- this.feeList = response.rows;
- if (this.feeList.length !== 0) {
- this.$message.success("查询成功");
- this.totAL = 0;
- this.Ttime = 0;
- for (let item in this.feeList) {
- this.totAL += Number(this.feeList[item].fAmt);
- this.Ttime += Number(this.feeList[item].fAmtdr);
- this.$set(
- this.feeList[item],
- "fBsdate",
- this.feeList[item].fBsdate.substring(0, 10)
- );
- }
- } else {
- this.$message.error("暂无数据");
- }
- });
- } else if (type == 2) {
- importFleet(this.TWareHouseFees).then((response) => {
- this.feeList = response.rows;
- if (this.feeList.length !== 0) {
- this.$message.success("查询成功");
- this.totAL = 0;
- this.Ttime = 0;
- for (let item in this.feeList) {
- this.totAL += Number(this.feeList[item].fAmt);
- this.Ttime += Number(this.feeList[item].fAmtdr);
- this.$set(
- this.feeList[item],
- "fBsdate",
- this.feeList[item].fBsdate.substring(0, 10)
- );
- }
- } else {
- this.$message.error("暂无数据");
- }
- });
- } else if (type == 3) {
- this.TWareHouseFees.fSystemType = this.queryParams.fSystemType;
- importFee(this.TWareHouseFees).then((response) => {
- this.feeList = response.rows;
- if (this.feeList.length !== 0) {
- this.$message.success("查询成功");
- this.totAL = 0;
- this.Ttime = 0;
- for (let item in this.feeList) {
- this.totAL += Number(this.feeList[item].fAmt);
- this.Ttime += Number(this.feeList[item].fAmtdr);
- if (this.feeList[item].fBsdate) {
- this.$set(
- this.feeList[item],
- "fBsdate",
- this.feeList[item].fBsdate.substring(0, 10)
- );
- }
- }
- } else {
- this.$message.error("暂无数据");
- }
- });
- }
- }
- });
- },
- /** 打开导入表弹窗 */
- openImportTable() {
- this.$refs.import.show();
- },
- /** 查询财务数据主列表 */
- getList() {
- this.loading = true;
- this.getDicts("approval_process").then((response) => {
- // this.feeList = response.rows;
- this.options = response.data;
- });
- if (Cookies.get("sysType") == 1) {
- listFee(this.tablefilter).then((response) => {
- this.contrastList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- } else if (Cookies.get("sysType") == 2) {
- listFleet(this.tablefilter).then((response) => {
- this.contrastList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- } else if (Cookies.get("sysType") == 3) {
- this.tablefilter.fBilltype = "KHDZ";
- if (this.tablefilter.firstMoney || this.tablefilter.lastMoney) {
- if (
- this.tablefilter.firstMoney == "" ||
- this.tablefilter.lastMoney == ""
- ) {
- this.$message.error("实付合计为金额区间,请填写完整");
- this.tablefilter.amount = [];
- } else if (
- !this.tablefilter.firstMoney ||
- !this.tablefilter.lastMoney
- ) {
- this.$message.error("实付合计为金额区间,请填写完整");
- } else {
- this.tablefilter.amount[0] = this.tablefilter.firstMoney;
- this.tablefilter.amount[1] = this.tablefilter.lastMoney;
- }
- } else {
- this.tablefilter.amount = [];
- }
- listFee(this.tablefilter).then((response) => {
- this.contrastList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- }
- },
- // 取消按钮
- cancel() {
- if (this.notChange == true) {
- this.mainTable = false;
- } else {
- this.$confirm("返回列表,是否保存?", "提示", {
- confirmButtonText: "保存",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- this.submitForm(Cookies.get("sysType"), 1);
- })
- .catch(() => {
- this.mainTable = false;
- this.getList();
- });
- }
- },
- // 表单重置
- reset() {
- this.form = {
- fId: null,
- fBillno: null,
- fCtrlcorpid: null,
- fCorpid: null,
- tMblno: null,
- fAmtdr: null,
- fAmtcr: null,
- fBilltype: null,
- fBillstatus: "0",
- fRemarks: null,
- fAccbilldate: null,
- delFlag: null,
- createBy: null,
- fDeptid: null,
- createTime: null,
- updateBy: null,
- updateTime: null,
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- // this.searchFee()
- },
- changefBilltype() {
- this.businessTypeOption = [];
- if (this.TWareHouseFees.fBilltype == "SJRK") {
- this.getDicts("st_in_type").then((response) => {
- this.businessTypeOption = response.data;
- });
- } else if (this.TWareHouseFees.fBilltype == "SJCK") {
- this.getDicts("st_out_type").then((response) => {
- this.businessTypeOption = response.data;
- });
- } else if (this.TWareHouseFees.fBilltype == "HQZY") {
- this.getDicts("st_trans_type").then((response) => {
- this.businessTypeOption = response.data;
- });
- }
- },
- /** 重置按钮操作 */
- resetQuery() {
- // this.resetForm("queryParams_s");
- this.tablefilter = {
- pageNum: 1,
- pageSize: 10,
- fBillno: null,
- fCtrlcorpid: null,
- fCorpid: null,
- timeInterval: null,
- };
- this.handleQuery();
- this.TWareHouseFees = {
- fCorpid: "",
- fToCorpid: "",
- fMblno: "",
- fStatementNo: "",
- fFeeid: "",
- timeExamine: "",
- timeInterval: "",
- fSrcdc: "",
- fReconciliation: "0",
- };
- },
- //导入重置按钮
- resetQuery_s() {
- this.TWareHouseFees = {
- fCorpid: null,
- fToCorpid: null,
- fMblno: null,
- fStatementNo: null,
- fFeeid: null,
- timeExamine: null,
- timeInterval: null,
- fDc: "D",
- fReconciliation: "0",
- };
- },
- // 多选框选中数据
- // handleSelectionChange(selection) {
- // this.ids = selection.map(item => item.fId)
- // this.single = selection.length!==1
- // this.multiple = !selection.length
- // },
- // handleSelectionChanGe(selection){
- // if(selection.length > 0) {
- // this.statrGo = false
- // }else{
- // this.statrGo = true
- // }
- // },
- /** 新增按钮操作 */
- handleAdd() {
- queryUserVal().then((response) => {
- this.queryParams.createBy = response.user.userName;
- this.queryParams.createTime = Date.parse(new Date());
- });
- this.queryParams.fSystemType = "";
- this.doNot = false;
- this.notChange = false;
- this.hide = true;
- this.reset();
- this.DzfeeList = [];
- this.pass = {
- fAmtdr: "", //应收合计
- fAmtcr: "", //应付合计
- fMblno: "", //提单号
- fName: "", //货权方
- fFeesName: "", //结算单位
- fCorpid: "", //结算单位ID
- };
- this.mainTable = true;
- this.title = "添加财务数据主";
- this.queryParams = {
- pageNum: 1,
- pageSize: 10,
- fBillno: null,
- fCtrlcorpid: null,
- fCorpid: null,
- tMblno: null,
- fAmtdr: null,
- fId: null,
- fAmtcr: null,
- fBilltype: null,
- fBillstatus: null,
- fRemarks: null,
- fAccbilldate: null,
- fDeptid: null,
- createBy: null,
- timeReconci: null,
- fSystemType: Cookies.get("sysType"),
- };
- },
- // 查看按钮
- check(row, res) {
- this.doNot = true;
- this.notChange = true;
- if (Cookies.get("sysType") == 1) {
- getFee(row.fId).then((response) => {
- this.Operator = response.data.tFee.createBy;
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- // if (e.fSrcdc) {
- // if (e.fSrcdc == "D") {
- // e.fSrcdc = "收";
- // } else {
- // e.fSrcdc = "付";
- // }
- // }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- this.queryParams = response.data.tFee;
- this.queryParams.fSystemType = response.data.tFee.fsystemType;
- this.fWbuOptions = response.data.feesList;
- this.fMblnoOptions = response.data.corps;
- this.mainTable = true;
- this.disappear = true;
- this.title = "修改财务数据主";
- if (res == 1) {
- this.notChange = true;
- if (this.Operator == this.Lander) {
- this.disappear = false;
- this.reset();
- this.pass = {
- fAmtdr: "", //应收合计
- fAmtcr: "", //应付合计
- fMblno: "", //提单号
- fName: "", //货权方
- fFeesName: "", //结算单位
- fCorpid: "", //结算单位ID
- };
- const fId = row.fId || this.ids;
- getFee(fId).then((response) => {
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- // if (e.fSrcdc) {
- // if (e.fSrcdc == "D") {
- // e.fSrcdc = "收";
- // } else {
- // e.fSrcdc = "付";
- // }
- // }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- this.queryParams = response.data.tFee;
- this.queryParams.fSystemType = response.data.tFee.fsystemType;
- this.fWbuOptions = response.data.feesList;
- this.fMblnoOptions = response.data.corps;
- this.mainTable = true;
- });
- } else {
- this.notChange = true;
- }
- } else {
- this.notChange = true;
- this.reset();
- this.pass = {
- fAmtdr: "", //应收合计
- fAmtcr: "", //应付合计
- fMblno: "", //提单号
- fName: "", //货权方
- fFeesName: "", //结算单位
- fCorpid: "", //结算单位ID
- };
- const fId = row.fId || this.ids;
- getFee(fId).then((response) => {
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- // if (e.fSrcdc) {
- // if (e.fSrcdc == "D") {
- // e.fSrcdc = "收";
- // } else {
- // e.fSrcdc = "付";
- // }
- // }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- this.queryParams = response.data.tFee;
- this.queryParams.fSystemType = response.data.tFee.fsystemType;
- this.fWbuOptions = response.data.feesList;
- this.fMblnoOptions = response.data.corps;
- this.mainTable = true;
- });
- }
- });
- } else if (Cookies.get("sysType") == 2) {
- getFleet(row.fId).then((response) => {
- this.Operator = response.data.tFee.createBy;
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- // if (e.fSrcdc) {
- // if (e.fSrcdc == "D") {
- // e.fSrcdc = "收";
- // } else {
- // e.fSrcdc = "付";
- // }
- // }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- this.queryParams = response.data.tFee;
- this.fWbuOptions = response.data.feesList;
- this.fMblnoOptions = response.data.corps;
- this.mainTable = true;
- this.disappear = true;
- this.title = "修改财务数据主";
- if (res == 1) {
- this.notChange = true;
- if (this.Operator == this.Lander) {
- this.disappear = false;
- this.reset();
- this.pass = {
- fAmtdr: "", //应收合计
- fAmtcr: "", //应付合计
- fMblno: "", //提单号
- fName: "", //货权方
- fFeesName: "", //结算单位
- fCorpid: "", //结算单位ID
- };
- const fId = row.fId || this.ids;
- getFleet(fId).then((response) => {
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- // if (e.fSrcdc) {
- // if (e.fSrcdc == "D") {
- // e.fSrcdc = "收";
- // } else {
- // e.fSrcdc = "付";
- // }
- // }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- this.queryParams = response.data.tFee;
- this.fWbuOptions = response.data.feesList;
- this.fMblnoOptions = response.data.corps;
- this.mainTable = true;
- });
- } else {
- this.notChange = true;
- }
- } else {
- this.notChange = true;
- this.reset();
- this.pass = {
- fAmtdr: "", //应收合计
- fAmtcr: "", //应付合计
- fMblno: "", //提单号
- fName: "", //货权方
- fFeesName: "", //结算单位
- fCorpid: "", //结算单位ID
- };
- const fId = row.fId || this.ids;
- getFleet(fId).then((response) => {
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- // if (e.fSrcdc) {
- // if (e.fSrcdc == "D") {
- // e.fSrcdc = "收";
- // } else {
- // e.fSrcdc = "付";
- // }
- // }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- this.queryParams = response.data.tFee;
- this.fWbuOptions = response.data.feesList;
- this.fMblnoOptions = response.data.corps;
- this.mainTable = true;
- });
- }
- });
- } else if (Cookies.get("sysType") == 3) {
- getFee(row.fId).then((response) => {
- this.Operator = response.data.tFee.createBy;
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- this.queryParams = response.data.tFee;
- // this.queryParams.fSystemType = response.data.tFee.fsystemType;
- // this.fWbuOptions = response.data.feesList;
- this.fMblnoOptions = response.data.corps;
- this.mainTable = true;
- this.disappear = true;
- this.title = "修改财务数据主";
- if (res == 1) {
- this.notChange = true;
- if (this.Operator == this.Lander) {
- this.disappear = false;
- this.reset();
- this.pass = {
- fAmtdr: "", //应收合计
- fAmtcr: "", //应付合计
- fMblno: "", //提单号
- fName: "", //货权方
- fFeesName: "", //结算单位
- fCorpid: "", //结算单位ID
- };
- const fId = row.fId || this.ids;
- getFee(fId).then((response) => {
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- this.queryParams = response.data.tFee;
- // this.queryParams.fSystemType = response.data.tFee.fsystemType;
- this.fMblnoOptions = response.data.corps;
- this.mainTable = true;
- });
- } else {
- this.notChange = true;
- }
- } else {
- this.notChange = true;
- this.reset();
- this.pass = {
- fAmtdr: "", //应收合计
- fAmtcr: "", //应付合计
- fMblno: "", //提单号
- fName: "", //货权方
- fFeesName: "", //结算单位
- fCorpid: "", //结算单位ID
- };
- const fId = row.fId || this.ids;
- getFee(fId).then((response) => {
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- this.queryParams = response.data.tFee;
- // this.queryParams.fSystemType = response.data.tFee.fsystemType;
- // this.fWbuOptions = response.data.feesList;
- this.fMblnoOptions = response.data.corps;
- this.mainTable = true;
- this.disappear = true;
- });
- }
- });
- }
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.mainTable = true;
- this.notChange = false;
- this.hide = false;
- this.reset();
- this.pass = {
- fAmtdr: "", //应收合计
- fAmtcr: "", //应付合计
- fMblno: "", //提单号
- fName: "", //货权方
- fFeesName: "", //结算单位
- fCorpid: "", //结算单位ID
- };
- const fId = row.fId || this.ids;
- if (Cookies.get("sysType") == 1) {
- getFee(fId).then((response) => {
- this.Operator = response.data.tFee.createBy;
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- // if (e.fSrcdc) {
- // if (e.fSrcdc == "D") {
- // e.fSrcdc = "收";
- // } else {
- // e.fSrcdc = "付";
- // }
- // }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- listCorps().then((response) => {
- this.fMblnoOptions = response;
- });
- // this.fMblnoOptions = response.data.corps;
- this.queryParams = response.data.tFee;
- // this.queryParams.fSystemType = response.data.tFee.fsystemType;
- this.mainTable = true;
- this.title = "修改财务数据主";
- if (this.DzfeeList) {
- this.doNot = true;
- } else {
- this.doNot = false;
- }
- });
- } else if (Cookies.get("sysType") == 2) {
- getFleet(fId).then((response) => {
- this.Operator = response.data.tFee.createBy;
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- // if (e.fSrcdc) {
- // if (e.fSrcdc == "D") {
- // e.fSrcdc = "收";
- // } else {
- // e.fSrcdc = "付";
- // }
- // }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- this.queryParams = response.data.tFee;
- this.fMblnoOptions = response.data.corps;
- this.mainTable = true;
- this.title = "修改财务数据主";
- if (this.DzfeeList) {
- this.doNot = true;
- } else {
- this.doNot = false;
- }
- });
- } else if (Cookies.get("sysType") == 3) {
- getFee(fId).then((response) => {
- this.Operator = response.data.tFee.createBy;
- if (response.data.feeDoList != 0) {
- response.data.feeDoList.map((e) => {
- if (e.fBillingDeadline) {
- e.fBillingDeadline = e.fBillingDeadline.slice(0, 10);
- }
- if (e.fBsdate) {
- e.fBsdate = e.fBsdate.slice(0, 10);
- }
- if (e.fChargedate) {
- e.fChargedate = e.fChargedate.slice(0, 10);
- }
- });
- }
- this.DzfeeList = response.data.feeDoList;
- this.fWbuOptions = response.data.feesList;
- this.queryParams = response.data.tFee;
- // this.queryParams.fSystemType = response.data.tFee.fsystemType;
- this.fMblnoOptions = response.data.corps;
- this.mainTable = true;
- this.title = "修改财务数据主";
- if (this.DzfeeList) {
- this.doNot = true;
- } else {
- this.doNot = false;
- }
- });
- }
- },
- /** 远程模糊查询用户 */
- corpsRemoteMethod(name) {
- // if (name == null || name === "") {
- // return false;
- // }
- let queryParams = { fName: name };
- listCorps(queryParams).then((response) => {
- this.fMblnoOptions = response;
- this.KHblnoOptions = response;
- });
- },
- /** 提交按钮 */
- submitForm(type, res) {
- this.$refs["ruless"].validate((valid) => {
- if (valid) {
- if (!this.queryParams.fId || this.queryParams.fId == null) {
- // this.queryParams.fBillstatus = "1";
- let formData = new window.FormData();
- formData.append("tFee", JSON.stringify(this.queryParams));
- formData.append("tFeeDo", JSON.stringify(this.DzfeeList));
- if (type == 1) {
- updateFee(formData).then((response) => {
- this.queryParams = response.data.tFee;
- // this.queryParams.fSystemType = response.data.tFee.fsystemType;
- this.msgSuccess("新增成功");
- // this.DzfeeList = []
- // this.open = false;
- this.getList();
- });
- } else if (type == 2) {
- addFleet(formData).then((response) => {
- this.queryParams = response.data.tFee;
- this.msgSuccess("新增成功");
- // this.DzfeeList = []
- // this.open = false;
- this.getList();
- });
- } else if (type == 3 || this.typevalue == 3) {
- formData.append("billsType", "KHDZ");
- updateFee(formData).then((response) => {
- this.queryParams = response.data.tFee;
- this.msgSuccess("操作成功");
- if (res === 0) {
- this.mainTable = true;
- } else if (res == undefined) {
- this.mainTable = true;
- } else {
- this.mainTable = false;
- }
- this.getList();
- });
- }
- } else {
- this.pass.fAmtcr = 0;
- this.pass.fAmtdr = 0;
- for (let item in this.DzfeeList) {
- this.pass.fAmtcr += Number(this.DzfeeList[item].fAmt);
- this.pass.fAmtdr += Number(this.DzfeeList[item].fAmtdr);
- }
- this.queryParams.fAmtcr = Number(this.pass.fAmtcr).toFixed(2);
- this.queryParams.fAmtdr = Number(this.pass.fAmtdr).toFixed(2);
- // this.pass.fAmtcr.toFixed(2);
- this.queryParams.fBillstatus = "1";
- let formData = new window.FormData();
- formData.append("tFee", JSON.stringify(this.queryParams));
- formData.append("tFeeDo", JSON.stringify(this.DzfeeList));
- if (type == 1) {
- addFee(formData).then((response) => {
- this.msgSuccess("修改成功");
- this.getList();
- });
- } else if (type == 2) {
- addFleet(formData).then((response) => {
- this.msgSuccess("修改成功");
- this.getList();
- });
- } else if (type == 3 || this.typevalue == 3) {
- formData.append("billsType", "KHDZ");
- addFee(formData).then((response) => {
- this.msgSuccess("操作成功");
- if (res === 0) {
- this.mainTable = true;
- } else if (res == undefined) {
- this.mainTable = true;
- } else {
- this.mainTable = false;
- }
- this.getList();
- });
- }
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const fIds = row.fId || this.ids;
- let tips = "";
- if (Cookies.get("sysType") == 1) {
- detailFee(fIds).then((res) => {
- switch (res.msg) {
- case "0": {
- this.$message.error("当前数据已被其他操作员操作,请刷新页面");
- break;
- }
- case "1": {
- tips = "当前主表有数据,从表无数据,确认是否删除?";
- this.delete_s(fIds, tips);
- break;
- }
- case "2": {
- tips = "当前主表有数据,从表有数据,确认是否删除?";
- this.delete_s(fIds, tips);
- break;
- }
- default: {
- return this.$message.error("未知错误,无状态");
- }
- }
- });
- } else if (Cookies.get("sysType") == 2) {
- detailFleet(fIds).then((res) => {
- switch (res.msg) {
- case "0": {
- this.$message.error("当前数据已被其他操作员操作,请刷新页面");
- break;
- }
- case "1": {
- tips = "当前主表有数据,从表无数据,确认是否删除?";
- this.delete_s(fIds, tips);
- break;
- }
- case "2": {
- tips = "当前主表有数据,从表有数据,确认是否删除?";
- this.delete_s(fIds, tips);
- break;
- }
- default: {
- return this.$message.error("未知错误,无状态");
- }
- }
- });
- } else if (Cookies.get("sysType") == 3) {
- detailFee(fIds).then((res) => {
- switch (res.msg) {
- case "0": {
- this.$message.error("当前数据已被其他操作员操作,请刷新页面");
- break;
- }
- case "1": {
- tips = "当前主表有数据,从表无数据,确认是否删除?";
- this.delete_s(fIds, tips);
- break;
- }
- case "2": {
- tips = "当前主表有数据,从表有数据,确认是否删除?";
- this.delete_s(fIds, tips);
- break;
- }
- default: {
- return this.$message.error("未知错误,无状态");
- }
- }
- });
- }
- },
- delete_s(fIds, tips) {
- this.$confirm(tips, "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(function () {
- if (Cookies.get("sysType") == 1) {
- return delFee(fIds);
- } else if (Cookies.get("sysType") == 2) {
- return delFleet(fIds);
- } else if (Cookies.get("sysType") == 3) {
- return delFee(fIds);
- }
- })
- .then(() => {
- this.getList();
- this.msgSuccess("删除成功");
- });
- },
- // 远程模糊查询费用名称
- fWRemoteMethod(name) {
- this.fWbuOptions = [];
- if (name == null || name === "") {
- return false;
- }
- let queryParams = { pageNum: 1, pageSize: 10, fName: name };
- listFees(queryParams).then((response) => {
- this.fWbuOptions = response.rows;
- });
- },
- /** 导出按钮操作 */
- handleExport() {
- const queryParams = this.queryParams;
- this.$confirm("是否确认导出所有财务数据主数据项?", "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(function () {
- if (Cookies.get("sysType") == 2) {
- return contrastExport(queryParams);
- } else {
- return exportFee(queryParams);
- }
- })
- .then((response) => {
- this.download(response.msg);
- });
- },
- exportData() {
- // 在这里判断筛选DzfeeList={}
- const DzfeeList = this.DzfeeList;
- this.$confirm("是否确认导出所有财务数据主数据项?", "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(function () {
- return;
- })
- .then(function () {
- this.download(response.msg);
- });
- },
- //清空一行
- deleteRow(index, rows) {
- this.queryParams.fAmtdr = 0;
- this.queryParams.fAmtcr = 0;
- rows.splice(index, 1);
- for (let item in this.DzfeeList) {
- this.queryParams.fAmtcr = this.DzfeeList[item].fAmt;
- this.queryParams.fAmtdr = this.DzfeeList[item].fAmtdr;
- }
- if (this.DzfeeList == 0) {
- this.doNot = false;
- } else {
- this.doNot = true;
- }
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .tabSetting {
- display: flex;
- justify-content: flex-end;
- }
- .listStyle {
- display: flex;
- border-top: 1px solid #dcdfe6;
- border-left: 1px solid #dcdfe6;
- border-right: 1px solid #dcdfe6;
- }
- .listStyle:last-child {
- border-bottom: 1px solid #dcdfe6;
- }
- .progress {
- display: flex;
- align-items: center;
- padding: 2px;
- background-color: rgba(0, 0, 0, 0.05);
- height: 100%;
- }
- .avue-crud__dialog__header {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- }
- .el-dialog__title {
- color: rgba(0, 0, 0, 0.85);
- font-weight: 500;
- word-wrap: break-word;
- }
- .avue-crud__dialog__menu {
- padding-right: 20px;
- float: left;
- }
- .avue-crud__dialog__menu i {
- color: #909399;
- font-size: 15px;
- }
- .el-icon-full-screen {
- cursor: pointer;
- }
- .el-icon-full-screen:before {
- content: "\e719";
- }
- </style>
- <style lang="scss">
- .el-dialog__body {
- padding: 0 20px 30px 20px;
- }
- </style>
|