| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155 |
- <template>
- <div>
- <el-card shadow="never">
- <!-- <header-title title="基本信息"> </header-title> -->
- <div>基本信息</div>
- <el-form
- :model="formData"
- ref="formName"
- label-width="110px"
- :rules="rules"
- >
- <el-row :gutter="20">
- <el-col :span="6">
- <el-form-item label="物品类型" prop="extInfo.assetType">
- <el-select
- style="width: 100%"
- disabled
- multiple
- v-model="formData.extInfo.assetType"
- placeholder="请选择"
- >
- <el-option
- v-for="item in goodsLists"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="入库类型" prop="bizType">
- <el-select
- style="width: 100%"
- disabled
- filterable
- placeholder="请选择"
- v-model="formData.bizType"
- clearable
- >
- <el-option
- v-for="item in sceneState"
- :key="item.code"
- :value="item.code"
- :label="item.label"
- ></el-option>
- </el-select> </el-form-item
- ></el-col>
- <el-col :span="6">
- <el-form-item label="单据来源" prop="documentSource">
- <el-input
- placeholder="请选择"
- disabled
- v-model="formData.sourceBizNo"
- @click.native="openDocumentSourceDialog"
- >
- </el-input>
- </el-form-item>
- </el-col>
- <!-- <el-col :span="6">
- <el-form-item label="权属部门" prop="deptName">
- <el-input
- placeholder="权属部门"
- disabled
- v-model="formData.extInfo.deptName"
- clearable
- />
- </el-form-item>
- </el-col> -->
- <el-col :span="6">
- <el-form-item label="入库时间">
- <el-date-picker
- v-model="formData.storageTime"
- type="datetime"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="选择日期时间"
- >
- </el-date-picker></el-form-item
- ></el-col>
- <el-col :span="6">
- <el-form-item label="入库登记人">
- <el-input
- placeholder="登记人"
- disabled
- v-model="formData.createUserName"
- clearable /></el-form-item
- ></el-col>
- <el-col :span="6">
- <el-form-item label="审核人">
- <el-input
- placeholder="审核人"
- disabled
- v-model="formData.approvalUserName"
- clearable /></el-form-item
- ></el-col>
- <!-- <el-col :span="6" v-if="formData.bizType == 2">
- <el-form-item label="供应商" prop="supplierName">
- <el-input
- placeholder="请输入"
- clearable
- v-model="formData.extInfo.supplierName"
- />
- </el-form-item>
- </el-col> -->
- <!-- <el-col :span="6">
- <el-form-item label="送货人" prop="fromUser">
- <el-input placeholder="请输入" v-model="formData.fromUser" clearable /> </el-form-item></el-col>
- <el-col :span="6">
- <el-form-item label="送货人联系方式" prop="deliveryPhone">
- <el-input placeholder="请输入" v-model="formData.extInfo.deliveryPhone" clearable /></el-form-item></el-col> -->
- <el-col :span="6">
- <el-form-item label="备注" prop="remark">
- <el-input
- v-model="formData.remark"
- clearable
- type="textarea"
- placeholder="请详细说明"
- :rows="1"
- ></el-input>
- </el-form-item>
- </el-col>
- <!-- <el-col :span="6">
- <el-form-item label="生产要求" prop="productionRequirements">
- <el-input
- v-model="formData.productionRequirements"
- clearable
- type="textarea"
- placeholder=""
- :rows="1"
- disabled
- ></el-input>
- </el-form-item>
- </el-col> -->
- </el-row>
- </el-form>
- <div class="inbound_details">
- <header-title title="产品信息">
- <el-button type="primary" @click="addProduct">添加</el-button>
- </header-title>
- <div class="form_table">
- <el-form
- ref="productListRef"
- :model="{ productList: productList }"
- :show-message="false"
- >
- <div style="text-align: right;margin-bottom: 10px;">
- <el-button
- v-if="productList.length != 0"
- type="success"
- plain
- size="mini"
- @click="listSaveArrs"
- >批量保存</el-button
- >
- <el-button
- v-if="productList.length != 0 && this.packingList.length == 0"
- type="success"
- plain
- size="mini"
- @click="handleWareHouse(productList, '', 'batch')"
- >批量选择仓库</el-button
- >
- </div>
- <ele-pro-table
- ref="productListTable"
- :needPage="false"
- :columns="columns"
- :datasource="productList"
- :header-cell-style="rowClass"
- :max-height="300"
- :cache-key="cacheKeyUrl"
- @columns-change="handleColumnChange"
- >
- <!-- 包装完好与否 -->
- <template v-slot:ifPackageOk="{ row, $index }" v-if="isShowPackage">
- <el-form-item
- :prop="'productList.' + $index + '.ifPackageOk'"
- :rules="{
- required: true,
- message: '请选择包装完好与否',
- trigger: 'change'
- }"
- >
- <el-select
- v-model="row.ifPackageOk"
- placeholder="请选择"
- clearable
- style="width: 100%"
- >
- <el-option label="是" :value="1" />
- <el-option label="否" :value="0" />
- </el-select>
- </el-form-item>
- </template>
- <!-- 拆包装责任人 -->
- <template v-slot:unpackUserName="{ row, $index }" v-if="isShowPackage">
- <el-form-item
- :prop="'productList.' + $index + '.unpackUserName'"
- :rules="{
- required: true,
- message: '请选择拆包装责任人',
- trigger: 'change'
- }"
- >
- <el-input
- @click.native="handHead(row, $index)"
- v-model="row.unpackUserName"
- placeholder="请选择"
- ></el-input>
- </el-form-item>
- </template>
- <!-- 批次号 -->
- <template v-slot:batchNo="{ row, $index }">
- <template v-if="row.isSave">
- {{ row.batchNo }}
- </template>
- <el-form-item
- v-else
- :prop="'productList.' + $index + '.batchNo'"
- :rules="{
- required: true,
- message: '请输入批次号',
- trigger: 'blur'
- }"
- >
- <el-input
- :ref="'batchNo' + $index"
- @keyup.native="
- moveFocus($event, $index, 'batchNo', '产品', row)
- "
- v-model.number="row.batchNo"
- >
- </el-input>
- </el-form-item>
- </template>
- <!-- 数量 -->
- <template v-slot:packingQuantity="{ row, $index }">
- <template v-if="row.isSave">
- {{ row.packingQuantity }}
- </template>
- <el-form-item
- v-else
- :prop="'productList.' + $index + '.packingQuantity'"
- :rules="{
- required: true,
- message: '请输入数量',
- trigger: 'blur'
- }"
- >
- <el-input
- :ref="'packingQuantity' + $index"
- type="number"
- @keyup.native="
- moveFocus(
- $event,
- $index,
- 'packingQuantity',
- '产品',
- row
- )
- "
- v-model="row.packingQuantity"
- @input="computeNum(row, $index, true)"
- >
- </el-input>
- </el-form-item>
- </template>
- <!-- 单位 -->
- <template v-slot:packingUnit="{ row, $index }">
- <template v-if="row.isSave">
- {{ row.packingUnit }}
- </template>
- <el-form-item
- v-else
- :prop="'productList.' + $index + '.packingUnit'"
- :rules="{
- required: true,
- message: '请选择单位',
- trigger: 'change'
- }"
- >
- <el-select
- v-model="row.packingUnitId"
- placeholder="请选择"
- @change="computeNum(row, $index)"
- >
- <el-option
- v-for="item in row.packingSpecificationOption"
- :label="`${item.conversionUnit}`"
- :value="item.id"
- :key="item.id"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </template>
- <!-- 包装规格 -->
- <template v-slot:packingSpecificationLabel="{ row, $index }">
- <el-tag v-for="item in row.packingSpecificationLabel">{{
- item
- }}</el-tag>
- </template>
- <!-- 单重 -->
- <template v-slot:singleWeight="{ row, $index }">
- <template v-if="row.isSave">
- {{ row.singleWeight }}
- </template>
- <template v-else>
- <el-input-number
- v-model="row.singleWeight"
- placeholder="请输入"
- :min="0"
- controls-position="right"
- @change="inputsingleWeight(row, $index)"
- :disabled="row.weightUnit == row.packingUnit"
- :controls="false"
- style="width: 100%"
- ></el-input-number>
- </template>
- </template>
- <!-- 总重 -->
- <template v-slot:weight="{ row, $index }">
- <template v-if="row.isSave">
- {{ row.weight }}
- </template>
- <el-input
- v-else
- v-model="row.weight"
- placeholder="请输入"
- type="number"
- @input="inputWeight(row, $index)"
- :disabled="row.weightUnit == row.packingUnit"
- ></el-input>
- </template>
- <!-- 仓库 -->
- <template v-slot:warehouseName="{ row, $index }">
- <el-form-item
- :prop="'productList.' + $index + '.warehouseId'"
- :rules="{
- required: true,
- message: '请选择仓库',
- trigger: 'change'
- }"
- >
- <div
- :class="
- row.warehouseName
- ? 'wareHouse_style'
- : 'wareHouse_style red_color'
- "
- @click="handleWareHouse(row, $index)"
- >
- <span>
- {{
- row.warehouseName ? row.warehouseName : '请选择仓库'
- }}
- </span>
- </div>
- </el-form-item>
- </template>
- <!-- 采购原因 -->
- <template v-slot:purpose="{ row, $index }">
- <template v-if="row.isSave">
- {{ row.purpose }}
- </template>
- <el-input
- v-else
- :ref="'purpose' + $index"
- @keyup.native="
- moveFocus($event, $index, 'purpose', '产品', row)
- "
- v-model="row.purpose"
- >
- </el-input>
- </template>
- <!-- 生产日期 -->
- <template v-slot:detailProductionDate="{ row, $index }">
- <template v-if="row.isSave">
- {{ row.detailProductionDate }}
- </template>
- <el-date-picker
- v-else
- :disabled="row.isPack"
- size="small"
- v-model="row.detailProductionDate"
- type="datetime"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="选择日期"
- >
- </el-date-picker>
- </template>
- <!-- 采购日期 -->
- <template v-slot:detailPurchaseDate="{ row, $index }">
- <template v-if="row.isSave">
- {{ row.detailPurchaseDate }}
- </template>
- <el-date-picker
- v-else
- :disabled="row.isPack"
- size="small"
- v-model="row.detailPurchaseDate"
- type="datetime"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="选择日期"
- >
- </el-date-picker>
- </template>
- <!-- 失效日期 -->
- <template v-slot:detailExpireDate="{ row, $index }">
- <template v-if="row.isSave">
- {{ row.detailExpireDate }}
- </template>
- <el-date-picker
- v-else
- :disabled="row.isPack"
- size="small"
- v-model="row.detailExpireDate"
- type="datetime"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="选择日期"
- >
- </el-date-picker>
- </template>
- <!-- 颜色 -->
- <template v-slot:colorKey="{ row, $index }">
- <DictSelection
- dictName="物品颜色"
- clearable
- v-model="row.colorKey"
- :isOne="$index == 1"
- filterable
- allow-create
- default-first-option
- >
- </DictSelection>
- </template>
- <!-- 机型 -->
- <template v-slot:modelKey="{ row, $index }">
- <DictSelection
- dictName="物品机型"
- clearable
- v-model="row.modelKey"
- :isOne="$index == 1"
- filterable
- allow-create
- default-first-option
- >
- </DictSelection>
- </template>
- <!-- 操作 -->
- <template v-slot:action="{ row, $index }">
- <el-button
- type="text"
- v-show="!row.isSave"
- @click="listSave(row, $index)"
- >保存</el-button
- >
- <el-button
- type="text"
- v-show="row.isSave"
- @click="listEdit(row, $index)"
- >编辑</el-button
- >
- <el-button type="text" @click="listDel(row, $index)"
- >删除</el-button
- >
- </template>
- </ele-pro-table>
- </el-form>
-
- </div>
- </div>
- <div v-if="showPackingList.length > 0" class="inbound_details">
- <header-title :title="`包装明细`">
- <div class="switch_right">
- <el-button
- style="margin-left: 20px"
- type="text"
- @click="dateSetting('productionDate')"
- >批量设置生产日期</el-button
- >
- <el-button
- style="margin-left: 20px"
- type="text"
- @click="dateSetting('purchaseDate')"
- >批量设置采购日期</el-button
- >
- <el-button
- style="margin-left: 20px"
- type="text"
- @click="dateSetting('expireDate')"
- >批量设置失效日期</el-button
- >
- </div>
- </header-title>
- <el-table
- v-if="isWrapTable"
- ref="packingListTable"
- :data="showPackingList"
- tooltip-effect="dark"
- :key="formData.bizType"
- :header-cell-style="rowClass"
- style="width: 100%"
- border
- stripe
- :max-height="300"
- v-el-table-infinite-scroll="pickingHandleScroll"
- @selection-change="handleSelectionChange"
- >
- <el-table-column type="selection" align="center" width="50">
- </el-table-column>
- <el-table-column label="序号" type="index" width="50" fixed="left">
- </el-table-column>
- <el-table-column
- label="编码"
- prop="categoryCode"
- width="130"
- :show-overflow-tooltip="true"
- fixed="left"
- ></el-table-column>
- <el-table-column
- label="名称"
- prop="categoryName"
- width="150"
- :show-overflow-tooltip="true"
- fixed="left"
- ></el-table-column>
- <el-table-column
- label="批次号"
- prop="batchNo"
- width="100"
- ></el-table-column>
- <el-table-column
- :label="`包装编码`"
- prop="packageNo"
- width="200"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- label="包装数量"
- prop="packingQuantity"
- width="80"
- ></el-table-column>
- <el-table-column label="单位" prop="packingUnit"></el-table-column>
- <el-table-column
- label="计量数量"
- prop="measureQuantity"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- label="计量单位"
- prop="measureUnit"
- ></el-table-column>
- <!-- <el-table-column label="允许拆包" prop="isUnpack">
- <template slot-scope="{ row, $index }">
- {{ row.isUnpack ? '是' : '否' }}
- </template>
- </el-table-column> -->
- <el-table-column
- label="仓库"
- :show-overflow-tooltip="true"
- prop="warehouseName"
- width="200"
- ></el-table-column>
- <el-table-column
- label="物料代号"
- prop="materielDesignation"
- width="130"
- >
- <template slot-scope="{ row, $index }">
- <el-input
- v-if="!row.isPack"
- :ref="'packing_materielDesignation' + $index"
- @keyup.native="
- moveFocus(
- $event,
- $index,
- 'packing_materielDesignation',
- '包装',
- row
- )
- "
- v-model="row.materielDesignation"
- ></el-input>
- <span v-else>{{ row.materielDesignation }}</span>
- </template>
- </el-table-column>
- <el-table-column label="客户代号" prop="clientCode" width="130">
- <template slot-scope="{ row, $index }">
- <el-input
- v-if="!row.isPack"
- :ref="'packing_clientCode' + $index"
- @keyup.native="
- moveFocus($event, $index, 'packing_clientCode', '包装', row)
- "
- v-model="row.clientCode"
- ></el-input>
- <span v-else> {{ row.clientCode }}</span>
- </template>
- <!-- <template slot-scope="{ row, $index }" v-if="bizType == 2">
- <el-input v-if="!row.isPack" :ref="'packing_clientCode' + $index" @keyup.native="
- moveFocus($event, $index, 'packing_clientCode', '包装', row)
- " v-model="row.customerMark"></el-input>
- <span v-else> {{ row.customerMark }}</span>
- </template> -->
- </el-table-column>
- <el-table-column label="牌号" prop="brandNum" width="80">
- </el-table-column>
- <el-table-column
- label="发货条码"
- prop="barcodes"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- label="供应商"
- align="center"
- prop="supplierName"
- width="120"
- :show-overflow-tooltip="true"
- >
- </el-table-column>
- <el-table-column
- label="供应商代号"
- align="center"
- prop="supplierCode"
- width="120"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="{ row, $index }">
- {{ row.supplierCode }}
- </template>
- </el-table-column>
- <!-- <el-table-column v-else-if="bizType == 2" label="供应商代号" align="center" prop="supplierMark" width="120"
- :show-overflow-tooltip="true">
- <template slot-scope="{ row, $index }">
- {{ row.supplierMark }}
- </template>
- </el-table-column> -->
- <el-table-column label="序列号" prop="engrave" width="140">
- <template slot-scope="{ row, $index }">
- <span> {{ row.productSequence }}</span>
- </template>
- </el-table-column>
- <el-table-column label="刻码" prop="engrave" width="140">
- <template slot-scope="{ row, $index }">
- <el-input
- v-if="!row.isPack"
- :ref="'packing_engrave' + $index"
- @keyup.native="
- moveFocus($event, $index, 'packing_engrave', '包装', row)
- "
- v-model="row.engrave"
- ></el-input>
- <span v-else>{{ row.engrave }}</span>
- </template>
- </el-table-column>
- <el-table-column label="重量" prop="weight" width="100">
- <template slot-scope="{ row, $index }">
- <el-input
- v-if="!row.isPack && row.measureUnit != row.weightUnit"
- :ref="'packing_weight' + $index"
- @keyup.native="
- moveFocus($event, $index, 'packing_weight', '包装', row)
- "
- v-model.number="row.weight"
- @input="weightInput($event, row, '包装')"
- ></el-input>
- <span v-else>{{ row.weight }}</span>
- </template>
- </el-table-column>
- <el-table-column label="重量单位" prop="weightUnit">
- <template slot-scope="{ row }">
- {{ row.weightUnit }}
- </template>
- </el-table-column>
- <el-table-column label="机型" prop="modelKey" width="300">
- <template slot-scope="{ row, $index }">
- <DictSelection
- dictName="物品机型"
- clearable
- v-model="row.modelKey"
- :isOne="$index == 1"
- filterable
- allow-create
- default-first-option
- >
- </DictSelection>
- </template>
- </el-table-column>
- <el-table-column label="颜色" prop="colorKey" width="300">
- <template slot-scope="{ row, $index }">
- <DictSelection
- dictName="物品颜色"
- clearable
- v-model="row.colorKey"
- :isOne="$index == 1"
- filterable
- allow-create
- default-first-option
- >
- </DictSelection>
- </template>
- </el-table-column>
- <el-table-column label="序列号" prop="serialNumber">
- </el-table-column>
- <el-table-column label="质检结果" prop="result" width="120">
- <template slot-scope="{ row }">
- <el-select
- v-if="!row.isPack"
- @change="changeWrapStatus($event, row, '包装')"
- v-model="row.result"
- placeholder="请选择"
- >
- <el-option
- v-for="item in qualityResultsOptions"
- :label="item.label"
- :value="item.value"
- :key="item.value"
- >
- </el-option>
- </el-select>
- <span v-else>{{ qualityResults[row.result] }}</span>
- </template>
- </el-table-column>
- <el-table-column label="质检状态" prop="status" width="120">
- <template slot-scope="{ row }">
- <span>{{ qualityStatus[row.status] }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="是否质检"
- align="center"
- width="80"
- prop="qualityControl"
- :show-overflow-tooltip="true"
- v-if="bizType != 1 && bizType != 6 && bizType != 9"
- >
- <template slot-scope="{ row, $index }">
- {{
- row.qualityControl == 1
- ? '是'
- : row.qualityControl == 0
- ? '否'
- : ''
- }}
- </template>
- </el-table-column>
- <template v-if="formData.bizType == 5">
- <el-table-column
- label="生产日期"
- prop="productionDate"
- width="220"
- ></el-table-column>
- <el-table-column
- label="采购日期"
- prop="purchaseDate"
- width="220"
- ></el-table-column>
- </template>
- <template v-else>
- <el-table-column label="生产日期" prop="productionDate" width="220">
- <template slot-scope="{ row, $index }">
- <el-date-picker
- :disabled="row.isPack"
- size="small"
- v-model="row.productionDate"
- type="datetime"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="选择日期"
- >
- </el-date-picker
- ></template>
- </el-table-column>
- <el-table-column label="采购日期" prop="purchaseDate" width="220">
- <template slot-scope="{ row, $index }">
- <el-date-picker
- :disabled="row.isPack"
- size="small"
- v-model="row.purchaseDate"
- type="datetime"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="选择日期"
- >
- </el-date-picker
- ></template>
- </el-table-column>
- <el-table-column label="失效日期" prop="expireDate" width="220">
- <template slot-scope="{ row, $index }">
- <el-date-picker
- :disabled="row.isPack"
- size="small"
- v-model="row.expireDate"
- type="datetime"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="选择日期"
- >
- </el-date-picker
- ></template>
- </el-table-column>
- </template>
- <!-- <el-table-column label="生产日期" prop="" width="220">
- <template slot="header" slot-scope="scope">
- <el-select filterable v-model="curDateType">
- <el-option value="productionDate" label="生产日期"></el-option>
- <el-option value="purchaseDate" label="采购日期"></el-option>
- </el-select>
- </template>
- <template slot-scope="{ row }">
- <template v-if="formData.bizType == 5">
- {{ row[curDateType] }}
- </template>
- <el-date-picker
- v-else
- :disabled="row.isPack"
- size="small"
- v-model="row[curDateType]"
- type="datetime"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="选择日期"
- >
- </el-date-picker>
- </template>
- </el-table-column> -->
- <!-- <el-table-column label="操作" width="120" fixed="right">
- <template slot-scope="{ row, $index }">
- <el-button type="text" @click="wrapDelete(row, $index)">
- 删除
- </el-button>
- </template>
- </el-table-column> -->
- </el-table>
- </div>
- <div v-if="showMaterialList.length > 0" class="inbound_details">
- <!-- <header-title :title="`物料明细`"></header-title> -->
- <!-- <el-table ref="materialListTable" :data="showMaterialList" tooltip-effect="dark" :key="formData.bizType"
- :header-cell-style="rowClass" style="width: 100%" border stripe :max-height="300"
- v-el-table-infinite-scroll="materielHandleScroll">
- <el-table-column label="序号" type="index" width="50">
- </el-table-column>
- <el-table-column label="编码" prop="categoryCode" width="130" :show-overflow-tooltip="true"></el-table-column>
- <el-table-column label="名称" prop="categoryName" width="150" :show-overflow-tooltip="true"></el-table-column>
- <el-table-column label="批次号" prop="batchNo" width="70"></el-table-column>
- <el-table-column label="物料编码" prop="materialCode" width="200" :show-overflow-tooltip="true"></el-table-column>
- <el-table-column label="计量数量" prop="measureQuantity" width="90"
- :show-overflow-tooltip="true"></el-table-column>
- <el-table-column width="80" label="计量单位" prop="measureUnit"></el-table-column>
- <el-table-column label="物料代号" prop="materielDesignation" width="130">
- <template slot-scope="{ row, $index }">
- <el-input v-if="!row.isPack" :ref="'material_materielDesignation' + $index" @keyup.native="
- moveFocus(
- $event,
- $index,
- 'material_materielDesignation',
- '物料',
- row
- )
- " v-model="row.materielDesignation"></el-input>
- <span v-else>{{ row.materielDesignation }}</span>
- </template>
- </el-table-column>
- <el-table-column label="客户代号" prop="clientCode">
- <template slot-scope="{ row, $index }">
- <el-input v-if="!row.isPack" :ref="'material_clientCode' + $index" @keyup.native="
- moveFocus($event, $index, 'material_clientCode', '物料', row)
- " v-model="row.clientCode"></el-input>
- <span v-else>{{ row.clientCode }}</span>
- </template>
- </el-table-column>
- <el-table-column label="刻码" prop="engrave" width="140">
- <template slot-scope="{ row, $index }">
- <el-input v-if="!row.isPack" :ref="'material_engrave' + $index" @keyup.native="
- moveFocus($event, $index, 'material_engrave', '物料', row)
- " v-model="row.engrave"></el-input>
- <span v-else>{{ row.engrave }}</span>
- </template>
- </el-table-column>
- <el-table-column label="重量" prop="weight" width="100">
- <template slot-scope="{ row, $index }">
- <el-input v-if="!row.isPack && row.measureUnit != row.weightUnit" :ref="'material_weight' + $index"
- @keyup.native="
- moveFocus($event, $index, 'material_weight', '物料', row)
- " @input="weightInput($event, row, '物料')" v-model.number="row.weight"></el-input>
- <span v-else>{{ row.weight }}</span>
- </template>
- </el-table-column>
- <el-table-column label="重量单位" prop="weightUnit" width="100"></el-table-column>
- <el-table-column label="质检结果" prop="result" width="120">
- <template slot-scope="{ row }">
- <el-select v-if="!row.isPack" @change="changeWrapStatus($event, row, '物料')" v-model="row.result"
- placeholder="请选择">
- <el-option v-for="item in qualityResultsOptions" :label="item.label" :value="item.value"
- :key="item.value">
- </el-option>
- </el-select>
- <span v-else>{{ qualityResults[row.result] }}</span>
- </template>
- </el-table-column>
- <el-table-column label="质检状态" prop="status" width="120">
- <template slot-scope="{ row }">
- <span>{{ qualityStatus[row.status] }}</span>
- </template>
- </el-table-column>
- </el-table> -->
- </div>
- </el-card>
- <!-- 产品选择弹框 -->
- <selectType
- :visibleDialog.sync="visibleDialog"
- :title="title"
- :treeIds="formData.extInfo.assetType"
- :loadTree.sync="loadTree"
- @selectTableData="addGoods"
- />
- <!-- 仓库选择弹框 -->
- <WarehousingDialog
- ref="wareHouseDailogRef"
- @selection="wareHouseSelection"
- ></WarehousingDialog>
- <!-- 包装负责人 -->
- <head-list ref="headRef" @changeParent="changeHead"></head-list>
- <!-- 生产日期、采购日期弹框 -->
- <el-dialog
- :visible.sync="dateVisible"
- title="选择日期"
- width="400px"
- append-to-body
- >
- <el-date-picker
- size="small"
- v-model="batchTime"
- type="datetime"
- style="width: 320px"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="选择日期"
- >
- </el-date-picker>
- <div style="text-align: right; margin-top: 20px">
- <el-button @click="dateVisible = false">取消</el-button>
- <el-button type="primary" @click="dateConfirm" :disabled="!batchTime"
- >确认</el-button
- >
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import elTableInfiniteScroll from 'el-table-infinite-scroll';
- import storageApi from '@/api/warehouseManagement/index.js';
- import warehouseDefinition from '@/api/warehouseManagement/warehouseDefinition.js';
- import WarehousingDialog from './components/WarehousingDialog.vue';
- import { getCode } from '@/api/codeManagement/index.js';
- import selectType from './components/selectType_new.vue';
- import {
- sceneState,
- qualityResultsOptions,
- qualityResults,
- qualityStatus
- } from '@/utils/dict/index';
- import { getTreeByGroup } from '@/api/classifyManage';
- import { deepClone } from '@/utils';
- import { mapActions, mapGetters } from 'vuex';
- import BigNumber from 'bignumber.js';
- import headList from '@/components/headList';
- import tabMixins from '@/mixins/tableColumnsMixin';
- // import dictMixins from '@/mixins/dictMixins';
- export default {
- mixins: [tabMixins],
- components: {
- selectType,
- WarehousingDialog,
- headList
- },
- // mixins: [dictMixins],
- // 虚拟列表滚动方法
- directives: {
- 'el-table-infinite-scroll': elTableInfiniteScroll
- },
- props: {
- form: { type: Object, default: () => {} },
- bizType: { type: Number, default: 1 },
- sourceBizNo: { type: String, default: '' },
- detailList: { type: Array, default: () => [] },
- saleProductList: { type: Array, default: () => [] },
- detailProductList: { type: Array, default: () => [] },
- isMoreProduct: { type: Boolean, default: false }, //多产品包装明细
- processInstance: { type: Object, default: () => {} },
- isShowPackage: { type: Boolean, default: false } //售后退货单仓管审批显示
- },
- data() {
- return {
- cacheKeyUrl: '202605141136-storageTableColumns',
- newColumns: [], // 动态表头
- sceneState,
- saveLoading: false,
- dateVisible: false,
- loadTree: true,
- visibleDialog: false,
- title: '选择产品',
- goodsLists: [],
- formData: {
- bizType: '',
- storageTime: '',
- qualityControl: '',
- extInfo: {
- assetType: []
- }
- },
- rules: {
- 'extInfo.assetType': {
- required: true,
- message: '请选择物品类型',
- trigger: 'blur'
- },
- bizType: {
- required: true,
- message: '请选择入库场景',
- trigger: 'change'
- },
- storageTime: {
- required: true,
- message: '请选择入库时间',
- trigger: 'change'
- }
- },
- qualityResultsOptions, // 质检结果选项
- qualityStatus, // 质检状态 0未检 1已检
- qualityResults, // 质检结果 0无 1合格 2不合格
- productList: [], // 产品列表
- packingList: [], // 包装列表
- showPackingList: [], // 包装列表(虚拟列表)
- materialList: [], // 物料列表
- showMaterialList: [], // 物料列表(虚拟列表)
- curDateType: 'productionDate',
- packingListSelected: [], // 包装选择列表
- isWrapTable: true, // 解决表格不刷新问题(包装)
- currentPackingQuantity: '', // 当前包装数量
- batchTime: '', // 生产日期、采购日期
- pageSize: 20, // 物料和包装列表条数
- pickingPageNum: 1, // 包装虚拟分页页数
- materielPageNum: 1, // 物料虚拟分页页数
- scanBuffer: '', // 扫码枪输入缓冲
- scanLastKeyTime: 0 // 扫码枪上次按键时间
- };
- },
- computed: {
- ...mapGetters(['dict', 'getDict', 'getDictValue']),
- clientEnvironmentId() {
- return this.$store.state.user.info.clientEnvironmentId;
- },
- columns() {
- return [
- { width: 50, type: 'index', columnKey: 'index', align: 'center', fixed: 'left' },
- { label: '编码', prop: 'categoryCode', align: 'center', width: 130, showOverflowTooltip: true, fixed: 'left' },
- { label: '名称', prop: 'categoryName', align: 'center', width: 200, showOverflowTooltip: true, fixed: 'left' },
- { label: '牌号', prop: 'brandNum', align: 'center', width: 100, showOverflowTooltip: true },
- { label: '型号', prop: 'categoryModel', align: 'center', width: 100, showOverflowTooltip: true },
- { label: '规格', prop: 'specification', align: 'center', width: 100, showOverflowTooltip: true },
- ...this.newColumns.map(item => ({
- ...item,
- prop: item.prop,
- showOverflowTooltip: true
- })),
- // 包装完好与否
- {
- label: '包装完好与否',
- prop: 'ifPackageOk',
- slot: 'ifPackageOk',
- align: 'center',
- width: 100,
- show: this.isShowPackage
- },
- // 拆包装责任人
- {
- label: '拆包装责任人',
- prop: 'unpackUserName',
- slot: 'unpackUserName',
- align: 'center',
- width: 100,
- show: this.isShowPackage
- },
- // 批次号
- { label: '批次号', prop: 'batchNo', slot: 'batchNo', align: 'center', width: 100 },
- // 数量
- { label: '数量', prop: 'packingQuantity', slot: 'packingQuantity', align: 'center', width: 100 },
- // 单位
- { label: '单位', prop: 'packingUnit', slot: 'packingUnit', align: 'center', width: 100 },
- // 包装规格
- { label: '包装规格', prop: 'packingSpecificationLabel', slot: 'packingSpecificationLabel', align: 'center', width: 300, showOverflowTooltip: true },
- // 允许拆包
- { label: '允许拆包', prop: 'isUnpack', align: 'center', width: 80, formatter: (row) => row.isUnpack == 1 ? '是' : '否' },
- // 计量数量
- { label: '计量数量', prop: 'measureQuantity', align: 'center', width: 100, showOverflowTooltip: true },
- // 计量单位
- { label: '计量单位', prop: 'measureUnit', align: 'center', width: 80, showOverflowTooltip: true },
- // 单重
- { label: '单重', prop: 'singleWeight', slot: 'singleWeight', align: 'center', width: 120, showOverflowTooltip: true },
- // 总重
- { label: '总重', prop: 'weight', slot: 'weight', align: 'center', width: 120, showOverflowTooltip: true },
- // 重量单位
- { label: '重量单位', prop: 'weightUnit', align: 'center', width: 80, showOverflowTooltip: true },
- // 生产要求
- { label: '生产要求', prop: 'productionRequirements', align: 'center', width: 200, showOverflowTooltip: true },
- // 机型
- { label: '机型', prop: 'modelKey', slot: 'modelKey', align: 'center', width: 300 },
- // 颜色
- { label: '颜色', prop: 'colorKey', slot: 'colorKey', align: 'center', width: 300 },
- // 供应商
- { label: '供应商', prop: 'supplierId', align: 'center', width: 200, showOverflowTooltip: true },
- // 供应商代号
- { label: '供应商代号', prop: 'supplierCode', align: 'center', width: 120, showOverflowTooltip: true },
- // 产地
- {
- label: '产地',
- prop: 'provenance',
- align: 'center',
- width: 120,
- showOverflowTooltip: true,
- show: this.bizType == 2,
- formatter: (row) => {
- if (row.provenance) {
- return row.provenance.map((item) => this.getDictValue('产地', item)).join(',');
- }
- return '';
- }
- },
- // 仓库
- { label: '仓库', prop: 'warehouseName', slot: 'warehouseName', align: 'center', width: 300, showOverflowTooltip: true },
- // 采购原因
- { label: '采购原因', prop: 'purpose', slot: 'purpose', align: 'center', width: 200, showOverflowTooltip: true },
- // 是否质检
- {
- label: '是否质检',
- prop: 'qualityControl',
- align: 'center',
- width: 80,
- showOverflowTooltip: true,
- show: this.bizType != 1 && this.bizType != 6 && this.bizType != 9,
- formatter: (row) => {
- if (row.qualityControl == 1) return '是';
- if (row.qualityControl == 0) return '否';
- return '';
- }
- },
- // 生产日期
- { label: '生产日期', prop: 'detailProductionDate', slot: 'detailProductionDate', align: 'center', width: 220 },
- // 采购日期
- { label: '采购日期', prop: 'detailPurchaseDate', slot: 'detailPurchaseDate', align: 'center', width: 220 },
- // 失效日期
- { label: '失效日期', prop: 'detailExpireDate', slot: 'detailExpireDate', align: 'center', width: 220 },
- // 操作
- { label: '操作', columnKey: 'action', slot: 'action', width: 140, align: 'center', fixed: 'right' }
- ].filter(col => col.show !== false);
- }
- },
- watch: {
- packingList: {
- handler(newVal) {
- console.log(newVal);
- this.showPackingList = newVal.slice(
- 0,
- this.pageSize * (this.pickingPageNum > 0 ? this.pickingPageNum : 1)
- );
- this.showPackingList.forEach((obj) => {
- console.log(obj, '666666666');
- obj.workOrderId = this.detailProductList[0]?.workOrderId;
- obj.taskId = this.detailProductList[0]?.taskId;
- obj.outsourceBatchNo = this.detailProductList[0]?.batchNo;
- obj.outsourceCode = this.detailProductList[0]?.sourceCode;
- obj.taskId = this.detailList[0]?.taskId;
- obj.workOrderId = this.detailList[0]?.workOrderId;
- });
- this.pickingPageNum = Math.ceil(
- this.showPackingList.length / this.pageSize
- );
- },
- deep: true
- },
- materialList: {
- handler(newVal) {
- this.showMaterialList = newVal.slice(
- 0,
- this.pageSize *
- (this.materielPageNum > 0 ? this.materielPageNum : 1)
- );
- },
- deep: true
- }
- // detailList: {
- // handler(newVal) {
- // if (newVal.length) {
- // this.initFormData();
- // }
- // },
- // deep: true
- // },
- },
- async created() {
- await this.requestDict('产地');
- await this.requestDict('不拆物料层规格');
- await this.requestDict('物品颜色');
- await this.requestDict('物品机型');
- await this.getFieldModel();
- await this.getListItems();
- await this.initFormData();
- await this.getNowFormatDate();
- },
- mounted() {
- this._barcodeScanHandler = this.handleScanInput.bind(this);
- document.addEventListener('keydown', this._barcodeScanHandler);
- this._barcodePasteHandler = this.handleBarcodePaste.bind(this);
- document.addEventListener('paste', this._barcodePasteHandler);
- },
- beforeDestroy() {
- if (this._barcodeScanHandler) {
- document.removeEventListener('keydown', this._barcodeScanHandler);
- }
- if (this._barcodePasteHandler) {
- document.removeEventListener('paste', this._barcodePasteHandler);
- }
- },
- methods: {
- // 扫码枪键盘事件监听
- // 通过按键间隔识别扫码枪输入:扫码枪通常 <30ms 一个键,
- // 进入 scanning 模式后调用 preventDefault,阻止按键打入聚焦的输入框,
- // 避免行字段被覆盖、表格行被重新渲染。
- handleScanInput(e) {
- const now = Date.now();
- const timeDiff = now - this.scanLastKeyTime;
- this.scanLastKeyTime = now;
- if (e.key === 'Enter') {
- if (this._scanning && this.scanBuffer.length > 3) {
- this.processScanCode(this.scanBuffer);
- // 扫码枪结束,吞掉这次 Enter,避免触发表单提交/单元格回车跳转
- e.preventDefault();
- e.stopPropagation();
- }
- this.scanBuffer = '';
- this._scanning = false;
- return;
- }
- if (!e.key || e.key.length !== 1) return;
- // 间隔超过 100ms 视为人工输入,重置缓冲与扫码状态
- if (timeDiff > 100) {
- this.scanBuffer = '';
- this._scanning = false;
- } else if (timeDiff < 30) {
- // 连续两次按键间隔很短,认定进入扫码状态
- this._scanning = true;
- }
- this.scanBuffer += e.key;
- // 进入扫码状态后阻止默认行为,避免按键进入聚焦输入框
- if (this._scanning) {
- e.preventDefault();
- e.stopPropagation();
- // 同时让聚焦输入框失焦,避免极少数情况下首字符已经入框
- if (
- document.activeElement &&
- typeof document.activeElement.blur === 'function'
- ) {
- document.activeElement.blur();
- }
- }
- },
- // 扫码枪粘贴事件监听
- handleBarcodePaste(e) {
- const text = (e.clipboardData || window.clipboardData)
- .getData('text')
- .trim();
- console.log('扫码粘贴事件:', text);
- if (text.length >= 3) {
- this.processScanCode(text);
- }
- },
- // 处理扫码结果:先匹配产品信息,再匹配包装明细
- // 直接把 confirmStatus 写到行对象上,便于业务读取与序列化。
- // 由于 packingList watcher 已去掉 deep,且 productList 本就无 watcher,
- // 这两次赋值都不会触发表格重渲染。
- processScanCode(code) {
- console.log('扫描条码:', code);
- // 新格式(非 jobBom):以 ";" 分隔的 8 段
- // productCode;partCode;partName;batchNo;originalBatchNo;certificateNo;originalCertificateNo;feedQuantity
- if (code.includes(';')) {
- const segs = code.split(';');
- const partCode = segs[1] || '';
- const batchNo = segs[3] || '';
- const certificateNo = segs[5] || '';
- console.log('扫码新格式匹配条件:', {
- partCode,
- batchNo,
- certificateNo
- });
- // 1. 在产品信息表格按 产品编码 + 批次号 匹配
- const productIndex = this.productList.findIndex(
- (item) =>
- item.categoryCode &&
- item.batchNo &&
- item.categoryCode === partCode &&
- item.batchNo === batchNo
- );
- if (productIndex > -1) {
- this.productList[productIndex].confirmStatus = 1;
- this.$message.success(
- `产品信息匹配成功:${this.productList[productIndex].categoryCode}-${this.productList[productIndex].batchNo}`
- );
- return;
- }
- // 2. 在包装明细按 产品编码 + 批次号(+ 合格证号) 匹配
- const packingIndex = this.packingList.findIndex(
- (item) =>
- item.categoryCode === partCode &&
- item.batchNo === batchNo &&
- (!certificateNo ||
- !item.certificateNo ||
- item.certificateNo === certificateNo)
- );
- if (packingIndex > -1) {
- this.packingList[packingIndex].confirmStatus = 1;
- this.$message.success(`包装明细匹配成功:${code}`);
- return;
- }
- this.$message.warning(`未匹配到对应数据:${code}`);
- return;
- }
- // 旧格式(jobBom):以 "-" 分隔
- // 1. 在产品信息表格按 产品编码-批次号 匹配
- const productIndex = this.productList.findIndex(
- (item) =>
- item.categoryCode &&
- item.batchNo &&
- code === `${item.categoryCode}-${item.batchNo}`
- );
- if (productIndex > -1) {
- this.productList[productIndex].confirmStatus = 1;
- this.$message.success(
- `产品信息匹配成功:${this.productList[productIndex].categoryCode}-${this.productList[productIndex].batchNo}`
- );
- return;
- }
- // 2. 在包装明细按 categoryCode-batchNo-engrave 规则匹配
- const parts = code.split('-');
- if (parts.length >= 3) {
- const categoryCode = parts[0];
- const engrave = parts[parts.length - 1];
- const batchNo = parts.slice(1, parts.length - 1).join('-');
- console.log('匹配条件:', { categoryCode, batchNo, engrave });
- const packingIndex = this.packingList.findIndex(
- (item) =>
- item.categoryCode === categoryCode &&
- item.batchNo === batchNo &&
- ((item.extInfo && item.extInfo.engrave === engrave) ||
- item.engrave === engrave)
- );
- if (packingIndex > -1) {
- this.packingList[packingIndex].confirmStatus = 1;
- this.$message.success(`包装明细匹配成功:${code}`);
- return;
- }
- }
- this.$message.warning(`未匹配到对应数据:${code}`);
- },
- ...mapActions('dict', ['requestDict']),
- // 通过挂起状态设置行样式
- tableRowClassName({ row }) {
- // console.log('tableRowClassName', row)
- if (row.isReversal == 1) {
- return 'warning-row';
- }
- return '';
- },
- handleRowClick(row) {
- // this.current = row;
- console.log('handleRowClick', row);
- if (row.isReversal == 1) {
- this.$alert(`替代批次号:${row.suspendOrReverseDetail[0].batchNo}`, {
- confirmButtonText: '知道了',
- type: 'none'
- }).catch(() => {
- // 捕获用户取消操作时的Promise rejection
- });
- }
- },
- changeCount(number) {
- return new BigNumber(number).toString();
- },
- selectSupplier(val, row) {
- row.supplierId = val;
- row.supplierName = row.supplierListOptions.filter(
- (item) => item.id == val
- )[0]?.name;
- row.supplierCode = row.supplierListOptions.filter(
- (item) => item.id == val
- )[0].serialNo;
- },
- inputsingleWeight(row, index) {
- if (row.measureUnit == row.weightUnit) {
- row.weight = row.singleWeight * row.packingQuantity;
- row.measureQuantity = row.weight;
- } else {
- row.weight = row.singleWeight * row.measureQuantity;
- }
- },
- inputWeight(row, index) {
- if (row.measureUnit == row.weightUnit) {
- row.measureQuantity = row.weight;
- row.singleWeight =
- Math.trunc((row.measureQuantity / row.packingQuantity) * 10000) /
- 10000;
- } else {
- row.singleWeight = row.measureQuantity
- ? row.weight / row.measureQuantity
- : 0;
- }
- },
- // 计算最小单元数量
- async computeNum(row, index, isClear) {
- console.log('row, index', row, index);
- let data = row.packingSpecificationOption.find(
- (item) => item.id == row.packingUnitId
- );
- row.packingUnit = data.conversionUnit;
- // 清空仓库(包装数量输入)
- if (isClear) {
- if (row.packingQuantity < 0) {
- this.$set(this.productList[index], 'packingQuantity', 1);
- }
- }
- //如果有包装数量和包装单位
- if (row.packingQuantity && row.packingUnit) {
- //获取仓库
- const res = await warehouseDefinition.list({
- // inventoryType: this.form.categoryLevelTopId
- });
- // 只有一个仓库自动显示出来
- if (res.length == 1) {
- let name = res[0]?.factoryName + '-' + res[0]?.name;
- console.log('仓库-----------------------------', res);
- this.$set(this.productList[index], 'warehouseId', res[0].id);
- this.$set(this.productList[index], 'warehouseName', name);
- let table1 = [];
- table1.push({
- measureQuantity: row.measureQuantity,
- packingQuantity: row.packingQuantity,
- warehouseName: name,
- warehouseId: res[0].id
- });
- this.wareHouseSelection(table1, index);
- } else {
- this.$set(this.productList[index], 'warehouseId', '');
- this.$set(this.productList[index], 'warehouseName', '');
- }
- // -----------------------------------------------------------------
- let startIndex = row.packingSpecificationOption.findIndex((ite) => {
- return (
- row.measuringUnit == ite.packingUnit &&
- ite.packingUnit != ite.conversionUnit
- );
- });
- let endIndex = row.packingSpecificationOption.findIndex(
- (ite) => data.id == ite.id
- );
- console.log(row, 'rowwwwwwwwwwwwww');
- let total = Number(row.packingQuantity);
- console.log(total, '111');
- if (
- row.packingUnit == row.measureUnit &&
- row.measureUnit == '立方' &&
- row.netWeight
- ) {
- total = Number(row.packingQuantity) * row.netWeight;
- console.log(
- total,
- '单位是立方,计量单位也是立方,如果有单重,就计量数量x单重=总重'
- );
- console.log(total, '2222');
- } else {
- console.log(total, 333);
- for (; 0 < endIndex; endIndex--) {
- total = this.$math.format(
- row.packingSpecificationOption[endIndex].packageCell * total,
- 14
- );
- }
- }
- console.log(total, '444456');
- //计量数量
- row.measureQuantity = this.changeCount(total);
- // 判断单位和计量单位是否为不拆物料层规格
- let packingBoolen = !!this.getDict('不拆物料层规格', row.packingUnit)
- .dictValue;
- let measureBoolen = !!this.getDict('不拆物料层规格', row.measureUnit)
- .dictValue;
- console.log(packingBoolen, 'packingBoolen');
- console.log(measureBoolen, 'measureBoolen');
- if (packingBoolen && measureBoolen && row.packingUnit != 'L') {
- row.weight = total;
- console.log(total, '6');
- }
- let weight = 0;
- if (row.measureUnit == row.weightUnit) {
- weight = row.measureQuantity;
- // 如果重量单位和包装单位一致,则单重0
- if (row.weightUnit == row.packageUnit) {
- row.singleWeight = 0;
- } else {
- row.singleWeight =
- Math.trunc(
- (row.measureQuantity / row.packingQuantity) * 10000
- ) / 10000;
- }
- } else if (row.singleWeight) {
- weight = row.measureQuantity * Number(row.singleWeight);
- }
- this.$set(this.productList[index], 'weight', weight);
- }
- },
- // 获取动态表头
- getFieldModel() {
- storageApi.fieldModel({ fieldModel: 't_main_category' }).then((res) => {
- let newRes = res.map((m) => {
- return {
- prop: 'extField.' + m.prop,
- label: m.label,
- align: 'center',
- showOverflowTooltip: true
- };
- });
- this.newColumns = [...newRes];
- });
- },
- // 初始化信息
- async initFormData() {
- console.log(this.form, 'form');
- console.log(this.formData, 'formData');
- console.log(this.sourceBizNo, 'sourceBizNo');
- this.formData.type = 1;
- this.formData.bizType = this.bizType;
- if (this.sourceBizNo != null || this.sourceBizNo != '') {
- // this.formData.sourceBizNo = this.sourceBizNo;
- this.$set(this.formData, 'sourceBizNo', this.sourceBizNo);
- } else {
- this.$message.warning('未获取到单据来源!');
- }
- // 入库登记人
- // this.formData.extInfo.createUserId = this.$store.state.user.info.userId;
- // this.formData.extInfo.createUserName = this.$store.state.user.info.name;
- // this.formData.extInfo.deliveryPhone = this.$store.state.user.info.phone;
- // this.formData.createUserId = this.$store.state.user.info.userId;
- // this.formData.extInfo.deptName = this.$store.state.user.info.deptName;
- // 入库登记人
- // const startUser = this.processInstance?.startUser || {};
- const userInfo = this.$store.state.user.info || {};
- // 确保所有值都是原始类型,防止对象被绑定到DOM属性
- this.formData.extInfo.createUserId =
- this.form.createUserId || userInfo.userId || '';
- this.formData.extInfo.createUserName =
- this.form.createUserName || userInfo.name || '';
- this.formData.extInfo.deliveryPhone = userInfo.phone || '';
- this.formData.createUserId =
- this.form.createUserId || userInfo.userId || '';
- this.formData.createUserName =
- this.form.createUserName || userInfo.name || '';
- this.formData.extInfo.deptName =
- this.form.deptName || userInfo.deptName || '';
- this.formData.approvalUserName =
- this.form.approvalUserName || userInfo.name;
- this.formData.approvalUserId =
- this.form.approvalUserId || userInfo.userId;
- // this.formData.extInfo.supplierName = this.form.supplierName;
- // this.formData.extInfo.supplierId = this.form.supplierId;
- console.log('saleProductList-------------------', this.saleProductList);
- if (this.saleProductList?.length > 0) {
- let detailPurchaseDate;
- if (this.formData.bizType == '2' || this.formData.bizType == '10') {
- // 采购入库
- const defaultTime = '00:00:00';
- detailPurchaseDate =
- this.form.purchaseDate ||
- `${this.form.receiveDate} ${defaultTime}`;
- }
- // 物品列表
- let codeList = this.saleProductList.map((item) => {
- return item.productCode || item.categoryCode;
- });
- storageApi.getListByNameOrModeType({ codeList, queryConditions: this.queryConditions }).then(async (res) => {
- if (res.length <= 0) {
- this.$message.warning('未获取到物品信息!');
- return;
- }
- this.formData.extInfo.assetType = Array.from(
- new Set(res.map((item) => item.categoryLevelPathIdParent))
- );
- console.log(this.formData.extInfo.assetType, '类型类型');
- // 获取批次号
- const batchNo1 = await getCode('lot_number_code');
- // 获取供应商
- const supplierList = await storageApi.contactQueryByCategoryIdsAPI({
- categoryIds: res.map((item) => item.id)
- });
- // 获取包装规格
- let packingSpecification =
- await storageApi.getCategoryPackageDisposition({
- categoryIds: res.map((item) => item.id)
- });
- console.log(packingSpecification);
- this.packingSpecificationOption = res.map((item) => {
- return packingSpecification
- .filter((ite) => item.id == ite.categoryId)
- .sort((a, b) => a.sort - b.sort);
- });
- this.productList = res.map((item, index) => {
- let filtersItem = this.saleProductList.find(
- (detailItem) =>
- item.code == detailItem.productCode ||
- item.code == detailItem.categoryCode
- );
- // let filtersItem = this.saleProductList.filter(
- // (detailItem) =>
- // detailItem.productCode || detailItem.categoryCode == item.code
- // )[0];
- // 显示规格
- let packingSpecificationLabel = this.packingSpecificationOption[
- index
- ]
- .map((item) => {
- if (item.sort > 0) {
- return `${item.packageCell}${item.packageUnit}/${item.conversionUnit}`;
- }
- })
- .filter((item) => !!item);
- const newSpecificationOption = this.getNewSpecificationOption(
- this.packingSpecificationOption
- );
- console.log(newSpecificationOption, '啵啵啵啵啵啵啵啵啵啵啵啵2');
- console.log(filtersItem, 'filtersItemfiltersItemfiltersItem');
- let warehouseId = filtersItem.warehouseId;
- let warehouseName = filtersItem.warehouseName;
- let measureQuantity =
- filtersItem.totalCountNew || filtersItem.totalCount || 0;
- // let measureQuantityOld = filtersItem.totalCount || 0;
- if (
- (filtersItem.sendTotalWeight ||
- filtersItem.receiveTotalWeight) &&
- item.weightUnit == item.measuringUnit
- ) {
- measureQuantity =
- filtersItem.sendTotalWeight || filtersItem.receiveTotalWeight;
- }
- let packingQuantity =
- filtersItem.totalCountNew ||
- filtersItem.purchaseCount ||
- filtersItem.totalCount ||
- 0;
- console.log(packingQuantity, 'packingQudasdasdantity');
- let packingUnit =
- filtersItem.purchaseUnit || filtersItem.measuringUnit || '';
- let unitPrice = filtersItem.singlePrice || 0;
- let pricingWay = filtersItem.pricingWay || '';
- let singleWeight =
- filtersItem.singleWeight ||
- this.detailProductList[0]?.singleWeight ||
- 0;
- let weight =
- filtersItem.sendTotalWeight ||
- filtersItem.receiveTotalWeight ||
- singleWeight * measureQuantity;
- console.log(weight, 'weight');
- // if(weight){
- // }
- // 获取相同仓库
- let warehouseIds = [];
- let warehouseNames = [];
- for (let i = 0; i < filtersItem.totalCount; i++) {
- warehouseIds.push(filtersItem.warehouseId);
- warehouseNames.push(filtersItem.warehouseName);
- }
- let totalMoney = filtersItem.totalPrice || 0;
- console.log(
- filtersItem,
- 'filtersItemfiltersItemfiltersItemfiltersItemfiltersItem'
- );
- let batchNo = '';
- if (filtersItem.batchNo) {
- batchNo = filtersItem.batchNo;
- } else {
- batchNo = batchNo1;
- }
- return {
- index: this.productList.length + index,
- categoryId: item.id, // 物品id
- categoryName: item.name, // 物品名称
- categoryCode: item.code, // 物品编码
- categoryModel: item.modelType, // 物品型号
- specification: item.specification, // 规格
- brandNum: item.brandNum, // 牌号
- batchNo: batchNo, // 批次号
- supplierListOptions: supplierList[item.id], // 供应商列表
- supplierId: this.form.supplierId, // 供应商id
- productionRequirements: filtersItem.productionRequirements, //生产要求
- supplierCode:
- this.bizType == 2 || this.bizType == 7
- ? filtersItem.supplierMark
- : item.supplierCode, // 供应商代号
- supplierName: this.form.supplierName, // 供应商名称
- approvalNumber: item.approvalNumber, // 批准文号
- packingSpecification: item.packingSpecification, // 包装规格
- packingSpecificationOption: newSpecificationOption[index], // 包装规格选项
- packingSpecificationLabel: packingSpecificationLabel, // 包装规格显示
- // minPackingQuantity: minPackingQuantity, // 最小包装单元数量
- packingQuantity:
- this.saleProductList[index] &&
- this.saleProductList[index].isAllPackageData &&
- this.saleProductList[index].isAllPackageData == 1
- ? this.saleProductList[index].packingCount
- : packingQuantity, // 包装数量
- packingUnit:
- this.saleProductList[index] &&
- this.saleProductList[index].isAllPackageData &&
- this.saleProductList[index].isAllPackageData == 1
- ? this.saleProductList[index].packingUnit
- : packingUnit, // 单位
- measureQuantity:
- this.saleProductList[index] &&
- this.saleProductList[index].isAllPackageData &&
- this.saleProductList[index].isAllPackageData == 1
- ? this.saleProductList[index].quantity
- : measureQuantity, // 计量数量
- // measureQuantityOld,
- measureUnit:
- this.saleProductList[index] &&
- this.saleProductList[index].isAllPackageData &&
- this.saleProductList[index].isAllPackageData == 1
- ? this.saleProductList[index].measuringUnit
- : item.measuringUnit, // 计量单位
- packingUnitId:
- filtersItem.purchaseUnitId || filtersItem.saleUnitId,
- modelKey: filtersItem.modelKey
- ? filtersItem.modelKey
- : '', // 机型
- colorKey: filtersItem.colorKey
- ? filtersItem.colorKey
- : '', // 颜色
- measureType: item.measureType, // 计量方式
- netWeight: item.netWeight > -1 ? item.netWeight : 0, // 净重
- singleWeight: singleWeight || 0, // 单重重量
- weight: weight || 0, // 总重量
- weightUnit: item.weightUnit, // 重量单位
- totalMoney: totalMoney, // 总价
- unitPrice: item.unitPrice || unitPrice, // 单价
- pricingWay: pricingWay, //计价方式
- purpose: '', // 用途
- detailPurchaseDate,
- detailExpireDate: this.saleProductList.find(
- (product) => product.productId == item.id
- )?.guaranteePeriodDeadline,
- detailProductionDate: this.saleProductList.find(
- (product) => product.productId == item.id
- )?.productionDate,
- provenance: filtersItem.provenance, //产地
- isUnpack: item.isUnpack, // 是否允许拆包
- warehouseId, // 仓库id
- warehouseName, // 仓库名称
- warehouseIds,
- warehouseNames,
- qualityControl: filtersItem?.isComeCheck // 是否需要质检
- };
- });
- console.log(this.productList, 'this.productListtttttttttttt');
- this.$nextTick(() => {
- this.batchSave();
- // this.listSaveArrs()
- });
- });
- }
- console.log('this.detailList-----------------', this.detailList);
- if (this.detailList?.length > 0) {
- if (
- this.form != null &&
- Object.keys(this.form).length > 0 &&
- this.form.categoryLevelTopId != ''
- ) {
- this.formData.extInfo.assetType = Array.from(
- new Set(this.form?.categoryLevelTopId?.split(','))
- );
- } else {
- this.$message.warning('未获取到物品类型!');
- }
- // 包装列表 this.detailList
- // 获取主数据物品详情
- // let { category } = await getDetails(this.form.categoryId);
- let codeList = this.detailList.map((item) => {
- return item.productCode || item.categoryCode;
- });
- storageApi.getListByNameOrModeType({ codeList, queryConditions: this.queryConditions }).then(async (res) => {
- console.log(res, 'detailList-res');
- console.log(this.form, 'this.form.warehouseId');
- console.log(this.bizType, 'this.bizType~~~');
- // 获取批次号
- const batchNo = await getCode('lot_number_code');
- // 获取供应商
- const supplierList = await storageApi.contactQueryByCategoryIdsAPI({
- categoryIds: res.map((item) => item.id)
- });
- // 获取包装规格
- let packingSpecification =
- await storageApi.getCategoryPackageDisposition({
- categoryIds: res.map((item) => item.id)
- });
- this.packingSpecificationOption = res.map((item) => {
- return packingSpecification
- .filter((ite) => item.id == ite.categoryId)
- .sort((a, b) => a.sort - b.sort);
- });
- // 获取相同仓库
- let warehouseIds = [];
- let warehouseNames = [];
- console.log(this.form.totalCount, 'this.form.warehouseId');
- for (let index = 0; index < this.form.totalCount; index++) {
- warehouseIds.push(this.form.warehouseId);
- warehouseNames.push(this.form.warehouseName);
- }
- if (this.bizType == 4 || this.bizType == 1) {
- warehouseIds.push(this.form.warehouseId);
- warehouseNames.push(this.form.warehouseName);
- }
- if (this.isMoreProduct) {
- this.formData.extInfo.assetType = [];
- res.map((item) => {
- this.formData.extInfo.assetType.push(
- item.categoryLevelPathIdParent
- );
- });
- this.formData.extInfo.assetType = Array.from(
- new Set(...this.formData.extInfo.assetType)
- );
- }
- const newSpecificationOption = this.getNewSpecificationOption(
- this.packingSpecificationOption
- );
- // 生成产品列表
- this.productList = res.map((item, index) => {
- // 显示规格
- let packingSpecificationLabel = this.packingSpecificationOption[
- index
- ]
- .map((item) => {
- if (item.sort > 0) {
- return `${item.packageCell}${item.packageUnit}/${item.conversionUnit}`;
- }
- })
- .filter((item) => !!item);
- // 换算重量
- let weight = 0;
- if (
- this.form?.weightUnit?.toUpperCase() ==
- item?.weightUnit.toUpperCase()
- ) {
- weight = this.form.totalWeight;
- } else {
- switch (item.weightUnit.toUpperCase()) {
- case 'KG':
- if (this.form.totalWeight > -1) {
- weight = this.$math.format(
- this.form.totalWeight / 1000,
- 14
- );
- } else {
- weight = 0;
- }
- break;
- case 'G':
- if (this.form.totalWeight > -1) {
- weight = this.$math.format(
- this.form.totalWeight * 1000,
- 14
- );
- } else {
- weight = 0;
- }
- break;
- case 'L':
- if (this.form.totalWeight > -1) {
- weight = this.$math.format(
- this.form.totalWeight * 1000,
- 14
- );
- } else {
- weight = 0;
- }
- break;
- case 'l':
- if (this.form.totalWeight > -1) {
- weight = this.$math.format(
- this.form.totalWeight * 1000,
- 14
- );
- } else {
- weight = 0;
- }
- break;
- case 'ML':
- if (this.form.totalWeight > -1) {
- weight = this.$math.format(
- this.form.totalWeight * 1000,
- 14
- );
- } else {
- weight = 0;
- }
- break;
- case 'ml':
- if (this.form.totalWeight > -1) {
- weight = this.$math.format(
- this.form.totalWeight * 1000,
- 14
- );
- } else {
- weight = 0;
- }
- break;
- }
- }
- let packingUnit = item.packingUnit;
- let singleWeight = item.singleWeight || 0; // 单重重量
- return {
- index: this.productList.length + index,
- isSave: true,
- categoryId: item.id, // 物品id
- categoryName: item.name, // 物品名称
- categoryCode: item.code, // 物品编码
- categoryModel: item.modelType, // 物品型号
- specification: item.specification, // 规格
- brandNum: item.brandNum, // 牌号
- colorKey:
- this.bizType == 1
- ? this.form.colorKey
- ? this.form.colorKey
- : ''
- : item.colorKey
- ? item.colorKey
- : '', // 颜色
- modelKey:
- this.bizType == 1
- ? this.form.modelKey
- ? this.form.modelKey
- : ''
- : item.modelKey
- ? item.modelKey
- : '', // 机型
- batchNo: [1, 3, 6].includes(this.bizType)
- ? this.detailList[0]?.batchNo || batchNo
- : batchNo, // 批次号
- supplierListOptions: supplierList[item.id], // 供应商列表
- supplierId:
- this.detailList.find((val) => val.categoryCode == item.code)
- ?.supplierId || item.supplierId, // 供应商id
- supplierCode:
- this.detailList.find((val) => val.categoryCode == item.code)
- ?.supplierCode || item.supplierCode,
- supplierName:
- this.detailList.find((val) => val.categoryCode == item.code)
- ?.supplierName || item.supplierName, // 供应商名称
- approvalNumber: item.approvalNumber, // 批准文号
- productionRequirements: this.form.productionRequirements,
- packingSpecification: item.packingSpecification, // 包装规格
- packingSpecificationOption: newSpecificationOption[index], // 包装规格选项
- packingSpecificationLabel: packingSpecificationLabel, // 包装规格显示
- // minPackingQuantity: 1, // 最小包装单元数量
- packingQuantity: this.isMoreProduct
- ? this.detailList.filter(
- (val) => val.productCode == item.code
- ).length
- : this.detailList.length || this.form.detailList.length, // 包装数量
- packingUnit: packingUnit, // 单位
- measureQuantity: this.isMoreProduct
- ? this.getMeasureQuantity(item.code)
- : this.form.totalCount, // 计量数量
- measureUnit: item.measuringUnit, // 计量单位
- measureType: item.measureType, // 计量方式
- netWeight: item.netWeight > -1 ? item.netWeight : 0, // 净重
- weight: weight || 0, // 重量
- singleWeight: singleWeight || 0,
- weightUnit: item.weightUnit, // 重量单位
- totalMoney: item.totalPrice, // 总价
- unitPrice: item.unitPrice, // 单价
- purpose: '', // 用途
- isUnpack: item.isUnpack, // 是否允许拆包
- warehouseId: this.isMoreProduct
- ? this.detailList.find((val) => val.productCode == item.code)
- ?.warehouseId
- : this.form.warehouseId, // 仓库id
- warehouseName: this.isMoreProduct
- ? this.detailList.find((val) => val.productCode == item.code)
- ?.warehouseName
- : this.form.warehouseName, // 仓库名称
- warehouseIds: this.isMoreProduct
- ? this.detailList
- .filter((val) => val.productCode == item.code)
- .map((item) => item.warehouseId)
- : warehouseIds,
- warehouseNames: this.isMoreProduct
- ? this.detailList
- .filter((val) => val.productCode == item.code)
- .map((item) => item.warehouseName)
- : warehouseNames
- };
- });
- console.log('this.isMoreProduct', this.isMoreProduct);
- let getAssetNumPr = this.isMoreProduct
- ? this.detailList.map((val) => {
- console.log('val', val);
- return {
- assetCode: val.productCode,
- batchNum: val.productBrand ? val.productBrand : val.batchNo,
- num: 1
- };
- })
- : [
- {
- assetCode:
- this.productList[0].categoryCode +
- this.productList[0].index,
- batchNum: this.productList[0].batchNo,
- num: this.detailList.length
- }
- ];
- console.log(this.productList, 'this.productList');
- console.log(this.detailList, 'this.detailList');
- console.log(this.detailList.length, 'this.detailList');
- console.log(getAssetNumPr, 'getAssetNumPr');
- // 生成包装编码
- const { data } = await storageApi.getAssetNum(getAssetNumPr);
- let packingCodeList = data;
- // 生产包装
- this.packingList = this.detailList.map((item, index) => {
- // if (item.isAllPackageData != 1) {
- // console.log(item, 'itemitemitemitemitemitem1');
- // console.log(item.packingUnit, 'itemitemitemitemitemitem2');
- // 换算重量
- let weight = 0;
- if (
- this.productList[0].weightUnit.toUpperCase() ==
- item.weightUnit.toUpperCase()
- ) {
- weight = this.form.totalWeight;
- } else {
- switch (this.productList[0].weightUnit.toUpperCase()) {
- case 'KG':
- if (item.weightUnit > -1) {
- weight = this.$math.format(item.weightUnit / 1000, 14);
- } else {
- weight = 0;
- }
- break;
- case 'G':
- if (item.weightUnit > -1) {
- weight = this.$math.format(item.weightUnit * 1000, 14);
- } else {
- weight = 0;
- }
- break;
- case 'L':
- if (item.weightUnit > -1) {
- weight = this.$math.format(item.weightUnit / 1000, 14);
- } else {
- weight = 0;
- }
- break;
- case 'l':
- if (item.weightUnit > -1) {
- weight = this.$math.format(item.weightUnit / 1000, 14);
- } else {
- weight = 0;
- }
- break;
- case 'ML':
- if (item.weightUnit > -1) {
- weight = this.$math.format(item.weightUnit / 1000, 14);
- } else {
- weight = 0;
- }
- break;
- case 'ml':
- if (item.weightUnit > -1) {
- weight = this.$math.format(item.weightUnit / 1000, 14);
- } else {
- weight = 0;
- }
- break;
- }
- }
- // 代入时间
- let obj = this.getNowDate();
- let productionDate = '';
- let purchaseDate = '';
- if (this.formData.bizType == '1') {
- // 生产入库
- productionDate = `${obj.year}-${obj.month}-${obj.strDate} ${obj.hour}:${obj.minute}:${obj.second}`;
- // this.curDateType = 'productionDate';
- } else if (this.formData.bizType == '2') {
- // 采购入库
- const defaultTime = '00:00:00';
- purchaseDate =
- this.form.purchaseDate ||
- `${this.form.receiveDate} ${defaultTime}`;
- // this.curDateType = 'purchaseDate';
- }
- let clientCode = '';
- if (this.bizType == 2) {
- clientCode = item.customerMark;
- } else if (this.bizType != 2) {
- clientCode = item.clientCode || item.extInfo?.clientCode;
- }
- return {
- index: this.isMoreProduct
- ? this.productList.find(
- (val) => val.categoryCode == item.productCode
- ).index +
- '-' +
- index
- : this.productList[0].index + '-' + index, // 包装索引
- warehouseId:
- item.warehouseId || this.productList[0].warehouseIds[index], // 仓库id
- warehouseName:
- item.warehouseName ||
- this.productList[0].warehouseNames[index], // 仓库名称
- categoryName:
- item.productName || this.productList[0].categoryName, // 产品名称
- categoryCode:
- item.productCode || this.productList[0].categoryCode, // 产品编码
- categoryModel:
- item.modelType || this.productList[0].categoryModel, // 物品型号
- specification:
- item.specification || this.productList[0].specification, // 规格
- brandNum: item.productBrand || this.productList[0].brandNum, // 牌号
- colorKey:
- (item.colorKey ? item.colorKey : '') ||
- this.productList[0].colorKey, // 颜色
- modelKey:
- (item.modelKey ? item.modelKey : '') ||
- this.productList[0].modelKey, // 机型
- parentIndex: this.isMoreProduct
- ? this.productList.find(
- (val) => val.categoryCode == item.productCode
- ).index
- : this.productList[0].index, // 产品索引
- batchNo: this.productList[0].batchNo, // 批次号
- packageNo:
- item.packageNo ||
- item.packingCode ||
- packingCodeList[index]?.onlyCode, // 包装编码
- packingQuantity: 1, // 包装数量
- packingUnit: item.packingUnit, // 单位
- measureQuantity: item.quantity || item.measureQuantity, // 计量数量
- measureUnit: item.measuringUnit || item.measureUnit, // 计量单位
- supplierCode: item.supplierCode,
- supplierId: item.supplierId,
- supplierName: item.supplierName,
- weight: item.packingWeight || 0, // 重量
- singleWeight: item.singleWeight || 0,
- pricingWay: item.pricingWay,
- weightUnit: item.weightUnit || this.productList[0].weightUnit, // 重量单位
- packingSpecificationOption: this.isMoreProduct
- ? this.productList.find(
- (val) => val.categoryCode == item.productCode
- )?.packingSpecificationOption
- : this.productList[0].packingSpecificationOption, // 包装规格
- netWeight: this.productList[0].netWeight, // 净重
- barcodes: item.barcodes || item.sendCode, // 发货条码
- clientCode: clientCode, // 客户代号
- materielDesignation:
- item.materielDesignation || item.extInfo?.materielCode, // 物料代号
- engrave: item.engrave || item.extInfo?.engrave, // 刻码
- isUnpack: this.productList[0].isUnpack, // 是否允许拆包
- productionDate: productionDate, // 生产日期
- purchaseDate: purchaseDate, // 采购时间
- result: 1, // 结果(1合格 2不合格)
- status: 2, // 状态(0=未质检 1待检 2已检)
- serialNumber: item.productSequence // 产品序号
- };
- // }
- });
- console.log(this.packingList, '包装明细列表');
- this.packingList.forEach((item) => {
- this.packingWeightCahnge('', item);
- });
- });
- }
- },
- //获取计量数量
- getMeasureQuantity(code) {
- let measureQuantity = 0;
- this.detailList.forEach((item) => {
- if (code == item.productCode) {
- measureQuantity += item.quantity;
- }
- });
- return measureQuantity;
- },
- //多产品明细获取批次号 ys
- // getBatch(code) {
- // let batch=''
- // console.log(this.productList,'this.productList')
- // this.productList.forEach((item) => {
- // if (code == item.) {
- // batch =item.batchNo
- // }
- // });
- // return batch
- // },
- //多产品明细数据转换
- async getDetailsVal(code, productBrand) {
- const { data } = await storageApi.getAssetNum([
- {
- assetCode: code,
- batchNum: 1,
- num: 1
- }
- ]);
- return data[0].onlyCode;
- },
- // 获取当前时间函数
- getNowDate() {
- let date = new Date(),
- obj = {
- year: date.getFullYear(), //获取当前月份(0-11,0代表1月)
- month: date.getMonth() + 1, //获取当前月份(0-11,0代表1月)
- strDate: date.getDate(), // 获取当前日(1-31)
- hour: date.getHours(), //获取当前小时(0 ~ 23)
- minute: date.getMinutes(), //获取当前分钟(0 ~ 59)
- second: date.getSeconds() //获取当前秒数(0 ~ 59)
- };
- Object.keys(obj).forEach((key) => {
- if (obj[key] < 10) obj[key] = `0${obj[key]}`;
- });
- return obj;
- },
- //选择负责人
- handHead(row, index) {
- let item = {
- id: row.unpackUserId
- };
- this.$refs.headRef.open(item, index);
- },
- //选择负责人回调
- changeHead(obj, index) {
- this.$set(this.productList[index], 'unpackUserId', obj.id);
- this.$set(this.productList[index], 'unpackUserName', obj.name);
- },
- // 赋值入库时间
- getNowFormatDate() {
- const obj = this.getNowDate();
- const defaultTime = '00:00:00';
- const currentTime = `${obj.hour}:${obj.minute}:${obj.second}`;
- if (
- this.bizType === 2 ||
- this.bizType === '2' ||
- this.bizType === 6 ||
- this.bizType === '6'
- ) {
- this.formData.storageTime = this.form.receiveDate
- ? `${this.form.receiveDate} ${defaultTime}`
- : `${obj.year}-${obj.month}-${obj.strDate} ${currentTime}`;
- } else {
- this.formData.storageTime = `${obj.year}-${obj.month}-${obj.strDate} ${currentTime}`;
- }
- },
- // 获取物品列表
- async getListItems() {
- const { data } = await getTreeByGroup({ type: 2 });
- this.goodsLists = data;
- },
- // 打开单据来源弹窗
- openDocumentSourceDialog() {
- console.log('打开单据来源弹窗');
- },
- // 清除单据来源
- clearDocumentSource() {
- this.formData.sourceBizNo = '';
- },
- // 添加产品
- addProduct() {
- if (this.formData.extInfo.assetType.length <= 0) {
- return this.$message.error('请选择物品类型');
- }
- if (!this.formData.bizType) {
- return this.$message.error('请选择入库类型');
- }
- this.visibleDialog = true;
- },
- // 键盘移动
- moveFocus(event, index, key, type, row) {
- let keyfield = [];
- let listLength = 0;
- switch (type) {
- case '产品':
- listLength = this.productList.length;
- keyfield = ['batchNo', 'packingQuantity', 'unitPrice', 'purpose'];
- break;
- case '包装':
- listLength = this.showPackingList.length;
- if (row.measureUnit != row.weightUnit) {
- keyfield = [
- 'packing_materielDesignation',
- 'packing_clientCode',
- 'packing_engrave',
- 'packing_weight'
- ];
- } else {
- keyfield = [
- 'packing_materielDesignation',
- 'packing_clientCode',
- 'packing_engrave'
- ];
- }
- break;
- case '物料':
- listLength = this.showMaterialList.length;
- if (row.measureUnit != row.weightUnit) {
- keyfield = [
- 'material_materielDesignation',
- 'material_clientCode',
- 'material_engrave',
- 'material_weight'
- ];
- } else {
- keyfield = [
- 'material_materielDesignation',
- 'material_clientCode',
- 'material_engrave'
- ];
- }
- break;
- }
- if (event.keyCode === 13) {
- // 回车
- if (
- index === listLength - 1 &&
- key === keyfield[keyfield.length - 1]
- ) {
- // 最后一行最后一个
- return;
- }
- this.$refs[key + index].blur();
- if (key === keyfield[keyfield.length - 1]) {
- // 当前行最后一个,跳转下一行第一个
- if (this.$refs[keyfield[0] + (index + 1)].value == 0) {
- this.$refs[keyfield[0] + (index + 1)].value = '';
- }
- this.$refs[keyfield[0] + (index + 1)].focus();
- } else {
- // 跳转下一个
- const nextkeyindex = keyfield.findIndex((k) => k === key) + 1;
- this.$nextTick(() => {
- if (this.$refs[keyfield[nextkeyindex] + index].value == 0) {
- this.$refs[keyfield[nextkeyindex] + index].value = '';
- }
- this.$refs[keyfield[nextkeyindex] + index].focus();
- });
- }
- }
- // 向上 =38
- if (event.keyCode === 38) {
- if (index === 0) {
- // 第一行
- return;
- }
- this.$refs[key + index].blur();
- this.$nextTick(() => {
- if (this.$refs[key + (index - 1)].value == 0) {
- this.$refs[key + (index - 1)].value = '';
- }
- this.$refs[key + (index - 1)].focus();
- });
- }
- // 下 = 40
- if (event.keyCode === 40) {
- if (index === listLength - 1) {
- // 最后一行
- return;
- }
- this.$refs[key + index].blur();
- this.$nextTick(() => {
- if (this.$refs[key + (index + 1)].value == 0) {
- this.$refs[key + (index + 1)].value = '';
- }
- this.$refs[key + (index + 1)].focus();
- });
- }
- // 左 = 37
- if (event.keyCode === 37) {
- console.log('向左');
- if (index === 0 && key === keyfield[0]) {
- // 第一行第一个
- console.log('第一行第一个无法向左');
- return;
- }
- this.$refs[key + index].blur();
- if (key === keyfield[0]) {
- if (
- this.$refs[keyfield[keyfield.length - 1] + (index - 1)].value == 0
- ) {
- this.$refs[keyfield[keyfield.length - 1] + (index - 1)].value =
- '';
- }
- // 当前行第一个,跳转上一行最后一个
- this.$refs[keyfield[keyfield.length - 1] + (index - 1)].focus();
- } else {
- // 跳转上一个
- const prevkeyindex = keyfield.findIndex((k) => k === key) - 1;
- this.$nextTick(() => {
- if (this.$refs[keyfield[prevkeyindex] + index].value == 0) {
- this.$refs[keyfield[prevkeyindex] + index].value = '';
- }
- this.$refs[keyfield[prevkeyindex] + index].focus();
- });
- }
- }
- // 右 = 39
- if (event.keyCode === 39) {
- if (
- index === listLength - 1 &&
- key === keyfield[keyfield.length - 1]
- ) {
- // 最后一行最后一个
- return;
- }
- this.$refs[key + index].blur();
- if (key === keyfield[keyfield.length - 1]) {
- // 当前行最后一个,跳转下一行第一个
- if (this.$refs[keyfield[0] + (index + 1)].value == 0) {
- this.$refs[keyfield[0] + (index + 1)].value = '';
- }
- this.$refs[keyfield[0] + (index + 1)].focus();
- } else {
- // 跳转下一个
- const nextkeyindex = keyfield.findIndex((k) => k === key) + 1;
- this.$nextTick(() => {
- if (this.$refs[keyfield[nextkeyindex] + index].value == 0) {
- this.$refs[keyfield[nextkeyindex] + index].value = '';
- }
- this.$refs[keyfield[nextkeyindex] + index].focus();
- });
- }
- }
- },
- // 入库
- async getReturnStorage() {
- if (this.productList.length <= 0) {
- this.$message.error('请先添加产品信息');
- return;
- }
- let boolen = this.productList.every((item) => item.isSave);
- if (!boolen) {
- this.$message.error('请先保存所有产品信息');
- return;
- }
- if (this.isShowPackage) {
- const userNameLength = this.productList.filter(
- (item) => !item.unpackUserName
- ).length;
- const packgeLength = this.productList.filter(
- (item) => !item.ifPackageOk
- ).length;
- if (userNameLength || packgeLength) {
- this.$message.error('请先填写拆包装责任人和包装完好与否');
- return;
- }
- }
- // 处理包装数据
- let _packingList = [];
- _packingList = this.packingList.map((packingItem) => {
- let _taskId = null;
- let _workOrderId = null;
- if ([1].includes(this.bizType)) {
- _workOrderId = this.detailList[0]?.workOrderId;
- _taskId = this.detailList[0]?.taskId;
- } else {
- _workOrderId = this.detailProductList[0]?.workOrderId;
- _taskId = this.detailProductList[0]?.taskId;
- }
- if (packingItem.modelKey) {
- packingItem.modelKey = packingItem.modelKey;
- }
- if (packingItem.colorKey) {
- packingItem.colorKey = packingItem.colorKey;
- }
- return {
- ...packingItem,
- workOrderId: _workOrderId,
- taskId: _taskId,
- outsourceBatchNo: this.detailProductList[0]?.batchNo,
- outsourceCode: this.detailProductList[0]?.sourceCode,
- materialDetailList: this.materialList.filter(
- (item) => item.parentIndex === packingItem.index
- )
- };
- });
- // 处理产品数据
- this.productList = this.productList.map((productItem) => {
- if (productItem.modelKey) {
- productItem.modelKey = productItem.modelKey;
- }
- if (productItem.colorKey) {
- productItem.colorKey = productItem.colorKey;
- }
- return {
- ...productItem,
- outInDetailRecordRequestList: _packingList.filter(
- (item) => item.parentIndex === productItem.index
- )
- };
- });
- this.formData.outInDetailList = this.productList;
- let obj = deepClone(this.formData);
- // 处理物品类型assetType
- obj.extInfo.assetType = obj.extInfo.assetType.join(',');
- obj.extInfo.documentSource = this.formData.sourceBizNo;
- obj.extInfo.deptName = this.formData.extInfo.deptName;
- obj.extInfo.supplierName = this.form.supplierName;
- obj.extInfo.deliveryPhone = this.formData.extInfo.deliveryPhone;
- // 处理仓库id
- let warehouseId = [];
- let warehouseName = [];
- let warehouseIds = this.productList
- .map((item) => item.warehouseIds)
- .flat();
- let warehouseNames = this.productList
- .map((item) => item.warehouseNames)
- .flat();
- warehouseIds.forEach((item, index) => {
- if (!warehouseId.includes(item)) {
- warehouseId.push(item);
- warehouseName.push(warehouseNames[index]);
- }
- });
- obj.warehouseIds = warehouseId;
- obj.warehouseNames = warehouseName;
- obj._packingList = _packingList;
- // setTimeout(() => {
- // resolve(obj);
- // }, 1000);
- // if (productData.length) {
- // this.$alert(
- // `物料${productData.join(',')}没有维护供应商,${
- // productData.length > 1 ? '会合并下发为一个采购订单,' : ''
- // }是否继续下发!`,
- // {
- // confirmButtonText: '确定',
- // callback: (action) => {
- // if (action == 'confirm') {
- // this.issuePurchaseOrderFn();
- // }
- // }
- // }
- // );
- // } else {
- // this.issuePurchaseOrderFn();
- // }
- const isVerifyData = await storageApi.isVerifyRepeatIsStock({
- categoryCodes: this.productList.map((item) => item.categoryCode),
- batchNos: this.productList.map((item) => item.batchNo)
- });
- return new Promise((resolve, reject) => {
- if (isVerifyData?.length) {
- this.$confirm(
- `当前批次:${isVerifyData[0].batchNo},物品${isVerifyData
- .map((item) => item.categoryName)
- .join(',')}已有入库记录,是否继续入库!`,
- {
- confirmButtonText: '是',
- cancelButtonText: '否'
- }
- )
- .then(() => {
- resolve(obj);
- })
- .catch(() => {
- resolve(false);
- });
- } else {
- resolve(obj);
- }
- });
- },
- pickingHandleScroll() {
- if (this.showPackingList.length < this.packingList.length) {
- if (this.packingList.length > this.pageSize) {
- this.pickingPageNum += 1;
- }
- this.pickingFetchData();
- }
- },
- pickingFetchData() {
- const start = (this.pickingPageNum - 1) * this.pageSize;
- const end = start + this.pageSize;
- this.showPackingList = this.showPackingList.concat(
- this.packingList.slice(start, end)
- );
- },
- materielHandleScroll() {
- if (this.showMaterialList.length < this.materialList.length) {
- if (this.materialList.length > this.pageSize) {
- this.materielPageNum += 1;
- }
- this.materielFetchData();
- }
- },
- materielFetchData() {
- const start = (this.materielPageNum - 1) * this.pageSize;
- const end = start + this.pageSize;
- this.showMaterialList = this.showMaterialList.concat(
- this.materialList.slice(start, end)
- );
- },
- // 日期选择
- dateConfirm() {
- this.packingListSelected.forEach((item) => {
- this.$set(item, this.curDateType, this.batchTime);
- });
- this.batchTime = '';
- this.dateVisible = false;
- },
- // 包装重量修改
- packingWeightCahnge(value, row) {
- // 修改物品重量
- let filterPackingList = this.packingList.filter((item) => {
- return item.parentIndex === row.parentIndex;
- });
- let productIndex = this.productList.findIndex((item) => {
- return item.index === row.parentIndex;
- });
- let totalWeight = filterPackingList.reduce(
- (accumulator, currentValue) => {
- return this.$math.format(+accumulator + +currentValue.weight, 14);
- },
- 0
- );
- if (totalWeight != 'NaN') {
- this.$set(this.productList[productIndex], 'weight', totalWeight);
- } else {
- this.$set(this.productList[productIndex], 'weight', 0);
- }
- this.$set(
- this.productList[productIndex],
- 'singleWeight',
- totalWeight / this.productList[productIndex].measureQuantity || 0
- );
- // 修改拆分物料
- // this.materialList.map((item, index) => {
- // if (item.parentIndex === row.index) {
- // this.$set(
- // this.materialList[index],
- // 'weight',
- // this.$math.format(value / row.measureQuantity, 14) >= 0
- // ? this.$math.format(value / row.measureQuantity, 14)
- // : 0
- // );
- // }
- // });
- },
- // 物料重量修改
- materialWeightCahnge(row) {
- // 修改包装重量
- let filterMaterialList = this.materialList.filter((item) => {
- return item.parentIndex === row.parentIndex;
- });
- let packingIndex = this.packingList.findIndex((item) => {
- return item.index === row.parentIndex;
- });
- let totalMaterialWeight = filterMaterialList.reduce(
- (accumulator, currentValue) => {
- return this.$math.format(+accumulator + +currentValue.weight, 14);
- },
- 0
- );
- this.$set(
- this.packingList[packingIndex],
- 'weight',
- totalMaterialWeight
- );
- // 修改物品重量
- let filterPackingList = this.packingList.filter((item) => {
- return (
- item.parentIndex === this.packingList[packingIndex].parentIndex
- );
- });
- let productIndex = this.productList.findIndex((item) => {
- return item.index === this.packingList[packingIndex].parentIndex;
- });
- let totalWeight = filterPackingList.reduce(
- (accumulator, currentValue) => {
- return this.$math.format(+accumulator + +currentValue.weight, 14);
- },
- 0
- );
- this.$set(this.productList[productIndex], 'weight', totalWeight);
- },
- // 包装质检结果修改
- packingResultCahnge(value, row) {
- // 修改物料质检结果(0无 1合格 2不合格 3让步接收)
- this.materialList.map((item, index) => {
- if (item.parentIndex === row.index) {
- this.$set(this.materialList[index], 'result', value);
- this.$set(this.materialList[index], 'status', 2);
- }
- });
- },
- // 物料质量结果修改
- materialResultCahnge(value, row) {
- // 修改包装质检结果
- let filterMaterialList = this.materialList.filter((item) => {
- return item.parentIndex == row.parentIndex;
- });
- let packingIndex = this.packingList.findIndex((item) => {
- return item.index == row.parentIndex;
- });
- let boolen = filterMaterialList.every((item) => {
- return item.result == 1;
- });
- this.$set(this.packingList[packingIndex], 'result', boolen ? 1 : 2);
- this.$set(this.packingList[packingIndex], 'status', 2);
- },
- // 重量限制
- weightInput(value, row, type) {
- const newValue = value.replace(/[^\d.]/g, ''); // 保留数字和小数点
- const decimalCount = (newValue.match(/\./g) || []).length; // 计算小数点的个数
- if (row.weight < 0) {
- row.weight = 0;
- } else if (row.weight > 9999) {
- row.weight = 9999;
- } else {
- if (decimalCount > 1) {
- // 如果小数点个数大于1,移除多余的小数点
- const lastIndex = newValue.lastIndexOf('.');
- row.weight =
- newValue.slice(0, lastIndex) + newValue.slice(lastIndex + 1);
- } else if (decimalCount === 1) {
- // 如果小数点个数等于1,允许小数点的输入
- row.weight = newValue;
- } else {
- row.weight = newValue === '' ? 0 : parseFloat(newValue); // 如果输入为空,则设为0
- }
- }
- if (type === '包装') {
- this.packingWeightCahnge(value, row);
- } else {
- this.materialWeightCahnge(row);
- }
- },
- //计算金额
- calcSumTotal(measureQuantity, unitPrice, row) {
- //最小包装单元,包装数量,单价
- if (this.bizType != 2) {
- const total = {
- measureQuantity: Number(measureQuantity > 0 ? measureQuantity : 0),
- unitPrice: Number(unitPrice > 0 ? unitPrice : 0)
- };
- let number = Number(
- this.$math.format(total.measureQuantity * total.unitPrice, 14)
- );
- row.totalMoney = number;
- return number;
- } else {
- return row.totalMoney;
- }
- },
- // 包装维度最小包装单元改变——>总重量
- minPackingQuantityChange(row, value, index) {
- if (row.measureUnit !== 'KG') {
- if (value.replace(/^(0+)|[^\d]+/g, '') > 9999) {
- this.$set(this.productList[index], 'minPackingQuantity', 9999);
- } else {
- this.$set(
- this.productList[index],
- 'minPackingQuantity',
- value.replace(/^(0+)|[^\d]+/g, '')
- );
- }
- } else {
- if (value < 1) {
- this.$set(this.productList[index], 'minPackingQuantity', 1);
- } else if (value > 9999) {
- this.$set(this.productList[index], 'minPackingQuantity', 9999);
- }
- }
- if (row.packingQuantity >= 0 && value >= 0) {
- this.packNum(row, row.packingQuantity, index);
- }
- },
- // 包装数量过滤处理改变——>总重量
- packNum(row, value, index) {
- const total = {
- minPackingQuantity: Number(
- row.minPackingQuantity > 0
- ? row.minPackingQuantity > 9999
- ? 9999
- : row.minPackingQuantity
- : 0
- ),
- packingQuantity: Number(
- row.packingQuantity > 0
- ? row.packingQuantity > 9999
- ? 9999
- : row.packingQuantity
- : 0
- )
- };
- const totals = Number(
- this.$math.format(
- total.minPackingQuantity * total.packingQuantity,
- 14
- )
- );
- if (row.measureUnit == row.weightUnit) {
- row.weight = Number(
- this.$math.format(
- total.minPackingQuantity *
- 1 *
- Number(total.packingQuantity).toFixed(2),
- 14
- )
- );
- } else {
- row.weight = Number(
- this.$math.format(
- totals *
- (row.netWeight > 0 ? Number(row.netWeight).toFixed(2) : 0),
- 14
- )
- );
- }
- this.$set(this.productList[index], 'measureQuantity', totals);
- // 清空仓库
- this.$set(this.productList[index], 'warehouseId', '');
- this.$set(this.productList[index], 'warehouseName', '');
- if (value.replace(/^(0+)|[^\d]+/g, '') > 9999) {
- this.$set(this.productList[index], 'packingQuantity', 9999);
- } else {
- this.$set(
- this.productList[index],
- 'packingQuantity',
- value.replace(/^(0+)|[^\d]+/g, '')
- );
- }
- // return (row.packingQuantity = value.replace(/^(0+)|[^\d]+/g, ''));
- },
- // 表格样式
- rowClass({ row, column, rowIndex, columnIndex }) {
- if (rowIndex === 1) {
- return {
- display: 'none',
- background: '#EEEEEE'
- };
- }
- return { background: '#0000' };
- },
- //过滤掉单位下拉框 相同的单位
- getNewSpecificationOption(packingSpecificationOption) {
- return packingSpecificationOption;
- return packingSpecificationOption.map((arr) => {
- return arr.reduce((acc, current) => {
- const conversionUnit = current.conversionUnit;
- if (!acc.some((item) => item.conversionUnit === conversionUnit)) {
- acc.push(current);
- }
- return acc;
- }, []);
- });
- },
- // 添加物品明细
- async addGoods(data) {
- // 获取批次号
- const batchNo = await getCode('lot_number_code');
- // 获取供应商
- const supplierList = await storageApi.contactQueryByCategoryIdsAPI({
- categoryIds: data.map((item) => item.id)
- });
- // 获取包装规格
- let packingSpecification =
- await storageApi.getCategoryPackageDisposition({
- categoryIds: data.map((item) => item.id)
- });
- this.packingSpecificationOption = data.map((item) => {
- return packingSpecification
- .filter((ite) => item.id == ite.categoryId)
- .sort((a, b) => a.sort - b.sort);
- });
- const newSpecificationOption = this.getNewSpecificationOption(
- this.packingSpecificationOption
- );
- let productList = data.map((item, index) => {
- // 显示规格
- let packingSpecificationLabel = this.packingSpecificationOption[index]
- .map((item) => {
- if (item.sort > 0) {
- return `${item.packageCell}${item.packageUnit}/${item.conversionUnit}`;
- }
- })
- .filter((item) => !!item);
- return {
- index:
- this.productList.length - 1 > -1
- ? this.productList[this.productList.length - 1].index +
- index +
- 1
- : this.productList.length + index,
- categoryId: item.id, // 物品id
- categoryName: item.name, // 物品名称
- categoryCode: item.code, // 物品编码
- categoryModel: item.modelType, // 物品型号
- specification: item.specification, // 规格
- modelKey: item.modelKey ? item.modelKey : '', // 机型
- colorKey: item.colorKey ? item.colorKey : '', // 颜色
- brandNum: item.brandNum, // 牌号
- batchNo: batchNo, // 批次号
- supplierListOptions: supplierList[item.id], // 供应商列表
- supplierId: '', // 供应商id
- supplierCode: item.supplierCode, // 供应商代号
- supplierName: item.supplierName, // 供应商名称
- measureType: item.measureType, // 计量类型
- approvalNumber: item.approvalNumber, // 批准文号
- packingSpecification: item.packingSpecification, // 包装规格
- packingSpecificationOption: newSpecificationOption[index], // 包装规格选项
- packingSpecificationLabel: packingSpecificationLabel, // 包装规格显示
- minPackingQuantity: '', // 最小包装单元数量
- packingQuantity: '', // 包装数量
- packingUnit: item.measuringUnit, // 单位
- packingUnitId: newSpecificationOption[index].find(
- (v) => v.conversionUnit == item.measuringUnit
- )?.id, // 单位
- measureQuantity: 0, // 计量数量
- measureUnit: item.measuringUnit, // 计量单位
- netWeight: item.netWeight > -1 ? item.netWeight : 0, // 净重
- weight: 0, // 重量
- singleWeight: item.measuringUnit != 'KG' ? item.netWeight : 0, // 单重
- pricingWay: item.pricingWay,
- weightUnit: item.weightUnit, // 重量单位
- totalMoney: item.totalPrice, // 总价
- unitPrice: item.unitPrice, // 单价
- purpose: '', // 用途
- isUnpack: item.isUnpack // 是否允许拆包
- };
- });
- this.productList = this.productList.concat(productList);
- },
- // 物品保存验证表单(批量)
- validateForm() {
- return new Promise(async (resolve, reject) => {
- let list = this.productList.map(async (row, index) => {
- let fileds = [
- `productList.${index}.batchNo`,
- `productList.${index}.packingQuantity`,
- `productList.${index}.packingUnit`,
- `productList.${index}.warehouseId`
- ];
- if (row.isSave) {
- return Promise.resolve(true);
- } else {
- return await Promise.all(
- fileds.map(
- (item) =>
- new Promise(async (res, rej) => {
- this.$refs.productListRef.validateField(item, (err) => {
- if (err) {
- rej(err);
- } else {
- res(true);
- }
- });
- })
- )
- );
- }
- });
- Promise.all(list)
- .then(() => {
- console.log('保存成功!');
- resolve();
- })
- .catch((err) => {
- console.log('保存失败!');
- this.$message.error('请填入必填项!');
- reject(err);
- });
- });
- },
- // 产品批量保存
- async listSaveArrs() {
- this.validateForm()
- .then(async () => {
- // 批量获取包装编码并处理
- let packingCodePrams = this.productList.map((row) => {
- // 判断单位和计量单位是否为不拆物料层规格
- let packingBoolen = !!this.getDict(
- '不拆物料层规格',
- row.packingUnit
- ).dictValue;
- let measureBoolen = !!this.getDict(
- '不拆物料层规格',
- row.measureUnit
- ).dictValue;
- let num = 0;
- if (packingBoolen) {
- let filterArr = row.packingSpecificationOption.filter(
- (item) => {
- return (
- item.packageUnit == row.packingUnit &&
- item.packageUnit != item.conversionUnit
- );
- }
- );
- num = Math.ceil(row.packingQuantity / filterArr[0].packageCell);
- }
- if (row.isSave) {
- return {};
- } else {
- // 处理单位为KG类的情况
- if (packingBoolen) {
- return {
- assetCode: row.categoryCode + row.index,
- batchNum: row.batchNo,
- num
- };
- } else {
- if (row.isUnpack == 1) {
- if (measureBoolen) {
- // 处理单位不为KG类,计量单位为KG类的情况
- let num = row.packingQuantity;
- let splitIndex = row.packingSpecificationOption.findIndex(
- (item) =>
- item.conversionUnit == row.packingUnit &&
- item.packageUnit != item.conversionUnit
- );
- for (; splitIndex > 1; splitIndex--) {
- num = this.$math.format(
- num *
- row.packingSpecificationOption[splitIndex]
- .packageCell,
- 14
- );
- }
- return {
- assetCode: row.categoryCode + row.index,
- batchNum: row.batchNo,
- num
- };
- } else {
- // 处理拆包到最小包装单元数量的情况
- return {
- assetCode: row.categoryCode + row.index,
- batchNum: row.batchNo,
- num: row.measureQuantity
- };
- }
- } else {
- return {
- assetCode: row.categoryCode + row.index,
- batchNum: row.batchNo,
- num
- };
- }
- }
- }
- });
- console.log('packingCodePrams', packingCodePrams);
- let filterPackingCodePrams = packingCodePrams.filter(
- (item) => item.assetCode
- );
- console.log('filterPackingCodePrams', filterPackingCodePrams);
- let { data } = await storageApi.getAssetNum(filterPackingCodePrams);
- let packingCodeList = [];
- packingCodePrams.forEach((item, index) => {
- packingCodeList[index] = data.filter(
- (ite) => ite.assetCode == item.assetCode
- );
- });
- // 批量生成包装
- this.productList.map((row, index) => {
- if (!row.isSave) {
- this.generateWrappers(row, index, packingCodeList[index]);
- this.$set(this.productList[index], 'isSave', true);
- }
- });
- // 加载虚拟列表数据(分页)
- // this.pickingFetchData();
- // this.materielFetchData();
- })
- .catch((err) => {
- console.log(err);
- });
- },
- // 物品保存验证表单(单独)
- validateFormIndividually(index) {
- return new Promise(async (resolve) => {
- let fileds = [
- `productList.${index}.batchNo`,
- `productList.${index}.packingQuantity`,
- `productList.${index}.packingUnit`,
- `productList.${index}.warehouseId`
- ];
- Promise.all(
- fileds.map(
- (item) =>
- new Promise(async (res, rej) => {
- this.$refs.productListRef.validateField(item, (err) => {
- if (err) {
- rej(err);
- } else {
- res(true);
- }
- });
- })
- )
- )
- .then(() => {
- resolve();
- })
- .catch(() => {
- this.$message.error('请填入必填项!');
- });
- });
- },
- // 产品编辑
- listEdit(row) {
- this.$set(row, 'isSave', false);
- // // 重新计算重量
- // const totals = Number(
- // this.$math.format(row.minPackingQuantity * row.packingQuantity, 14)
- // );
- // if (row.measureUnit == row.weightUnit) {
- // row.weight = Number(
- // this.$math.format(
- // row.minPackingQuantity *
- // 1 *
- // Number(row.packingQuantity).toFixed(2),
- // 14
- // )
- // );
- // } else {
- // row.weight = Number(
- // this.$math.format(
- // totals *
- // (row.netWeight > 0 ? Number(row.netWeight).toFixed(2) : 0),
- // 14
- // )
- // );
- // }
- this.deletePackingAndMaterial(row);
- },
- // 根据产品信息删除包装和物料
- deletePackingAndMaterial(row) {
- // 删除包装(去掉不相同的包装)
- this.packingList = this.packingList.filter(
- (item) => item.parentIndex !== row.index
- );
- this.showPackingList = this.showPackingList.filter(
- (item) => item.parentIndex !== row.index
- );
- this.pickingPageNum = Math.ceil(
- this.showPackingList.length / this.pageSize
- );
- // 删除物料(获取相同物料)
- let packingIndexs = this.packingList.map((item) => item.index);
- this.materialList = this.materialList.filter((item) =>
- packingIndexs.includes(item.parentIndex)
- );
- this.showMaterialList = this.showMaterialList.filter((item) =>
- packingIndexs.includes(item.parentIndex)
- );
- this.materielPageNum = Math.ceil(
- this.showMaterialList.length / this.pageSize
- );
- },
- async batchSave() {
- try {
- // 验证所有未保存的表单
- await this.validateForm();
- // 遍历所有产品进行保存
- for (let i = 0; i < this.productList.length; i++) {
- const row = this.productList[i];
- if (!row.isSave) {
- // 执行单个保存逻辑
- await this.listSave(row, i);
- }
- }
- } catch (error) {
- // this.$message.error('批量保存失败,请检查必填项');
- }
- },
- listSave(row, index) {
- console.log('row22222222', row);
- this.validateFormIndividually(index).then(async () => {
- // 判断单位和计量单位是否为不拆物料层规格
- let packingBoolen = !!this.getDict('不拆物料层规格', row.packingUnit)
- .dictValue;
- let measureBoolen = !!this.getDict('不拆物料层规格', row.measureUnit)
- .dictValue;
- console.log('packingBoolen---------', packingBoolen);
- console.log('measureBoolen---------', measureBoolen);
- let packingNum = 0;
- // 处理单位为KG类的情况
- if (packingBoolen) {
- if (!row.isUnpack && row.packingUnit == '立方') {
- packingNum = 1;
- } else {
- let filterArr = row.packingSpecificationOption.filter((item) => {
- return (
- item.packageUnit == row.packingUnit &&
- item.packageUnit != item.conversionUnit
- );
- });
- if (filterArr?.length) {
- packingNum = Math.ceil(
- row.packingQuantity / filterArr[0].packageCell
- );
- }
- }
- }
- // 处理单位不为KG类,计量单位为KG类的情况
- let measureNum = row.packingQuantity;
- let num = 0;
- if (measureBoolen) {
- let splitIndex = row.packingSpecificationOption.findIndex(
- (item) =>
- item.conversionUnit == row.packingUnit &&
- item.packageUnit != item.conversionUnit
- );
- for (; splitIndex > 1; splitIndex--) {
- measureNum = this.$math.format(
- measureNum *
- row.packingSpecificationOption[splitIndex].packageCell,
- 14
- );
- }
- } else {
- if (row.packingSpecificationOption[1]?.packageCell) {
- num = Math.ceil(
- row.measureQuantity /
- row.packingSpecificationOption[1]?.packageCell
- );
- } else {
- num = row.packingQuantity;
- }
- }
- console.log(packingNum, measureNum, num, '加油加油加油');
- // return
- if (row.packingSpecificationLabel?.length < 1) {
- this.$message.error('请到主数据维护包装组信息!');
- return;
- }
- // 不拆包
- if (!row.isUnpack) {
- if (row.packingUnit != row.measureUnit) {
- let pNum = row.packingQuantity;
- const { data } = await storageApi.getAssetNum([
- {
- assetCode: row.categoryCode + row.index,
- batchNum: row.batchNo,
- num: pNum
- }
- ]);
- // this.generateWrappers(row, index, data)
- } else {
- let pNum = 0;
- const { data } = await storageApi.getAssetNum([
- {
- assetCode: row.categoryCode + row.index,
- batchNum: row.batchNo,
- num: pNum
- }
- ]);
- }
- } else {
- if (!packingNum) {
- if (row.packingUnitId) {
- let splitIndex = row.packingSpecificationOption.findIndex(
- (item) => item.id == row.packingUnitId
- );
- if (splitIndex == 0) {
- packingNum = Math.ceil(
- row.measureQuantity /
- row.packingSpecificationOption[1]?.packageCell
- );
- }
- if (splitIndex == 1) {
- packingNum = row.packingQuantity;
- }
- for (; splitIndex > 1; splitIndex--) {
- packingNum = Math.ceil(
- row.packingQuantity *
- row.packingSpecificationOption[splitIndex].packageCell
- );
- }
- } else {
- packingNum = Math.ceil(
- row.measureQuantity /
- row.packingSpecificationOption[1]?.packageCell
- );
- }
- }
- console.log(packingNum, 'packingNum');
- //拆包
- console.log('拆包拆包拆包', row.batchNo);
- const { data } = await storageApi.getAssetNum([
- {
- assetCode: row.categoryCode + row.index,
- batchNum: row.batchNo,
- num: packingNum
- }
- ]);
- this.generateWrappers(row, index, data);
- }
- this.$set(this.productList[index], 'isSave', true);
- this.$set(this.productList[index], 'warehouseId', row.warehouseId);
- this.$set(
- this.productList[index],
- 'warehouseName',
- row.warehouseName
- );
- this.$set(this.productList[index], 'warehouseIds', row.warehouseId);
- this.$set(
- this.productList[index],
- 'warehouseNames',
- row.warehouseName
- );
- });
- },
- //入库明细删除
- listDel(row, index) {
- this.productList.splice(index, 1);
- this.deletePackingAndMaterial(row);
- },
- // 打开仓库弹框
- handleWareHouse(row, idx, type) {
- console.log(row, '踩踩踩踩踩踩踩踩踩踩踩', this.form);
- if (row.packingSpecificationLabel?.length < 1) {
- this.$message.error('请到主数据维护包装组信息!');
- return;
- }
- if (row.isSave) {
- return false;
- }
- let packingBoolen = !!this.getDict('不拆物料层规格', row.packingUnit)
- .dictValue;
- let measureBoolen = !!this.getDict('不拆物料层规格', row.measureUnit)
- .dictValue;
- console.log(packingBoolen, 'packingBoolen');
- console.log(measureBoolen, 'measureBoolen');
- //行内选择仓库
- if (idx > -1 && type != 'batch') {
- if (row.packingQuantity > 0) {
- //不拆
- if (!row.isUnpack) {
- //计量和包装单位相同
- if (row.measureUnit == row.packingUnit) {
- let pNum = 0;
- let mNum = row.measureQuantity;
- this.$refs.wareHouseDailogRef.open(
- pNum,
- mNum,
- idx,
- row.warehouseId,
- row.warehouseName + ''
- // this.form.categoryLevelTopId
- );
- } else {
- let pNum = row.packingQuantity;
- let mNum = row.measureQuantity;
- this.$refs.wareHouseDailogRef.open(
- pNum,
- mNum,
- idx,
- row.warehouseId,
- row.warehouseName + ''
- // this.form.categoryLevelTopId
- );
- }
- } else {
- if (packingBoolen) {
- console.log(
- packingBoolen,
- 'packingBoolen',
- row.packageUnit,
- row.isUnpack
- );
- let filterArr = row.packingSpecificationOption.filter(
- (item) => {
- return (
- item.packageUnit == row.packingUnit &&
- item.packageUnit != item.conversionUnit
- );
- }
- );
- let num = Math.ceil(
- row.packingQuantity / filterArr[0].packageCell
- );
- this.$refs.wareHouseDailogRef.open(
- num,
- row.measureQuantity,
- idx,
- row.warehouseId,
- row.warehouseName + ''
- // this.form.categoryLevelTopId
- );
- } else {
- console.log(measureBoolen, 'measureBoolen');
- let num = row.packingQuantity;
- if (measureBoolen) {
- let splitIndex = row.packingSpecificationOption.findIndex(
- (item) =>
- item.conversionUnit == row.packingUnit &&
- item.packageUnit != item.conversionUnit
- );
- for (; splitIndex > 1; splitIndex--) {
- num = this.$math.format(
- num *
- row.packingSpecificationOption[splitIndex].packageCell,
- 14
- );
- }
- this.$refs.wareHouseDailogRef.open(
- num,
- row.measureQuantity,
- idx,
- row.warehouseId,
- row.warehouseName + ''
- // this.form.categoryLevelTopId
- );
- } else {
- if (
- row.measureType != 1 &&
- row.measureUnit == row.packingUnit
- ) {
- let pNum = 0;
- let mNum = row.measureQuantity;
- this.$refs.wareHouseDailogRef.open(
- pNum,
- mNum,
- idx,
- row.warehouseId,
- row.warehouseName + ''
- // this.form.categoryLevelTopId
- );
- } else {
- if (row.packingSpecificationOption[1]?.packageCell) {
- let num = Math.ceil(
- row.measureQuantity /
- row.packingSpecificationOption[1]?.packageCell
- );
- this.$refs.wareHouseDailogRef.open(
- num,
- row.measureQuantity,
- idx,
- row.warehouseId,
- row.warehouseName + ''
- );
- } else {
- this.$refs.wareHouseDailogRef.open(
- row.packingQuantity,
- row.measureQuantity,
- idx,
- row.warehouseId,
- row.warehouseName + ''
- );
- }
- console.log(num, 'num');
- }
- }
- }
- }
- } else {
- this.$message.error('请先填写包装数量!');
- }
- } else {
- //批量
- console.log(row, `row`);
- console.log(idx, `idx`);
- console.log(type, 'type');
- // 批量设置
- if (row.some((item) => !item.packingQuantity)) {
- this.$message.error('请先填写所有行的包装数量!');
- return;
- }
- for (let i = 0; i < row.length; i++) {
- //测量单位等于包装单位
- if (
- row[i].measureType != 1 &&
- row[i].measureUnit === row[i].packingUnit
- ) {
- row[i].packingQuantity2 = 0;
- console.log(row[i].packingQuantity2);
- } else {
- row[i].packingQuantity2 = Math.ceil(
- row[i].measureQuantity /
- row[i].packingSpecificationOption[1]?.packageCell
- );
- console.log(row[i].packingQuantity2, '单位不一样');
- }
- }
- console.log(row, 'rowrowrowrowrowrow我看看');
- const pNum = row.reduce((sum, item) => {
- if (
- item.packingQuantity2 !== undefined &&
- item.packingQuantity2 !== null
- ) {
- return sum + Number(item.packingQuantity2);
- }
- return sum;
- }, 0);
- const mNum = row.reduce((sum, item) => {
- if (
- item.measureQuantity !== undefined &&
- item.measureQuantity !== null
- ) {
- return sum + Number(item.measureQuantity);
- }
- return sum;
- }, 0);
- console.log(pNum, 'pppp');
- console.log(mNum, 'mmmmm');
- this.$refs.wareHouseDailogRef.open(
- pNum,
- mNum
- // this.form.categoryLevelTopId
- );
- }
- },
- wareHouseSelection(argum, idx) {
- console.log(argum, 'argumargumargumargumargumargum');
- // 方便包装遍历获取仓库id和名称
- let warehouseIds = [];
- let warehouseNames = [];
- argum.forEach((item) => {
- console.log(item, 'itemitem');
- for (let index = 0; index < item.packingQuantity; index++) {
- warehouseIds.push(item.warehouseId);
- warehouseNames.push(item.warehouseName);
- }
- });
- console.log(idx, this.productList, 'idxidxidxidx');
- if (idx > -1) {
- this.$set(
- this.productList[idx],
- 'warehouseId',
- argum.map((item) => item.warehouseId).join(',')
- );
- this.$set(
- this.productList[idx],
- 'warehouseName',
- argum.map((item) => item.warehouseName).join(',')
- );
- this.$set(this.productList[idx], 'warehouseIds', warehouseIds);
- this.$set(this.productList[idx], 'warehouseNames', warehouseNames);
- console.log(this.productList, 'productList');
- } else {
- this.productList.map((item, index) => {
- this.$set(
- this.productList[index],
- 'warehouseId',
- argum.map((item) => item.warehouseId).join(',')
- );
- this.$set(
- this.productList[index],
- 'warehouseName',
- argum.map((item) => item.warehouseName).join(',')
- );
- this.$set(this.productList[index], 'warehouseIds', warehouseIds);
- this.$set(
- this.productList[index],
- 'warehouseNames',
- warehouseNames
- );
- });
- }
- this.$forceUpdate();
- },
- // 生成包装
- generateWrappers(row, productIndex, packingCodeList) {
- console.log(packingCodeList, 'packingCodeList', row.measureType);
- if (!row.measureType)
- return this.$message.warning('请到主数据维计量类型!');
- console.log('包装数据--------', row);
- // console.log('包装规格----', row.packingSpecificationOption);
- console.log('计量单位----', row.measureUnit);
- let packingList = [];
- let obj = this.getNowDate();
- let productionDate = row.detailProductionDate || '';
- let purchaseDate = row.detailPurchaseDate || '';
- let expireDate = row.detailExpireDate || '';
- console.log(expireDate, 'expireDate');
- console.log(
- this.formData.bizType,
- 'bizTypebizTypebizTypebizTypebizTypebizTypebizTypebizTypebizTypebizTypebizType'
- );
- if (this.formData.bizType == '1') {
- // 生产入库
- productionDate = `${obj.year}-${obj.month}-${obj.strDate} ${obj.hour}:${obj.minute}:${obj.second}`;
- // this.curDateType = 'productionDate';
- }
- // 判断单位和计量单位是否为不拆物料层规格
- let packingBoolen = !!this.getDict('不拆物料层规格', row.packingUnit)
- .dictValue;
- let measureBoolen = !!this.getDict('不拆物料层规格', row.measureUnit)
- .dictValue;
- let num = row.packingQuantity;
- let filterArr = [];
- // 处理单位为KG类的情况
- if (packingBoolen) {
- console.log(
- packingBoolen,
- 'packingBoolenpackingBoolenpackingBoolenpackingBoolenpackingBoolenpackingBoolen'
- );
- if (!row.isUnpack && row.packingUnit == '立方') {
- num = 1;
- } else {
- filterArr = row.packingSpecificationOption.filter((item) => {
- return (
- item.packageUnit == row.packingUnit &&
- item.packageUnit != item.conversionUnit
- );
- });
- num = Math.ceil(row.packingQuantity / filterArr[0]?.packageCell);
- }
- } else {
- // if (row.isUnpack == 1) {
- if (measureBoolen) {
- // 处理单位不为KG类,计量单位为KG类的情况
- let splitIndex = row.packingSpecificationOption.findIndex(
- (item) =>
- item.conversionUnit == row.packingUnit &&
- item.packageUnit != item.conversionUnit
- );
- for (; splitIndex > 1; splitIndex--) {
- num = this.$math.format(
- num * row.packingSpecificationOption[splitIndex].packageCell,
- 14
- );
- }
- } else {
- if (row.packingSpecificationOption[1]?.packageCell) {
- num = Math.ceil(
- row.measureQuantity /
- row.packingSpecificationOption[1]?.packageCell
- );
- filterArr = row.packingSpecificationOption.filter((item) => {
- return (
- item.packageUnit == row.packingUnit &&
- item.packageUnit != item.conversionUnit
- );
- });
- }
- }
- }
- console.log('num-----------', num);
- for (let index = 0; index < packingCodeList.length; index++) {
- let measureQuantity = 1;
- let packingQuantity = 1;
- let packingUnit = row.packingUnit;
- // 处理单位为KG类,计算每桶KG值
- if (packingBoolen) {
- measureQuantity =
- Number(row.packingQuantity) >
- this.$math.format(filterArr[0].packageCell * (index + 1), 14)
- ? filterArr[0].packageCell
- : Number(row.packingQuantity) -
- this.$math.format(filterArr[0].packageCell * index, 14);
- console.log(measureQuantity, 'measureQuantit1111y');
- } else {
- console.log('1 拆--------', measureBoolen);
- //计量单位等于重量单位并且有总重 计量数量=总重/包装数
- if (row.weightUnit == row.measureUnit && row.weight) {
- measureQuantity =
- Math.trunc((row.weight / packingCodeList.length) * 10000) /
- 10000;
- } else if (measureBoolen) {
- let splitIndex = row.packingSpecificationOption.findIndex(
- (item) =>
- item.conversionUnit == row.packingUnit &&
- item.packageUnit != item.conversionUnit
- );
- for (; splitIndex > 0; splitIndex--) {
- measureQuantity = this.$math.format(
- measureQuantity *
- row.packingSpecificationOption[splitIndex].packageCell,
- 14
- );
- }
- } else {
- measureQuantity = row.packingSpecificationOption[1].packageCell;
- }
- console.log(measureQuantity, 'measureQuantity');
- }
- let clientCode = '';
- if (this.bizType == 2) {
- clientCode = row?.customerMark;
- } else if (this.bizType != 2) {
- clientCode = row.extInfo?.clientCode;
- }
- console.log(filterArr[0], 'filterArr[0]');
- let status = null;
- //通过委外发货单编码判断是不是委外 委外收货 质检状态显示已质检
- // if (this.form.outsourceSendCode != '') {
- // status = 2;
- // } else {
- // // 0未检 1待检 2 已检
- // if (row.qualityControl == 1) {
- // status = 0;
- // } else {
- // status = 2;
- // }
- // }
- if (row.qualityControl == 1) {
- status = 0;
- } else {
- status = 2;
- }
- let item = {
- index: row.index + '-' + index, // 包装索引
- warehouseId: row.warehouseId, // 仓库id
- warehouseName: row.warehouseName, // 仓库名称
- categoryName: row.categoryName, // 产品名称
- categoryCode: row.categoryCode, // 产品编码
- categoryModel: row.categoryModel, // 物品型号
- specification: row.specification, // 规格
- supplierCode: row.supplierCode, // 供应商编码
- supplierName: row.supplierName, // 供应商名称
- brandNum: row.brandNum, // 牌号
- parentIndex: row.index, // 产品索引
- batchNo: row.batchNo, // 批次号
- packageNo: packingCodeList[index]?.onlyCode, // 包装编码
- packingQuantity: packingQuantity, // 包装数量
- modelKey: row.modelKey, // 机型
- colorKey: row.colorKey, //颜色
- // packingUnit: row.isUnpack ? packingBoolen ? filterArr[0].conversionUnit : measureBoolen ? row.packingSpecificationOption[1]
- // ? row.packingSpecificationOption[1].conversionUnit
- // : row.packingSpecificationOption[0].conversionUnit
- // : row.measureUnit
- // : packingBoolen
- // ? row.packingUnit === '立方' ? row.packingUnit : filterArr[0]?.conversionUnit
- // : row.packingUnit,
- // packingUnit: row.isUnpack ? packingBoolen ? filterArr[0].conversionUnit : measureBoolen ? row.packingSpecificationOption[2] ?
- // row.packingSpecificationOption[2].conversionUnit : row.packingSpecificationOption[1].conversionUnit: row.measureUnit: packingBoolen ? filterArr[0].conversionUnit : row.packingUnit,
- //!row.isUnpack && row.packingUnit
- measureQuantity: measureQuantity, // 计量数量
- measureUnit: row.isUnpack
- ? measureBoolen
- ? row.packingSpecificationOption[1]
- ? row.packingSpecificationOption[1].packageUnit
- : row.packingSpecificationOption[0].packageUnit
- : row.measureUnit
- : row.measureUnit, // 计量单位
- weight: 0, // 重量
- packingSpecificationOption: row.packingSpecificationOption, // 包装规格
- weightUnit: row.weightUnit, // 重量单位
- netWeight: row.netWeight, // 净重
- barcodes: '', // 发货条码
- clientCode: clientCode, // 客户代号
- materielDesignation: row.extInfo ? row.extInfo.materielCode : '', // 物料代号
- engrave: '', // 刻码
- isUnpack: row.isUnpack, // 是否允许拆包
- productionDate: productionDate, // 生产日期
- purchaseDate: purchaseDate, // 采购时间
- expireDate: expireDate, //失效日期
- result: 1, // 结果(1合格 2不合格)
- qualityControl: row.qualityControl,
- status: status // 状态(0=未质检 1待检 2已检)
- };
- /**
- * packingUnit: row.isUnpack ? packingBoolen ? filterArr[0].conversionUnit : measureBoolen ? row.packingSpecificationOption[2] ? row.packingSpecificationOption[2].conversionUnit
- * : row.packingSpecificationOption[1].conversionUnit: row.measureUnit: packingBoolen ? filterArr[0].conversionUnit : row.packingUnit,
- */
- if (row.isUnpack) {
- // 第二层条件: packingBoolen
- if (packingBoolen) {
- // 空值保护: 确保 filterArr[0] 存在
- item.packingUnit =
- row.packingSpecificationOption[1].conversionUnit;
- } else {
- // 第三层条件: measureBoolen
- if (measureBoolen) {
- // 处理 packingSpecificationOption 的索引
- const option =
- row.packingSpecificationOption?.[1] ||
- row.packingSpecificationOption?.[0];
- item.packingUnit = option?.conversionUnit;
- } else {
- item.packingUnit =
- row.packingSpecificationOption[1].conversionUnit;
- }
- }
- }
- let outBoolen = !!this.getDict('不拆物料层规格', item.measureUnit)
- .dictValue;
- //计量单位等于重量单位
- if (row.weightUnit == row.measureUnit) {
- item.weight = item.measureQuantity
- ? Number(item.measureQuantity)
- : 0;
- } else if (outBoolen) {
- // 计量单位为KG类,直接替换
- item.weight = item.measureQuantity
- ? Number(item.measureQuantity)
- : 0;
- } else {
- console.log('计量单位为不为KG类======================');
- // 计量单位为不为KG类,重新统计计算
- let inBoolen = !!this.getDict(
- '不拆物料层规格',
- item.packingSpecificationOption[0].packageUnit
- ).dictValue;
- let startIndex = item.packingSpecificationOption.findIndex(
- (ite) => {
- return (
- item.measureUnit == ite.packingUnit &&
- ite.packingUnit != ite.conversionUnit
- );
- }
- );
- let endIndex = item.packingSpecificationOption.findIndex(
- (ite) => item.packingUnit == ite.conversionUnit
- );
- if (measureBoolen) {
- let total = item.packingQuantity
- ? Number(item.packingQuantity)
- : 0;
- for (; startIndex < endIndex; endIndex--) {
- total = this.$math.format(
- item.packingSpecificationOption[endIndex].packageCell * total,
- 14
- );
- }
- if (inBoolen) {
- // 第二层为KG类
- item.weight = total ? Number(total) : 0;
- } else {
- // 第二层不为KG类
- item.weight = this.$math.format(total * item.netWeight, 14);
- }
- } else if (!measureBoolen) {
- if (inBoolen) {
- // 第二层为KG类
- item.weight = item.measureQuantity
- ? Number(item.measureQuantity)
- : 0;
- } else {
- // 第二层不为KG类
- if (row.singleWeight && item.measureQuantity) {
- item.weight =
- Number(item.measureQuantity) * Number(row.singleWeight);
- } else {
- item.weight = 0;
- }
- }
- }
- }
- packingList.push(item);
- console.log(
- packingList,
- 'packingList!!!!!!!!!!!!!!!!!!拆'
- );
- }
- // 单独点击保存并插入对应位置(包装)
- if (productIndex == 0) {
- this.packingList.splice(productIndex, 0, ...packingList);
- } else {
- let packingIndex = this.packingList.findLastIndex(
- (item) =>
- item.parentIndex == this.productList[productIndex - 1].index
- );
- this.packingList.splice(packingIndex + 1, 0, ...packingList);
- }
- let remainder = 0;
- if (row.weightUnit != row.measureUnit) {
- remainder =
- row.measureQuantity %
- row.packingSpecificationOption[1]?.packageCell;
- }
- if (remainder > 0) {
- let onlyCode = packingCodeList[packingCodeList.length - 1]?.onlyCode;
- let index = this.packingList.findIndex(
- (packingItem) => packingItem.packageNo == onlyCode
- );
- this.$set(this.packingList[index], 'measureQuantity', remainder);
- if (row.singleWeight) {
- this.$set(
- this.packingList[index],
- 'weight',
- row.singleWeight * remainder
- );
- }
- }
- // 单独点击保存并插入对应位置(物料)
- // let materialList = packingList
- // .map((item) => {
- // if (item.isUnpack) {
- // return this.generateMaterial(item);
- // } else {
- // return [];
- // }
- // })
- // .flat();
- // console.log(materialList);
- // if (materialList.length > 0) {
- // if (productIndex == 0) {
- // this.materialList.splice(0, 0, ...materialList);
- // } else {
- // let preLastPackingIndex = this.packingList.findLastIndex((ite) => {
- // return ite.parentIndex <= productIndex - 1 && ite.isUnpack;
- // });
- // let preLastMaterialIndex = this.materialList.findLastIndex(
- // (ite) => {
- // return (
- // ite.parentIndex == this.packingList[preLastPackingIndex].index
- // );
- // }
- // );
- // this.materialList.splice(
- // preLastMaterialIndex + 1,
- // 0,
- // ...materialList
- // );
- // }
- // }
- },
- // 生成物料
- generateMaterial(row) {
- let materialList = [];
- for (let index = 0; index < row.measureQuantity; index++) {
- materialList.push({
- materialCode: row.packageNo + index.toString().padStart(4, '0'), // 物料编码
- index: row.index + '——' + index, // 包装索引
- warehouseId: row.warehouseId, // 仓库id
- warehouseName: row.warehouseName, // 仓库名称
- categoryName: row.categoryName, // 产品名称
- categoryCode: row.categoryCode, // 产品编码
- parentIndex: row.index, // 产品索引
- batchNo: row.batchNo, // 批次号
- packageNo: row.packageNo, // 包装编码
- measureQuantity: 1, // 计量数量
- measureUnit: row.measureUnit, // 计量单位
- weight: Number(
- this.$math.format(row.weight / row.packingQuantity, 14)
- ), // 重量
- weightUnit: row.weightUnit, // 重量单位
- barcodes: '', // 发货条码
- clientCode: '', // 客户代号
- materielDesignation: '', // 物料代号
- engrave: '', // 刻码
- result: 1, // 结果(1合格 2不合格 3让步接收)
- status: 2 // 状态(0=未质检 1待检 2已检)
- });
- }
- return materialList;
- },
- // 设置时间
- dateSetting(curDateType) {
- if (!this.packingListSelected.length) {
- return this.$message.error(`请选择${this.title}明细!`);
- }
- this.curDateType = curDateType;
- this.dateVisible = true;
- },
- // 选择包装列表
- handleSelectionChange(val) {
- this.packingListSelected = val;
- },
- // 选择质检结果改变质检状态
- changeWrapStatus(resultValue, row, type) {
- switch (resultValue) {
- case 0:
- // 清空质检状态
- row.status = 0;
- break;
- default:
- // 默认已检质检状态
- row.status = 2;
- break;
- }
- if (type === '包装') {
- this.packingResultCahnge(resultValue, row);
- } else {
- this.materialResultCahnge(resultValue, row);
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- ::v-deep .el-table .warning-row {
- background: #d9ecff;
- }
- .inbound_details {
- margin-top: 10px;
- .el-form-item {
- margin-bottom: 0 !important;
- }
- }
- .right_control {
- display: flex;
- > button {
- margin-left: 20px;
- }
- }
- .storage_btn {
- margin-top: 20px;
- display: flex;
- align-content: center;
- justify-content: center;
- }
- .el-date-editor.el-input,
- .el-date-editor.el-input__inner {
- width: 100% !important;
- }
- .red_color {
- color: red;
- }
- .wareHouse_style {
- text-overflow: ellipsis;
- overflow: hidden;
- word-break: break-all;
- white-space: nowrap;
- }
- </style>
|