| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425 | 
							- <template>
 
-   <div class="app-container">
 
-     <el-form
 
-       :model="queryParams"
 
-       ref="queryForm"
 
-       :inline="true"
 
-       v-show="showSearch"
 
-       label-width="88px"
 
-     >
 
-       <el-form-item label="业务编号" prop="fBillno">
 
-         <el-input
 
-           v-model="queryParams.fBillno"
 
-           placeholder="请输入业务编号"
 
-           style="width: 80%"
 
-           clearable
 
-           size="small"
 
-           @keyup.enter.native="handleQuery"
 
-         />
 
-       </el-form-item>
 
-       <el-form-item label="制单人" prop="createBy">
 
-         <el-select
 
-           v-model="queryParams.createBy"
 
-           filterable
 
-           remote
 
-           clearable
 
-           style="width: 80%"
 
-           :remote-method="userRemoteMethod"
 
-           placeholder="请选择制单人"
 
-         >
 
-           <el-option
 
-             v-for="(dict, index) in userOptions"
 
-             :key="index.userName"
 
-             :label="dict.nickName"
 
-             :value="dict.userName"
 
-           ></el-option>
 
-         </el-select>
 
-       </el-form-item>
 
-       <el-form-item label="入库日期" prop="timeInterval">
 
-         <el-date-picker
 
-           v-model="queryParams.timeInterval"
 
-           type="daterange"
 
-           value-format="yyyy-MM-dd"
 
-           clearable
 
-           style="width: 60%"
 
-           range-separator="至"
 
-           start-placeholder="开始日期"
 
-           end-placeholder="结束日期"
 
-           @keyup.enter.native="handleQuery"
 
-         >
 
-         </el-date-picker>
 
-       </el-form-item>
 
-       <el-form-item label="贸易方式" prop="fTrademodeid">
 
-         <el-select
 
-           v-model="queryParams.fTrademodeid"
 
-           placeholder="请选择贸易方式"
 
-           clearable
 
-           style="width: 80%"
 
-           @keyup.enter.native="handleQuery"
 
-         >
 
-           <el-option
 
-             v-for="(dict, index) in fTrademodeidOptions"
 
-             :key="index.dictValue"
 
-             :label="dict.dictLabel"
 
-             :value="dict.dictValue"
 
-           />
 
-         </el-select>
 
-       </el-form-item>
 
-       <el-form-item label="货权方" prop="fCorpid">
 
-         <el-select
 
-           v-model="queryParams.fCorpid"
 
-           filterable
 
-           remote
 
-           clearable
 
-           style="width: 80%"
 
-           @keyup.enter.native="handleQuery"
 
-           :remote-method="corpsRemoteMethod"
 
-           placeholder="请输入模糊查找"
 
-         >
 
-           <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="fMblno">
 
-         <el-input
 
-           v-model="queryParams.fMblno"
 
-           placeholder="请输入提单号"
 
-           clearable
 
-           style="width: 80%"
 
-           size="small"
 
-           @keyup.enter.native="handleQuery"
 
-         />
 
-       </el-form-item>
 
-       <el-form-item label="经营单位" prop="fSbu">
 
-         <el-select
 
-           v-model="queryParams.fSbu"
 
-           filterable
 
-           remote
 
-           clearable
 
-           :remote-method="fSbuRemoteMethod"
 
-           @keyup.enter.native="handleQuery"
 
-           style="width: 80%"
 
-           placeholder="请选择经营单位"
 
-         >
 
-           <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="fGoodsid">
 
-         <el-select
 
-           v-model="queryParams.fGoodsid"
 
-           filterable
 
-           remote
 
-           clearable
 
-           style="width: 80%"
 
-           :remote-method="goodsRemoteMethod"
 
-           @keyup.enter.native="handleQuery"
 
-           placeholder="请选择货物名称"
 
-         >
 
-           <el-option
 
-             v-for="(dict, index) in goodsOptions"
 
-             :key="index.fId"
 
-             :label="dict.fName"
 
-             :value="dict.fId"
 
-           ></el-option>
 
-         </el-select>
 
-       </el-form-item>
 
-       <el-form-item label="仓库" prop="fWarehouseid">
 
-         <el-select
 
-           v-model="queryParams.fWarehouseid"
 
-           filterable
 
-           :disabled="browseStatus"
 
-           remote
 
-           clearable
 
-           style="width: 80%"
 
-           :remote-method="warehouseRemoteMethod"
 
-           @keyup.enter.native="handleQuery"
 
-           placeholder="请输入"
 
-         >
 
-           <el-option
 
-             v-for="(dict, index) in warehouseOptions"
 
-             :key="index.fId"
 
-             :label="dict.fName"
 
-             :value="dict.fId"
 
-           ></el-option>
 
-         </el-select>
 
-       </el-form-item>
 
-       <el-form-item label="品牌" prop="fMarks">
 
-         <el-input
 
-           v-model="queryParams.fMarks"
 
-           placeholder="请输入品牌"
 
-           clearable
 
-           style="width: 80%"
 
-           size="small"
 
-           @keyup.enter.native="handleQuery"
 
-         />
 
-       </el-form-item>
 
-       <el-form-item>
 
-         <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-form-item>
 
-     </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(false)"
 
-           v-hasPermi="['warehouseBusiness:warehousebills: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="['warehouseBusiness:warehousebills:edit']"
 
-           >修改
 
-         </el-button>
 
-       </el-col>
 
-       <!-- <el-col :span="1.5">
 
-         <el-button
 
-           type="danger"
 
-           icon="el-icon-delete"
 
-           size="mini"
 
-           :disabled="multiple"
 
-           @click="handleDelete"
 
-           v-hasPermi="['warehouseBusiness:warehousebills:remove']"
 
-           >删除
 
-         </el-button>
 
-       </el-col> -->
 
-       <el-col :span="1.5">
 
-         <el-button
 
-           type="warning"
 
-           icon="el-icon-download"
 
-           size="mini"
 
-           @click="handleExport"
 
-           v-hasPermi="['warehouseBusiness:warehousebills:export']"
 
-           >导出
 
-         </el-button>
 
-       </el-col>
 
-       <el-col :span="1.5">
 
-         <el-button
 
-           type="warning"
 
-           icon="el-icon-download"
 
-           size="mini"
 
-           @click="handleExport"
 
-           :disabled="multiple"
 
-           v-hasPermi="['warehouseBusiness:warehousebills:export']"
 
-           >导入
 
-         </el-button>
 
-       </el-col>
 
-       <right-toolbar
 
-         :showSearch.sync="showSearch"
 
-         @queryTable="getList"
 
-       ></right-toolbar>
 
-     </el-row>
 
-     <el-table
 
-       v-loading="loading"
 
-       :data="warehousebillsList"
 
-       @selection-change="handleSelectionChange"
 
-     >
 
-       <el-table-column type="selection" width="55" align="center" />
 
-       <el-table-column type="index" label="行号" align="center" />
 
-       <el-table-column
 
-         :show-overflow-tooltip="true"
 
-         label="货权方"
 
-         align="center"
 
-         prop="fCorpid"
 
-       />
 
-       <el-table-column label="提单号" align="center" prop="fMblno" />
 
-       <el-table-column label="品牌" align="ceter" prop="fMarks" />
 
-       <el-table-column
 
-         label="入库日期"
 
-         align="center"
 
-         prop="fBsdate"
 
-         width="180"
 
-         ><template slot-scope="scope">
 
-           <span>{{ parseTime(scope.row.fBsdate, "{y}-{m}-{d}") }}</span>
 
-         </template>
 
-       </el-table-column>
 
-       <!-- <el-table-column
 
-         label="贸易方式"
 
-         align="center"
 
-         prop="fTrademodeid"
 
-         :formatter="fTrademodeidFormat"
 
-       /> -->
 
-       <el-table-column label="仓库" align="center" prop="fWarehouseid" />
 
-       <el-table-column label="计划件数" align="center" prop="fPlanqty" />
 
-       <el-table-column label="入库件数" align="center" prop="fQty" />
 
-       <!--      <el-table-column label="入库毛重" align="center" prop="fGrossweight"/>-->
 
-       <!-- <el-table-column label="货转客户名称" align="center" prop="fTocorpid" /> -->
 
-       <el-table-column label="入库毛重" align="center" prop="fGrossweight" />
 
-       <el-table-column label="入库净重" align="center" prop="fNetweight" />
 
-       <el-table-column
 
-         width="100"
 
-         label="入库状态"
 
-         align="center"
 
-         prop="fItemsStatus"
 
-       >
 
-         <template slot-scope="scope">
 
-           <span v-if="scope.row.fItemsStatus === 1">计划</span>
 
-           <span v-if="scope.row.fItemsStatus === 2">卸货中</span>
 
-           <span v-if="scope.row.fItemsStatus === 3">已卸货</span>
 
-           <span v-if="scope.row.fItemsStatus === 4">已入库</span>
 
-         </template>
 
-       </el-table-column>
 
-       <el-table-column
 
-         width="100"
 
-         label="费用状态"
 
-         align="center"
 
-         prop="fBillstatus"
 
-       >
 
-         <template slot-scope="scope">
 
-           <span v-if="scope.row.fBillstatus === 1">录入</span>
 
-           <span v-if="scope.row.fBillstatus === 2">暂存</span>
 
-           <span v-if="scope.row.fBillstatus === 3">驳回</span>
 
-           <span v-if="scope.row.fBillstatus === 4">请核</span>
 
-           <span v-if="scope.row.fBillstatus === 5">审核中</span>
 
-           <span v-if="scope.row.fBillstatus === 6">全部入账</span>
 
-         </template>
 
-       </el-table-column>
 
-       <el-table-column
 
-         label="操作"
 
-         align="center"
 
-         class-name="small-padding fixed-width"
 
-         width="180"
 
-       >
 
-         <template slot-scope="scope">
 
-           <el-button
 
-             size="mini"
 
-             type="text"
 
-             icon="el-icon-edit"
 
-             @click="handleUpdate(scope.row, true)"
 
-             v-hasPermi="['warehouseBusiness:warehousebills:edit']"
 
-             >查看
 
-           </el-button>
 
-           <el-button
 
-             size="mini"
 
-             type="text"
 
-             icon="el-icon-edit"
 
-             v-if="
 
-               scope.row.fBillstatus === 1 ||
 
-               scope.row.fBillstatus === 2 ||
 
-               scope.row.fBillstatus === 3
 
-             "
 
-             @click="handleUpdate(scope.row, false)"
 
-             v-hasPermi="['warehouseBusiness:warehousebills:edit']"
 
-             >修改
 
-           </el-button>
 
-           <el-button
 
-             size="mini"
 
-             type="text"
 
-             icon="el-icon-delete"
 
-             v-if="scope.row.fBillstatus !== 6 && scope.row.fItemsStatus === 1"
 
-             @click="handleDelete(scope.row)"
 
-             v-hasPermi="['warehouseBusiness:warehousebills:remove']"
 
-             >删除
 
-           </el-button>
 
-         </template>
 
-       </el-table-column>
 
-     </el-table>
 
-     <pagination
 
-       v-show="total > 0"
 
-       :total="total"
 
-       :page.sync="queryParams.pageNum"
 
-       :limit.sync="queryParams.pageSize"
 
-       @pagination="getList"
 
-     />
 
-     <!-- 新增或修改仓库主(出入库)对话框 -->
 
-     <el-dialog
 
-       :visible.sync="open"
 
-       :close-on-click-modal="false"
 
-       width="80%"
 
-       append-to-body
 
-     >
 
-       <el-form ref="form" :model="form" :rules="rules" label-width="120px">
 
-         <el-row>
 
-           <el-col :span="8">
 
-             <el-form-item label="货权方" prop="fCorpid">
 
-               <el-select
 
-                 v-model="form.fCorpid"
 
-                 filterable
 
-                 remote
 
-                 @change="changefCorpid(form)"
 
-                 :disabled="browseStatus || formBrowseStatus"
 
-                 style="width: 80%"
 
-                 :remote-method="corpsRemoteMethod"
 
-                 placeholder="请输入模糊查找"
 
-               >
 
-                 <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="8">
 
-             <el-form-item label="结算方式" prop="fStltypeid">
 
-               <el-select
 
-                 v-model="form.fStltypeid"
 
-                 placeholder="请选择结算方式"
 
-                 clearable
 
-                 :disabled="browseStatus || formBrowseStatus"
 
-                 style="width: 80%"
 
-               >
 
-                 <el-option
 
-                   v-for="(dict, index) in fStltypeOptions"
 
-                   :key="index.dictValue"
 
-                   :label="dict.dictLabel"
 
-                   :value="dict.dictValue"
 
-                 />
 
-               </el-select>
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item label="提单号" prop="fMblno">
 
-               <el-input
 
-                 v-model="form.fMblno"
 
-                 :disabled="browseStatus || formBrowseStatus"
 
-                 style="width: 80%"
 
-                 placeholder="手工输入"
 
-               />
 
-             </el-form-item>
 
-           </el-col>
 
-         </el-row>
 
-         <el-row>
 
-           <el-col :span="8">
 
-             <el-form-item label="业务日期" prop="fBsdate">
 
-               <el-date-picker
 
-                 v-model="form.fBsdate"
 
-                 style="width: 80%"
 
-                 type="date"
 
-                 :disabled="browseStatus || formBrowseStatus"
 
-                 @change="changefBsdate"
 
-                 value-format="timestamp"
 
-                 placeholder="业务日期"
 
-               >
 
-               </el-date-picker>
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item label="仓管员" prop="fStorekeeper">
 
-               <el-select
 
-                 v-model="form.fStorekeeper"
 
-                 filterable
 
-                 remote
 
-                 :disabled="browseStatus || formBrowseStatus"
 
-                 style="width: 80%"
 
-                 :remote-method="userRemoteMethod"
 
-                 placeholder="请输入模糊查找"
 
-               >
 
-                 <el-option
 
-                   v-for="(dict, index) in userOptions"
 
-                   :key="index.userName"
 
-                   :label="dict.nickName"
 
-                   :value="dict.userName"
 
-                 ></el-option>
 
-               </el-select>
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item label="仓库" prop="fWarehouseid">
 
-               <el-select
 
-                 v-model="form.fWarehouseid"
 
-                 filterable
 
-                 :disabled="browseStatus || formBrowseStatus"
 
-                 remote
 
-                 style="width: 80%"
 
-                 :remote-method="warehouseRemoteMethod"
 
-                 placeholder="请输入模糊查找"
 
-               >
 
-                 <el-option
 
-                   v-for="(dict, index) in warehouseOptions"
 
-                   :key="index.fId"
 
-                   :label="dict.fName"
 
-                   :value="dict.fId"
 
-                 ></el-option>
 
-               </el-select>
 
-             </el-form-item>
 
-           </el-col>
 
-         </el-row>
 
-         <el-row>
 
-           <el-col :span="8">
 
-             <el-form-item label="计划件数" prop="fPlanqty">
 
-               <el-input
 
-                 v-model="form.fPlanqty"
 
-                 style="width: 80%"
 
-                 laceholder="计划件数"
 
-                 oninput='this.value=this.value.replace(/\D/g,"")'
 
-                 :disabled="browseStatus"
 
-               />
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item label="计划净重" prop="fPlannetweight">
 
-               <el-input
 
-                 v-model="form.fPlannetweight"
 
-                 style="width: 80%"
 
-                 oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-                 laceholder="计划毛重"
 
-                 :disabled="browseStatus"
 
-               />
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item label="计划毛重" prop="fPlangrossweight">
 
-               <el-input
 
-                 v-model="form.fPlangrossweight"
 
-                 oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-                 style="width: 80%"
 
-                 laceholder="计划毛重"
 
-                 :disabled="browseStatus"
 
-               />
 
-             </el-form-item>
 
-           </el-col>
 
-         </el-row>
 
-         <el-row>
 
-           <el-col :span="8">
 
-             <el-form-item label="存货编号" prop="fBscorpno">
 
-               <el-input
 
-                 disabled
 
-                 v-model="form.fBscorpno"
 
-                 style="width: 80%"
 
-                 laceholder="存货编号"
 
-               />
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item label="计费单位" prop="fFeetunit">
 
-               <el-select
 
-                 v-model="form.fFeetunit"
 
-                 placeholder="请选择计费单位"
 
-                 clearable
 
-                 :disabled="browseStatus || formBrowseStatus"
 
-                 style="width: 80%"
 
-               >
 
-                 <el-option
 
-                   v-for="(dict, index) in fFeetunitOptions"
 
-                   :key="index.dictValue"
 
-                   :label="dict.dictLabel"
 
-                   :value="dict.dictValue"
 
-                 />
 
-               </el-select>
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item label="品牌" prop="fMarks">
 
-               <el-input
 
-                 v-model="form.fMarks"
 
-                 style="width: 80%"
 
-                 :disabled="browseStatus || formBrowseStatus"
 
-                 placeholder="品牌"
 
-               />
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="15">
 
-             <el-form-item label="备注" prop="remark">
 
-               <el-input
 
-                 style="width: 100%"
 
-                 v-model="form.remark"
 
-                 type="textarea"
 
-                 :disabled="browseStatus || formBrowseStatus"
 
-                 placeholder="请输入内容"
 
-               />
 
-             </el-form-item>
 
-           </el-col>
 
-         </el-row>
 
-         <div v-if="detailsHidden">
 
-           <el-row style="margin-top: 30px">
 
