123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929 |
- // 完善入库信息
- <template>
- <div class="container">
- <el-row>
- <el-col :span="20">
- <h2 class="bg-left title">完善入库登记</h2>
- </el-col>
- <el-col :span="4" class="bg-right">
- <el-button
- class="bg-bottom"
- type="primary"
- size="small"
- @click="revert()"
- ><img
- width="6"
- height="10"
- style="vertical-align: bottom; margin-right: 3px"
- src="../../../public/img/lujing.png"
- alt=""
- />返回</el-button
- >
- </el-col>
- </el-row>
- <ws-form ref="dataList" :model="dataList" :rules="rules">
- <div class="basicInformation">
- <h2>
- {{ deptBudgetList1.warehouseName }}
- <span class="position" v-show="this.$route.query.warehouseType == 1">
- {{ deptBudgetList1.binNumber }}仓位
- </span>
- <span v-show="this.$route.query.warehouseType == 2">(临)</span>
- </h2>
- <div class="small-title">基本信息</div>
- <div class="flex">
- <div class="left" style='width:66.6666%;'>
- <ws-info-table>
- <ws-form-item label="合同编号" span="1" prop="contractNo">
- <el-select
- filterable clearable
- :filter-method="dataFilter1"
- v-model="dataList.contractNo"
- placeholder="请选择合同编号或移库任务编号"
- class="typeselect"
- @change='contractNoChange'
- >
- <el-option
- v-for="item in options1"
- :key="item.constKey"
- :label="item.contractNo"
- :value="item.contractNo"
- />
- </el-select>
- </ws-form-item>
- <!--毛重(吨)-->
- <ws-form-item label="毛重(吨)" span="1" prop="grossWeight">
- <ws-input
- @input="grossWeightchange"
- v-model="dataList.grossWeight"
- placeholder="请输入毛重"
- maxlength="20"
- size="small"
- />
- </ws-form-item>
- <!-- 货名 -->
- <ws-form-item label="货名" span="1">
- <ws-select
- disabled
- v-model="dataList.goodsName"
- placeholder
- class="typeselect"
- @change="selectgoodsName"
- >
- <ws-option
- v-for="item in goodnameList"
- :key="item.constKey"
- :label="item.constValue"
- :value="item.constValue"
- />
- </ws-select>
- </ws-form-item>
- <!--皮重(吨)-->
- <ws-form-item label="皮重(吨)" span="1" prop="tare" class="readonly">
- <ws-input
- @input="tarechange"
- v-model="dataList.tare"
- placeholder="请输入皮重"
- maxlength="100"
- size="small"
- />
- </ws-form-item>
- <ws-form-item label="类型" span="1" prop="type">
- <ws-select disabled v-model="dataList.type" @change="typeChange">
- <ws-option v-for="item in typeList" :key="item" :label="item" :value="item" />
- </ws-select>
- </ws-form-item>
- <ws-form-item label="扣重(吨)" span="1" prop="deductionWeight" class="readonly">
- <ws-input
- @input="tarechange"
- v-model="dataList.deductionWeight"
- placeholder="请输入扣重"
- maxlength="100"
- size="small"
- />
- </ws-form-item>
- <ws-form-item label="扣款(元/吨)" span="1" prop="deductionAmount">
- <ws-input
- @input="kkInput(dataList.deductionAmount)"
- v-model="dataList.deductionAmount"
- placeholder="请输入扣款金额"
- maxlength="120"
- size="small"
- />
- </ws-form-item>
- <!--净重(吨)-->
- <ws-form-item label="净重(吨)" span="1" prop="netWeight">
- <ws-input
- readonly="readonly"
- v-model="dataList.netWeight"
- placeholder="不可编辑,自动计算"
- maxlength="120"
- size="small"
- />
- </ws-form-item>
- <!-- <ws-form-item v-if='dataList.type=="潮粮"' label="扣重比" span="1" prop="buckleWeightRatio" class="readonly">
- <ws-input
- @input='pureweight'
- v-model="dataList.buckleWeightRatio"
- placeholder="请输入扣重比"
- maxlength="100"
- size="small"
- />
- </ws-form-item>
- <ws-form-item v-if='dataList.type=="潮粮"' label="干粮水分占比" span="1" prop="solidGrainWater" class="readonly">
- <ws-input
- @input='pureweight'
- v-model="dataList.solidGrainWater"
- placeholder="请输入干粮水分占比"
- maxlength="100"
- size="small"
- />
- </ws-form-item>
- <ws-form-item v-if='dataList.type=="潮粮"' label="潮粮水分占比" span="1" prop="tidalGrainWater" class="readonly">
- <ws-input
- @input='pureweight'
- v-model="dataList.tidalGrainWater"
- placeholder="请输入潮粮水分占比"
- maxlength="100"
- size="small"
- />
- </ws-form-item>
- <ws-form-item v-if='dataList.type=="潮粮"' label="纯重" span="1" prop="pureWeight" class="readonly">
- <ws-input
- disabled
- v-model="dataList.pureWeight"
- placeholder="不可编辑,自动计算"
- maxlength="100"
- size="small"
- />
- </ws-form-item> -->
- <!--净重(吨)-->
-
- <!-- 品级 -->
- <ws-form-item label="品级" span="1" class="readonly">
- <ws-select
- v-model="dataList.grade"
- placeholder
- class="typeselect"
- @change="selectpackingMethod"
- >
- <ws-option
- v-for="item in gradeList"
- :key="item.constKey"
- :label="item.constValue"
- :value="item.constValue"
- />
- </ws-select>
- </ws-form-item>
- <!--经办人-->
- <ws-form-item label="经办人" span="1" prop="agent">
- <el-select
- v-model="dataList.agent"
- placeholder="请选择经办人"
- filterable
- clearable
- @change="selectstaff"
- >
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.staffName"
- :value="item.staffName"
- />
- </el-select>
- </ws-form-item>
- <!--出库日期-->
- <ws-form-item label="入库日期" span="1" prop="inOutDate" class="deliverydate">
- <el-date-picker
- v-model="dataList.inOutDate"
- placeholder="请选择入库日期"
- type="date"
- value-format="yyyy-MM-dd"
- ></el-date-picker>
- </ws-form-item>
- <!-- 入库类型 -->
- <ws-form-item label="入库类型" span="1">
- <ws-select
- v-model="dataList.inOutType"
- placeholder
- class="typeselect"
- @change="selectstorageType"
- :disabled="isSelectType"
- >
- <ws-option
- v-for="item in storageType"
- :key="item.constKey"
- :label="item.constValue"
- :value="item.constValue"
- />
- </ws-select>
- </ws-form-item>
- </ws-info-table>
- <div v-show="this.$route.query.warehouseType == 2 && this.$route.query.createType == 2">
- <el-checkbox v-model="checked" checked>退库并出库</el-checkbox>
- <ws-info-table v-show="checked == true">
- <!-- 出库类型 -->
- <ws-form-item label="出库类型" span="1">
- <ws-select
- v-model="dataList.temporaryOutType"
- placeholder=""
- class="typeselect"
- >
- <ws-option
- v-for="item in deliveryType"
- :key="item.constKey"
- :label="item.constValue"
- :value="item.constValue"
- />
- </ws-select>
- </ws-form-item>
- <!-- 出库合同编号 -->
- <ws-form-item label="出库合同编号" span="1">
- <ws-select
- v-model="dataList.contractNo"
- placeholder="请选择合同编号或移库任务编号"
- class="typeselect"
- >
- <ws-option
- v-for="item in outContractNo"
- :key="item.constKey"
- :label="item.contractNo"
- :value="item.contractNo"
- />
- </ws-select>
- </ws-form-item>
- </ws-info-table>
- </div>
- </div>
- <div class="right" style='width:33.3333%;'>
- <ws-info-table>
- <ws-form-item label="成本(元/吨)" span="1" prop="cost">
- <ws-input
- :disabled="disabled1"
- v-model="dataList.cost"
- placeholder="请输入成本"
- size="small"
- type="number"
- @mousewheel.native.prevent
- />
- <img
- width="17"
- height="18"
- style="vertical-align: text-top; position: relative; top: -1px"
- src="../../../public/img/edit.png"
- @click="editClick(1)"
- alt=""
- />
- </ws-form-item>
- <ws-form-item label="运费(元/吨)" span="1" prop="freight">
- <ws-input
- :disabled="disabled2"
- v-model="dataList.freight"
- placeholder="请输入运费"
- size="small"
- type="number"
- @mousewheel.native.prevent
- />
- <img
- width="17"
- height="18"
- style="vertical-align: text-top; position: relative; top: -1px"
- src="../../../public/img/edit.png"
- @click="editClick(2)"
- alt=""
- />
- </ws-form-item>
- <ws-form-item label="运输方式" span="1" prop="outType">
- <el-select
- v-model="dataList.outType"
- placeholder="请选择运输方式"
- >
- <el-option
- v-for="item in multiSelector"
- :key="item.value"
- :label="item.name"
- :value="item.name"
- />
- </el-select>
- </ws-form-item>
- <!-- <ws-form-item label="车牌号" span="1" prop="carNo">
- <ws-input
- v-if="!carstatus"
- v-model="deptBudgetList.carNo"
- placeholder="请输入车牌号"
- maxlength="7"
- size="small"
- />
- <el-select
- v-if="carstatus"
- filterable
- clearable
- :filter-method="dataFilter2"
- v-model="deptBudgetList.carNo"
- placeholder="请选择车牌号"
- class="typeselect"
- @change="carChange"
- >
- <el-option
- v-for="item in options2"
- :key="item.constKey"
- :label="item.carNo + '(' + item.tranCarNo + ')'"
- :value="item.carNo"
- />
- </el-select>
- </ws-form-item>
- <ws-form-item label="箱号-1" span="1" prop="boxNo">
- <ws-input v-model="deptBudgetList.boxNo" placeholder="请输入箱号" maxlength="20"
- size="small" />
- </ws-form-item>
- <ws-form-item label="箱号-2" span="1" prop="boxNoOther">
- <ws-input v-model="deptBudgetList.boxNoOther" placeholder="请输入箱号" maxlength="20"
- size="small" />
- </ws-form-item>
- <ws-form-item label="封号-1" span="1" prop="titleNo">
- <ws-input v-model="deptBudgetList.titleNo" placeholder="请输入封号" maxlength="20"
- size="small" />
- </ws-form-item>
- <ws-form-item label="封号-2" span="1" prop="titleNoOther">
- <ws-input v-model="deptBudgetList.titleNoOther" placeholder="请输入封号" maxlength="20"
- size="small" />
- </ws-form-item>
- <ws-form-item label="车厢号-1" span="1" prop="wingNumber">
- <ws-input v-model="deptBudgetList.wingNumber" placeholder="请输入车厢号" maxlength="20"
- size="small" />
- </ws-form-item>
- <ws-form-item label="车厢号-2" span="1" prop="wingNumberOther">
- <ws-input v-model="deptBudgetList.wingNumberOther" placeholder="请输入车厢号" maxlength="20"
- size="small" />
- </ws-form-item> -->
- <!--车牌号 -->
- <ws-form-item
- label="车牌号"
- span="1"
- prop="carNo"
- v-if="
- dataList.outType == '汽运' ||
- dataList.outType == '集装箱船'
- "
- >
- <ws-input
- v-if="options2.length==0"
- v-model="dataList.carNo"
- placeholder="请输入车牌号"
- maxlength="7"
- size="small"
- />
- <el-select
- v-if='carstatus&&options2.length>0'
- filterable clearable
- :filter-method="dataFilter2"
- v-model="dataList.carNo"
- placeholder="请选择车牌号"
- class="typeselect"
- @change="carChange"
- >
- <el-option
- v-for="item in options2"
- :key="item.constKey"
- :label="item.carNo + '(' + item.tranCarNo + ')'"
- :value="item.carNo"
- />
- </el-select>
- <el-select
- v-if='!carstatus&&options2.length>0'
- filterable clearable
- :filter-method="dataFilter2"
- v-model="dataList.carNo"
- placeholder="请选择车牌号"
- class="typeselect"
- @change="carChange"
- >
- <el-option
- v-for="item in options2"
- :key="item.constKey"
- :label="item.carNo"
- :value="item.carNo"
- />
- </el-select>
- </ws-form-item>
- <!--船名 -->
- <ws-form-item
- label="船名"
- span="1"
- prop="carNo"
- v-if="dataList.outType == '散船'"
- >
- <ws-input
- v-model="dataList.carNo"
- placeholder="请输入船名"
- size="small"
- />
- </ws-form-item>
- <ws-form-item
- label="航次"
- span="1"
- prop="shipNumber"
- v-if="dataList.outType == '散船'"
- >
- <ws-input
- v-model="dataList.shipNumber"
- placeholder="请输入航次"
- maxlength="20"
- size="small"
- />
- </ws-form-item>
- <!--车号 -->
- <ws-form-item
- label="车号"
- span="1"
- prop="carNo"
- v-if="dataList.outType == '火运'"
- >
- <ws-input
- v-model="dataList.carNo"
- placeholder="请输入车号"
- size="small"
- />
- </ws-form-item>
- <ws-form-item
- label="箱号-1"
- span="1"
- prop="boxNo"
- v-if="
- dataList.outType == '汽运' ||
- dataList.outType == '集装箱船'
- "
- >
- <ws-input
- v-model="dataList.boxNo"
- placeholder="请输入箱号"
- maxlength="20"
- size="small"
- />
- </ws-form-item>
- <ws-form-item
- label="箱号-2"
- span="1"
- prop="boxNoOther"
- v-if="
- dataList.outType == '汽运' ||
- dataList.outType == '集装箱船'
- "
- >
- <ws-input
- v-model="dataList.boxNoOther"
- placeholder="请输入箱号"
- maxlength="20"
- size="small"
- />
- </ws-form-item>
- <ws-form-item
- label="封号-1"
- span="1"
- prop="titleNo"
- v-if="
- dataList.outType == '汽运' ||
- dataList.outType == '集装箱船'
- "
- >
- <ws-input
- v-model="dataList.titleNo"
- placeholder="请输入封号"
- maxlength="20"
- size="small"
- />
- </ws-form-item>
- <ws-form-item
- label="封号-2"
- span="1"
- prop="titleNoOther"
- v-if="
- dataList.outType == '汽运' ||
- dataList.outType == '集装箱船'
- "
- >
- <ws-input
- v-model="dataList.titleNoOther"
- placeholder="请输入封号"
- maxlength="20"
- size="small"
- />
- </ws-form-item>
- <ws-form-item
- label="车厢号-1"
- span="1"
- prop="wingNumber"
- v-if="dataList.outType == '火运'"
- >
- <ws-input
- v-model="dataList.wingNumber"
- placeholder="请输入车厢号"
- maxlength="20"
- size="small"
- />
- </ws-form-item>
- <ws-form-item
- label="车厢号-2"
- span="1"
- prop="wingNumberOther"
- v-if="dataList.outType == '火运'"
- >
- <ws-input
- v-model="dataList.wingNumberOther"
- placeholder="请输入车厢号"
- maxlength="20"
- size="small"
- />
- </ws-form-item>
- </ws-info-table>
- </div>
- </div>
- </div>
- <div class="small-title">上传磅单照片</div>
- <el-upload
- action="https://www.zthymaoyi.com/upload/admin"
- :show-file-list="false"
- :on-success="
- (res) => {
- uploadSuccessHandle1(res)
- }
- "
- class="avatar-uploader"
- accept=".jpg, .jpeg, .png, .gif"
- ><el-button size="small" type="primary">点击上传</el-button>
- </el-upload>
- <div @click='imgBig(dataList.addressUrl)'>
- <img v-if='dataList.addressUrl' style='width:100px;height:100px;' :src="dataList.addressUrl" alt="">
- </div>
- <div class="small-title">化验数据(选填)</div>
- <div class="inspector">
- <!--质检员-->
- <!-- <ws-form-item label="质检员" span="1" prop="qualityInspector">
- <ws-input
- v-model="dataList.warehouseInOutDetail.qualityInspector"
- placeholder="请输入质检员姓名"
- maxlength="120"
- size="small"
- />
- </ws-form-item> -->
- <ws-form-item label="质检员" span="1" prop="qualityInspector">
- <el-select
- v-model="dataList.warehouseInOutDetail.qualityInspector"
- placeholder="请选择质检员"
- filterable
- clearable
- @change="qualityInspectorChange"
- >
- <el-option
- v-for="item in qualityInspectorList"
- :key="item.value"
- :label="item.staffName"
- :value="item.staffName"
- />
- </el-select>
- </ws-form-item>
- </div>
- <div class="neifor">
- <ws-info-table>
- <!--水分(%)<=-->
- <ws-form-item label="水分(%)<=" span="1" prop="waterContent">
- <ws-input
- v-model="dataList.warehouseInOutDetail.waterContent"
- placeholder="请输入水分占比"
- maxlength="120"
- size="small"
- />
- </ws-form-item>
- <!--杂质(%)<=-->
- <ws-form-item label="杂质(%)<=" span="1" prop="impurity">
- <ws-input
- v-model="dataList.warehouseInOutDetail.impurity"
- placeholder="请输入杂质占比"
- maxlength="120"
- size="small"
- />
- </ws-form-item>
- <!--容重(克/升)>=-->
- <ws-form-item label="容重(克/升)>=" span="1" prop="bulkDensity">
- <ws-input
- v-model="dataList.warehouseInOutDetail.bulkDensity"
- placeholder="请输入容重"
- maxlength="120"
- size="small"
- />
- </ws-form-item>
- <!--霉变粒(%)<=-->
- <ws-form-item label="霉变粒(%)<=" span="1" prop="mildewGrain">
- <ws-input
- v-model="dataList.warehouseInOutDetail.mildewGrain"
- placeholder="请输入霉变粒占比"
- maxlength="120"
- size="small"
- />
- </ws-form-item>
- <!--热损伤(%)<=-->
- <ws-form-item label="热损伤(%)<=" span="1" prop="jiaorenli">
- <ws-input
- v-model="dataList.warehouseInOutDetail.jiaorenli"
- placeholder="请输入热损伤占比"
- maxlength="120"
- size="small"
- />
- </ws-form-item>
- <!--不完善粒(%)<=-->
- <ws-form-item label="不完善粒(%)<=" span="1" prop="imperfectGrain">
- <ws-input
- v-model="dataList.warehouseInOutDetail.imperfectGrain"
- placeholder="请输入不完善粒占比"
- maxlength="120"
- size="small"
- />
- </ws-form-item>
- </ws-info-table>
- </div>
- <div style="text-align: right; padding: 10px">
- <el-button
- class="bg-bottom-up"
- type="primary"
- size="small"
- @click="temporaryStorage()"
- >暂存</el-button
- >
- <el-button
- class="bg-bottom-up"
- type="primary"
- size="small"
- @click="submit()"
- >提交</el-button
- >
- </div>
- </ws-form>
- <div @click='imgshow=false' style='overflow:scroll;position:fixed;left:0;top:0;background:rgba(0,0,0,0.1);width:100%;height:100%;z-index:1030;' v-if='imgshow'>
- <img style='position:absolute;left:50%;top:50%;transform: translateX(-50%) translateY(-50%);height:80%;' :src="img" alt="">
- </div>
- </div>
- </template>
- <script>
- import {
- pullDown,
- addstorageputList,
- xialaNo,
- getstaff,
- } from '@/model/warehouse/index'
- import { downloadFile } from '@/utils/batchDown'
- import Pagination from '@/components/Pagination'
- import { mapActions, mapGetters, mapState } from 'vuex'
- import WsUpload from '@/components/WsUpload'
- // import { dayjs, fmoney, EventBus } from 'base-core-lib'
- import { dayjs, EventBus } from 'base-core-lib'
- export default {
- name: 'viewSpareMoney',
- components: {
- WsUpload,
- Pagination,
- },
- watch: {
- // vesselId(val) {
- // this.getList()
- // },
- isShow(val) {
- this.showType = val
- },
- },
- computed: {
- ...mapGetters(['dataList']),
- },
- data() {
- return {
- isSelectType:true,
- isGetCost:false,
- qualityInspectorList:[],
- //弹出框
- dialogViewSpareMoney: false,
- dialogApproveFormVisible: false,
- // 船舶类型
- monetaryKey: null,
- // 表格显示数据
- tableDate: [],
- // 是否显示
- showType: true,
- // 年
- year: '',
- deptBudgetTotal: 0,
- readonly: true,
- currentPage: 1,
- pageSize: 10,
- searchType: 1,
- searchKeyWord: '',
- contractType: 2,
- startDate: null,
- endDate: null,
- goodnameList: {},
- checked: true,
- disabled1:true,
- disabled2:true,
- staffList: [],
- options: [],
- storageType: [],
- deliveryType: [],
- outContractNo: [],
- outContractNo1: [],
- // 提交类型
- submitType: true,
- typeList:['干粮','潮粮'],
- appendixIdsAdd: '',
- uploadSuccess: {},
- warehouseInOutDetail: {},
- onChange: {},
- deptBudgetList1: [],
- gradeList: [],
- rules: {
- netWeight: [
- {
- required: true,
- type: 'number',
- message: '请输入活动名称',
- trigger: 'blur',
- },
- ],
- },
- size: 10,
- compId: localStorage.getItem('ws-pf_compId'),
- deptCircularPage: {},
- packtypeList: {},
- date: {
- year: dayjs().format('YYYY'),
- month: dayjs().format('MM'),
- },
- options1: [],
- options2: [],
- carstatus:false,
- contractList: [],
- img:'',
- imgshow:false,
- dataList: {
- id: '',
- grossWeight: '',
- contractNo: '',
- tare: '',
- netWeight: '',
- grade: '',
- agent: '',
- carNo: '',
- inOutDate: '',
-
- inOutType: '',
- goodsName: '',
- warehouseInOutDetail: {},
- cost:'',
- freight:0,
- type:'',
- buckleWeightRatio:'',
- tidalGrainWater:'',
- solidGrainWater:'',
- pureWeight:'',
- deductionAmount:'',
- deductionWeigh:'',
- },
- multiSelector: [
- {
- name: '汽运',
- value: '0',
- },
- {
- name: '火运',
- value: '1',
- },
- {
- name: '集装箱船',
- value: '2',
- },
- {
- name: '散船',
- value: '3',
- },
- ],
- historyList: [],
- pickerBeginDateBefore: {
- disabledDate: (time) => {
- return time.getTime() > Date.now()
- },
- },
- accessoryTFs: false,
- }
- },
- activated() {
- this.deptBudgetList1.warehouseName = this.$route.query.warehouseName
- this.deptBudgetList1.binNumber = this.$route.query.binNumber
- this.getList()
- this.dataList.id = this.$route.query.id
- this.dataList.grossWeight = this.$route.query.grossWeight
- this.dataList.contractNo = this.$route.query.contractNo
- this.dataList.baseId = this.$route.query.baseId
- this.dataList.positionId = this.$route.query.positionId
- this.dataList.warehouseName = this.$route.query.warehouseName
- this.dataList.binNumber = this.$route.query.binNumber
- this.dataList.tare = this.$route.query.tare
- this.dataList.netWeight = this.$route.query.netWeight
- this.dataList.grade = this.$route.query.grade
- if(this.$route.query.addressUrl.indexOf(',')!=-1){
- this.dataList.addressUrl=this.$route.query.addressUrl.split(',')
- }else{
- this.dataList.addressUrl=this.$route.query.addressUrl
- }
- this.dataList.agent = this.$route.query.agent
- this.dataList.carNo = this.$route.query.carNo
- this.dataList.outType = this.$route.query.outType
- this.dataList.inOutDate = this.$route.query.inOutDate
- this.dataList.contractNo = this.$route.query.contractNo
- this.dataList.inOutType = this.$route.query.inOutType
- this.dataList.compId = this.$route.query.compId
- this.dataList.goodsName = this.$route.query.goodsName
- this.dataList.goodsNameKey = Number(this.$route.query.goodsNameKey)
- this.dataList.inOutFlag = this.$route.inOutFlag
- this.dataList.inOutTypeKey = Number(this.$route.query.inOutTypeKey)
- this.dataList.statusFlag = this.$route.statusFlag
- this.dataList.warehouseInOutDetail = this.$route.query.warehouseInOutDetail
- this.dataList.warehouseType = this.$route.query.warehouseType
- this.dataList.createType = this.$route.query.createType
- this.dataList.temporaryOutType = this.$route.query.temporaryOutType
- this.dataList.cost=this.$route.query.cost
- this.dataList.freight=this.$route.query.freight
- this.dataList.type=this.$route.query.type
- this.dataList.buckleWeightRatio=this.$route.query.buckleWeightRatio
- this.dataList.tidalGrainWater=this.$route.query.tidalGrainWater
- this.dataList.solidGrainWater=this.$route.query.solidGrainWater
- this.dataList.pureWeight=this.$route.query.pureWeight
- this.dataList.deductionAmount=this.$route.query.deductionAmount
- this.dataList.deductionWeight=this.$route.query.deductionWeight
- this.dataList.inOutTypeFlag=1
- if(this.dataList.cost){
- this.isGetCost = true
- this.cost = this.dataList.cost
- }
- },
- methods: {
- imgBig(item){
- console.log(item)
- this.img=item
- this.imgshow=true
- },
- kkInput(val){
- console.log(val)
- if(this.isGetCost){
- if(this.dataList.cost>val){
- this.dataList.cost = this.cost - this.dataList.deductionAmount
- }
- }
- },
- qualityInspectorChange(e){
- console.log(e)
- },
- uploadSuccessHandle1(res){
- this.dataList.addressUrl=res.url
- },
- pureweight(status){
- console.log(this.dataList)
- if(this.dataList.netWeight&&this.dataList.tidalGrainWater&&this.dataList.solidGrainWater&&this.dataList.buckleWeightRatio){
- this.dataList.pureWeight=(this.dataList.netWeight*(100-(this.dataList.tidalGrainWater-this.dataList.solidGrainWater)*this.dataList.buckleWeightRatio))/100
- }
- },
- //返回按钮
- revert() {
- this.$router.go(-1)
- },
- carChange(e){
- for (let i = 0; i < this.tranCarInfoList.length; i++) {
- if(this.tranCarInfoList[i].carNo==this.dataList.carNo){
- this.dataList.tranCarNo=this.tranCarInfoList[i].tranCarNo
- this.dataList.freight=this.tranCarInfoList[i].tranPrice
- }
- if(this.dataList.inOutType=='移库入库'){
- if(!this.dataList.cost){
- this.dataList.cost=this.tranCarInfoList[i].cost
- }
- this.dataList.loadNetWeight=this.tranCarInfoList[i].loadNetWeight
- }
- }
- },
- typeChange(e){
- },
- contractNoChange(e){
- for (var i = 0; i < this.outContractNo.length; i++) {
- if (this.outContractNo[i].contractNo == e) {
- if (this.outContractNo[i].inOutType == '采购入库') {
- this.dataList.inOutTypeKey = 1
- } else if (this.outContractNo[i].inOutType == '移库入库') {
- this.dataList.inOutTypeKey = 3
- } else if (this.outContractNo[i].inOutType == '暂存入库') {
- this.dataList.inOutTypeKey = 4
- } else if (this.outContractNo[i].inOutType == '贸易服务入库') {
- this.dataList.inOutTypeKey = 5
- } else if (this.detailData.inOutType == '退库') {
- this.dataList.inOutTypeKey = 6
- }
- this.dataList.goodsName = this.outContractNo[i].goodsName
- this.dataList.goodsNameKey = this.outContractNo[i].goodsNameKey
- this.cost = this.outContractNo[i].contractPrice
- if(this.cost){
- this.isGetCost = true
- this.dataList.cost = this.cost - this.dataList.deductionAmount
- }else{
- this.isGetCost = false
- this.dataList.cost = this.dataList.cost
- }
- this.dataList.inOutType = this.outContractNo[i].inOutType
- if(this.outContractNo[i].inOutType=='移库入库'){
- this.isSelectType = false
- }else{
- this.isSelectType = true
- }
- if(this.outContractNo[i].priceType=='随行就市'){
- this.disabled1 = !this.disabled1
- }
- if(this.outContractNo[i].tranCarInfoList){
- this.options2=this.outContractNo[i].tranCarInfoList
- this.tranCarInfoList=this.outContractNo[i].tranCarInfoList
- this.carstatus=true
- }
- if(this.outContractNo[i].shipInfoList){
- this.shipInfoList = this.outContractNo[i].shipInfoList
- }
- }
- }
- },
- dataFilter1(val) {
- console.log(val)
- this.dataList.contractNo = val;
- if (val) { //val存在
- this.options1 = this.outContractNo1.filter((item) => {
- if (!!~item.contractNo.indexOf(val) || !!~item.contractNo.toUpperCase().indexOf(val.toUpperCase())) {
- return true
- }
- })
- } else { //val为空时,还原数组
- this.options1 = this.outContractNo;
- }
- },
- dataFilter2(val) {
- this.dataList.carNo = val;
- if (val) { //val存在
- this.options1 = this.outContractNo1.filter((item) => {
- if (!!~item.carNo.indexOf(val) || !!~item.carNo.toUpperCase().indexOf(val.toUpperCase())) {
- return true
- }
- })
- } else { //val为空时,还原数组
- this.options2 = this.tranCarInfoList;
- }
- },
- dataFilter(val) {
- // console.log(val,"名")
- this.dataList.staffList = val
- if (val) {
- //val存在
- this.options = this.staffList.filter((item) => {
- if (
- !!~item.staffName.indexOf(val) ||
- !!~item.staffName.toUpperCase().indexOf(val.toUpperCase())
- ) {
- return true
- }
- })
- } else {
- //val为空时,还原数组
- this.options = this.staffList
- }
- },
- editClick(status){
- this.isGetCost = false
- if(status==1){
- this.disabled1=!this.disabled1
- }else{
- this.disabled2=!this.disabled2
- }
- },
- selectstaff(e) {
- for (var i = 0; i < this.staffList.length; i++) {
- if (this.staffList[i].staffName == e) {
- this.dataList.personChargeKey = this.staffList[i].staffId
- }
- }
- },
- //暂存按钮
- temporaryStorage() {
- this.$confirm(`暂存后可在待完成页面查看,确定暂存`, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- })
- .then(() => {
- this.$refs.dataList.validate((valid) => {
- if (valid) {
- this.dataList.compId = localStorage.getItem('ws-pf_compId')
- this.dataList.inOutFlag = 2
- this.dataList.statusFlag = 1
- let _data = JSON.parse(localStorage.getItem('winseaview-userInfo'))
- this.dataList.backOffice = _data.content.showCompName+'-' +_data.content.staffName
- addstorageputList(this.dataList)
- .toPromise()
- .then((response) => {
- this.$message.success('暂存成功')
- this.$router.push({ path: 'warehouseManagementList' })
- })
- } else {
- EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- return false
- }
- })
- })
- .catch(() => {
- return false
- })
- },
- //提交按钮
- submit() {
- if (!this.dataList.goodsName) {
- this.$message({
- message: '货名不能为空',
- type: 'warning',
- })
- return
- }
- if (!this.dataList.grossWeight) {
- this.$message({
- message: '毛重不能为空',
- type: 'warning',
- })
- return
- }
- if (
- this.dataList.grossWeight <= 0 ||
- this.dataList.grossWeight > 10000 ||
- (String(this.dataList.grossWeight).indexOf('.') != -1 &&
- String(this.dataList.grossWeight).length -
- (String(this.dataList.grossWeight).indexOf('.') + 1) >
- 3)
- ) {
- this.$message({
- message: '毛重输入错误',
- type: 'warning',
- })
- return
- }
- if (
- this.dataList.tare <= 0 ||
- this.dataList.tare > 10000 ||
- (String(this.dataList.tare).indexOf('.') != -1 &&
- String(this.dataList.tare).length -
- (String(this.dataList.tare).indexOf('.') + 1) >
- 3)
- ) {
- this.$message({
- message: '皮重输入错误',
- type: 'warning',
- })
- return
- }
- if (!this.dataList.deductionWeight) {
- this.$message({
- message: '扣重不能为空',
- type: 'warning'
- })
- return
- }
- if (
- this.dataList.deductionWeight < 0 ||
- this.dataList.deductionWeight > 10 ||
- (String(this.dataList.deductionWeight).indexOf('.') != -1 &&
- String(this.dataList.deductionWeight).length -
- (String(this.dataList.deductionWeight).indexOf('.') + 1) >
- 3)
- ) {
- this.$message({
- message: '扣重输入错误',
- type: 'warning'
- })
- return
- }
- if (this.dataList.type=='潮粮'&&!this.dataList.buckleWeightRatio) {
- this.$message({
- message: '扣重比不能为空',
- type: 'warning'
- })
- return
- }
- if (
- this.dataList.type=='潮粮'&&this.dataList.buckleWeightRatio < 0 ||
- this.dataList.type=='潮粮'&&this.dataList.buckleWeightRatio > 3 ||
- (this.dataList.type=='潮粮'&&String(this.dataList.buckleWeightRatio).indexOf('.') != -1 &&
- String(this.dataList.buckleWeightRatio).length -
- (String(this.dataList.buckleWeightRatio).indexOf('.') + 1) >
- 2)
- ) {
- this.$message({
- message: '扣重比输入错误',
- type: 'warning'
- })
- return
- }
- if (this.dataList.type=='潮粮'&&!this.dataList.tidalGrainWater) {
- this.$message({
- message: '潮粮水分不能为空',
- type: 'warning'
- })
- return
- }
- if (
- this.dataList.type=='潮粮'&&this.dataList.tidalGrainWater < 1 ||
- this.dataList.type=='潮粮'&&this.dataList.tidalGrainWater > 40 ||
- (this.dataList.type=='潮粮'&&String(this.dataList.tidalGrainWater).indexOf('.') != -1 &&
- String(this.dataList.tidalGrainWater).length -
- (String(this.dataList.tidalGrainWater).indexOf('.') + 1) >
- 2)
- ) {
- this.$message({
- message: '潮粮水分输入错误',
- type: 'warning'
- })
- return
- }
- if (this.dataList.type=='潮粮'&&!this.dataList.solidGrainWater) {
- this.$message({
- message: '干粮水分不能为空',
- type: 'warning'
- })
- return
- }
- if (
- this.dataList.type=='潮粮'&&this.dataList.solidGrainWater < 1 ||
- this.dataList.type=='潮粮'&&this.dataList.solidGrainWater > 40 ||
- (this.dataList.type=='潮粮'&&String(this.dataList.solidGrainWater).indexOf('.') != -1 &&
- String(this.dataList.solidGrainWater).length -
- (String(this.dataList.solidGrainWater).indexOf('.') + 1) >
- 1)
- ) {
- this.$message({
- message: '干粮水分输入错误',
- type: 'warning'
- })
- return
- }
- if (!this.dataList.deductionAmount) {
- this.$message({
- message: '扣款不能为空',
- type: 'warning'
- })
- return
- }
- if (
- this.dataList.deductionAmount < 0 ||
- this.dataList.deductionAmount > 10000 ||
- (String(this.dataList.deductionAmount).indexOf('.') != -1 &&
- String(this.dataList.deductionAmount).length -
- (String(this.dataList.deductionAmount).indexOf('.') + 1) >
- 2)
- ) {
- this.$message({
- message: '扣款输入错误',
- type: 'warning'
- })
- return
- }
- if (!this.dataList.cost) {
- this.$message({
- message: '未获取到成本,请编辑后提交',
- type: 'warning'
- })
- return
- }
- if (
- this.dataList.cost < 0 ||
- this.dataList.cost > 20000 ||
- (String(this.dataList.cost).indexOf('.') != -1 &&
- String(this.dataList.cost).length -
- (String(this.dataList.cost).indexOf('.') + 1) >
- 2)
- ) {
- this.$message({
- message: '成本输入错误',
- type: 'warning'
- })
- return
- }
- if (!this.dataList.freight&&this.dataList.freight!=0) {
- this.$message({
- message: '运费不能为空',
- type: 'warning'
- })
- return
- }
- if (
- this.dataList.freight < 0 ||
- this.dataList.freight > 100000 ||
- (String(this.dataList.freight).indexOf('.') != -1 &&
- String(this.dataList.freight).length -
- (String(this.dataList.freight).indexOf('.') + 1) >
- 2)
- ) {
- this.$message({
- message: '运费输入错误',
- type: 'warning'
- })
- return
- }
- if (!this.dataList.agent) {
- this.$message({
- message: '经办人不能为空',
- type: 'warning',
- })
- return
- }
- if (this.dataList.agent.length < 2 || this.dataList.agent.length > 10) {
- this.$message({
- message: '经办人输入有误',
- type: 'warning',
- })
- return
- }
- if (!this.dataList.grade) {
- this.$message({
- message: '品级不能为空!',
- type: 'warning',
- })
- return
- }
- if (!this.dataList.inOutDate) {
- this.$message({
- message: '入库日期不能为空!',
- type: 'warning',
- })
- return
- }
- if (!this.dataList.inOutType) {
- this.$message({
- message: '入库类型不能为空!',
- type: 'warning',
- })
- return
- }
- if (!this.dataList.carNo) {
- this.$message({
- message: '车牌号不能为空',
- type: 'warning',
- })
- return
- }
- if (this.dataList.carNo.length > 7) {
- this.$message({
- message: '车牌号输入错误,请输入7个字符之内',
- type: 'warning',
- })
- return
- }
- if (this.dataList.boxNo&&this.dataList.boxNo.length > 20) {
- this.$message({
- message: '箱号-1输入错误',
- type: 'warning',
- })
- return
- }
- if (this.dataList.boxNoOther&&this.dataList.boxNoOther.length > 20) {
- this.$message({
- message: '箱号-2输入错误',
- type: 'warning',
- })
- return
- }
- if (this.dataList.titleNo&&this.dataList.titleNo.length > 20) {
- this.$message({
- message: '封号-1输入错误',
- type: 'warning',
- })
- return
- }
- if (this.dataList.titleNoOther&&this.dataList.titleNoOther.length > 20) {
- this.$message({
- message: '封号-2输入错误',
- type: 'warning',
- })
- return
- }
- if (!this.dataList.contractNo) {
- this.$message({
- message: '合同编号不能为空',
- type: 'warning',
- })
- return
- }
- // if (
- // this.dataList.contractNo.length < 6 ||
- // this.dataList.contractNo.length > 20
- // ) {
- // this.$message({
- // message: '合同编号长度不符合要求,请输入6-20个字符之内',
- // type: 'warning',
- // })
- // return
- // }
- if (this.dataList.netWeight > this.$route.query.capacity) {
- this.$message({
- message: '入库量大于该仓库容量!',
- type: 'warning',
- })
- return
- }
- //自检员
- if (this.dataList.warehouseInOutDetail.qualityInspector) {
- if (
- this.dataList.warehouseInOutDetail.qualityInspector.length < 2 ||
- this.dataList.warehouseInOutDetail.qualityInspector.length > 10
- ) {
- this.$message({
- message: '质检员姓名长度错误!',
- type: 'warning',
- })
- return
- }
- }
- if (this.dataList.warehouseInOutDetail.waterContent) {
- if (isNaN(this.dataList.warehouseInOutDetail.waterContent)) {
- this.$message({
- message: '水分(%)非数字!',
- type: 'warning',
- })
- return
- }
- if (
- this.dataList.warehouseInOutDetail.waterContent < 1 ||
- this.dataList.warehouseInOutDetail.waterContent > 40 ||
- (String(this.dataList.warehouseInOutDetail.waterContent).indexOf(
- '.'
- ) != -1 &&
- String(this.dataList.warehouseInOutDetail.waterContent).length -
- (String(this.dataList.warehouseInOutDetail.waterContent).indexOf(
- '.'
- ) +
- 1) >
- 2)
- ) {
- this.$message({
- message: '水分(%)输入错误! 取值范围1-40之间且可以保留2小数',
- type: 'warning',
- })
- return
- }
- }
- //杂质
- if (this.dataList.warehouseInOutDetail.impurity) {
- if (isNaN(this.dataList.warehouseInOutDetail.impurity)) {
- this.$message({
- message: '杂质(%)非数字!',
- type: 'warning',
- })
- return
- }
- if (
- this.dataList.warehouseInOutDetail.impurity < 1 ||
- this.dataList.warehouseInOutDetail.impurity > 40 ||
- (String(this.dataList.warehouseInOutDetail.impurity).indexOf('.') !=
- -1 &&
- String(this.dataList.warehouseInOutDetail.impurity).length -
- (String(this.dataList.warehouseInOutDetail.impurity).indexOf(
- '.'
- ) +
- 1) >
- 2)
- ) {
- this.$message({
- message: '杂质(%)输入错误! 取值范围1-40之间且可以保留2小数',
- type: 'warning',
- })
- return
- }
- }
- //霉变
- if (this.dataList.warehouseInOutDetail.mildewGrain) {
- if (isNaN(this.dataList.warehouseInOutDetail.mildewGrain)) {
- this.$message({
- message: '霉变粒(%)非数字!',
- type: 'warning',
- })
- return
- }
- if (
- this.dataList.warehouseInOutDetail.mildewGrain < 1 ||
- this.dataList.warehouseInOutDetail.mildewGrain > 40 ||
- (String(this.dataList.warehouseInOutDetail.mildewGrain).indexOf(
- '.'
- ) != -1 &&
- String(this.dataList.warehouseInOutDetail.mildewGrain).length -
- (String(this.dataList.warehouseInOutDetail.mildewGrain).indexOf(
- '.'
- ) +
- 1) >
- 2)
- ) {
- this.$message({
- message: '霉变粒(%)输入错误! 取值范围1-40之间且可以保留2小数',
- type: 'warning',
- })
- return
- }
- }
- //热损伤
- if (this.dataList.warehouseInOutDetail.jiaorenli) {
- if (isNaN(this.dataList.warehouseInOutDetail.jiaorenli)) {
- this.$message({
- message: '热损伤(%)非数字!',
- type: 'warning',
- })
- return
- }
- if (
- this.dataList.warehouseInOutDetail.jiaorenli < 1 ||
- this.dataList.warehouseInOutDetail.jiaorenli > 40 ||
- (String(this.dataList.warehouseInOutDetail.jiaorenli).indexOf('.') !=
- -1 &&
- String(this.dataList.warehouseInOutDetail.jiaorenli).length -
- (String(this.dataList.warehouseInOutDetail.jiaorenli).indexOf(
- '.'
- ) +
- 1) >
- 2)
- ) {
- this.$message({
- message: '热损伤(%)输入错误! 取值范围1-40之间且可以保留2小数',
- type: 'warning',
- })
- return
- }
- }
- //不完善粒(%)
- if (this.dataList.warehouseInOutDetail.imperfectGrain) {
- if (isNaN(this.dataList.warehouseInOutDetail.imperfectGrain)) {
- this.$message({
- message: '不完善粒(%)非数字!',
- type: 'warning',
- })
- return
- }
- if (
- this.dataList.warehouseInOutDetail.imperfectGrain < 1 ||
- this.dataList.warehouseInOutDetail.imperfectGrain > 40 ||
- (String(this.dataList.warehouseInOutDetail.imperfectGrain).indexOf(
- '.'
- ) != -1 &&
- String(this.dataList.warehouseInOutDetail.imperfectGrain).length -
- (String(
- this.dataList.warehouseInOutDetail.imperfectGrain
- ).indexOf('.') +
- 1) >
- 2)
- ) {
- this.$message({
- message: '不完善粒(%)输入错误! 取值范围1-40之间且可以保留2小数',
- type: 'warning',
- })
- return
- }
- }
- //容重
- if (this.dataList.warehouseInOutDetail.bulkDensity) {
- if (isNaN(this.dataList.warehouseInOutDetail.bulkDensity)) {
- this.$message({
- message: '容重(克/升)非数字!',
- type: 'warning',
- })
- return
- }
- if (
- this.dataList.warehouseInOutDetail.bulkDensity > 1000 ||
- this.dataList.warehouseInOutDetail.bulkDensity < 0||
- (String(this.dataList.warehouseInOutDetail.bulkDensity).indexOf(
- '.'
- ) != -1 &&
- String(this.dataList.warehouseInOutDetail.bulkDensity).length -
- (String(this.dataList.warehouseInOutDetail.bulkDensity).indexOf(
- '.'
- ) +
- 1) >
- 0)
- ) {
- this.$message({
- message: '容重(克/升)输入错误! 取值范围1-40之间且是整数',
- type: 'warning',
- })
- return
- }
- }
- this.$confirm(`确定提交入库信息`, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- })
- .then(() => {
- this.$refs.dataList.validate((valid) => {
- if (valid) {
- this.dataList.compId = localStorage.getItem('ws-pf_compId')
- this.dataList.inOutFlag = 2
- this.dataList.statusFlag = 3
- addstorageputList(this.dataList)
- .toPromise()
- .then((response) => {
- this.$message.success('添加成功')
- this.$router.push({ path: 'warehouseManagementList' })
- })
- } else {
- EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- return false
- }
- })
- })
- .catch(() => {
- return false
- })
- },
- //暂存按钮
- returnWarehouse() {
- this.$refs.dataList.validate((valid) => {
- if (valid) {
- this.dataList.compId = localStorage.getItem('ws-pf_compId')
- this.dataList.statusFlag = 1
- addstorageputList(this.dataList)
- .toPromise()
- .then((response) => {
- this.$message.success('添加成功')
- this.$router.push({ path: 'warehouseManagementList' })
- })
- } else {
- EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- return false
- }
- })
- },
- tarechange(e) {
- if (this.dataList.grossWeight && this.dataList.tare) {
- this.dataList.netWeight = Number(
- this.dataList.grossWeight - this.dataList.tare
- ).toFixed(2)
- }
- },
- grossWeightchange(e) {
- if (this.dataList.grossWeight && this.dataList.tare) {
- this.dataList.netWeight = Number(
- this.dataList.grossWeight - this.dataList.tare
- ).toFixed(2)
- }
- },
- selectgoodsName(e) {
- for (var i = 0; i < this.goodnameList.length; i++) {
- if (this.goodnameList[i].constValue == e) {
- this.dataList.goodsNameKey = this.goodnameList[i].constKey
- if(e=='玉米(潮粮)'){
- this.dataList.type='潮粮'
- }else{
- this.dataList.type='干粮'
- }
- }
- }
- },
- selectpackingMethod(e) {
- for (var i = 0; i < this.packtypeList.length; i++) {
- if (this.packtypeList[i].constValue == e) {
- this.dataList.packingMethodKey = this.packtypeList[i].constKey
- }
- }
- },
- selectstorageType(e) {
- for (var i = 0; i < this.storageType.length; i++) {
- if (this.storageType[i].constValue == e) {
- this.dataList.inOutTypeKey = this.storageType[i].constKey
- }
- }
- },
- handleClose() {
- this.accessoryTFs = false
- },
- handleSizeChange(val) {
- console.log(`每页 ${val} 条`)
- this.pageSize = val
- this.getList()
- },
- handleCurrentChange(val) {
- this.currentPage = val
- console.log(`当前页: ${val}`)
- this.getList()
- },
- getList() {
- // 货名
- pullDown({ constId: 'CON2' })
- .toPromise()
- .then((response) => {
- this.goodnameList = response
- })
- // 品级
- pullDown({ constId: 'CON3' })
- .toPromise()
- .then((response) => {
- this.gradeList = response
- })
- // 类型
- if (this.$route.query.warehouseType == '1') {
- this.storageType = []
- pullDown({ constId: 'CON5' })
- .toPromise()
- .then((response) => {
- // this.storageType = response
- for(let i = 0;i<response.length;i++){
- if(response[i].constValue=='移库入库'||response[i].constValue=='退库'){
- this.storageType.push(response[i])
- }
- }
- })
- } else if (this.$route.query.warehouseType == '2') {
- //临时仓库入库类型
- pullDown({ constId: 'WARE1' })
- .toPromise()
- .then((response) => {
- this.storageType = response
- })
- //临时仓库出库类型
- pullDown({ constId: 'WARE2' })
- .toPromise()
- .then((response) => {
- this.deliveryType = response
- })
- }
- //合同编号
- xialaNo({ compId: localStorage.getItem('ws-pf_compId'), flag: 6 })
- .toPromise()
- .then((response) => {
- this.options1 = response
- this.outContractNo = response
- })
- //合同编号2
- xialaNo({ compId: localStorage.getItem('ws-pf_compId'), flag: 7 })
- .toPromise()
- .then((response) => {
- this.outContractNo1 = response
- })
- //经办人
- getstaff({ compId: localStorage.getItem('ws-pf_compId'),warehouseId:this.dataList.id })
- .toPromise()
- .then((response) => {
- this.options = response
- this.qualityInspectorList = response
- this.staffList = response
- // this.agent = response
- })
- },
- selecttaskType(e) {
- for (var i = 0; i < this.taskTypeList.length; i++) {
- if (this.taskTypeList[i].value == e) {
- this.searchType = this.taskTypeList[i].type
- }
- }
- },
- fujian(row) {
- if (
- row.receiveAttachmentPath === null ||
- row.receiveAttachmentPath === ''
- ) {
- EventBus.$emit(
- 'warning',
- this.$t('system.noticeCircular.NoInformation')
- )
- } else {
- this.accessoryTFs = true
- }
- this.appendixIdss = row.receiveAttachmentPath
- },
- handleExamine(row) {
- this.$router.push({
- name: 'salesContractExamine',
- query: { id: row.id },
- })
- },
- // 关闭 dialog时 处理文件url 初始化upload组件
- handleCloe() {
- this.dialogViewSpareMoney = false
- },
- history(row) {
- console.log(row)
- billoperatehis({ id: row.id })
- .toPromise()
- .then((response) => {
- this.historyList = response
- })
- },
- async exportlist() {
- const { data } = await export1(
- {
- compId: localStorage.getItem('ws-pf_compId'),
- contractType: this.contractType,
- currentPage: this.currentPage,
- pageSize: this.pageSize,
- searchType: this.searchType,
- searchKeyWord: this.searchKeyWord,
- startDate: this.startDate,
- endDate: this.endDate,
- },
- {},
- { responseType: 'blob' }
- ).toPromise()
- downloadFile({
- res: data,
- fileName: `${
- this.date.year + (this.date.month ? `-${this.date.month}` : '')
- }_采购合同`,
- type: 'xls',
- })
- },
- // deletecontract(){},
- //删除
- approve() {},
- listQuery() {},
- total() {},
- clearfiltQuery() {},
- selectCrtDuty() {},
- },
- }
- </script>
- <style lang="scss" scoped>
- /deep/.basicInformation {
- .ws-info-table {
- border: none;
- }
- .left{
- .el-form-item {
- width: 50%;
- // width: 33.3333%;
- border: none;
- .el-form-item__label {
- background: transparent;
- border: none;
- }
- .el-form-item__content {
- border: none;
- }
- }
- }
- .right{
- .el-form-item {
- width: 100%;
- // width: 33.3333%;
- border: none;
- .el-form-item__label {
- background: transparent;
- border: none;
- }
- .el-form-item__content {
- border: none;
- }
- }
- }
- }
- .title {
- position: relative;
- padding-left: 10px;
- }
- .title::before {
- content: '';
- display: inline-block;
- width: 5px;
- height: 30px;
- background: #5473e8;
- position: absolute;
- left: 0;
- }
- .el-form {
- padding: 0 10%;
- }
- .el-button--primary {
- background-color: #5878e8;
- border-color: #5878e8;
- }
- .el-col {
- background: #f6f7fc;
- }
- .bg-right {
- text-align: right;
- padding: 16px 20px;
- }
- .center {
- position: relative;
- top: 50px;
- width: 40%;
- height: 2000px;
- margin: 0 auto;
- }
- /deep/.el-form-item__label {
- width: 160px;
- }
- .inspector {
- width: 50%;
- }
- //质检员
- /deep/[data-v-58803672] .el-form-item__label {
- width: 60px;
- }
- [data-v-58803672] .el-form-item__label {
- width: 60px;
- }
- //选填
- /deep/.el-form-item {
- width: 50%;
- }
- .container {
- overflow: scroll;
- height: 120vh;
- }
- /deep/.ws-info-table .el-form-item .el-form-item__label {
- text-align: center;
- }
- .deliverydate {
- display: inline-block;
- width: 10%;
- }
- .center {
- margin-top: -60px;
- width: 80%;
- }
- //仓位
- .position {
- width: 52px;
- height: 20px;
- background: #afb5cb;
- border-radius: 2px;
- font-size: 12px;
- font-family: PingFangSC-Medium, PingFang SC;
- color: #ffffff;
- line-height: 20px;
- }
- //表格文字
- /deep/.ws-info-table .el-form-item .el-form-item__label {
- text-align: left;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #8890b1;
- line-height: 16px;
- }
- //质检员
- .inspector .el-form-item__content {
- text-align: left;
- margin-left: 0px;
- }
- .small-title {
- position: relative;
- padding: 10px;
- font-weight: 600;
- }
- .small-title::before {
- position: absolute;
- content: '';
- display: block;
- background: #5473e8;
- width: 4px;
- height: 14px;
- left: 0px;
- top: 13px;
- }
- //下面列表
- .neifor {
- width: 80%;
- background-color: #f6f7fc;
- }
- /deep/.neifor .ws-info-table .el-form-item .el-form-item__label {
- width: 35%;
- text-align: center;
- }
- /deep/.neifor .ws-info-table .el-form-item .el-form-item__content {
- width: 60%;
- background-color: #f6f7fc;
- }
- /deep/.neifor .el-input--small .el-input__inner {
- width: 100%;
- }
- .el-input__inner {
- width: 150px;
- }
- </style>
|