-             <el-col :span="8">
 
-               <el-form-item label="仓库联系人" prop="fContacts">
 
-                 <el-input
 
-                   v-model="form.fContacts"
 
-                   style="width: 80%"
 
-                   :disabled="browseStatus || formBrowseStatus"
 
-                   placeholder="仓库联系人"
 
-                 />
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="8">
 
-               <el-form-item label="仓库电话" prop="fTel">
 
-                 <el-input
 
-                   v-model="form.fTel"
 
-                   :disabled="browseStatus || formBrowseStatus"
 
-                   style="width: 80%"
 
-                   placeholder="请输仓库入电话"
 
-                 />
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="8">
 
-               <el-form-item label="船名航次" prop="fVslvoy">
 
-                 <el-input
 
-                   v-model="form.fVslvoy"
 
-                   style="width: 80%"
 
-                   :disabled="browseStatus || formBrowseStatus"
 
-                   placeholder="船名航次"
 
-                 />
 
-               </el-form-item>
 
-             </el-col>
 
-           </el-row>
 
-           <el-row>
 
-             <el-col :span="8">
 
-               <el-form-item label="到港日期" prop="fEta">
 
-                 <el-date-picker
 
-                   v-model="form.fEta"
 
-                   style="width: 80%"
 
-                   type="date"
 
-                   :disabled="browseStatus || formBrowseStatus"
 
-                   value-format="timestamp"
 
-                   placeholder="到港日期"
 
-                 >
 
-                 </el-date-picker>
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="8">
 
-               <el-form-item label="报关单号" prop="fCustomno">
 
-                 <el-input
 
-                   v-model="form.fCustomno"
 
-                   style="width: 80%"
 
-                   :disabled="browseStatus || formBrowseStatus"
 
-                   laceholder="报关单号"
 
-                 />
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="8">
 
-               <el-form-item label="经营单位" prop="fSbu">
 
-                 <el-select
 
-                   v-model="form.fSbu"
 
-                   filterable
 
-                   remote
 
-                   :disabled="browseStatus || formBrowseStatus"
 
-                   :remote-method="fSbuRemoteMethod"
 
-                   style="width: 80%"
 
-                   placeholder="请选择经营单位"
 
-                 >
 
-                   <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-row>
 
-           <el-row>
 
-             <el-col :span="8">
 
-               <el-form-item label="单据编号" prop="fBillno">
 
-                 <el-input
 
-                   v-model="form.fBillno"
 
-                   disabled
 
-                   style="width: 80%"
 
-                   placeholder="单据编号"
 
-                 />
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="8">
 
-               <el-form-item label="贸易方式" prop="fTrademodeid">
 
-                 <el-select
 
-                   v-model="form.fTrademodeid"
 
-                   placeholder="请选择贸易方式"
 
-                   :disabled="browseStatus || formBrowseStatus"
 
-                   clearable
 
-                   style="width: 80%"
 
-                 >
 
-                   <el-option
 
-                     v-for="(dict, index) in fTrademodeidOptions"
 
-                     :key="index.dictValue"
 
-                     :label="dict.dictLabel"
 
-                     :value="dict.dictValue"
 
-                   />
 
-                 </el-select>
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="8">
 
-               <el-form-item label="制单人" prop="createBy">
 
-                 <el-input
 
-                   disabled
 
-                   v-model="form.createBy"
 
-                   style="width: 80%"
 
-                   placeholder="制单人"
 
-                 />
 
-               </el-form-item>
 
-             </el-col>
 
-           </el-row>
 
-           <el-row>
 
-             <el-col :span="8">
 
-               <el-form-item label="制单部门" prop="fDeptid">
 
-                 <el-select
 
-                   v-model="form.fDeptid"
 
-                   filterable
 
-                   disabled
 
-                   style="width: 80%"
 
-                   remote
 
-                 >
 
-                   <el-option
 
-                     v-for="(dict, index) in deptOptions"
 
-                     :key="index.deptId"
 
-                     :label="dict.deptName"
 
-                     :value="dict.deptId"
 
-                   ></el-option>
 
-                 </el-select>
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="8">
 
-               <el-form-item disabled label="制单日期" prop="fbilldate">
 
-                 <el-date-picker
 
-                   v-model="form.createTime"
 
-                   size="large"
 
-                   type="date"
 
-                   disabled
 
-                   style="width: 80%"
 
-                   value-format="timestamp"
 
-                   placeholder="制单日期"
 
-                 >
 
-                 </el-date-picker>
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="8">
 
-               <el-form-item label="过磅" prop="fIfweigh">
 
-                 <el-select
 
-                   v-model="form.fIfweigh"
 
-                   placeholder="请选择是否过磅"
 
-                   clearable
 
-                   :disabled="browseStatus || formBrowseStatus"
 
-                   style="width: 80%"
 
-                 >
 
-                   <el-option
 
-                     v-for="(dict, index) in fIfweighOptions"
 
-                     :key="index.dictValue"
 
-                     :label="dict.dictLabel"
 
-                     :value="dict.dictValue"
 
-                   />
 
-                 </el-select>
 
-               </el-form-item>
 
-             </el-col>
 
-           </el-row>
 
-           <el-row>
 
-             <el-col :span="8">
 
-               <el-form-item label="质押" prop="fIfpledge">
 
-                 <el-select
 
-                   v-model="form.fIfpledge"
 
-                   placeholder="请选择是否质押"
 
-                   clearable
 
-                   :disabled="browseStatus || formBrowseStatus"
 
-                   style="width: 80%"
 
-                 >
 
-                   <el-option
 
-                     v-for="(dict, index) in fIfpledgeOptions"
 
-                     :key="index.dictValue"
 
-                     :label="dict.dictLabel"
 
-                     :value="dict.dictValue"
 
-                   />
 
-                 </el-select>
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="8">
 
-               <el-form-item label="质押银行" prop="fBankcorpid">
 
-                 <el-select
 
-                   v-model="queryParams.fBankcorpid"
 
-                   filterable
 
-                   remote
 
-                   clearable
 
-                   style="width: 80%"
 
-                   :disabled="browseStatus || formBrowseStatus"
 
-                   @keyup.enter.native="handleQuery"
 
-                   :remote-method="corpsRemoteMethodd"
 
-                   placeholder="请输入模糊查找"
 
-                 >
 
-                   <el-option
 
-                     v-for="(dict, index) in Pledgebank"
 
-                     :key="index.fId"
 
-                     :label="dict.fName"
 
-                     :value="dict.fId"
 
-                   ></el-option>
 
-                 </el-select>
 
-               </el-form-item>
 
-             </el-col>
 
-           </el-row>
 
-         </div>
 
-       </el-form>
 
-       <div
 
-         class="dialogTableTitle flex a-center jlr"
 
-         style="
 
-           display: flex;
 
-           justify-content: space-between;
 
-           align-items: center;
 
-           margin: 10px 0;
 
-         "
 
-       >
 
-         <div>
 
-           <el-button
 
-             type="primary"
 
-             :disabled="browseStatus"
 
-             @click.prevent="addRelevant(10)"
 
-             >新行
 
-           </el-button>
 
-           <el-button
 
-             :disabled="browseStatus"
 
-             type="primary"
 
-             @click="submitForm(2)"
 
-             >保 存</el-button
 
-           >
 
-         </div>
 
-         <div>
 
-           <el-button
 
-             @click="
 
-               detailsHidden ? (detailsHidden = false) : (detailsHidden = true)
 
-             "
 
-             >{{ detailsHidden ? "隐藏" : "展开" }}</el-button
 
-           >
 
-           <el-button type="info" prop="打印" @click="showEditDialog_sss"
 
-             >作业单
 
-           </el-button>
 
-           <el-button @click="discharge">卸货 </el-button>
 
-           <el-button
 
-             :disabled="dataListSelection.length <= 0"
 
-             @click.prevent="creditClick"
 
-             >入库确认
 
-           </el-button>
 
-           <el-button
 
-             :disabled="dataWithdrawList.length <= 0"
 
-             @click.prevent="withdrawClick"
 
-             >撤回入库</el-button
 
-           >
 
-           <el-button type="success" prop="打印" @click="showEditDialog_ss"
 
-             >收货单
 
-           </el-button>
 
-           <el-button type="warning" prop="打印" @click="showEditDialog_s"
 
-             >入库单
 
-           </el-button>
 
-           <!-- 
 
-           <el-button
 
-             :disabled="browseStatus"
 
-             type="primary"
 
-             @click="submitForm(2)"
 
-             >保 存</el-button
 
-           > -->
 
-           <el-button
 
-             :disabled="browseStatus"
 
-             style="background-color: #008000; color: #fff"
 
-             @click="submitForm(6)"
 
-             >请核</el-button
 
-           >
 
-         </div>
 
-         <div style="font-size: 18px">入库明细</div>
 
-       </div>
 
-       <el-table
 
-         :data="dataList"
 
-         ref="tableList"
 
-         tooltip-effect="dark"
 
-         border
 
-         stripe
 
-         :summary-method="getSummaries"
 
-         @selection-change="Selectinventory"
 
-         show-summary
 
-       >
 
-         <el-table-column type="selection" width="55" align="center" />
 
-         <el-table-column label="序号" type="index" width="80">
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fBsdate"
 
-           header-align="center"
 
-           align="center"
 
-           width="150px"
 
-           label="入库日期"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-date-picker
 
-               v-model="scope.row.fBsdate"
 
-               style="width: 138px"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               type="date"
 
-               value-format="timestamp"
 
-               placeholder="入库日期"
 
-             >
 
-             </el-date-picker>
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fGoodsid"
 
-           header-align="center"
 
-           align="center"
 
-           width="140px"
 
-           label="品名"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-select
 
-               v-model="scope.row.fGoodsid"
 
-               filterable
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               remote
 
-               :remote-method="goodsRemoteMethod"
 
-               @change="changefGoodsid(scope.row)"
 
-               placeholder="请选择品名"
 
-             >
 
-               <el-option
 
-                 v-for="(dict, index) in goodsOptions"
 
-                 :key="index.fId"
 
-                 :label="dict.fName"
 
-                 :value="dict.fId"
 
-               ></el-option>
 
-             </el-select>
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fMarks"
 
-           header-align="center"
 
-           align="center"
 
-           width="140px"
 
-           label="*品牌"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fMarks"
 
-               placeholder="品牌"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fWarehouselocid"
 
-           header-align="center"
 
-           width="140px"
 
-           align="center"
 
-           label="*库区"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-select
 
-               v-model="scope.row.fWarehouselocid"
 
-               filterable
 
-               remote
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               :remote-method="kqhouseRemoteMethod"
 
-               placeholder="请选择库区"
 
-             >
 
-               <el-option
 
-                 v-for="(dict, index) in kqhouseOptions"
 
-                 :key="index.fId"
 
-                 :label="dict.fName"
 
-                 :value="dict.fId"
 
-               ></el-option>
 
-             </el-select>
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fcntrtype"
 
-           header-align="center"
 
-           align="center"
 
-           width="140px"
 
-           label="箱型"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fCntrtype"
 
-               maxlength="4"
 
-               placeholder="箱型"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fCntqty"
 
-           header-align="center"
 
-           align="center"
 
-           width="140px"
 
-           label="箱量"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fCntqty"
 
-               placeholder="箱量"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fGrossweight"
 
-           header-align="center"
 
-           width="150px"
 
-           align="center"
 
-           label="*入库毛重"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-               v-model="scope.row.fGrossweight"
 
-               placeholder="入库毛重"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fNetweight"
 
-           header-align="center"
 
-           width="150px"
 
-           align="center"
 
-           label="*入库净重"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-               v-model="scope.row.fNetweight"
 
-               placeholder="入库净重"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fQty"
 
-           header-align="center"
 
-           width="150px"
 
-           align="center"
 
-           label="*入库件数"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-               v-model="scope.row.fQty"
 
-               placeholder="入库件数"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fPackagespecs"
 
-           header-align="center"
 
-           width="150px"
 
-           align="center"
 
-           label="*包装规格"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-               v-model="scope.row.fPackagespecs"
 
-               placeholder="包装规格"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fTruckno"
 
-           header-align="center"
 
-           width="130px"
 
-           align="center"
 
-           label="*车号"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fTruckno"
 
-               placeholder="*车号"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fDriverName"
 
-           header-align="center"
 
-           width="130px"
 
-           align="center"
 
-           label="*司机名"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fDriverName"
 
-               placeholder="司机名"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fDriverTel"
 
-           header-align="center"
 
-           width="130px"
 
-           align="center"
 
-           label="*司机电话"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fDriverTel"
 
-               placeholder="司机电话"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fDriverIdCar"
 
-           header-align="center"
 
-           width="200px"
 
-           align="center"
 
-           label="*司机身份证"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fDriverIdCar"
 
-               placeholder="司机身份证"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fSerialNumber"
 
-           header-align="center"
 
-           width="160px"
 
-           align="center"
 
-           label="流水号"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fSerialNumber"
 
-               placeholder="流水号"
 
-               disabled
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fCntrno"
 
-           header-align="center"
 
-           width="130px"
 
-           align="center"
 
-           label="箱号"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fCntrno"
 
-               placeholder="箱号"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fGoodsval"
 
-           header-align="center"
 
-           width="130px"
 
-           align="center"
 
-           label="货值"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               oninput="value=value.replace(/[^\d.]/g,'')"
 
-               v-model="scope.row.fGoodsval"
 
-               placeholder="货值"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="remark"
 
-           header-align="center"
 
-           width="130px"
 
-           align="center"
 
-           label="备注"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.remark"
 
-               placeholder="备注"
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fBillstatus"
 
-           header-align="center"
 
-           width="150px"
 
-           align="center"
 
-           label="状态"
 
-         >
 
-           <template slot-scope="scope">
 
-             <span v-if="scope.row.fBillstatus === 40">已入库</span>
 
-             <span v-if="scope.row.fBillstatus === 20">卸货中</span>
 
-             <span v-if="scope.row.fBillstatus === 30">已卸货</span>
 
-             <span v-if="scope.row.fBillstatus === 10">计划</span>
 
-             <!-- <span v-if="scope.row.fBillstatus === '30'">待入库</span> -->
 
-             <!-- <span v-else>未入账</span> -->
 
-             <!-- <el-input
 
-               v-model="scope.row.fBillstatus"
 
-               placeholder="状态"
 
-               :disabled="browseStatus"
 
-               show-word-limit
 
-             /> -->
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           header-align="center"
 
-           align="center"
 
-           label="操作"
 
-           width="130PX"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-button
 
-               :disabled="
 
-                 browseStatus ||
 
-                 scope.row.fBillstatus === 20 ||
 
-                 scope.row.fBillstatus === 30 ||
 
-                 scope.row.fBillstatus === 40
 
-               "
 
-               @click.native.prevent="wDeleteRow(scope.$index, dataList)"
 
-               size="small"
 
-               >移除</el-button
 
-             >
 
-           </template>
 
-         </el-table-column>
 
-       </el-table>
 
-       <div
 
-         class="dialogTableTitle flex a-center jlr"
 
-         style="
 
-           display: flex;
 
-           justify-content: space-between;
 
-           align-items: center;
 
-           margin: 10px 0;
 
-         "
 
-       >
 
-         <div>
 
-           <el-button
 
-             type="primary"
 
-             :disabled="browseStatus"
 
-             @click.prevent="addRelevt()"
 
-             >新行
 
-           </el-button>
 
-         </div>
 
-         <div style="font-size: 18px">附件明细</div>
 
-       </div>
 
-       <el-table
 
-         :data="relevantAttachments"
 
-         ref="table"
 
-         tooltip-effect="dark"
 
-         border
 
-         stripe
 
-         style="width: 100%"
 
-         height="150"
 
-       >
 
-         <el-table-column label="序号" type="index" width="80">
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fName"
 
-           header-align="center"
 
-           align="center"
 
-           width="250px"
 
-           label="附件名称"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fName"
 
-               :disabled="browseStatus"
 
-               placeholder="附件名称"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="createBy"
 
-           header-align="center"
 
-           align="center"
 
-           width="250px"
 
-           label="上传人"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.createBy"
 
-               disabled
 
-               placeholder="上传人"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="createTime"
 
-           header-align="center"
 
-           align="center"
 
-           label="上传时间"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-date-picker
 
-               v-model="scope.row.createTime"
 
-               type="date"
 
-               disabled
 
-               placeholder="上传时间"
 
-               format="yyyy-MM-dd HH:mm"
 
-               value-format="timestamp"
 
-             ></el-date-picker>
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fUrl"
 
-           header-align="center"
 
-           align="center"
 
-           width="300px"
 
-           label="上传附件"
 
-         >
 
-           <template slot-scope="scope">
 
-             <uploadFile
 
-               :disabled="browseStatus"
 
-               @input="showFile"
 
-               v-model="scope.row.fUrl"
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           header-align="center"
 
-           align="center"
 
-           label="操作"
 
-           width="130PX"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-button
 
-               @click.native.prevent="
 
-                 deleteRow(scope.$index, relevantAttachments)
 
-               "
 
-               :disabled="browseStatus"
 
-               size="small"
 
-               >移除
 
-             </el-button>
 
-           </template>
 
-         </el-table-column>
 
-       </el-table>
 
-       <div
 
-         class="dialogTableTitle flex a-center jlr"
 
-         style="
 
-           display: flex;
 
-           justify-content: space-between;
 
-           align-items: center;
 
-           margin: 10px 0;
 
-         "
 
-       >
 
-         <div>
 
-           <el-button
 
-             type="primary"
 
-             :disabled="browseStatus"
 
-             @click.prevent="addCollection()"
 
-             >新行
 
-           </el-button>
 
-           <!-- <el-button :disabled="browseStatus" @click.prevent="deleteRow(warehouseDrList)"
 
-           >删除
 
-         </el-button> -->
 
-           <el-button type="primary" @click="submitForm(2)">保 存</el-button>
 
-           <!-- <el-button @click.prevent="addAgreement()" type="warning">仓储费协议</el-button> -->
 
-           <el-button @click.prevent="addAgreement()" type="danger"
 
-             >作业费协议</el-button
 
-           >
 
-         </div>
 
-         <div style="font-size: 18px">收款信息</div>
 
-       </div>
 
-       <el-table
 
-         :data="warehouseDrList"
 
-         ref="table"
 
-         tooltip-effect="dark"
 
-         border
 
-         stripe
 
-         show-summary
 
-         @selection-change="Collectionoptions"
 
-         :summary-method="warehouseDrSummaries"
 
-       >
 
-         <el-table-column type="selection" width="55" align="center" />
 
-         <el-table-column label="序号" type="index" width="80">
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fCorpid"
 
-           header-align="center"
 
-           align="center"
 
-           width="180px"
 
-           label="客户名称"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-select
 
-               v-model="scope.row.fCorpid"
 
-               filterable
 
-               remote
 
-               :disabled="browseStatus"
 
-               :remote-method="corpsRemoteMethod"
 
-               placeholder="客户名称"
 
-             >
 
-               <el-option
 
-                 v-for="(dict, index) in KHblnoOptions"
 
-                 :key="index.fId"
 
-                 :label="dict.fName"
 
-                 :value="dict.fId"
 
-               ></el-option>
 
-             </el-select>
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fFeeid"
 
-           header-align="center"
 
-           align="center"
 
-           width="180px"
 
-           label="费用名称"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-select
 
-               v-model="scope.row.fFeeid"
 
-               filterable
 
-               remote
 
-               :disabled="browseStatus"
 
-               :remote-method="fWRemoteMethod"
 
-               placeholder="费用名称"
 
-             >
 
-               <el-option
 
-                 v-for="(dict, index) in fWbuOptions"
 
-                 :key="index.fId"
 
-                 :label="dict.fName"
 
-                 :value="dict.fId"
 
-               ></el-option>
 
-             </el-select>
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fFeeUnitid"
 
-           header-align="center"
 
-           align="center"
 
-           width="180px"
 
-           label="计价单位"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-select
 
-               v-model="scope.row.fFeeUnitid"
 
-               placeholder="请选择计价单位"
 
-               @change="changeFeeUnit(scope.row)"
 
-               clearable
 
-               :disabled="browseStatus"
 
-             >
 
-               <el-option
 
-                 v-for="(dict, index) in jFeetunitOptions"
 
-                 :key="index.dictValue"
 
-                 :label="dict.dictLabel"
 
-                 :value="dict.dictValue"
 
-               />
 
-             </el-select>
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fQty"
 
-           header-align="center"
 
-           align="center"
 
-           width="130px"
 
-           label="数量"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-               v-model="scope.row.fQty"
 
-               placeholder="数量"
 
-               :disabled="browseStatus"
 
-               @change="changeContractAmt(scope.row)"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fUnitprice"
 
-           header-align="center"
 
-           align="center"
 
-           width="130px"
 
-           label="单价"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-               v-model="scope.row.fUnitprice"
 
-               placeholder="单价"
 
-               :disabled="browseStatus"
 
-               @change="changeContractAmt(scope.row)"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fAmount"
 
-           header-align="center"
 
-           align="center"
 
-           width="130px"
 
-           label="金额"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               disabled
 
-               oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-               v-model="scope.row.fAmount"
 
-               placeholder="金额"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fCurrency"
 
-           header-align="center"
 
-           align="center"
 
-           width="130px"
 
-           label="币别"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fCurrency"
 
-               :disabled="browseStatus"
 
-               placeholder="币别"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fExrate"
 
-           header-align="center"
 
-           align="center"
 
-           width="130px"
 
-           label="汇率"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fExrate"
 
-               :disabled="browseStatus"
 
-               placeholder="汇率"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fTaxrate"
 
-           header-align="center"
 
-           align="center"
 
-           width="130px"
 
-           label="税率"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fTaxrate"
 
-               :disabled="browseStatus"
 
-               placeholder="税率"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="remarks"
 
-           header-align="center"
 
-           align="center"
 
-           width="150px"
 
-           label="备注"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.Remarks"
 
-               :disabled="browseStatus"
 
-               placeholder="备注"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           header-align="center"
 
-           align="center"
 
-           label="操作"
 
-           width="200px"
 
-         >
 
-           <template slot-scope="scope">
 
-             <!-- <el-button size="small">审核费用</el-button> -->
 
-             <el-button
 
-               @click.native.prevent="deleteRow(scope.$index, warehouseDrList)"
 
-               size="small"
 
-               >移除</el-button
 
-             >
 
-           </template>
 
-         </el-table-column>
 
-       </el-table>
 
-       <div
 
-         class="dialogTableTitle flex a-center jlr"
 
-         style="
 
-           display: flex;
 
-           justify-content: space-between;
 
-           align-items: center;
 
-           margin: 10px 0;
 
-         "
 
-       >
 
-         <div>
 
-           <el-button
 
-             type="primary"
 
-             :disabled="browseStatus"
 
-             @click.prevent="addpayment()"
 
-             >新行
 
-           </el-button>
 
-           <!-- <el-button :disabled="browseStatus" @click.prevent="deleteRow(warehouseCrList)"
 
-           >删除
 
-         </el-button> -->
 
-           <el-button type="primary" @click="submitForm(2)">保 存</el-button>
 
-           <!-- <el-button type="warning">仓储费协议</el-button> -->
 
-           <el-button type="danger" @click.prevent="addAgreements()"
 
-             >作业费协议</el-button
 
-           >
 
-         </div>
 
-         <div style="font-size: 18px">付款信息</div>
 
-       </div>
 
-       <el-table
 
-         :data="warehouseCrList"
 
-         ref="table"
 
-         tooltip-effect="dark"
 
-         border
 
-         stripe
 
-         show-summary
 
-         @selection-change="Paymentoptions"
 
-         :summary-method="warehouseDrSummaries"
 
-       >
 
-         <el-table-column type="selection" width="55" align="center" />
 
-         <el-table-column label="序号" type="index" width="80">
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fCorpid"
 
-           header-align="center"
 
-           align="center"
 
-           width="180px"
 
-           label="客户名称"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-select
 
-               v-model="scope.row.fCorpid"
 
-               filterable
 
-               remote
 
-               :disabled="browseStatus"
 
-               :remote-method="corpsRemoteMethod"
 
-               placeholder="客户名称"
 
-             >
 
-               <el-option
 
-                 v-for="(dict, index) in KHblnoOptions"
 
-                 :key="index.fId"
 
-                 :label="dict.fName"
 
-                 :value="dict.fId"
 
-               ></el-option>
 
-             </el-select>
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fFeeid"
 
-           header-align="center"
 
-           align="center"
 
-           width="180px"
 
-           label="费用名称"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-select
 
-               v-model="scope.row.fFeeid"
 
-               filterable
 
-               :disabled="browseStatus"
 
-               remote
 
-               :remote-method="fWRemoteMethod"
 
-               placeholder="费用名称"
 
-             >
 
-               <el-option
 
-                 v-for="(dict, index) in fWbuOptions"
 
-                 :key="index.fId"
 
-                 :label="dict.fName"
 
-                 :value="dict.fId"
 
-               ></el-option>
 
-             </el-select>
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fFeeUnitid"
 
-           header-align="center"
 
-           align="center"
 
-           width="180px"
 
-           label="计价单位"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-select
 
-               v-model="scope.row.fFeeUnitid"
 
-               filterable
 
-               remote
 
-               @change="changeFeeUnit(scope.row)"
 
-               :disabled="browseStatus"
 
-               :remote-method="corpsRemoteMethod"
 
-               placeholder="计价单位"
 
-             >
 
-               <el-option
 
-                 v-for="(dict, index) in jFeetunitOptions"
 
-                 :key="index.dictValue"
 
-                 :label="dict.dictLabel"
 
-                 :value="dict.dictValue"
 
-               ></el-option>
 
-             </el-select>
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fQty"
 
-           header-align="center"
 
-           align="center"
 
-           width="150px"
 
-           label="数量"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d\d\d).*$/, "$1$2.$3")'
 
-               v-model="scope.row.fQty"
 
-               :disabled="browseStatus"
 
-               @change="changeContractAmt(scope.row)"
 
-               placeholder="数量"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fUnitprice"
 
-           header-align="center"
 
-           align="center"
 
-           width="150px"
 
-           label="单价"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-               v-model="scope.row.fUnitprice"
 
-               :disabled="browseStatus"
 
-               @change="changeContractAmt(scope.row)"
 
-               placeholder="单价"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fAmount"
 
-           header-align="center"
 
-           align="center"
 
-           width="150px"
 
-           label="金额"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               disabled
 
-               oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-               v-model="scope.row.fAmount"
 
-               placeholder="金额"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fCurrency"
 
-           header-align="center"
 
-           align="center"
 
-           width="150px"
 
-           label="币别"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fCurrency"
 
-               :disabled="browseStatus"
 
-               placeholder="币别"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fExrate"
 
-           header-align="center"
 
-           align="center"
 
-           width="150px"
 
-           label="汇率"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fExrate"
 
-               :disabled="browseStatus"
 
-               placeholder="汇率"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="fTaxrate"
 
-           header-align="center"
 
-           align="center"
 
-           width="150px"
 
-           label="税率"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.fTaxrate"
 
-               :disabled="browseStatus"
 
-               placeholder="税率"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           prop="remarks"
 
-           header-align="center"
 
-           align="center"
 
-           width="150px"
 
-           label="备注"
 
-         >
 
-           <template slot-scope="scope">
 
-             <el-input
 
-               v-model="scope.row.remarks"
 
-               :disabled="browseStatus"
 
-               placeholder="备注"
 
-               show-word-limit
 
-             />
 
-           </template>
 
-         </el-table-column>
 
-         <el-table-column
 
-           header-align="center"
 
-           align="center"
 
-           width="200px"
 
-           label="操作"
 
-         >
 
-           <template slot-scope="scope">
 
-             <!-- <el-button size="small">审核费用</el-button> -->
 
-             <el-button
 
-               @click.native.prevent="deleteRoww(scope.$index, warehouseCrList)"
 
-               size="small"
 
-               >移除</el-button
 
-             >
 
-           </template>
 
-         </el-table-column>
 
-       </el-table>
 
-       <div slot="footer" class="dialog-footer">
 
-         <el-button
 
-           type="primary"
 
-           :disabled="approvalStatus"
 
-           @click="addOrUpdateHandle(form)"
 
-           >查看审批</el-button
 
-         >
 
-         <el-button
 
-           type="primary"
 
-           :disabled="approvalStatus"
 
-           @click="addOrUpdateHand(form)"
 
-           >审批弹窗</el-button
 
-         >
 
-         <!-- 弹窗, 新增 / 修改 -->
 
-         <add-or-update
 
-           v-if="addOrUpdateVisible"
 
-           ref="addOrUpdate"
 
-           @refreshDataList="getDataList"
 
-         ></add-or-update>
 
-         <approval-comments
 
-           v-if="addOrUpdateVisib"
 
-           ref="ApprovalComments"
 
-           @refreshDataList="returnData"
 
-         ></approval-comments>
 
-         <el-button type="success" prop="打印" @click="showEditDialog_ss"
 
-           >收货单
 
-         </el-button>
 
-         <el-button type="warning" prop="打印" @click="showEditDialog_s"
 
-           >入库单
 
-         </el-button>
 
-         <el-button @click="discharge">卸货 </el-button>
 
-         <el-button type="info" prop="打印" @click="showEditDialog_sss"
 
-           >作业单
 
-         </el-button>
 
-         <el-button
 
-           :disabled="browseStatus"
 
-           type="primary"
 
-           @click="submitForm(2)"
 
-           >保 存</el-button
 
-         >
 
-         <el-button
 
-           :disabled="browseStatus"
 
-           style="background-color: #008000; color: #fff"
 
-           @click="submitForm(6)"
 
-           >请核</el-button
 
-         >
 
-         <el-button @click="cancel">取 消</el-button>
 
-       </div>
 
-       <!-- 入库新行计划重量导入 -->
 
-       <el-dialog
 
-         title="入库明细"
 
-         :modal="false"
 
-         style="height: 500px"
 
-         height="50%"
 
-         :close-on-click-modal="false"
 
-         :visible.sync="weightList"
 
-         @close="closeDialog"
 
-         width="70%"
 
-       >
 
-         <el-form
 
-           ref="planningList"
 
-           :model="form"
 
-           :rules="rules"
 
-           label-width="120px"
 
-         >
 
-           <el-row>
 
-             <el-col :span="8">
 
-               <el-form-item label="计划件数" prop="fPlanqty">
 
-                 <el-input
 
-                   oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-                   v-model="planningList.fPlanqty"
 
-                   style="width: 80%"
 
-                   laceholder="计划件数"
 
-                   @input="changeList(form)"
 
-                 />
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="8">
 
-               <el-form-item label="计划净重" prop="fPlannetweight">
 
-                 <el-input
 
-                   v-model="planningList.fPlannetweight"
 
-                   oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-                   style="width: 80%"
 
-                   disabled
 
-                   laceholder="计划毛重"
 
-                 />
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="8">
 
-               <el-form-item label="计划毛重" prop="fPlangrossweight">
 
-                 <el-input
 
-                   v-model="planningList.fPlangrossweight"
 
-                   oninput='this.value=this.value.replace(/[^\-?\d.]/g,"").replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")'
 
-                   style="width: 80%"
 
-                   disabled
 
-                   laceholder="计划毛重"
 
-                 />
 
-               </el-form-item>
 
-             </el-col>
 
-           </el-row>
 
-         </el-form>
 
-         <div slot="footer" class="dialog-footer">
 
-           <el-button type="primary" @click="costList">导入</el-button>
 
-           <el-button @click="weightList = false">取 消</el-button>
 
-         </div>
 
-       </el-dialog>
 
-       <!-- 选择作业费协议数据 -->
 
-       <el-dialog
 
-         title="作业费协议"
 
-         :close-on-click-modal="false"
 
-         :modal="false"
 
-         style="box-shadow: 0 1px 3px rgba(0, 0, 0, 0) !important"
 
-         :visible.sync="warehousingagreement"
 
-         width="70%"
 
-       >
 
-         <el-table
 
-           :data="tasklegList"
 
-           ref="table"
 
-           tooltip-effect="dark"
 
-           width="100%"
 
-           border
 
-           stripe
 
-           @selection-change="whgenlegSelectionChange"
 
-         >
 
-           <el-table-column type="selection" width="55"> </el-table-column>
 
-           <el-table-column label="行号" type="index" width="80">
 
-           </el-table-column>
 
-           <el-table-column
 
-             prop="fCorpname"
 
-             header-align="center"
 
-             align="center"
 
-             label="客户名称"
 
-           >
 
-           </el-table-column>
 
-           <el-table-column
 
-             prop="fName"
 
-             header-align="center"
 
-             align="center"
 
-             label="费用名称"
 
-           >
 
-           </el-table-column>
 
-           <el-table-column
 
-             prop="fFeeUnitid"
 
-             header-align="center"
 
-             align="center"
 
-             width="180px"
 
-             label="计价单位"
 
-           >
 
-             <template slot-scope="scope">
 
-               <el-select
 
-                 v-model="scope.row.fFeeUnitid"
 
-                 placeholder="请选择计费单位"
 
-                 @change="changeFeeUnit(scope.row)"
 
-                 disabled
 
-                 clearable
 
-               >
 
-                 <el-option
 
-                   v-for="dict in jFeetunitOptions"
 
-                   :key="dict.dictValue"
 
-                   :label="dict.dictLabel"
 
-                   :value="dict.dictValue"
 
-                 />
 
-               </el-select>
 
-             </template>
 
-           </el-table-column>
 
-           <el-table-column
 
-             prop="fPrice"
 
-             header-align="center"
 
-             align="center"
 
-             label="单价"
 
-           >
 
-           </el-table-column>
 
-           <!-- <el-table-column
 
-             prop="fMarks"
 
-             header-align="center"
 
-             align="center"
 
-             label="唛头"
 
-           >
 
-           </el-table-column> -->
 
-         </el-table>
 
-         <pagination
 
-           v-show="whgenlegTotal > 0"
 
-           :total="whgenlegTotal"
 
-           :page.sync="queryParams.pageNum"
 
-           :limit.sync="queryParams.pageSize"
 
-           @pagination="getWhgenlegList"
 
-         />
 
-         <div slot="footer" class="dialog-footer">
 
-           <el-button type="primary" @click="whgenlegData"
 
-             >导入作业费协议</el-button
 
-           >
 
-           <el-button @click="warehousingagreement = false">取 消</el-button>
 
-         </div>
 
-       </el-dialog>
 
-       <!-- 选择作业费协议数据 -->
 
-       <el-dialog
 
-         title="作业费协议"
 
-         :close-on-click-modal="false"
 
-         :modal="false"
 
-         style="box-shadow: 0 1px 3px rgba(0, 0, 0, 0) !important"
 
-         :visible.sync="warehousingagreements"
 
-         width="70%"
 
-       >
 
-         <el-table
 
-           :data="tasklegList"
 
-           ref="table"
 
-           tooltip-effect="dark"
 
-           width="100%"
 
-           border
 
-           stripe
 
-           @selection-change="whgenlegSelectionChange"
 
-         >
 
-           <el-table-column type="selection" width="55"> </el-table-column>
 
-           <el-table-column label="行号" type="index" width="80">
 
-           </el-table-column>
 
-           <el-table-column
 
-             prop="fCorpname"
 
-             header-align="center"
 
-             align="center"
 
-             label="客户名称"
 
-           >
 
-           </el-table-column>
 
-           <el-table-column
 
-             prop="fName"
 
-             header-align="center"
 
-             align="center"
 
-             label="费用名称"
 
-           >
 
-           </el-table-column>
 
-           <el-table-column
 
-             prop="fFeeUnitid"
 
-             header-align="center"
 
-             align="center"
 
-             width="180px"
 
-             label="计价单位"
 
-           >
 
-             <template slot-scope="scope">
 
-               <el-select
 
-                 v-model="scope.row.fFeeUnitid"
 
-                 placeholder="请选择计费单位"
 
-                 @change="changeFeeUnit(scope.row)"
 
-                 disabled
 
-                 clearable
 
-               >
 
-                 <el-option
 
-                   v-for="dict in jFeetunitOptions"
 
-                   :key="dict.dictValue"
 
-                   :label="dict.dictLabel"
 
-                   :value="dict.dictValue"
 
-                 />
 
-               </el-select>
 
-             </template>
 
-           </el-table-column>
 
-           <el-table-column
 
-             prop="fPrice"
 
-             header-align="center"
 
-             align="center"
 
-             label="单价"
 
-           >
 
-           </el-table-column>
 
-           <!-- <el-table-column
 
-             prop="fMarks"
 
-             header-align="center"
 
-             align="center"
 
-             label="唛头"
 
-           >
 
-           </el-table-column> -->
 
-         </el-table>
 
-         <pagination
 
-           v-show="whgenlegTotal > 0"
 
-           :total="whgenlegTotal"
 
-           :page.sync="queryParams.pageNum"
 
-           :limit.sync="queryParams.pageSize"
 
-           @pagination="getWhgenlegList"
 
-         />
 
-         <div slot="footer" class="dialog-footer">
 
-           <el-button type="primary" @click="zhgenlegData">导入</el-button>
 
-           <el-button @click="warehousingagreements = false">取 消</el-button>
 
-         </div>
 
-       </el-dialog>
 
-       <el-dialog
 
-         title=""
 
-         :modal="false"
 
-         style="box-shadow: 0 1px 3px rgba(0, 0, 0, 0) !important"
 
-         :visible.sync="editDialogVisible_s"
 
-         :close-on-click-modal="false"
 
-         @close="closeDialog"
 
-         width="70%"
 
-       >
 
-         <table
 
-           id="print_area2"
 
-           class="biaoge zzss"
 
-           border="1"
 
-           style="border-collapse: collapse; border: none"
 
-         >
 
-           <tr>
 
-             <td
 
-               width="100"
 
-               colspan="7"
 
-               class="zzss"
 
-               style="font-size: 28px; font-weight: bold; border: none"
 
-             >
 
-               青岛大木进仓单
 
-             </td>
 
-           </tr>
 
-           <tr>
 
-             <td
 
-               width="100"
 
-               colspan="7"
 
-               class="zzss"
 
-               style="font-size: 28px; font-weight: bold; border: none"
 
-             >
 
-                
 
-             </td>
 
-           </tr>
 
-           <tr>
 
-             <td width="450" colspan="2" class="zzss">
 
-               货权方:{{ form.fCorpid }}
 
-             </td>
 
-             <td width="450" colspan="2" class="zzss">
 
-               仓库:{{ form.fWarehouseid }}
 
-             </td>
 
-             <td width="450" colspan="3" class="zzss">地址:{{ fAddr }}</td>
 
-           </tr>
 
-           <tr>
 
-             <td width="200" colspan="2" class="zzss">保管方:大木有限公司</td>
 
-             <td width="200" colspan="2" class="zzss">
 
-               联系人:{{ form.fContacts }}
 
-             </td>
 
-             <td width="200" colspan="3" class="zzss">电话:{{ fDriverTel }}</td>
 
-           </tr>
 
-           <tr>
 
-             <td width="100" border="1">提单号</td>
 
-             <td width="100">品名</td>
 
-             <td width="100">箱型</td>
 
-             <td width="100">品牌</td>
 
-             <td width="100">件数</td>
 
-             <td width="100">重量</td>
 
-             <td width="100">包装规格</td>
 
-           </tr>
 
-           <tr>
 
-             <td width="100">{{ form.fMblno }}</td>
 
-             <td width="100">{{ fGoodsids }}</td>
 
-             <td width="100">{{ fCntrtype }}</td>
 
-             <td width="100"></td>
 
-             <td width="100">包</td>
 
-             <td width="100">吨</td>
 
-             <td width="100">{{ fPackagespecs }}</td>
 
-           </tr>
 
-           <tr>
 
-             <td width="100">序号</td>
 
-             <td width="100">入货日期</td>
 
-             <td width="100">箱量(20GP)</td>
 
-             <td width="100">重量</td>
 
-             <td width="100">件数</td>
 
-             <td width="100">入库重量</td>
 
-             <td width="100">入库件数</td>
 
-           </tr>
 
-           <tr v-for="(item, indexx) in Printinglist" :key="indexx">
 
-             <td width="100">{{ indexx + 1 }}</td>
 
-             <td width="100">{{ item.fBsdate }}</td>
 
-             <td width="100">{{ item.fCntqty }}</td>
 
-             <td width="100">{{ item.fGrossweight }}</td>
 
-             <td width="100">{{ item.fPlanqty }}</td>
 
-             <td width="100">{{ item.fNetweight }}</td>
 
-             <td width="100">{{ item.fQty }}</td>
 
-           </tr>
 
-           <tr>
 
-             <td width="100" colspan="2">合计:</td>
 
-             <td width="100">{{ fCntqty }}</td>
 
-             <td width="100">{{ fGrossweight }}</td>
 
-             <td width="100">{{ fPlanqty }}</td>
 
-             <td width="100">{{ fNetweight }}</td>
 
-             <td width="100">{{ fQty }}</td>
 
-           </tr>
 
-           <tr>
 
-             <td width="100">备注:</td>
 
-             <td width="100" colspan="6"></td>
 
-           </tr>
 
-           <tr>
 
-             <td width="100" colspan="7" class="zzss">
 
-               本进仓单经仓管员签字并经保管方盖章后即专项作为货物所有人的货权证明,本单据不得转让。
 
-             </td>
 
-           </tr>
 
-           <tr style="border: none">
 
-             <td width="100" colspan="2" class="zzss" style="border: none">
 
-               开单员:
 
-             </td>
 
-             <td width="100" colspan="3" class="zzss" style="border: none"></td>
 
-             <td width="100" colspan="2" class="zzss" style="border: none">
 
-               仓管员:
 
-             </td>
 
-           </tr>
 
-           <tr style="border: none">
 
-             <td width="100" colspan="2" class="zzss" style="border: none">
 
-               开单时间:
 
-             </td>
 
-             <td width="100" colspan="3" class="zzss" style="border: none"></td>
 
-             <td width="100" colspan="2" class="zzss" style="border: none">
 
-               (盖章)
 
-             </td>
 
-           </tr>
 
-         </table>
 
-         <button @click="printSomething1">打印</button>
 
-       </el-dialog>
 
-       <el-dialog
 
-         title=""
 
-         style="box-shadow: 0 1px 3px rgba(0, 0, 0, 0) !important"
 
-         :visible.sync="editDialogVisible_ss"
 
-         :close-on-click-modal="false"
 
-         width="70%"
 
-         :modal="false"
 
-       >
 
-         <table
 
-           id="print_area3"
 
-           class="biaoge zzss"
 
-           border="1"
 
-           style="border-collapse: collapse; border: none;margin-top;100px;"
 
-         >
 
-           <tr>
 
-             <td
 
-               width="1400"
 
-               colspan="6"
 
-               class="zzss"
 
-               style="font-size: 26px; font-weight: bold; border: none"
 
-             >
 
-               大木国际物流(青岛)有限公司收货单
 
-             </td>
 
-           </tr>
 
-           <!-- <div v-for="{{}}" :key="index"> -->
 
-           <tr>
 
-             <td width="400">车号:</td>
 
-             <td width="400">{{ fTruckno }}</td>
 
-             <td
 
-               width="500"
 
-               colspan="4"
 
-               style="padding-bottom: 0px; font-weight: bold; border: none"
 
-               class="zzss"
 
-             >
 
-               日期:{{ fBsdates }}
 
-             </td>
 
-             <!-- <td
 
-               width="500"
 
-               colspan="2"
 
-               style="padding-bottom: 0px; font-weight: bold; border: none"
 
-               class="zzss"
 
-             >
 
-             </td> -->
 
-           </tr>
 
-           <tr v-for="(item, index) in Printinglist" :key="index">
 
-             <td width="250">货物品名:</td>
 
-             <!-- <td width="200" colspan="">1</td> -->
 
-             <td width="250">{{ item.fGoodsids }}</td>
 
-             <!-- <td width="250">白色聚吕</td> -->
 
-             <!-- <td width="200" colspan="2">件数: 161件</td> -->
 
-             <!-- <td width="200"></td> -->
 
-             <td width="200" colspan="4" class="zzss">
 
-               件数: {{ item.fQty }}件
 
-             </td>
 
-           </tr>
 
-           <!-- <tr>
 
-             <td width="1400" colspan="6"> </td>
 
-           </tr> -->
 
-           <tr>
 
-             <td>备注:</td>
 
-             <td colspan="5">{{ form.remark }}</td>
 
-           </tr>
 
-           <tr>
 
-             <td>司机签字:</td>
 
-             <td></td>
 
-             <td colspan="2">司机电话:</td>
 
-             <td colspan="2">{{ fDriverTel }}</td>
 
-           </tr>
 
-           <tr>
 
-             <td>制单人:</td>
 
-             <td>{{ form.createBy }}</td>
 
-             <td colspan="2">收货人:</td>
 
-             <td colspan="2">{{ form.fContacts }}</td>
 
-           </tr>
 
-           <!-- <tr>
 
-             <td colspan="6" class="zzss"> </td>
 
-           </tr> -->
 
-           <tr>
 
-             <td width="280" class="zzss"></td>
 
-             <td width="280" class="zzss"></td>
 
-             <td width="280" class="zzss"></td>
 
-             <td width="280" class="zzss"></td>
 
-             <td width="290" class="zzss">地址:{{ fAddr }}</td>
 
-             <td width="290" class="zzss">电话:{{ fDriverTel }}</td>
 
-           </tr>
 
-           <!-- </div> -->
 
-         </table>
 
-         <button @click="printSomething">打印</button>
 
-       </el-dialog>
 
-       <el-dialog
 
-         title=""
 
-         style="box-shadow: 0 1px 3px rgba(0, 0, 0, 0) !important"
 
-         :visible.sync="editDialogVisible_sss"
 
-         :close-on-click-modal="false"
 
-         width="70%"
 
-         :modal="false"
 
-       >
 
-         <table
 
-           id="print_area1"
 
-           class="biaoge zzss"
 
-           border="1"
 
-           style="border-collapse: collapse; border: none"
 
-         >
 
-           <tr>
 
-             <td
 
-               width="1400"
 
-               colspan="6"
 
-               class="zzss"
 
-               style="font-size: 28px; font-weight: bold; border: none"
 
-             >
 
-               大木国际物流(青岛)有限公司作业单
 
-             </td>
 
-           </tr>
 
-           <tr>
 
-             <td
 
-               width="900"
 
-               colspan="4"
 
-               class="zzss"
 
-               style="font-size: 28px; font-weight: bold"
 
-             >
 
-                
 
-             </td>
 
-             <td
 
-               width="500"
 
-               colspan="2"
 
-               style="padding-bottom: 0px; font-weight: bold; border: none"
 
-               class="zzss"
 
-             >
 
-               入库日期:{{ fBsdates }}
 
-             </td>
 
-           </tr>
 
-           <tr v-for="(item, index) in Printinglist" :key="index">
 
-             <td width="200">车号</td>
 
-             <td width="200">{{ item.fTruckno }}</td>
 
-             <td width="200">货物品名</td>
 
-             <td width="200" colspan="4" class="zzss">
 
-               {{ item.fGoodsids }}
 
-             </td>
 
-           </tr>
 
-           <tr>
 
-             <td width="1400" colspan="6"> </td>
 
-           </tr>
 
-           <tr>
 
-             <td>备注:</td>
 
-             <td colspan="5">{{ form.remark }}</td>
 
-           </tr>
 
-           <tr
 
-             v-for="(item, indexe) in Collectionoptionss"
 
-             :key="indexe + 'index'"
 
-           >
 
-             <td>收费</td>
 
-             <td>{{ item.fFeeids }}</td>
 
-             <td>{{ item.fAmount }} 元</td>
 
-             <!-- <td colspan="4">办单费:5元,过磅费自理</td> -->
 
-           </tr>
 
-           <tr>
 
-             <td>司机签字:</td>
 
-             <td></td>
 
-             <td>电话</td>
 
-             <td>{{ fDriverTel }}</td>
 
-             <td colspan="2" rowspan="2">
 
-               确认货物数量无误,包装于货物完好!<br />出库盖好篷布,如有违背责任自负<br />装卸工是否收小费
 
-             </td>
 
-           </tr>
 
-           <tr>
 
-             <td>制表:</td>
 
-             <td>{{ form.createBy }}</td>
 
-             <td>机械/人工:</td>
 
-             <td></td>
 
-           </tr>
 
-           <tr>
 
-             <td colspan="6" class="zzss"> </td>
 
-           </tr>
 
-           <tr>
 
-             <td width="280" class="zzss"></td>
 
-             <td width="280" class="zzss"></td>
 
-             <td width="280" class="zzss"></td>
 
-             <td width="280" class="zzss"></td>
 
-             <td width="290" class="zzss">地址:{{ fAddr }}</td>
 
-             <td width="290" class="zzss">电话:{{ fDriverTel }}</td>
 
-           </tr>
 
-         </table>
 
-         <div style="display: flex; justify-content: space-between">
 
-           <el-button
 
-             type="primary"
 
-             :disabled="browseStatus"
 
-             @click="printSomething2"
 
-             >打印
 
-           </el-button>
 
-           <el-button @click="editDialogVisible_sss = false">取消 </el-button>
 
-         </div>
 
-       </el-dialog>
 
-     </el-dialog>
 
-   </div>
 
- </template>
 
- <script>
 
- import print from "print-js";
 
- import {
 
-   addWhgenleg,
 
-   addJoblist,
 
-   disChargelist,
 
-   updateCredit,
 
-   listWarehousebills,
 
-   getWarehousebills,
 
-   delWarehousebills,
 
-   addWarehousebills,
 
-   addWarehouse,
 
-   updateWarehousebills,
 
-   exportWarehousebills,
 
- } from "@/api/warehouseBusiness/warehouseInStock";
 
- import { listAgreement, operationAgreement } from "@/api/agreement/agreement";
 
- import { listCorps } from "@/api/basicdata/corps";
 
- import { listFees, getFees } from "@/api/basicdata/fees";
 
- import { listWarehouse } from "@/api/basicdata/warehouse";
 
- import { listArea } from "@/api/basicdata/area";
 
- import { listGoods } from "@/api/basicdata/goods";
 
- import { listUser, queryUserVal } from "@/api/system/user";
 
- import UploadFile from "@/components/Uploadfile";
 
- import AddOrUpdate from "@/views/viewApproval";
 
- import ApprovalComments from "@/views/startApproval";
 
- export default {
 
-   name: "Warehousebills",
 
-   components: {
 
-     UploadFile,
 
-     AddOrUpdate,
 
-     ApprovalComments,
 
-   },
 
-   data() {
 
-     return {
 
-       // 修改查看状态
 
-       browseStatus: false,
 
-       // 审批状态控制
 
-       approvalStatus: false,
 
-       detailsHidden: false,
 
-       warehousingagreement: false,
 
-       warehousingagreements: false,
 
-       formBrowseStatus: false,
 
-       fTruckno: "",
 
-       fBsdates: "",
 
-       fCntrtype: "",
 
-       fGoodsids: "",
 
-       fPlaNnumber: "",
 
-       fPlangNumber: "",
 
-       // fPlannetweight: "",
 
-       fPlanvolumn: "",
 
-       // 司机电话
 
-       fDriverTel: "",
 
-       fPlanqty: "",
 
-       fPlangrossweight: "",
 
-       fPlannetweight: "",
 
-       fFeeUnitid: "",
 
-       fFeeUnitids: "",
 
-       fGrossweight: 0,
 
-       fid: "",
 
-       fCntqty: "",
 
-       fPackagespecs: "",
 
-       fNetweight: 0,
 
-       fQty: 0,
 
-       mum: 0,
 
-       // 遮罩层
 
-       loading: true,
 
-       // 选中数组
 
-       ids: [],
 
-       Collectionoptionss: [],
 
-       userVal: {
 
-         userName: null,
 
-         nickName: null,
 
-         deptId: null,
 
-       },
 
-       queryForm: {},
 
-       // 新增用户对话框
 
-       editDialogVisible_s: false,
 
-       editDialogVisible_ss: false,
 
-       editDialogVisible_sss: false,
 
-       editDialogClosed_ss: false,
 
-       addOrUpdateVisible: false,
 
-       addOrUpdateVisib: false,
 
-       // 新增计划净重
 
-       weightList: false,
 
-       dataList: [],
 
-       warehouseCrList: [],
 
-       warehouseDrList: [],
 
-       Pledgebank: [],
 
-       relevantAttachments: [],
 
-       // 非单个禁用
 
-       single: true,
 
-       // 非多个禁用
 
-       multiple: true,
 
-       // 显示搜索条件
 
-       showSearch: true,
 
-       // 总条数
 
-       total: 0,
 
-       // 仓库主(出入库)表格数据
 
-       warehousebillsList: [],
 
-       // 弹出层标题
 
-       title: "",
 
-       // 是否显示弹出层
 
-       open: false,
 
-       // 货权方(客户数据)
 
-       fMblnoOptions: [],
 
-       // 货权方(客户数据)
 
-       // 客户名称
 
-       KHblnoOptions: [],
 
-       // 作业费协议
 
-       tasklegList: [],
 
-       whgenlegTotal: 0,
 
-       Printinglist: [],
 
-       // 库存明细入账数组
 
-       dataListSelection: [],
 
-       fAddr: "",
 
-       // 库存明细撤回入账数组
 
-       dataWithdrawList: [],
 
-       fSbuOptions: [],
 
-       // 操作员
 
-       userOptions: [],
 
-       // 操作员
 
-       goodsOptions: [],
 
-       // 制单部门
 
-       deptOptions: [],
 
-       // 仓库(仓库数据)
 
-       warehouseOptions: [],
 
-       kqhouseOptions: [],
 
-       // 贸易方式(数据字典),对应t_trademodels 字典
 
-       fTrademodeidOptions: [],
 
-       // 计费单位(数据字典),下拉选择毛重或净重字典
 
-       fFeetunitOptions: [
 
-         { dictLabel: "件数", dictValue: "1" },
 
-         { dictLabel: "毛重", dictValue: "2" },
 
-         { dictLabel: "净重", dictValue: "3" },
 
-         { dictLabel: "尺码", dictValue: "4" },
 
-         { dictLabel: "固定", dictValue: "5" },
 
-       ],
 
-       // 结算方式(数据字典),下拉选择字典
 
-       fStltypeOptions: [],
 
-       // 是否过磅(数据字典)默认 F ,过磅T 否者F 下拉选择字典
 
-       fIfweighOptions: [],
 
-       // 是否质押(数据字典),默认 F ,质押T 否者F 下拉选择字典
 
-       fIfpledgeOptions: [],
 
-       // 是否破损(数据字典),默认F否则T字典
 
-       fIfdamageOptions: [],
 
-       // 单据类型(数据字典)SJRK字典
 
-       fBilltypeOptions: [],
 
-       // 状态(数据字典),N 入字典
 
-       fBillstatusOptions: [],
 
-       // 费用名称
 
-       fWbuOptions: [],
 
-       // 计价单位
 
-       jFeetunitOptions: [
 
-         { dictLabel: "件数", dictValue: "1" },
 
-         { dictLabel: "毛重", dictValue: "2" },
 
-         { dictLabel: "净重", dictValue: "3" },
 
-         { dictLabel: "尺码", dictValue: "4" },
 
-         { dictLabel: "固定", dictValue: "5" },
 
-       ],
 
-       // 查询参数
 
-       queryParams: {
 
-         pageNum: 1,
 
-         pageSize: 10,
 
-         fBillno: null,
 
-         createBy: null,
 
-         createTime: null,
 
-         fCustomsdeclartion: null,
 
-         fOriginalbillno: null,
 
-         fDeptid: null,
 
-         timeInterval: null,
 
-         fBsdeptid: null,
 
-         fContacts: null,
 
-         fTel: null,
 
-         fCorpid: null,
 
-         fTocorpid: null,
 
-         fStltypeid: null,
 
-         fBscorpno: null,
 
-         fWarehouseid: null,
 
-         fStorekeeper: null,
 
-         fBsdate: null,
 
-         fPlanqty: null,
 
-         fPlangrossweight: null,
 
-         fPlannetweight: null,
 
-         fPlanvolumn: null,
 
-         fQty: null,
 
-         fGrossweight: null,
 
-         fNetweight: null,
 
-         fVolumn: null,
 
-         fTrademodeid: null,
 
-         fSbu: null,
 
-         fFeetunit: null,
 
-         fMblno: null,
 
-         fVslvoy: null,
 
-         fEta: null,
 
-         fCustomno: null,
 
-         fIfweigh: null,
 
-         fIfpledge: null,
 
-         fIfdamage: null,
 
-         fBankcorpid: null,
 
-         fBilltype: null,
 
-         fBillstatus: null,
 
-         fCreateby: null,
 
-         fCreatetime: null,
 
-         fGoodsid: null,
 
-         fCntrtype: null,
 
-         fCntqty: null,
 
-       },
 
-       // 作业费参数
 
-       queryParams: {
 
-         pageNum: 1,
 
-         pageSize: 10,
 
-         fCorpid: null,
 
-         fLineno: null,
 
-       },
 
-       planningList: {
 
-         fPlanqty: null,
 
-         fPlannetweight: null,
 
-         fPlangrossweight: null,
 
-       },
 
-       // 表单参数
 
-       form: {
 
-         fItemsStatus: null,
 
-       },
 
-       // 表单校验
 
-       rules: {
 
-         fDeptid: [{ required: true, message: " ", trigger: "blur" }],
 
-         fMblno: [{ required: true, message: " ", trigger: "blur" }],
 
-         fBsdeptid: [{ required: true, message: " ", trigger: "blur" }],
 
-         fCorpid: [
 
-           {
 
-             required: true,
 
-             message: " ",
 
-             trigger: "blur",
 
-           },
 
-         ],
 
-         fFeetunit: [{ required: true, message: " ", trigger: "blur" }],
 
-         fPlanqty: [{ required: true, message: " ", trigger: "blur" }],
 
-         fPlangrossweight: [{ required: true, message: " ", trigger: "blur" }],
 
-         fPlannetweight: [{ required: true, message: " ", trigger: "blur" }],
 
-         fChargedate: [{ required: true, message: " ", trigger: "blur" }],
 
-         fMarks: [{ required: true, message: " ", trigger: "blur" }],
 
-         fBsdate: [{ required: true, message: " ", trigger: "blur" }],
 
-         fTrademodeid: [{ required: true, message: " ", trigger: "blur" }],
 
-         fSbu: [{ required: true, message: " ", trigger: "blur" }],
 
-         fStorekeeper: {
 
-           required: true,
 
-           message: " ",
 
-           trigger: "blur",
 
-         },
 
-         fWarehouseid: [{ required: true, message: " ", trigger: "blur" }],
 
-         fbillingway: [
 
-           {
 
-             required: true,
 
-             message: " ",
 
-             trigger: "blur",
 
-           },
 
-         ],
 
-         fTocorpid: [
 
-           {
 
-             required: true,
 
-             message: " ",
 
-             trigger: "blur",
 
-           },
 
-         ],
 
-       },
 
-     };
 
-   },
 
-   created() {
 
-     this.getList();
 
-     this.getDicts("data_trademodes").then((response) => {
 
-       this.fTrademodeidOptions = response.data;
 
-     });
 
-     this.getDicts("data_stltype_type").then((response) => {
 
-       this.fStltypeOptions = response.data;
 
-     });
 
-     this.getDicts("tax_rate").then((response) => {
 
-       this.fTaxrate = response.data[0].dictValue;
 
-     });
 
-     this.getDicts("data_ifweigh_status").then((response) => {
 
-       this.fIfweighOptions = response.data;
 
-     });
 
-     this.getDicts("data_ifpledge_status").then((response) => {
 
-       this.fIfpledgeOptions = response.data;
 
-     });
 
-     this.getDicts("data_ifdamage_status").then((response) => {
 
-       this.fIfdamageOptions = response.data;
 
-     });
 
-     this.getDicts("data_billtype_type").then((response) => {
 
-       this.fBilltypeOptions = response.data;
 
-     });
 
-     this.getDicts("sys_common_status").then((response) => {
 
-       this.fBillstatusOptions = response.data;
 
-     });
 
-   },
 
-   methods: {
 
-     // 上传成功返回数据
 
-     showFile(row) {
 
-       for (let list in this.relevantAttachments) {
 
-         this.$set(this.relevantAttachments[list], "fUrl", row.url);
 
-         this.$set(this.relevantAttachments[list], "fName", row.fileName);
 
-       }
 
-     },
 
-     printSomething() {
 
-       // 此处的style即为打印时的样式
 
-       const style =
 
-         "@media print { .print-div{ padding:8px;background-color:#cccccc;line-height:12px } .red{ color:#f00} .green{color:green} td{text-align: center}}";
 
-       print({
 
-         printable: "print_area3",
 
-         type: "html",
 
-         style: style, // 亦可使用引入的外部css;
 
-         scanStyles: false,
 
-       });
 
-     },
 
-     printSomething1() {
 
-       // 此处的style即为打印时的样式
 
-       const style =
 
-         "@media print { .print-div{ padding:8px;background-color:#cccccc;line-height:12px } .red{ color:#f00} .green{color:green} td{text-align: center}}";
 
-       print({
 
-         printable: "print_area2",
 
-         type: "html",
 
-         style: style, // 亦可使用引入的外部css;
 
-         scanStyles: false,
 
-       });
 
-     },
 
-     printSomething2() {
 
-       // 此处的style即为打印时的样式
 
-       const style =
 
-         "@media print { .print-div{ padding:8px;background-color:#cccccc;line-height:12px } .red{ color:#f00} .green{color:green} td{text-align: center}}";
 
-       print({
 
-         printable: "print_area1",
 
-         type: "html",
 
-         style: style, // 亦可使用引入的外部css;
 
-         scanStyles: false,
 
-       });
 
-       this.addList();
 
-       this.editDialogVisible_sss = false;
 
-     },
 
-     // 新增附件上传
 
-     addRelevt() {
 
-       this.relevantAttachments.push({
 
-         fUrl: null,
 
-         fName: null,
 
-         createBy: this.form.createBy,
 
-         createTime: Date.parse(new Date()),
 
-       });
 
-     },
 
-     // 新增作业费协议
 
-     addAgreement() {
 
-       if (!this.form.fCorpid) {
 
-         this.$message({
 
-           message: "请维护货权方",
 
-           type: "warning",
 
-         });
 
-       } else {
 
-         this.whgenlegList = [];
 
-         this.dialogWhgenlegList = [];
 
-         this.whgenlegTotal = 0;
 
-         this.warehousingagreement = true;
 
-         this.getWhgenlegList();
 
-       }
 
-     },
 
-     // 新增付款作业费协议
 
-     addAgreements() {
 
-       if (!this.form.fCorpid) {
 
-         this.$message({
 
-           message: "请维护货权方",
 
-           type: "warning",
 
-         });
 
-       } else {
 
-         this.whgenlegList = [];
 
-         this.dialogWhgenlegList = [];
 
-         this.whgenlegTotal = 0;
 
-         this.warehousingagreements = true;
 
-         this.getWhgenlegList();
 
-       }
 
-     },
 
-     // 新增list
 
-     addRelevant(status) {
 
-       let corpidStatus =
 
-         typeof this.form.fPlannetweight === "undefined" ||
 
-         this.form.fPlannetweight == null ||
 
-         this.form.fPlannetweight === "";
 
-       let ftrademodeids =
 
-         typeof this.form.fPlangrossweight === "undefined" ||
 
-         this.form.fPlangrossweight == null ||
 
-         this.form.fPlangrossweight === "";
 
-       let warehouseidStatus =
 
-         typeof this.form.fPlanqty === "undefined" ||
 
-         this.form.fPlanqty == null ||
 
-         this.form.fPlanqty === "";
 
-       if (corpidStatus || warehouseidStatus || ftrademodeids) {
 
-         this.$message({
 
-           message: "请维护计划净重,计划毛重,计划件数",
 
-           type: "warning",
 
-         });
 
-         return false;
 
-       }
 
-       this.fPlaNnumber = this.form.fPlannetweight / this.form.fPlanqty;
 
-       this.fPlangNumber = this.form.fPlangrossweight / this.form.fPlanqty;
 
-       (this.planningList.fPlanqty =
 
-         Number(this.form.fPlanqty) - Number(this.mum)),
 
-         (this.planningList.fPlannetweight = (
 
-           Number(this.fPlaNnumber) * Number(this.planningList.fPlanqty)
 
-         ).toFixed(2)),
 
-         (this.planningList.fPlangrossweight = (
 
-           Number(this.fPlangNumber) * Number(this.planningList.fPlanqty)
 
-         ).toFixed(2)),
 
-         (this.weightList = true);
 
-     },
 
-     // 收货单打印界面
 
-     showEditDialog_s() {
 
-       if (this.Printinglist.length > 0) {
 
-         this.editDialogVisible_s = true;
 
-         for (let aorp in this.Printinglist) {
 
-           var date = new Date(this.Printinglist[aorp].fBsdate);
 
-           var Y = date.getFullYear() + "-";
 
-           var M =
 
-             (date.getMonth() + 1 < 10
 
-               ? "0" + (date.getMonth() + 1)
 
-               : date.getMonth() + 1) + "-";
 
-           var D =
 
-             (date.getDate() < 10 ? "0" + date.getDate() : date.getDate()) + " ";
 
-           this.$set(this.Printinglist[aorp], "fBsdate", Y + M + D);
 
-         }
 
-         for (let corp in this.fMblnoOptions) {
 
-           if (this.form.fCorpid === this.fMblnoOptions[corp].fId) {
 
-             this.$set(this.form, "fCorpid", this.fMblnoOptions[corp].fName);
 
-           }
 
-         }
 
-         for (let sorp in this.warehouseOptions) {
 
-           if (this.form.fWarehouseid === this.warehouseOptions[sorp].fId) {
 
-             this.$set(
 
-               this.form,
 
-               "fWarehouseid",
 
-               this.warehouseOptions[sorp].fName
 
-             );
 
-           }
 
-         }
 
-       } else {
 
-         this.$message.error("请选择需要打印的明细!");
 
-       }
 
-     },
 
-     closeDialog() {
 
-       for (let aorp in this.Printinglist) {
 
-         this.$set(
 
-           this.Printinglist[aorp],
 
-           "fBsdate",
 
-           Date.parse(this.Printinglist[aorp].fBsdate)
 
-         );
 
-       }
 
-     },
 
-     showEditDialog_ss() {
 
-       if (this.Printinglist.length > 0) {
 
-         for (let li in this.Printinglist) {
 
-           if (this.dataListSelection.length > 0) {
 
-             this.fTruckno = this.dataListSelection[0].fTruckno;
 
-             this.fCntrtype = this.dataListSelection[0].fCntrtype;
 
-             this.fGoodsids = this.dataListSelection[0].fGoodsids;
 
-             this.fPackagespecs = this.dataListSelection[0].fPackagespecs;
 
-             var date = new Date(this.dataListSelection[0].fBsdate);
 
-             var Y = date.getFullYear() + "-";
 
-             var M =
 
-               (date.getMonth() + 1 < 10
 
-                 ? "0" + (date.getMonth() + 1)
 
-                 : date.getMonth() + 1) + "-";
 
-             var D =
 
-               (date.getDate() < 10 ? "0" + date.getDate() : date.getDate()) +
 
-               " ";
 
-             this.fBsdates = Y + M + D;
 
-           }
 
-           for (let list in this.goodsOptions) {
 
-             if (
 
-               this.Printinglist[li].fGoodsid === this.goodsOptions[list].fId
 
-             ) {
 
-               this.$set(
 
-                 this.Printinglist[li],
 
-                 "fGoodsids",
 
-                 this.goodsOptions[list].fName
 
-               );
 
-             }
 
-           }
 
-         }
 
-         this.editDialogVisible_ss = true;
 
-       } else {
 
-         this.$message.error("请选择需要打印的明细!");
 
-       }
 
-     },
 
-     showEditDialog_sss() {
 
-       if (this.Printinglist.length > 0) {
 
-         for (let li in this.Printinglist) {
 
-           if (!this.Printinglist[li].fId) {
 
-             this.$message.error("请先保存!");
 
-             return false;
 
-           }
 
-           if (this.dataListSelection.length > 0) {
 
-             this.fTruckno = this.dataListSelection[0].fTruckno;
 
-             this.fCntrtype = this.dataListSelection[0].fCntrtype;
 
-             this.fGoodsids = this.dataListSelection[0].fGoodsids;
 
-             this.fDriverTel = this.dataListSelection[0].fDriverTel;
 
-             this.fPackagespecs = this.dataListSelection[0].fPackagespecs;
 
-             var date = new Date(this.dataListSelection[0].fBsdate);
 
-             var Y = date.getFullYear() + "-";
 
-             var M =
 
-               (date.getMonth() + 1 < 10
 
-                 ? "0" + (date.getMonth() + 1)
 
-                 : date.getMonth() + 1) + "-";
 
-             var D =
 
-               (date.getDate() < 10 ? "0" + date.getDate() : date.getDate()) +
 
-               " ";
 
-             this.fBsdates = Y + M + D;
 
-           }
 
-           for (let list in this.goodsOptions) {
 
-             if (
 
-               this.Printinglist[li].fGoodsid === this.goodsOptions[list].fId
 
-             ) {
 
-               this.$set(
 
-                 this.Printinglist[li],
 
-                 "fGoodsids",
 
-                 this.goodsOptions[list].fName
 
-               );
 
-             }
 
-           }
 
-         }
 
-         if (this.Printinglist.length > 0) {
 
-           for (let warehouseCr in this.Printinglist) {
 
-             if (
 
-               this.Printinglist[warehouseCr].fTruckno !=
 
-               this.Printinglist[0].fTruckno
 
-             ) {
 
-               this.$message.error("请选择车相同车号");
 
-               return false;
 
-             }
 
-             if (
 
-               this.Printinglist[warehouseCr].fDriverName !=
 
-               this.Printinglist[0].fDriverName
 
-             ) {
 
-               this.$message.error("请选择相同司机名");
 
-               return false;
 
-             }
 
-             if (!this.Printinglist[warehouseCr].fGoodsid) {
 
-               this.$message.error("请选择品名");
 
-               return false;
 
-             }
 
-             if (!this.Printinglist[warehouseCr].fWarehouselocid) {
 
-               this.$message.error("请选择库区");
 
-               return false;
 
-             }
 
-             if (!this.Printinglist[warehouseCr].fGrossweight) {
 
-               this.$message.error("请选择入库毛重");
 
-               return false;
 
-             }
 
-             if (!this.Printinglist[warehouseCr].fNetweight) {
 
-               this.$message.error("请选择入库净重");
 
-               return false;
 
-             }
 
-             if (!this.Printinglist[warehouseCr].fPackagespecs) {
 
-               this.$message.error("请输入包装规格");
 
-               return false;
 
-             }
 
-             if (!this.Printinglist[warehouseCr].fMarks) {
 
-               this.$message.error("请输入品牌");
 
-               return false;
 
-             }
 
-             if (!this.Printinglist[warehouseCr].fQty) {
 
-               this.$message.error("请选择入库件数");
 
-               return false;
 
-             }
 
-             if (!this.Printinglist[warehouseCr].fDriverName) {
 
-               this.$message.error("请输入司机姓名");
 
-               return false;
 
-             }
 
-             if (!this.Printinglist[warehouseCr].fDriverTel) {
 
-               this.$message.error("请输入司机电话");
 
-               return false;
 
-             }
 
-             if (!this.Printinglist[warehouseCr].fTruckno) {
 
-               this.$message.error("请输入车号");
 
-               return false;
 
-             }
 
-           }
 
-           this.editDialogVisible_sss = true;
 
-         }
 
-       } else {
 
-         this.$message.error("请选择需要打印的明细!");
 
-       }
 
-     },
 
-     // 收款信息
 
-     addCollection() {
 
-       this.warehouseDrList.push({
 
-         fCorpid: null,
 
-         fFeeid: null,
 
-         fFeeUnitid: null,
 
-         fQty: null,
 
-         fUnitprice: null,
 
-         fAmount: null,
 
-         fCurrency: "RMB",
 
-         fExrate: "1",
 
-         fTaxrate: this.fTaxrate,
 
-         fCxrate: null,
 
-         fRate: null,
 
-         remarks: null,
 
-       });
 
-     },
 
-     addpayment() {
 
-       this.warehouseCrList.push({
 
-         fCorpid: null,
 
-         fFeeid: null,
 
-         fFeeUnitid: null,
 
-         fQty: null,
 
-         fUnitprice: null,
 
-         fAmount: null,
 
-         fCurrency: "RMB",
 
-         fExrate: "1",
 
-         fTaxrate: this.fTaxrate,
 
-         fCxrate: null,
 
-         fRate: null,
 
-         remarks: null,
 
-       });
 
-     },
 
-     queryUser() {
 
-       queryUserVal().then((response) => {
 
-         if (response.user !== null) {
 
-           this.userVal = response.user;
 
-           this.$set(this.form, "fDeptid", this.userVal.deptId);
 
-           this.$set(this.form, "createBy", this.userVal.userName);
 
-           this.$set(this.form, "fIfdamage", "1");
 
-           this.$set(this.form, "fIfweigh", "1");
 
-           this.$set(this.form, "fTrademodeid", "1");
 
-           this.$set(this.form, "createTime", Date.parse(new Date()));
 
-         }
 
-         if (response.dept !== null) {
 
-           this.deptOptions = [];
 
-           this.deptOptions.push(response.dept);
 
-         }
 
-       });
 
-     },
 
-     /** 查询仓库主(出入库)列表 */
 
-     getList() {
 
-       this.loading = true;
 
-       listWarehousebills(this.queryParams).then((response) => {
 
-         console.log(response)
 
-         this.warehousebillsList = response.rows;
 
-         this.total = response.total;
 
-         this.loading = false;
 
-       });
 
-     },
 
-     // 查询作业费信息
 
-     getWhgenlegList() {
 
-       // this.queryParams.fCorpid = this.form.fCorpid;
 
-       this.queryParams.fLineno = this.form.fCorpid;
 
-       operationAgreement(this.queryParams).then((response) => {
 
-         this.tasklegList = response.rows;
 
-         for (let li in this.tasklegList) {
 
-           this.$set(
 
-             this.tasklegList[li],
 
-             "fFeeUnitid",
 
-             this.tasklegList[li].fFeeUnitid + ""
 
-           );
 
-         }
 
-         this.whgenlegTotal = response.total;
 
-       });
 
-     },
 
-     // 导入计划重量
 
-     costList() {
 
-       if (Number(this.planningList.fPlanqty) > Number(this.form.fPlanqty)) {
 
-         this.$message({
 
-           message: "计划费件数不能大于主表计划费件数!",
 
-           type: "warning",
 
-         });
 
-         return false;
 
-       }
 
-       if (Number(this.planningList.fPlanqty === 0)) {
 
-         this.$message({
 
-           message: "计划件数不能为0",
 
-           type: "warning",
 
-         });
 
-         return false;
 
-       }
 
-       this.dataList.push({
 
-         fBsdate: this.form.fBsdate,
 
-         fGoodsid: null,
 
-         fCntrtype: null,
 
-         fCntqty: 1,
 
-         fNetweight: this.planningList.fPlannetweight,
 
-         fPlanvolumn: 0,
 
-         fGrossweight: this.planningList.fPlangrossweight,
 
-         fQty: this.planningList.fPlanqty,
 
-         fPackagespecs: null,
 
-         fWarehouselocid: null,
 
-         fBoxno: null,
 
-         fMarks: this.form.fMarks,
 
-         fGoodsval: null,
 
-         fTruckno: null,
 
-         remark: null,
 
-         fBillstatus: 10,
 
-       });
 
-       this.weightList = false;
 
-     },
 
-     // 导入付款信息
 
-     whgenlegData() {
 
-       if (this.dialogWhgenlegList.length === 0) {
 
-         this.$message({
 
-           message: "请选择需要导入的数据",
 
-           type: "warning",
 
-         });
 
-       } else {
 
-         for (let whgen in this.dialogWhgenlegList) {
 
-           let feeId = this.dialogWhgenlegList[whgen].feeFId;
 
-           getFees(feeId).then((response) => {
 
-             this.fWbuOptions.push(response.data);
 
-           });
 
-           this.warehouseDrList.push({
 
-             fCorpid: this.dialogWhgenlegList[whgen].fCorpid,
 
-             fFeeid: feeId,
 
-             fFeeUnitid: this.dialogWhgenlegList[whgen].fFeeUnitid + "",
 
-             fUnitprice: this.dialogWhgenlegList[whgen].fPrice,
 
-             fCurrency: "RMB",
 
-             fExrate: "1",
 
-             fTaxrate: this.fTaxrate,
 
-           });
 
-         }
 
-         for (let list in this.warehouseDrList) {
 
-           if (this.warehouseDrList[list].fFeeUnitid == 1) {
 
-             this.$set(this.warehouseDrList[list], "fQty", this.fQty.toFixed(2));
 
-           } else if (this.warehouseDrList[list].fFeeUnitid == 2) {
 
-             this.$set(
 
-               this.warehouseDrList[list],
 
-               "fQty",
 
-               this.fGrossweight.toFixed(2)
 
-             );
 
-           } else if (this.warehouseDrList[list].fFeeUnitid == 3) {
 
-             this.$set(
 
-               this.warehouseDrList[list],
 
-               "fQty",
 
-               this.fNetweight.toFixed(2)
 
-             );
 
-           } else {
 
-             this.$set(this.warehouseDrList[list], "fQty", 0);
 
-           }
 
-           this.$set(
 
-             this.warehouseDrList[list],
 
-             "fAmount",
 
-             (
 
-               Number(this.warehouseDrList[list].fUnitprice) *
 
-               Number(this.warehouseDrList[list].fQty)
 
-             ).toFixed(2)
 
-           );
 
-         }
 
-         this.warehousingagreement = false;
 
-       }
 
-     },
 
-     zhgenlegData() {
 
-       if (this.dialogWhgenlegList.length === 0) {
 
-         this.$message({
 
-           message: "请选择需要导入的数据",
 
-           type: "warning",
 
-         });
 
-       } else {
 
-         for (let zhgen in this.dialogWhgenlegList) {
 
-           let feeId = this.dialogWhgenlegList[zhgen].feeFId;
 
-           getFees(feeId).then((response) => {
 
-             this.fWbuOptions.push(response.data);
 
-           });
 
-           this.warehouseCrList.push({
 
-             fCorpid: this.dialogWhgenlegList[zhgen].fCorpid,
 
-             fFeeid: feeId,
 
-             fFeeUnitid: this.dialogWhgenlegList[zhgen].fFeeUnitid + "",
 
-             fUnitprice: this.dialogWhgenlegList[zhgen].fPrice,
 
-             fCurrency: "RMB",
 
-             fExrate: "1",
 
-             fTaxrate: this.fTaxrate,
 
-           });
 
-         }
 
-         for (let list in this.warehouseCrList) {
 
-           if (this.warehouseCrList[list].fFeeUnitid == 1) {
 
-             this.$set(this.warehouseCrList[list], "fQty", this.fQty.toFixed(2));
 
-           } else if (this.warehouseCrList[list].fFeeUnitid == 2) {
 
-             this.$set(
 
-               this.warehouseCrList[list],
 
-               "fQty",
 
-               this.fGrossweight.toFixed(2)
 
-             );
 
-           } else if (this.warehouseCrList[list].fFeeUnitid == 3) {
 
-             this.$set(
 
-               this.warehouseCrList[list],
 
-               "fQty",
 
-               this.fNetweight.toFixed(2)
 
-             );
 
-           } else {
 
-             this.$set(this.warehouseCrList[list], "fQty", 0);
 
-           }
 
-           this.$set(
 
-             this.warehouseCrList[list],
 
-             "fAmount",
 
-             (
 
-               Number(this.warehouseCrList[list].fUnitprice) *
 
-               Number(this.warehouseCrList[list].fQty)
 
-             ).toFixed(2)
 
-           );
 
-         }
 
-         this.warehousingagreements = false;
 
-       }
 
-     },
 
-     // 贸易方式(数据字典),对���t_trademodels 字典翻译
 
-     fTrademodeidFormat(row, column) {
 
-       return this.selectDictLabel(this.fTrademodeidOptions, row.fTrademodeid);
 
-     },
 
-     // 计费单位(数据字典),下拉选择毛重或净重字典翻译
 
-     fFeetunitFormat(row, column) {
 
-       return this.selectDictLabel(this.fFeetunitOptions, row.fFeetunit);
 
-     },
 
-     // 是否过磅(数据字典)默认 F ,过磅T 否者F 下拉选择字典翻译
 
-     fIfweighFormat(row, column) {
 
-       return this.selectDictLabel(this.fIfweighOptions, row.fIfweigh);
 
-     },
 
-     // 编号字典翻译
 
-     fStltypeidFormat(row, column) {
 
-       return this.selectDictLabel(this.fStltypeOptions, row.fStltypeid);
 
-     },
 
-     // 是否质押(数据字典),默认 F ,质押T 否者F 下拉选择字典翻译
 
-     fIfpledgeFormat(row, column) {
 
-       return this.selectDictLabel(this.fIfpledgeOptions, row.fIfpledge);
 
-     },
 
-     // 是否破损(数据字典),默认F否则T字典翻译
 
-     fIfdamageFormat(row, column) {
 
-       return this.selectDictLabel(this.fIfdamageOptions, row.fIfdamage);
 
-     },
 
-     // 单据类型(数据字典)SJRK字典翻译
 
-     fBilltypeFormat(row, column) {
 
-       return this.selectDictLabel(this.fBilltypeOptions, row.fBilltype);
 
-     },
 
-     // 状态(数据字典),N 入字典翻译
 
-     fBillstatusFormat(row, column) {
 
-       return this.selectDictLabel(this.fBillstatusOptions, row.fBillstatus);
 
-     },
 
-     // 取消按钮
 
-     cancel() {
 
-       this.open = false;
 
-       this.reset();
 
-     },
 
-     // 表单重置
 
-     reset() {
 
-       this.form = {
 
-         fId: null,
 
-         fBillno: null,
 
-         fCustomsdeclartion: null,
 
-         fOriginalbillno: null,
 
-         fDeptid: null,
 
-         fBsdeptid: null,
 
-         fContacts: null,
 
-         fTel: null,
 
-         fCorpid: null,
 
-         fTocorpid: null,
 
-         fStltypeid: null,
 
-         fBscorpno: null,
 
-         fWarehouseid: null,
 
-         fStorekeeper: null,
 
-         fBsdate: null,
 
-         fPlanqty: null,
 
-         fPlangrossweight: null,
 
-         fPlannetweight: null,
 
-         fPlanvolumn: null,
 
-         fQty: null,
 
-         fGrossweight: null,
 
-         fNetweight: null,
 
-         fVolumn: null,
 
-         fTrademodeid: null,
 
-         fSbu: null,
 
-         fFeetunit: null,
 
-         fMblno: null,
 
-         fVslvoy: null,
 
-         fEta: null,
 
-         fCustomno: null,
 
-         fIfweigh: null,
 
-         fIfpledge: null,
 
-         fIfdamage: null,
 
-         fBankcorpid: null,
 
-         fBilltype: null,
 
-         fBillstatus: null,
 
-         delFlag: null,
 
-         createBy: null,
 
-         createTime: null,
 
-         updateBy: null,
 
-         updateTime: null,
 
-         remark: null,
 
-         fCreateby: null,
 
-         fCreatetime: null,
 
-         fGoodsid: null,
 
-         fCntrtype: null,
 
-         fCntqty: null,
 
-       };
 
-       this.fMblnoOptions = [];
 
-       this.userOptions = [];
 
-       this.warehouseOptions = [];
 
-       this.fSbuOptions = [];
 
-       this.goodsOptions = [];
 
-       this.kqhouseOptions = [];
 
-       this.relevantAttachments = [];
 
-       this.KHblnoOptions = [];
 
-       this.fWbuOptions = [];
 
-       this.resetForm("form");
 
-     },
 
-     /** 搜索按钮操作 */
 
-     handleQuery() {
 
-       this.queryParams.pageNum = 1;
 
-       this.getList();
 
-     },
 
-     /** 重置按钮操作 */
 
-     resetQuery() {
 
-       this.resetForm("queryForm");
 
-       this.handleQuery();
 
-     },
 
-     // 多选框选中数据
 
-     handleSelectionChange(selection) {
 
-       this.ids = selection.map((item) => item.fId);
 
-       this.single = selection.length !== 1;
 
-       this.multiple = !selection.length;
 
-     },
 
-     // 库存明细多选
 
-     Selectinventory(selection) {
 
-       this.Printinglist = selection;
 
-       this.Printinglists = selection;
 
-       this.dataListSelection = [];
 
-       this.dataWithdrawList = [];
 
-       if (!selection || selection.length === 0) {
 
-         return false;
 
-       } else {
 
-         for (let se in selection) {
 
-           if (!selection[se].fBillstatus || selection[se].fBillstatus !== 40) {
 
-             this.dataListSelection.push(selection[se]);
 
-           } else if (
 
-             selection[se].fBillstatus &&
 
-             selection[se].fBillstatus === 40
 
-           ) {
 
-             this.dataWithdrawList.push(selection[se]);
 
-           }
 
-         }
 
-       }
 
-       // 打印回显仓库
 
-       for (let corp in this.warehouseOptions) {
 
-         this.fAddr = this.warehouseOptions[corp].fAddr;
 
-       }
 
-     },
 
-     // 收款选
 
-     Collectionoptions(selection) {
 
-       this.Collectionoptionss = selection;
 
-       for (let lest in this.fWbuOptions) {
 
-         for (let li in this.Collectionoptionss) {
 
-           if (
 
-             this.fWbuOptions[lest].fId == this.Collectionoptionss[li].fFeeid
 
-           ) {
 
-             this.$set(
 
-               this.Collectionoptionss[li],
 
-               "fFeeids",
 
-               this.fWbuOptions[lest].fName
 
-             );
 
-           }
 
-         }
 
-       }
 
-     },
 
-     // 收款删除
 
-     deleteRow(index, rows) {
 
-       rows.splice(index, 1);
 
-     },
 
-     deleteRoww(index, rows) {
 
-       rows.splice(index, 1);
 
-     },
 
-     // 付款选择
 
-     Paymentoptions(selection) {
 
-     },
 
-     /** 新增按钮操作 */
 
-     handleAdd(status) {
 
-       this.browseStatus = status;
 
-       this.reset();
 
-       this.queryUser();
 
-       this.open = true;
 
-       this.detailsHidden = false;
 
-       this.dataList = [];
 
-       this.warehouseCrList = [];
 
-       this.warehouseDrList = [];
 
-       this.relevantAttachments = [];
 
-       this.mum = 0;
 
-       this.title = "入库单";
 
-       this.formBrowseStatus = false;
 
-     },
 
-     /** 修改按钮操作 */
 
-     handleUpdate(row, status) {
 
-       this.browseStatus = status;
 
-       this.reset();
 
-       this.detailsHidden = false;
 
-       this.formBrowseStatus = false;
 
-       const fId = row.fId || this.ids;
 
-       this.dataList = [];
 
-       getWarehousebills(fId).then((response) => {
 
-         if (response.data.warehousebills) {
 
-           this.form = response.data.warehousebills;
 
-           if (this.form.fBillstatus > 2) {
 
-             this.approvalStatus = false;
 
-           } else {
 
-             this.approvalStatus = true;
 
-           }
 
-         }
 
-         if (response.data.warehouseBillsItem) {
 
-           this.dataList = response.data.warehouseBillsItem;
 
-           for (let list in this.dataList) {
 
-             if (this.dataList[list].fBillstatus > 10) {
 
-               this.formBrowseStatus = true;
 
-             }
 
-           }
 
-         }
 
-         if (response.data.corps) {
 
-           this.fMblnoOptions = response.data.corps;
 
-           this.KHblnoOptions = response.data.corps;
 
-           this.fSbuOptions = response.data.corps;
 
-         }
 
-         if (response.data.feesList) {
 
-           this.fWbuOptions = response.data.feesList;
 
-         }
 
-         if (response.data.warehouse) {
 
-           this.warehouseOptions = response.data.warehouse;
 
-         }
 
-         if (response.data.warehouseBillsItem) {
 
-           this.dataList = response.data.warehouseBillsItem;
 
-         }
 
-         if (response.data.enclosures) {
 
-           this.relevantAttachments = response.data.enclosures;
 
-         }
 
-         this.$set(this.form, "fStltypeid", this.form.fStltypeid + "");
 
-         this.$set(this.form, "fEta", Date.parse(this.form.fEta));
 
-         this.$set(this.form, "fBsdate", Date.parse(this.form.fBsdate));
 
-         this.$set(this.form, "createTime", Date.parse(this.form.createTime));
 
-         this.$set(this.form, "fTrademodeid", this.form.fTrademodeid + "");
 
-         this.$set(
 
-           this.form,
 
-           "fPlannetweight",
 
-           this.form.fPlannetweight.toFixed(2)
 
-         );
 
-         this.$set(
 
-           this.form,
 
-           "fPlangrossweight",
 
-           this.form.fPlangrossweight.toFixed(2)
 
-         );
 
-         for (let list in this.dataList) {
 
-           this.$set(
 
-             this.dataList[list],
 
-             "fBsdate",
 
-             Date.parse(this.dataList[list].fBsdate)
 
-           );
 
-         }
 
-         this.goodsOptions = response.data.goodsList;
 
-         this.kqhouseOptions = response.data.warehouseAreas;
 
-         this.warehouseDrList = response.data.warehousebillsfeesDr;
 
-         for (let dr in this.warehouseDrList) {
 
-           this.$set(
 
-             this.warehouseDrList[dr],
 
-             "fFeeUnitid",
 
-             this.warehouseDrList[dr].fFeeunitid + ""
 
-           );
 
-           this.$set(
 
-             this.warehouseDrList[dr],
 
-             "fQty",
 
-             this.warehouseDrList[dr].fQty.toFixed(2)
 
-           );
 
-           this.$set(
 
-             this.warehouseDrList[dr],
 
-             "fAmount",
 
-             this.warehouseDrList[dr].fAmount.toFixed(2)
 
-           );
 
-         }
 
-         this.warehouseCrList = response.data.warehousebillsfeesCr;
 
-         for (let cr in this.warehouseCrList) {
 
-           this.$set(
 
-             this.warehouseCrList[cr],
 
-             "fFeeUnitid",
 
-             this.warehouseCrList[cr].fFeeunitid + ""
 
-           );
 
-         }
 
-         this.userOptions = response.data.sysUser;
 
-         this.open = true;
 
-         this.title = "修改仓入库";
 
-       });
 
-     },
 
-     // 库存总账多选框
 
-     whgenlegSelectionChange(selection) {
 
-       this.dialogWhgenlegList = selection;
 
-     },
 
-     // 合计
 
-     getSummaries(param) {
 
-       const { columns, data } = param;
 
-       const sums = [];
 
-       var values = [];
 
-       columns.forEach((column, index) => {
 
-         if (index === 0) {
 
-           sums[index] = "";
 
-           return;
 
-         }
 
-         if (column.property === "fPlanvolumn") {
 
-           values = data.map((item) => Number(item["fPlanvolumn"]));
 
-         }
 
-         if (column.property === "fGrossweight") {
 
-           values = data.map((item) => Number(item["fGrossweight"]));
 
-         }
 
-         if (column.property === "fNetweight") {
 
-           values = data.map((item) => Number(item["fNetweight"]));
 
-         }
 
-         if (column.property === "fQty") {
 
-           values = data.map((item) => Number(item["fQty"]));
 
-         }
 
-         if (column.property === "fCntqty") {
 
-           values = data.map((item) => Number(item["fCntqty"]));
 
-         }
 
-         if (
 
-           column.property === "fPlanvolumn" ||
 
-           column.property === "fGrossweight" ||
 
-           column.property === "fNetweight" ||
 
-           column.property === "fQty" ||
 
-           column.property === "fCntqty"
 
-         ) {
 
-           sums[index] = values.reduce((prev, curr) => {
 
-             const value = Number(curr);
 
-             if (!isNaN(value)) {
 
-               if (column.property === "fPlanvolumn") {
 
-                 this.fPlanvolumn = prev + curr;
 
-               }
 
-               if (column.property === "fGrossweight") {
 
-                 this.fGrossweight = prev + curr;
 
-               }
 
-               if (column.property === "fNetweight") {
 
-                 this.fNetweight = prev + curr;
 
-               }
 
-               if (column.property === "fQty") {
 
-                 this.fQty = prev + curr;
 
-                 this.mum = prev + curr;
 
-               }
 
-               if (column.property === "fCntqty") {
 
-                 this.fCntqty = prev + curr;
 
-               }
 
-               return prev + curr;
 
-             } else {
 
-               if (column.property === "fQty") {
 
-                 this.fQty = prev;
 
-                 this.mum = prev;
 
-               }
 
-               return prev;
 
-             }
 
-           }, 0);
 
-           sums[index] = sums[index].toFixed(2);
 
-         }
 
-       });
 
-       this.sums = sums;
 
-       return sums;
 
-     },
 
-     // 付款合计
 
-     warehouseDrSummaries(param) {
 
-       const { columns, data } = param;
 
-       const sums = [];
 
-       columns.forEach((column, index) => {
 
-         if (index === 0) {
 
-           sums[index] = "合计";
 
-           return;
 
-         }
 
-         const values = data.map((item) => Number(item[column.property]));
 
-         if (
 
-           column.property === "fUnitprice" ||
 
-           column.property === "fAmount" ||
 
-           column.property === "fQty" ||
 
-           column.property === "fQty"
 
-         ) {
 
-           sums[index] = values.reduce((prev, curr) => {
 
-             const value = Number(curr);
 
-             if (!isNaN(value)) {
 
-               return prev + curr;
 
-             } else {
 
-               return prev;
 
-             }
 
-           }, 0);
 
-           sums[index] = sums[index].toFixed(2);
 
-         }
 
-       });
 
-       return sums;
 
-     },
 
-     // 计划废用导入计算
 
-     changeList(row) {
 
-       this.fPlaNnumber = this.form.fPlannetweight / this.form.fPlanqty;
 
-       this.fPlangNumber = this.form.fPlangrossweight / this.form.fPlanqty;
 
-       this.planningList.fPlannetweight = (
 
-         Number(this.planningList.fPlanqty) * Number(this.fPlaNnumber)
 
-       ).toFixed(2);
 
-       this.planningList.fPlangrossweight = (
 
-         Number(this.planningList.fPlanqty) * Number(this.fPlangNumber)
 
-       ).toFixed(2);
 
-     },
 
-     // 数量计算
 
-     changeContractAmt(row) {
 
-       let fQty = 0;
 
-       let fUnitprice = 0;
 
-       if (row.fUnitprice) {
 
-         fUnitprice = row.fUnitprice;
 
-       }
 
-       if (row.fQty) {
 
-         fQty = row.fQty;
 
-       }
 
-       this.$set(row, "fAmount", Number(fUnitprice) * Number(fQty)).toFixed(2);
 
-     },
 
-     changefCorpid(row) {
 
-       this.$set(row, "fSbu", row.fCorpid);
 
-       for (let corp in this.fMblnoOptions) {
 
-         if (row.fCorpid === this.fMblnoOptions[corp].fId) {
 
-           this.$set(
 
-             this.form,
 
-             "fStltypeid",
 
-             this.fMblnoOptions[corp].fStltypeid + ""
 
-           );
 
-         }
 
-       }
 
-     },
 
-     // 品名改变
 
-     changefGoodsid(row) {
 
-       for (let corp in this.goodsOptions) {
 
-         if (row.fGoodsid === this.goodsOptions[corp].fId) {
 
-           this.$set(
 
-             row,
 
-             "fPackagespecs",
 
-             this.goodsOptions[corp].fPackagespecs
 
-           );
 
-         }
 
-       }
 
-     },
 
-     // 变更计价单位
 
-     changeFeeUnit(row) {
 
-       if (!row.fFeeUnitid) {
 
-         return false;
 
-       }
 
-       if (row.fFeeUnitid === "2") {
 
-         this.$set(row, "fQty", this.fGrossweight);
 
-       } else if (row.fFeeUnitid === "1") {
 
-         this.$set(row, "fQty", this.fQty);
 
-       } else if (row.fFeeUnitid === "3") {
 
-         this.$set(row, "fQty", this.fNetweight);
 
-       } else {
 
-         this.$set(row, "fQty", 0);
 
-       }
 
-       if (row.fUnitprice) {
 
-         this.$set(
 
-           row,
 
-           "fAmount",
 
-           parseFloat(Number(row.fUnitprice) * Number(row.fQty)).toFixed(2)
 
-         );
 
-       }
 
-     },
 
-     changefBsdate(row) {
 
-       if (this.dataList.length > 0) {
 
-         for (var i = 0; i < this.dataList.length; i++) {
 
-           this.$set(this.dataList[i], "fBsdate", row);
 
-         }
 
-       }
 
-     },
 
-     // 入账
 
-     creditClick() {
 
-       this.$refs["form"].validate((valid) => {
 
-         for (let warehouseCr in this.dataListSelection) {
 
-           if (this.dataListSelection[warehouseCr].fBillstatus === 20) {
 
-             this.$message.error("请先卸货");
 
-             return false;
 
-           }
 
-           if (this.dataListSelection[warehouseCr].fBillstatus != 30) {
 
-             this.$message.error("请先打印作业单");
 
-             return false;
 
-           }
 
-           if (!this.dataListSelection[warehouseCr].fWarehouselocid) {
 
-             this.$message.error("请选择库区");
 
-             return false;
 
-           }
 
-           if (!this.dataListSelection[warehouseCr].fGoodsid) {
 
-             this.$message.error("请选择品名");
 
-             return false;
 
-           }
 
-           if (!this.dataListSelection[warehouseCr].fGrossweight) {
 
-             this.$message.error("请选择入库毛重");
 
-             return false;
 
-           }
 
-           if (!this.dataListSelection[warehouseCr].fNetweight) {
 
-             this.$message.error("请选择入库净重");
 
-             return false;
 
-           }
 
-           if (!this.dataListSelection[warehouseCr].fQty) {
 
-             this.$message.error("请选择入库件数");
 
-             return false;
 
-           }
 
-           if (!this.dataListSelection[warehouseCr].fDriverName) {
 
-             this.$message.error("请输入司机姓名");
 
-             return false;
 
-           }
 
-         }
 
-         if (valid) {
 
-           let formData = new window.FormData();
 
-           formData.append("warehouseBills", JSON.stringify(this.form));
 
-           formData.append(
 
-             "warehousebillsitems",
 
-             JSON.stringify(this.dataListSelection)
 
-           );
 
-           formData.append(
 
-             "warehousebillsfeesDr",
 
-             JSON.stringify(this.warehouseDrList)
 
-           );
 
-           formData.append(
 
-             "warehousebillsfeesCr",
 
-             JSON.stringify(this.warehouseCrList)
 
-           );
 
-           formData.append(
 
-             "tEnclosure",
 
-             JSON.stringify(this.relevantAttachments)
 
-           );
 
-           formData.append("whgenleg", JSON.stringify(this.relevantAttachments));
 
-           addWhgenleg(formData).then((response) => {
 
-             this.fid = response.data;
 
-             this.formBrowseStatus = true;
 
-             this.msgSuccess("入账成功");
 
-             for (let li in this.dataListSelection) {
 
-               for (let i in this.dataList) {
 
-                 let fQty =
 
-                   this.dataList[i].fQty === this.dataListSelection[li].fQty;
 
-                 let fMblno =
 
-                   this.dataList[i].fMblno === this.dataListSelection[li].fMblno;
 
-                 let fBillstatus =
 
-                   this.dataList[i].fBillstatus ===
 
-                   this.dataListSelection[li].fBillstatus;
 
-                 let fPackagespecs =
 
-                   this.dataList[i].fPackagespecs ===
 
-                   this.dataListSelection[li].fPackagespecs;
 
-                 let fWarehouselocid =
 
-                   this.dataList[i].fWarehouselocid ===
 
-                   this.dataListSelection[li].fWarehouselocid;
 
-                 let fGoodsid =
 
-                   this.dataList[i].fGoodsid ===
 
-                   this.dataListSelection[li].fGoodsid;
 
-                 let fNetweight =
 
-                   this.dataList[i].fNetweight ===
 
-                   this.dataListSelection[li].fNetweight;
 
-                 let fGrossweight =
 
-                   this.dataList[i].fGrossweight ===
 
-                   this.dataListSelection[li].fGrossweight;
 
-                 if (
 
-                   fMblno &&
 
-                   fGoodsid &&
 
-                   fBillstatus &&
 
-                   fPackagespecs &&
 
-                   fWarehouselocid &&
 
-                   fGrossweight &&
 
-                   fNetweight &&
 
-                   fQty
 
-                 ) {
 
-                   this.$set(this.dataList[i], "fBillstatus", 40);
 
-                 }
 
-               }
 
-             }
 
-             this.$refs.tableList.clearSelection();
 
-           });
 
-         }
 
-       });
 
-     },
 
-     // 打印作业单
 
-     addList() {
 
-       this.$refs["form"].validate((valid) => {
 
-         if (valid) {
 
-           let formData = new window.FormData();
 
-           formData.append("warehouseBills", JSON.stringify(this.form));
 
-           formData.append(
 
-             "warehousebillsitems",
 
-             JSON.stringify(this.dataListSelection)
 
-           );
 
-           formData.append(
 
-             "warehousebillsfeesDr",
 
-             JSON.stringify(this.warehouseDrList)
 
-           );
 
-           formData.append(
 
-             "warehousebillsfeesCr",
 
-             JSON.stringify(this.warehouseCrList)
 
-           );
 
-           formData.append(
 
-             "tEnclosure",
 
-             JSON.stringify(this.relevantAttachments)
 
-           );
 
-           for (let li in this.dataListSelection) {
 
-             this.dataListSelection[li].fBillstatus = 20;
 
-           }
 
-           addJoblist(formData).then((response) => {
 
-             this.formBrowseStatus = true;
 
-             for (let li in this.dataListSelection) {
 
-               for (let i in this.dataList) {
 
-                 let fQty =
 
-                   this.dataList[i].fQty === this.dataListSelection[li].fQty;
 
-                 let fBsdate =
 
-                   this.dataList[i].fBsdate ===
 
-                   this.dataListSelection[li].fBsdate;
 
-                 let fGoodsid =
 
-                   this.dataList[i].fGoodsid ===
 
-                   this.dataListSelection[li].fGoodsid;
 
-                 let fcntrtype =
 
-                   this.dataList[i].fcntrtype ===
 
-                   this.dataListSelection[li].fcntrtype;
 
-                 let fNetweight =
 
-                   this.dataList[i].fNetweight ===
 
-                   this.dataListSelection[li].fNetweight;
 
-                 let fGrossweight =
 
-                   this.dataList[i].fGrossweight ===
 
-                   this.dataListSelection[li].fGrossweight;
 
-                 if (
 
-                   fBsdate &&
 
-                   fGoodsid &&
 
-                   fcntrtype &&
 
-                   fGrossweight &&
 
-                   fNetweight &&
 
-                   fQty
 
-                 ) {
 
-                   this.$set(this.dataList[i], "fBillstatus", 20);
 
-                   for (let list in response.data.warehousebillsitems) {
 
-                     this.$set(
 
-                       this.dataList[i],
 
-                       "fSerialNumber",
 
-                       response.data.warehousebillsitems[list].fSerialNumber
 
-                     );
 
-                   }
 
-                 }
 
-               }
 
-             }
 
-             this.$refs.tableList.clearSelection();
 
-           });
 
-         }
 
-       });
 
-     },
 
-     // 撤回入账
 
-     withdrawClick() {
 
-       // 撤回入库
 
-       let formData = new window.FormData();
 
-       formData.append("warehouseBills", JSON.stringify(this.form));
 
-       formData.append(
 
-         "warehousebillsitems",
 
-         JSON.stringify(this.dataWithdrawList)
 
-       );
 
-       formData.append(
 
-         "warehousebillsfeesDr",
 
-         JSON.stringify(this.warehouseDrList)
 
-       );
 
-       formData.append(
 
-         "warehousebillsfeesCr",
 
-         JSON.stringify(this.warehouseCrList)
 
-       );
 
-       formData.append("tEnclosure", JSON.stringify(this.relevantAttachments));
 
-       updateCredit(formData).then((response) => {
 
-         this.fid = response.data;
 
-         this.formBrowseStatus = false;
 
-         this.msgSuccess("撤销入账成功");
 
-         for (let li in this.dataWithdrawList) {
 
-           for (let i in this.dataList) {
 
-             let fQty = this.dataList[i].fQty === this.dataWithdrawList[li].fQty;
 
-             let fBsdate =
 
-               this.dataList[i].fBsdate === this.dataWithdrawList[li].fBsdate;
 
-             let fGoodsid =
 
-               this.dataList[i].fGoodsid === this.dataWithdrawList[li].fGoodsid;
 
-             let fcntrtype =
 
-               this.dataList[i].fcntrtype ===
 
-               this.dataWithdrawList[li].fcntrtype;
 
-             let fNetweight =
 
-               this.dataList[i].fNetweight ===
 
-               this.dataWithdrawList[li].fNetweight;
 
-             let fGrossweight =
 
-               this.dataList[i].fGrossweight ===
 
-               this.dataWithdrawList[li].fGrossweight;
 
-             if (
 
-               fBsdate &&
 
-               fGoodsid &&
 
-               fcntrtype &&
 
-               fGrossweight &&
 
-               fNetweight &&
 
-               fQty
 
-             ) {
 
-               this.$set(this.dataList[i], "fBillstatus", 10);
 
-             }
 
-           }
 
-         }
 
-         this.$refs.tableList.clearSelection();
 
-       });
 
-     },
 
-     // 卸货按钮
 
-     discharge() {
 
-       if (this.Printinglist.length > 0) {
 
-         for (let warehouseCr in this.Printinglist) {
 
-           if (this.Printinglist[warehouseCr].fBillstatus === 10) {
 
-             this.$message.error("请先打印作业单");
 
-             return false;
 
-           }
 
-           if (this.Printinglist[warehouseCr].fBillstatus === 30) {
 
-             this.$message.error("请勿重复卸货");
 
-             return false;
 
-           }
 
-           if (this.Printinglist[warehouseCr].fBillstatus === 40) {
 
-             this.$message.error("请勿重复卸货");
 
-             return false;
 
-           }
 
-         }
 
-         this.$refs["form"].validate((valid) => {
 
-           if (valid) {
 
-             let formData = new window.FormData();
 
-             formData.append("warehouseBills", JSON.stringify(this.form));
 
-             formData.append(
 
-               "warehousebillsitems",
 
-               JSON.stringify(this.dataListSelection)
 
-             );
 
-             formData.append(
 
-               "warehousebillsfeesDr",
 
-               JSON.stringify(this.warehouseDrList)
 
-             );
 
-             formData.append(
 
-               "warehousebillsfeesCr",
 
-               JSON.stringify(this.warehouseCrList)
 
-             );
 
-             formData.append(
 
-               "tEnclosure",
 
-               JSON.stringify(this.relevantAttachments)
 
-             );
 
-             for (let li in this.dataListSelection) {
 
-               this.dataListSelection[li].fBillstatus = 30;
 
-             }
 
-             if (!this.form.fId) {
 
-               this.form.fId = this.fid;
 
-             }
 
-             disChargelist(formData).then((response) => {
 
-               for (let li in this.dataListSelection) {
 
-                 for (let i in this.dataList) {
 
-                   let fQty =
 
-                     this.dataList[i].fQty === this.dataListSelection[li].fQty;
 
-                   let fBsdate =
 
-                     this.dataList[i].fBsdate ===
 
-                     this.dataListSelection[li].fBsdate;
 
-                   let fGoodsid =
 
-                     this.dataList[i].fGoodsid ===
 
-                     this.dataListSelection[li].fGoodsid;
 
-                   let fcntrtype =
 
-                     this.dataList[i].fcntrtype ===
 
-                     this.dataListSelection[li].fcntrtype;
 
-                   let fNetweight =
 
-                     this.dataList[i].fNetweight ===
 
-                     this.dataListSelection[li].fNetweight;
 
-                   let fGrossweight =
 
-                     this.dataList[i].fGrossweight ===
 
-                     this.dataListSelection[li].fGrossweight;
 
-                   if (
 
-                     fBsdate &&
 
-                     fGoodsid &&
 
-                     fcntrtype &&
 
-                     fGrossweight &&
 
-                     fNetweight &&
 
-                     fQty
 
-                   ) {
 
-                     this.$set(this.dataList[i], "fBillstatus", 30);
 
-                   }
 
-                 }
 
-               }
 
-               this.msgSuccess("卸货成功");
 
-               this.$refs.tableList.clearSelection();
 
-             });
 
-           }
 
-         });
 
-       } else {
 
-         this.$message.error("请选择需要卸货的明细!");
 
-       }
 
-     },
 
-     /** 提交按钮 */
 
-     submitForm(status) {
 
-       if (status === 2) {
 
-         this.preservation();
 
-       } else {
 
-         this.pleaseCheck();
 
-       }
 
-     },
 
-     // 提交保存保存成功
 
-     preservation() {
 
-       this.$refs["form"].validate((valid) => {
 
-         if (valid) {
 
-           this.form.fBillstatus = status;
 
-           this.form.fNetweight = this.fNetweight;
 
-           this.form.fPlanvolumn = this.fPlanvolumn;
 
-           this.form.fGrossweight = this.fGrossweight;
 
-           this.form.fQty = this.fQty;
 
-           if (!this.form.fId) {
 
-             this.form.fId = this.fid;
 
-           }
 
-           let formDatae = new window.FormData();
 
-           // 附件数据
 
-           this.form.fBillingway = this.form.fFeetunit;
 
-           formDatae.append("tWarehouseBills", JSON.stringify(this.form));
 
-           // 库存明细
 
-           formDatae.append(
 
-             "tWarehousebillsitems",
 
-             JSON.stringify(this.dataList)
 
-           );
 
-           // 附件数据
 
-           formDatae.append(
 
-             "tEnclosure",
 
-             JSON.stringify(this.relevantAttachments)
 
-           );
 
-           // 费用明细付款
 
-           formDatae.append(
 
-             "tWarehousebillsfeesCr",
 
-             JSON.stringify(this.warehouseCrList)
 
-           );
 
-           // 收款
 
-           formDatae.append(
 
-             "tWarehousebillsfeesDr",
 
-             JSON.stringify(this.warehouseDrList)
 
-           );
 
-           addWarehousebills(formDatae).then((response) => {
 
-             this.msgSuccess("保存成功");
 
-             this.form = response.data.warehouseBills;
 
-             this.$set(this.form, "fBsdate", Date.parse(this.form.fBsdate));
 
-             this.$set(this.form, "fStltypeid", this.form.fStltypeid + "");
 
-             this.$set(this.form, "fTrademodeid", this.form.fTrademodeid + "");
 
-             this.$set(
 
-               this.form,
 
-               "createTime",
 
-               Date.parse(this.form.createTime)
 
-             );
 
-             this.$set(this.form, "fEta", Date.parse(this.form.fEta));
 
-             this.dataList = response.data.warehousebillsitems;
 
-             for (let list in this.dataList) {
 
-               this.$set(
 
-                 this.dataList[list],
 
-                 "fBsdate",
 
-                 Date.parse(this.dataList[list].fBsdate)
 
-               );
 
-             }
 
-             this.fid = response.data.warehouseBills.fId;
 
-             // this.open = true;
 
-             this.getList();
 
-           });
 
-         }
 
-       });
 
-     },
 
-     // 请核成功
 
-     pleaseCheck() {
 
-       this.$refs["form"].validate((valid) => {
 
-         if (this.dataList.length === 0) {
 
-           this.$message.error("请新增库存明细!");
 
-           return false;
 
-         }
 
-         for (let list in this.dataList) {
 
-           if (!this.dataList[list].fGoodsid) {
 
-             this.$message.error("请输入品名!");
 
-             return false;
 
-           }
 
-           if (!this.dataList[list].fWarehouselocid) {
 
-             this.$message.error("请输入库区!");
 
-             return false;
 
-           }
 
-           if (this.dataList[list].fBillstatus != 40) {
 
-             this.$message.error("请入账库存明细!");
 
-             return false;
 
-           }
 
-         }
 
-         if (valid) {
 
-           this.form.fBillstatus = status;
 
-           this.form.fNetweight = this.fNetweight;
 
-           // this.form.fPlangrossweight = this.fPlangrossweight;
 
-           // this.form.fPlannetweight = this.fPlannetweight;
 
-           this.form.fPlanvolumn = this.fPlanvolumn;
 
-           // this.form.fPlanqty = this.fPlanqty;
 
-           this.form.fGrossweight = this.fGrossweight;
 
-           this.form.fQty = this.fQty;
 
-           if (!this.form.fId) {
 
-             this.form.fId = this.fid;
 
-           }
 
-           let formData = new window.FormData();
 
-           // 附件数据
 
-           this.form.fBillingway = this.form.fFeetunit;
 
-           formData.append("tWarehouseBills", JSON.stringify(this.form));
 
-           // 库存明细
 
-           formData.append(
 
-             "tWarehousebillsitems",
 
-             JSON.stringify(this.dataList)
 
-           );
 
-           // 附件数据
 
-           formData.append(
 
-             "tEnclosure",
 
-             JSON.stringify(this.relevantAttachments)
 
-           );
 
-           // 费用明细付款
 
-           formData.append(
 
-             "tWarehousebillsfeesCr",
 
-             JSON.stringify(this.warehouseCrList)
 
-           );
 
-           // 收款
 
-           formData.append(
 
-             "tWarehousebillsfeesDr",
 
-             JSON.stringify(this.warehouseDrList)
 
-           );
 
-           addWarehouse(formData).then((response) => {
 
-             this.msgSuccess("提交成功");
 
-             this.open = false;
 
-             this.getList();
 
-           });
 
-         }
 
-       });
 
-     },
 
-     /** 删除按钮操作 */
 
-     handleDelete(row) {
 
-       const fIds = row.fId || this.ids;
 
-       this.$confirm(
 
-         '是否确认删除仓库主(出入库)编号为"' + fIds + '"的数据项?',
 
-         "警告",
 
-         {
 
-           confirmButtonText: "确定",
 
-           cancelButtonText: "取消",
 
-           type: "warning",
 
-         }
 
-       )
 
-         .then(function () {
 
-           return delWarehousebills(fIds);
 
-         })
 
-         .then(() => {
 
-           this.getList();
 
-           this.msgSuccess("删除成功");
 
-         });
 
-     },
 
-     /** 导出按钮操作 */
 
-     handleExport() {
 
-       const queryParams = this.queryParams;
 
-       this.$confirm("是否确认导出所有仓库主(出入库)数据项?", "警告", {
 
-         confirmButtonText: "确定",
 
-         cancelButtonText: "取消",
 
-         type: "warning",
 
-       })
 
-         .then(function () {
 
-           return exportWarehousebills(queryParams);
 
-         })
 
-         .then((response) => {
 
-           this.download(response.msg);
 
-         });
 
-     },
 
-     wDeleteRow(index, rows) {
 
-       rows.splice(index, 1);
 
-       if (this.dataList) {
 
-         let sum = 0;
 
-         for (let li in this.dataList) {
 
-           if (this.dataList[li].fQty) {
 
-             sum = Number(sum) + Number(this.dataList[li].fQty);
 
-           }
 
-         }
 
-         this.mum = sum;
 
-       }
 
-     },
 
-     // 查看审批流
 
-     getDataList() {
 
-       this.addOrUpdateVisible = false;
 
-     },
 
-     returnData() {
 
-       this.addOrUpdateVisib = false;
 
-     },
 
-     addOrUpdateHandle(form) {
 
-       this.addOrUpdateVisible = true;
 
-       let id = form.fId;
 
-       let actId = "110";
 
-       this.$nextTick(() => {
 
-         this.$refs.addOrUpdate.init(id, actId);
 
-       });
 
-     },
 
-     addOrUpdateHand(form) {
 
-       this.addOrUpdateVisib = true;
 
-       let id = form.fId;
 
-       let actId = "110";
 
-       this.$nextTick(() => {
 
-         this.$refs.ApprovalComments.init(id, actId);
 
-       });
 
-     },
 
-     /* 远程模糊查询用户 */
 
-     corpsRemoteMethod(name) {
 
-       if (name == null || name === "") {
 
-         return false;
 
-       }
 
-       let queryParams = { pageNum: 1, pageSize: 10, fName: name, type: 1 };
 
-       listCorps(queryParams).then((response) => {
 
-         this.fMblnoOptions = response.rows;
 
-         this.KHblnoOptions = response.rows;
 
-       });
 
-     },
 
-     /* 远程模糊查询质押银行 */
 
-     corpsRemoteMethodd(name) {
 
-       if (name == null || name === "") {
 
-         return false;
 
-       }
 
-       let queryParams = { pageNum: 1, pageSize: 10, fName: name, type: 5 };
 
-       listCorps(queryParams).then((response) => {
 
-         this.Pledgebank = response.rows;
 
-       });
 
-     },
 
-     /* 远程模糊查询商品 */
 
-     goodsRemoteMethod(name) {
 
-       if (name == null || name === "") {
 
-         return false;
 
-       }
 
-       let queryParams = { pageNum: 1, pageSize: 10, fName: name };
 
-       listGoods(queryParams).then((response) => {
 
-         this.goodsOptions = response.rows;
 
-       });
 
-     },
 
-     // 远程模糊查询费用名称
 
-     fWRemoteMethod(name) {
 
-       if (name == null || name === "") {
 
-         return false;
 
-       }
 
-       let queryParams = { pageNum: 1, pageSize: 10, fName: name };
 
-       listFees(queryParams).then((response) => {
 
-         this.fWbuOptions = response.rows;
 
-       });
 
-     },
 
-     /* 远程模糊查询经营单位 */
 
-     fSbuRemoteMethod(name) {
 
-       if (name == null || name === "") {
 
-         return false;
 
-       }
 
-       let queryParams = { pageNum: 1, pageSize: 10, fName: name };
 
-       listCorps(queryParams).then((response) => {
 
-         this.fSbuOptions = response.rows;
 
-       });
 
-     },
 
-     /* 远程模糊查询仓库 */
 
-     warehouseRemoteMethod(name) {
 
-       if (name == null || name === "") {
 
-         return false;
 
-       }
 
-       let queryParams = { pageNum: 1, pageSize: 10, fName: name };
 
-       listWarehouse(queryParams).then((response) => {
 
-         this.warehouseOptions = response.rows;
 
-       });
 
-     },
 
-     /* 远程模糊查询库区 */
 
-     kqhouseRemoteMethod(name) {
 
-       if (name == null || name === "") {
 
-         return false;
 
-       }
 
-       if (!this.form.fWarehouseid) {
 
-         this.$message.error("请输入仓库!");
 
-         return false;
 
-       }
 
-       let queryParams = {
 
-         pageNum: 1,
 
-         pageSize: 10,
 
-         fWarehouseid: this.form.fWarehouseid,
 
-         fName: name,
 
-       };
 
-       listArea(queryParams).then((response) => {
 
-         this.kqhouseOptions = response.rows;
 
-       });
 
-     },
 
-     /* 远程模糊查询操作用户 */
 
-     userRemoteMethod(name) {
 
-       if (name == null || name === "") {
 
-         return false;
 
-       }
 
-       let queryParams = { pageNum: 1, pageSize: 10, userName: name };
 
-       listUser(queryParams).then((response) => {
 
-         this.userOptions = response.rows;
 
-       });
 
-     },
 
-   },
 
- };
 
- </script>
 
- <style lang="scss">
 
- .juzhong > th {
 
-   text-align: center;
 
- }
 
- .biaoge > tr > td {
 
-   height: 50px;
 
-   text-align: center;
 
-   border-right: 1px solid #dfe6ec !important;
 
-   order-bottom: 1px solid #dfe6ec !important;
 
-   border-bottom: 1px solid #dfe6ec !important;
 
- }
 
- .el-table thead th {
 
-   background: #1890ff;
 
-   color: #fff;
 
- }
 
- .upload-demo {
 
-   margin-left: 50px;
 
- }
 
- .el-form-item {
 
-   margin-bottom: 5px !important;
 
- }
 
- .el-form-item__label {
 
-   font-size: 12px !important;
 
- }
 
- </style>
 
 
  |