123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911 |
- <template>
- <div class="app-container">
- <el-form
- :model="queryParams"
- ref="queryForm"
- :inline="true"
- v-show="showSearch"
- label-width="88px"
- >
- <el-form-item label="业务编号" prop="fbillno">
- <el-input
- v-model="queryParams.fbillno"
- placeholder="请输入业务编号"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="制单人" prop="createBy">
- <el-input
- v-model="queryParams.createBy"
- placeholder="请输入制单人"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="制单日期" prop="createTime">
- <el-date-picker
- clearable
- size="small"
- style="width: 400px"
- v-model="queryParams.createTime"
- type="date"
- value-format="timestamp"
- placeholder="选择制单日期"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item label="贸易方式" prop="ftrademodeid">
- <el-input
- v-model="queryParams.ftrademodeid"
- placeholder="请输入贸易方式"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="货权方" prop="fCorpid">
- <el-input
- v-model="queryParams.fCorpid"
- placeholder="请输入货权方"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="经营单位" prop="fsbu">
- <el-input
- v-model="queryParams.fsbu"
- placeholder="请输入经营单位"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="提单号" prop="fmblno">
- <el-input
- v-model="queryParams.fmblno"
- placeholder="请输入提单号"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="报关单号" prop="fcustomsdeclartion">
- <el-input
- v-model="queryParams.fcustomsdeclartion"
- placeholder="请输入报关单号"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="货物名称" prop="fgoodsid">
- <el-select
- v-model="queryParams.fgoodsid"
- placeholder="请选择货物名称"
- clearable
- size="small"
- >
- <el-option label="请选择字典生成" value=""/>
- </el-select>
- </el-form-item>
- <el-form-item label="箱型" prop="fcntrtype">
- <el-select
- v-model="queryParams.fcntrtype"
- placeholder="请选择箱型"
- clearable
- size="small"
- >
- <el-option label="请选择字典生成" value=""/>
- </el-select>
- </el-form-item>
- <el-form-item label="箱量" prop="fcntqty">
- <el-input
- v-model="queryParams.fcntqty"
- placeholder="请输入箱量"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="仓库" prop="fwarehouseid">
- <el-input
- v-model="queryParams.fwarehouseid"
- placeholder="请输入仓库"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item>
- <el-button
- type="cyan"
- icon="el-icon-search"
- size="mini"
- @click="handleQuery"
- >搜索
- </el-button
- >
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
- >重置
- </el-button
- >
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['warehouseBusiness:warehousebills:add']"
- >新增
- </el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- icon="el-icon-edit"
- size="mini"
- :disabled="single"
- @click="handleUpdate"
- v-hasPermi="['warehouseBusiness:warehousebills:edit']"
- >修改
- </el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- icon="el-icon-delete"
- size="mini"
- :disabled="multiple"
- @click="handleDelete"
- v-hasPermi="['warehouseBusiness:warehousebills:remove']"
- >删除
- </el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['warehouseBusiness:warehousebills:export']"
- >导出
- </el-button
- >
- </el-col>
- <right-toolbar
- :showSearch.sync="showSearch"
- @queryTable="getList"
- ></right-toolbar>
- </el-row>
- <el-table
- v-loading="loading"
- :data="warehousebillsList"
- @selection-change="handleSelectionChange"
- >
- <el-table-column type="selection" width="55" align="center"/>
- <el-table-column type="index" label="序号" align="center"/>
- <el-table-column label="业务编号" align="center" prop="fbillno"/>
- <el-table-column label="制单人" align="center" prop="createBy"/>
- <el-table-column label="客户名称" align="center" prop="fcorpid"/>
- <el-table-column label="贸易方式" align="center" prop="ftrademodeid"/>
- <!-- <el-table-column label="货转客户名称" align="center" prop="fTocorpid" /> -->
- <el-table-column label="入库毛重" align="center" prop="fgrossweight"/>
- <!-- <el-table-column
- label="入库日期"
- align="center"
- prop="fcreatetime"
- width="180"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.fcreatetime, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column> -->
- <el-table-column label="入库件数" align="center" prop="fQty"/>
- <el-table-column label="入库毛重" align="center" prop="fGrossweight"/>
- <el-table-column
- label="净重"
- align="center"
- prop="fNetweight"
- />
- <el-table-column
- label="状态"
- align="center"
- prop="fBillstatus"
- :formatter="fBillstatusFormat"
- />
- <el-table-column
- label="是否质押"
- align="center"
- prop="fIfpledge"
- :formatter="fIfpledgeFormat"
- />
- <el-table-column label="质押银行" align="center" prop="fBankcorpid"/>
- <el-table-column label="业务编号" align="center" prop="fBillno"/>
- <el-table-column label="报关号" align="center" prop="fCustomno"/>
- <el-table-column
- label="原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno"
- align="center"
- prop="fOriginalbillno"
- />
- <el-table-column label="制单部门" align="center" prop="fDeptid"/>
- <el-table-column label="业务所属部门" align="center" prop="fBsdeptid"/>
- <el-table-column label="联系人" align="center" prop="fContacts"/>
- <el-table-column label="电话" align="center" prop="fTel"/>
- <el-table-column
- label="货权方,t_corps 中的no或 name,模糊查找选择后,存储id,显示name"
- align="center"
- prop="fCorpid"
- />
- <el-table-column
- label="货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效"
- align="center"
- prop="fTocorpid"
- />
- <el-table-column
- label="结算方式,默认提取corps中stltypeid 也可以从表t_stltypes中下拉选择,存储id,显示name"
- align="center"
- prop="fStltypeid"
- />
- <el-table-column
- label="客户存货编号,格式编号客户编号+YYYY +NNNN,
- 编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用,每年从001开始"
- align="center"
- prop="fBscorpno"
- />
- <el-table-column label="仓库" align="center" prop="fWarehouseid"/>
- <el-table-column label="仓管人" align="center" prop="fStorekeeper"/>
- <el-table-column
- label="计划件数,由明细表自动合计生成"
- align="center"
- prop="fPlanqty"
- />
- <el-table-column
- label="计划毛重,由明细表自动合计生成"
- align="center"
- prop="fPlangrossweight"
- />
- <el-table-column
- label="计划净重,由明细表自动合计生成"
- align="center"
- prop="fPlannetweight"
- />
- <el-table-column
- label="计划尺码,由明细表自动合计生成"
- align="center"
- prop="fPlanvolumn"
- />
- <el-table-column
- label="尺码,由明细表自动合计生成"
- align="center"
- prop="fVolumn"
- />
- <el-table-column
- label="贸易方式(数据字典),对应t_trademodels "
- align="center"
- prop="fTrademodeid"
- :formatter="fTrademodeidFormat"
- />
- <el-table-column label="经营单位(客户列表)" align="center" prop="fSbu"/>
- <el-table-column
- label="计费单位(数据字典),下拉选择毛重或净重"
- align="center"
- prop="fFeetunit"
- :formatter="fFeetunitFormat"
- />
- <el-table-column label="提单号" align="center" prop="fMblno"/>
- <el-table-column
- label="船名航次,CMA/A0001"
- align="center"
- prop="fVslvoy"
- />
- <el-table-column label="到港日期" align="center" prop="fEta" width="180">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.fEta, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column label="报关单号" align="center" prop="fCustomno"/>
- <el-table-column
- label="是否过磅(数据字典)默认 F ,过磅T 否者F 下拉选择"
- align="center"
- prop="fIfweigh"
- :formatter="fIfweighFormat"
- />
- <el-table-column
- label="单据类型(数据字典)SJRK"
- align="center"
- prop="fBilltype"
- :formatter="fBilltypeFormat"
- />
- <el-table-column label="备注" align="center" prop="remark"/>
- <el-table-column
- label="操作"
- align="center"
- class-name="small-padding fixed-width"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['warehouseBusiness:warehousebills:edit']"
- >修改
- </el-button
- >
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['warehouseBusiness:warehousebills:remove']"
- >删除
- </el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total > 0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 添加或修改仓库主(出入库)对话框 -->
- <el-dialog :title="title" :visible.sync="open" :close-on-click-modal="false" width="80%" append-to-body>
- <el-form
- style="height: 500px"
- ref="form"
- :model="form"
- :rules="rules"
- label-width="120px"
- >
- <el-row>
- <el-col :span="8">
- <el-form-item label="货权方" prop="fcorpid">
- <el-select
- v-model="form.fCorpid"
- filterable
- remote
- :remote-method="corpsRemoteMethod"
- placeholder="请选择货权方">
- <el-option
- v-for="dict in fMblnoOptions"
- :key="dict.fId"
- :label="dict.fName"
- :value="dict.fId"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="仓库" prop="fwarehouseid">
- <el-select
- v-model="form.fWarehouseid"
- filterable
- remote
- :remote-method="warehouseRemoteMethod"
- placeholder="请选择仓库">
- <el-option
- v-for="dict in warehouseOptions"
- :key="dict.fId"
- :label="dict.fName"
- :value="dict.fId"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="联系人" prop="fContacts">
- <el-select
- v-model="form.fContacts"
- filterable
- remote
- :remote-method="userRemoteMethod"
- placeholder="请选择联系人">
- <el-option
- v-for="dict in userOptions"
- :key="dict.userName"
- :label="dict.nickName"
- :value="dict.userName"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="8">
- <el-form-item label="电话" prop="ftel">
- <el-input v-model="form.fTel" placeholder="请输入电话"/>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="提单号" prop="fmblno">
- <el-input v-model="form.fMblno" placeholder="请输入提单号"/>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="入库日期" prop="fbsdate">
- <el-date-picker
- v-model="form.fBsdate"
- style="width: 375px"
- type="date"
- value-format="timestamp"
- placeholder="入库日期"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="8">
- <el-form-item label="仓管人" prop="fstorekeeper">
- <el-input v-model="form.fStorekeeper" placeholder="请输入仓管人"/>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="制单人" prop="createBy">
- <el-input disabled v-model="form.createBy" placeholder="制单人"/>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="制单部门" prop="fDeptid">
- <el-select
- v-model="form.fDeptid"
- filterable
- disabled
- remote>
- <el-option
- v-for="dict in deptOptions"
- :key="dict.deptId"
- :label="dict.deptName"
- :value="dict.deptId"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="8">
- <el-form-item disabled label="制单日期" prop="fbilldate">
- <el-date-picker
- v-model="form.createTime"
- style="width: 375px"
- type="date"
- disabled
- value-format="timestamp"
- placeholder="制单日期"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="船航次" prop="fvslvoy">
- <el-input v-model="form.fVslvoy" placeholder="船航次"/>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="到港日期" prop="feta">
- <el-date-picker
- v-model="form.fEta"
- style="width: 375px"
- type="date"
- value-format="timestamp"
- placeholder="到港日期"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="8">
- <el-form-item label="贸易方式" prop="ftrademodeid">
- <el-select v-model="form.fTrademodeid" placeholder="请选择贸易方式" clearable size="small">
- <el-option
- v-for="dict in fTrademodeidOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="计费方式" prop="fbillingway">
- <el-select v-model="form.fBillingway "
- placeholder="请选择计费方式"
- clearable
- size="small"
- >
- <el-option
- v-for="dict in fFeetunitOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="计费单位" prop="ffeetunit">
- <el-select
- v-model="form.fFeetunit"
- placeholder="请选择计费单位"
- clearable
- size="small"
- >
- <el-option
- v-for="dict in fFeetunitOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="8">
- <el-form-item label="客户存货编号" prop="fbscorpno">
- <el-input v-model="form.fBscorpno" laceholder="客户存货编号"/>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="报关单号" prop="fcustomno">
- <el-input v-model="form.fCustomno" laceholder="报关单号"/>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="结算方式" prop="fstltypeid">
- <el-select
- v-model="form.fStltypeid"
- placeholder="请选择结算方式"
- clearable
- size="small"
- >
- <el-option
- v-for="dict in fStltypeOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="8">
- <el-form-item label="是否过磅" prop="fifweigh">
- <el-select
- v-model="form.fIfweigh"
- placeholder="请选择是否过磅"
- clearable
- size="small"
- >
- <el-option
- v-for="dict in fIfweighOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="是否破损" prop="fifdamage">
- <el-select
- v-model="form.fIfdamage"
- placeholder="请选择是否破损"
- clearable
- size="small"
- >
- <el-option
- v-for="dict in fIfdamageOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="经营单位" prop="fsbu">
- <el-select
- v-model="form.fSbu"
- filterable
- remote
- :remote-method="fSbuRemoteMethod"
- placeholder="请选择经营单位">
- <el-option
- v-for="dict in fSbuOptions"
- :key="dict.fId"
- :label="dict.fName"
- :value="dict.fId"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="8">
- <el-form-item label="是否质押" prop="fifpledge">
- <el-select
- v-model="form.fIfpledge"
- placeholder="请选择是否过磅"
- clearable
- size="small"
- >
- <el-option
- v-for="dict in fIfpledgeOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="银行名称??????????" prop="fbankcorpid">
- <el-input v-model="form.fBankcorpid" laceholder="银行名称"/>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-form-item label="备注" prop="remark">
- <el-input
- style="width: 100%"
- v-model="form.remark"
- type="textarea"
- placeholder="请输入内容"
- />
- </el-form-item>
- </el-row>
- </el-form>
- <div class="dialogTableTitle flex a-center jlr">
- <h2>库存明细</h2>
- <el-button :disabled="browseStatus" @click.prevent="addRelevant()"
- >添加
- </el-button
- >
- </div>
- <el-table :data="dataList" ref="table" tooltip-effect="dark" border stripe show-summary>
- <el-table-column label="序号" type="index" width="80">
- </el-table-column>
- <el-table-column
- prop="fbsdate"
- header-align="center"
- align="center"
- label="入库日期"
- >
- <template slot-scope="scope">
- <el-date-picker
- v-model="scope.row.fBsdate"
- style="width: 375px"
- type="date"
- value-format="timestamp"
- placeholder=入库日期
- >
- </el-date-picker>
- </template>
- </el-table-column>
- <el-table-column
- prop="fgoodsid"
- header-align="center"
- align="center"
- label="品牌"
- >
- <template slot-scope="scope">
- <el-select
- v-model="scope.row.fGoodsid"
- filterable
- remote
- :remote-method="goodsRemoteMethod"
- placeholder="请选择品牌">
- <el-option
- v-for="dict in goodsOptions"
- :key="dict.fId"
- :label="dict.fName"
- :value="dict.fId"
- ></el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column
- prop="fcntrtype"
- header-align="center"
- align="center"
- label="箱型"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fCntrtype"
- placeholder="箱型"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fcntqty"
- header-align="center"
- align="center"
- label="箱量"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fCntqty"
- placeholder="箱量"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fplangrossweight"
- header-align="center"
- align="center"
- label="重量"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fPlangrossweight"
- placeholder="重量"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fplanvolumn"
- header-align="center"
- align="center"
- label="计划尺码"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fPlanvolumn"
- placeholder="尺码"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fplanqty"
- header-align="center"
- align="center"
- label="计划件数"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fPlanqty"
- placeholder="件数"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fgrossweight"
- header-align="center"
- align="center"
- label="入库重量"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fGrossweight"
- placeholder="入库重量"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fqty"
- header-align="center"
- align="center"
- label="入库件数"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fQty"
- placeholder="入库件数"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fPackagespecs"
- header-align="center"
- align="center"
- label="包装规格"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fPackagespecs"
- placeholder="包装规格"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fwarehouselocid"
- header-align="center"
- align="center"
- label="库区"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fWarehouselocid"
- placeholder="库区"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fBoxno"
- header-align="center"
- align="center"
- label="箱号"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fBoxno"
- placeholder="箱号"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fGoodsval"
- header-align="center"
- align="center"
- label="货值"
- >
- <template slot-scope="scope">
- <el-input
- disabled
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fGoodsval"
- placeholder="货值"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="ftruckno"
- header-align="center"
- align="center"
- label="车号"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fTruckno"
- placeholder="车号"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="remark"
- header-align="center"
- align="center"
- label="备注"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.remark"
- placeholder="备注"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- header-align="center"
- align="center"
- label="操作"
- width="130PX">
- <template slot-scope="scope">
- <el-button @click.native.prevent="deleteRow(scope.$index, dataList)" size="small">移除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <div class="dialogTableTitle flex a-center jlr">
- <h2>附件上传</h2>
- <el-button :disabled="browseStatus" @click.prevent="addRelevt()"
- >添加
- </el-button
- >
- </div>
- <el-table
- :data="relevantAttachments"
- ref="table"
- tooltip-effect="dark"
- border
- stripe
- style="width: 100%"
- height="150"
- >
- <el-table-column label="序号" type="index" width="80">
- </el-table-column>
- <el-table-column
- prop="attachName"
- header-align="center"
- align="center"
- label="附件名称"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.attachName"
- :disabled="browseStatus"
- placeholder="附件名称"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="opUserName"
- header-align="center"
- align="center"
- label="上传人"
- >
- </el-table-column>
- <el-table-column
- prop="opDate"
- header-align="center"
- align="center"
- label="上传时间"
- >
- <template slot-scope="scope">
- <el-date-picker
- v-model="scope.row.opDate"
- type="date"
- disabled
- placeholder="上传时间"
- format="yyyy-MM-dd HH:mm"
- value-format="timestamp"
- ></el-date-picker>
- </template>
- </el-table-column>
- <el-table-column
- header-align="center"
- align="center"
- width="250PX"
- label="上传附件"
- >
- <template slot-scope="scope">
- <el-button style="float: left; height: 38px">
- <a
- :href="scope.row.attachId"
- target="_blank"
- class="buttonText"
- style="float: left; margin-left: 1px"
- >查看</a
- >
- </el-button>
- <el-upload
- class="upload-demo"
- ref="upload"
- action="node"
- :on-change="checkType"
- :disabled="browseStatus"
- :show-file-list="false"
- :auto-upload="false"
- style="float: left"
- >
- <el-button
- slot="trigger"
- @click="clickAttachId(scope.$index)"
- size="small"
- type="primary"
- style="margin-left: 5px"
- >上传
- </el-button>
- </el-upload>
- <el-button
- style="margin-left: 5px"
- @click.native.prevent="deleteAttach(scope.row)"
- :disabled="browseStatus"
- size="small"
- >删除
- </el-button>
- </template>
- </el-table-column>
- <el-table-column
- header-align="center"
- align="center"
- label="操作"
- width="130PX"
- >
- <template slot-scope="scope">
- <el-button
- @click.native.prevent="deleteRow(scope.$index, relevantAttachments)"
- :disabled="browseStatus"
- size="small"
- >移除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <div class="dialogTableTitle flex a-center jlr">
- <h2>收款信息</h2>
- <el-button :disabled="browseStatus" @click.prevent="addCollection()"
- >添加
- </el-button
- >
- </div>
- <el-table
- :data="warehouseDrList"
- ref="table"
- tooltip-effect="dark"
- border
- stripe
- show-summary
- >
- <el-table-column label="序号" type="index" width="80">
- </el-table-column>
- <el-table-column
- prop="fcorpid"
- header-align="center"
- align="center"
- label="客户名称"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fCorpid"
- :disabled="browseStatus"
- placeholder="客户名称"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="ffeeid"
- header-align="center"
- align="center"
- label="费用名称"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fFeeid"
- placeholder="费用名称"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="ffeeUnitid"
- header-align="center"
- align="center"
- label="计价单位">
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fFeeUnitid"
- placeholder="计价单位"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fQty"
- header-align="center"
- align="center"
- label="数量"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fQty"
- placeholder="数量"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="funitprice"
- header-align="center"
- align="center"
- label="单价"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fUnitprice"
- placeholder="单价"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fAmount"
- header-align="center"
- align="center"
- label="金额"
- >
- <template slot-scope="scope">
- <el-input
- disabled
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fAmount"
- placeholder="金额"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fCurrency"
- header-align="center"
- align="center"
- label="币别"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fCurrency"
- :disabled="browseStatus"
- placeholder="币别"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fCxrate"
- header-align="center"
- align="center"
- label="汇率"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fCxrate"
- :disabled="browseStatus"
- placeholder="汇率"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fRate"
- header-align="center"
- align="center"
- label="税率"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fRate"
- :disabled="browseStatus"
- placeholder="税率"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- header-align="center"
- align="center"
- label="操作"
- width="130PX">
- <template slot-scope="scope">
- <el-button size="small">审核费用</el-button>
- <el-button @click.native.prevent="deleteRow(scope.$index, warehouseDrList)" size="small">移除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <div class="dialogTableTitle flex a-center jlr">
- <h2>付款信息</h2>
- <el-button :disabled="browseStatus" @click.prevent="addpayment()"
- >添加
- </el-button
- >
- </div>
- <el-table
- :data="warehouseCrList"
- ref="table"
- tooltip-effect="dark"
- border
- stripe
- show-summary
- >
- <el-table-column label="序号" type="index" width="80">
- </el-table-column>
- <el-table-column
- prop="fcorpid"
- header-align="center"
- align="center"
- label="客户名称"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fCorpid"
- :disabled="browseStatus"
- placeholder="客户名称"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="ffeeid"
- header-align="center"
- align="center"
- label="费用名称"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fFeeid"
- placeholder="费用名称"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="ffeeUnitid"
- header-align="center"
- align="center"
- label="计价单位">
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fFeeUnitid"
- placeholder="计价单位"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fQty"
- header-align="center"
- align="center"
- label="数量"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fQty"
- placeholder="数量"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="funitprice"
- header-align="center"
- align="center"
- label="单价"
- >
- <template slot-scope="scope">
- <el-input
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fUnitprice"
- placeholder="单价"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fAmount"
- header-align="center"
- align="center"
- label="金额"
- >
- <template slot-scope="scope">
- <el-input
- disabled
- oninput="value=value.replace(/[^\d.]/g,'')"
- v-model="scope.row.fAmount"
- placeholder="金额"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fCurrency"
- header-align="center"
- align="center"
- label="币别"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fCurrency"
- :disabled="browseStatus"
- placeholder="币别"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fCxrate"
- header-align="center"
- align="center"
- label="汇率"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fCxrate"
- :disabled="browseStatus"
- placeholder="汇率"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="fRate"
- header-align="center"
- align="center"
- label="税率"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fRate"
- :disabled="browseStatus"
- placeholder="税率"
- show-word-limit
- />
- </template>
- </el-table-column>
- <el-table-column
- header-align="center"
- align="center"
- label="操作"
- width="130PX">
- <template slot-scope="scope">
- <el-button size="small">审核费用</el-button>
- <el-button @click.native.prevent="deleteRow(scope.$index, warehouseCrList)" size="small">移除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- listWarehousebills,
- getWarehousebills,
- delWarehousebills,
- addWarehousebills,
- updateWarehousebills,
- exportWarehousebills,
- } from "@/api/warehouseBusiness/warehouseInStock";
- import {listCorps} from "@/api/basicdata/corps";
- import {listWarehouse} from "@/api/basicdata/warehouse";
- import {listGoods} from "@/api/basicdata/goods";
- import {listUser, queryUserVal} from "@/api/system/user";
- export default {
- name: "Warehousebills",
- components: {},
- data() {
- return {
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- userVal: {
- userName: null,
- nickName: null,
- deptId: null
- },
- queryForm: {},
- dataList: [],
- warehouseCrList: [],
- warehouseDrList: [],
- browseStatus: false,
- relevantAttachments: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 仓库主(出入库)表格数据
- warehousebillsList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 货权方(客户数据)
- fMblnoOptions: [],
- // 货权方(客户数据)
- fSbuOptions: [],
- // 操作员
- userOptions: [],
- // 操作员
- goodsOptions: [],
- // 制单部门
- deptOptions: [],
- // 仓库(仓库数据)
- warehouseOptions: [],
- // 贸易方式(数据字典),对应t_trademodels 字典
- fTrademodeidOptions: [],
- // 计费单位(数据字典),下拉选择毛重或净重字典
- fFeetunitOptions: [],
- // 结算方式(数据字典),下拉选择字典
- fStltypeOptions: [],
- // 是否过磅(数据字典)默认 F ,过磅T 否者F 下拉选择字典
- fIfweighOptions: [],
- // 是否质押(数据字典),默认 F ,质押T 否者F 下拉选择字典
- fIfpledgeOptions: [],
- // 是否破损(数据字典),默认F否则T字典
- fIfdamageOptions: [],
- // 单据类型(数据字典)SJRK字典
- fBilltypeOptions: [],
- // 状态(数据字典),N 入字典
- fBillstatusOptions: [],
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- fBillno: null,
- createBy: null,
- createTime: null,
- fCustomsdeclartion: null,
- fOriginalbillno: null,
- fDeptid: null,
- fBsdeptid: null,
- fContacts: null,
- fTel: null,
- fCorpid: null,
- fTocorpid: null,
- fStltypeid: null,
- fBscorpno: null,
- fWarehouseid: null,
- fStorekeeper: null,
- fBsdate: null,
- fPlanqty: null,
- fPlangrossweight: null,
- fPlannetweight: null,
- fPlanvolumn: null,
- fQty: null,
- fGrossweight: null,
- fNetweight: null,
- fVolumn: null,
- fTrademodeid: null,
- fSbu: null,
- fFeetunit: null,
- fMblno: null,
- fVslvoy: null,
- fEta: null,
- fCustomno: null,
- fIfweigh: null,
- fIfpledge: null,
- fIfdamage: null,
- fBankcorpid: null,
- fBilltype: null,
- fBillstatus: null,
- fCreateby: null,
- fCreatetime: null,
- fGoodsid: null,
- fCntrtype: null,
- fCntqty: null
- },
- // 表单参数
- form: {},
- // 表单校验
- rules: {
- fDeptid: [
- {required: true, message: "制单部门不能为空", trigger: "blur"},
- ],
- fBsdeptid: [
- {required: true, message: "业务所属部门不能为空", trigger: "blur"},
- ],
- fCorpid: [
- {
- required: true,
- message:
- "客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name不能为空",
- trigger: "blur",
- },
- ],
- fTocorpid: [
- {
- required: true,
- message:
- "货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效不能为空",
- trigger: "blur",
- },
- ],
- fBscorpno: [
- {
- required: true,
- message:
- "客户存货编号,格式编号客户编号+YYYY +NNNN,编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用,每年从001开始不能为空",
- trigger: "blur",
- },
- ],
- },
- };
- },
- created() {
- this.getList();
- this.getDicts("data_trademodes").then((response) => {
- this.fTrademodeidOptions = response.data;
- });
- this.getDicts("data_unitfees").then((response) => {
- this.fFeetunitOptions = response.data;
- });
- this.getDicts("data_stltype_type").then((response) => {
- this.fStltypeOptions = response.data;
- });
- this.getDicts("data_ifweigh_status").then((response) => {
- this.fIfweighOptions = response.data;
- });
- this.getDicts("data_ifpledge_status").then((response) => {
- this.fIfpledgeOptions = response.data;
- });
- this.getDicts("data_ifdamage_status").then((response) => {
- this.fIfdamageOptions = response.data;
- });
- this.getDicts("data_billtype_type").then((response) => {
- this.fBilltypeOptions = response.data;
- });
- this.getDicts("sys_common_status").then((response) => {
- this.fBillstatusOptions = response.data;
- });
- },
- methods: {
- // 添加list
- addRelevant() {
- console.log(JSON.stringify(this.dataList))
- this.dataList.push({
- fbsdate: null,
- fgoodsid: null,
- fcntrtype: null,
- fCntqty: null,
- fplangrossweight: null,
- fplanvolumn: null,
- fplanqty: null,
- fgrossweight: null,
- fqty: null,
- fPackagespecs: null,
- fwarehouselocid: null,
- fBoxno: null,
- fGoodsval: null,
- ftruckno: null,
- remark: null
- });
- },
- // 收款信息
- addCollection() {
- var obj = {};
- this.warehouseDrList.push(obj);
- },
- addpayment() {
- var obj = {};
- this.warehouseCrList.push(obj);
- },
- queryUser() {
- queryUserVal().then((response) => {
- if (response.user !== null) {
- this.userVal = response.user
- this.$set(this.form, 'fDeptid', this.userVal.deptId)
- this.$set(this.form, 'createBy', this.userVal.userName)
- this.$set(this.form, 'createTime', Date.parse(new Date()))
- }
- if (response.dept !== null) {
- this.deptOptions = []
- this.deptOptions.push(response.dept)
- }
- });
- },
- /** 查询仓库主(出入库)列表 */
- getList() {
- this.loading = true;
- listWarehousebills(this.queryParams).then((response) => {
- this.warehousebillsList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- // 贸易方式(数据字典),对应t_trademodels 字典翻译
- fTrademodeidFormat(row, column) {
- return this.selectDictLabel(this.fTrademodeidOptions, row.fTrademodeid);
- },
- // 计费单位(数据字典),下拉选择毛重或净重字典翻译
- fFeetunitFormat(row, column) {
- return this.selectDictLabel(this.fFeetunitOptions, row.fFeetunit);
- },
- // 是否过磅(数据字典)默认 F ,过磅T 否者F 下拉选择字典翻译
- fIfweighFormat(row, column) {
- return this.selectDictLabel(this.fIfweighOptions, row.fIfweigh);
- },
- // 是否质押(数据字典),默认 F ,质押T 否者F 下拉选择字典翻译
- fIfpledgeFormat(row, column) {
- return this.selectDictLabel(this.fIfpledgeOptions, row.fIfpledge);
- },
- // 是否破损(数据字典),默认F否则T字典翻译
- fIfdamageFormat(row, column) {
- return this.selectDictLabel(this.fIfdamageOptions, row.fIfdamage);
- },
- // 单据类型(数据字典)SJRK字典翻译
- fBilltypeFormat(row, column) {
- return this.selectDictLabel(this.fBilltypeOptions, row.fBilltype);
- },
- // 状态(数据字典),N 入字典翻译
- fBillstatusFormat(row, column) {
- return this.selectDictLabel(this.fBillstatusOptions, row.fBillstatus);
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- fId: null,
- fBillno: null,
- fCustomsdeclartion: null,
- fOriginalbillno: null,
- fDeptid: null,
- fBsdeptid: null,
- fContacts: null,
- fTel: null,
- fCorpid: null,
- fTocorpid: null,
- fStltypeid: null,
- fBscorpno: null,
- fWarehouseid: null,
- fStorekeeper: null,
- fBsdate: null,
- fPlanqty: null,
- fPlangrossweight: null,
- fPlannetweight: null,
- fPlanvolumn: null,
- fQty: null,
- fGrossweight: null,
- fNetweight: null,
- fVolumn: null,
- fTrademodeid: null,
- fSbu: null,
- fFeetunit: null,
- fMblno: null,
- fVslvoy: null,
- fEta: null,
- fCustomno: null,
- fIfweigh: null,
- fIfpledge: null,
- fIfdamage: null,
- fBankcorpid: null,
- fBilltype: null,
- fBillstatus: null,
- delFlag: null,
- createBy: null,
- createTime: null,
- updateBy: null,
- updateTime: null,
- remark: null,
- fCreateby: null,
- fCreatetime: null,
- fGoodsid: null,
- fCntrtype: null,
- fCntqty: null
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map((item) => item.fId);
- this.single = selection.length !== 1;
- this.multiple = !selection.length;
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.queryUser()
- this.open = true;
- this.title = "添加仓库主(出入库)";
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- const fId = row.fid || this.ids;
- getWarehousebills(row.fid).then((response) => {
- this.form = response.data.warehousebills;
- this.$set(this.form, 'fCorpid', response.data.warehousebills.fcorpid)
- this.$set(this.form, 'fWarehouseid', response.data.warehousebills.fwarehouseid)
- this.$set(this.form, 'fContacts', response.data.warehousebills.fcontacts)
- this.$set(this.form, 'fTel', response.data.warehousebills.ftel)
- this.$set(this.form, 'fMblno', response.data.warehousebills.fmblno)
- this.$set(this.form, 'fBsdate', Date.parse(response.data.warehousebills.fbsdate))
- this.$set(this.form, 'fStorekeeper', response.data.warehousebills.fstorekeeper)
- this.$set(this.form, 'createBy', response.data.warehousebills.createBy)
- this.$set(this.form, 'fDeptid', response.data.warehousebills.fdeptid)
- this.$set(this.form, 'fDilldate', Date.parse(response.data.warehousebills.fbilldate))
- this.$set(this.form, 'fVslvoy', response.data.warehousebills.fvslvoy)
- this.$set(this.form, 'fEta', Date.parse(response.data.warehousebills.feta))
- this.$set(this.form, 'createTime', Date.parse(response.data.warehousebills.createTime))
- this.$set(this.form, 'fTrademodeid', response.data.warehousebills.ftrademodeid + '')
- this.$set(this.form, 'fBillingway', response.data.warehousebills.fbillingway + '')
- this.$set(this.form, 'fFeetunit', response.data.warehousebills.ffeetunit + '')
- this.$set(this.form, 'fBscorpno', response.data.warehousebills.fbscorpno)
- this.$set(this.form, 'fCustomno', response.data.warehousebills.fcustomno)
- this.$set(this.form, 'fStltypeid', response.data.warehousebills.fstltypeid + '')
- this.$set(this.form, 'fIfweigh', response.data.warehousebills.fifweigh + '')
- this.$set(this.form, 'fIfdamage', response.data.warehousebills.fifdamage + '')
- this.$set(this.form, 'fSbu', response.data.warehousebills.fsbu)
- this.$set(this.form, 'fIfpledge', response.data.warehousebills.fifpledge + '')
- this.$set(this.form, 'fBankcorpid', response.data.warehousebills.fbankcorpid)
- this.$set(this.form, 'remark', response.data.warehousebills.remark)
- this.deptOptions = []
- this.deptOptions.push(response.data.dept)
- this.fMblnoOptions = []
- this.fMblnoOptions.push(response.data.fCorps)
- if (response.data.fSbu !== null) {
- this.fSbuOptions = []
- this.fSbuOptions.push(response.data.fSbu)
- }
- if (response.data.warehouse !== null) {
- this.warehouseOptions = []
- this.warehouseOptions.push(response.data.warehouse)
- }
- console.log(JSON.stringify(response.data.warehouseBillsItem))
- if (typeof response.data.warehouseBillsItem !== 'undefined' && response.data.warehouseBillsItem !== null) {
- this.dataList = response.data.warehouseBillsItem
- if (response.data.goodsList !== null) {
- this.goodsOptions = []
- this.goodsOptions = response.data.goodsList
- }
- }
- this.open = true;
- this.title = "修改仓库主(出入库)";
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate((valid) => {
- if (valid) {
- // let formData = new FormData()
- // console.log(JSON.stringify(this.form));
- // formData.append('tWarehouseBills', JSON.stringify(this.formData))
- let formData = new window.FormData();
- // 附件数据
- formData.append("tWarehouseBills", JSON.stringify(this.form));
- console.log(JSON.stringify(this.form));
- // 附件数据
- formData.append("tWhgenleg", null);
- // // 费用明细付款
- formData.append("tWarehousebillsfeesCr", JSON.stringify(this.warehouseCrList));
- // // 收款
- formData.append("tWarehousebillsfeesDr", JSON.stringify(this.warehouseDrList));
- // // 库存明细
- formData.append("tWarehousebillsitems", JSON.stringify(this.dataList));
- // 附件数据
- // formData.append('tWhgenleg', dataForm)
- // // 费用明细付款
- // formData.append('tWarehousebillsfeesCr', dataForm)
- // // 收款
- // formData.append('tWarehousebillsfeesDr"', dataForm)
- // // 库存明细
- // formData.append('tWarehousebillsitems', dataForm)
- addWarehousebills(formData).then((response) => {
- console.log(response);
- this.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const fIds = row.fId || this.ids;
- this.$confirm(
- '是否确认删除仓库主(出入库)编号为"' + fIds + '"的数据项?',
- "警告",
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }
- )
- .then(function () {
- return delWarehousebills(fIds);
- })
- .then(() => {
- this.getList();
- this.msgSuccess("删除成功");
- });
- },
- /** 导出按钮操作 */
- handleExport() {
- const queryParams = this.queryParams;
- this.$confirm("是否确认导出所有仓库主(出入库)数据项?", "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(function () {
- return exportWarehousebills(queryParams);
- })
- .then((response) => {
- this.download(response.msg);
- });
- },
- deleteRow(index, rows) {
- rows.splice(index, 1)
- },
- /* 远程模糊查询用户 */
- corpsRemoteMethod(name) {
- if (name == null || name === '') {
- return false
- }
- let queryParams = {pageNum: 1, pageSize: 10, fName: name}
- listCorps(queryParams).then((response) => {
- this.fMblnoOptions = response.rows
- });
- },
- /* 远程模糊查询商品 */
- goodsRemoteMethod(name) {
- if (name == null || name === '') {
- return false
- }
- let queryParams = {pageNum: 1, pageSize: 10, fName: name}
- listGoods(queryParams).then((response) => {
- this.goodsOptions = response.rows
- });
- },
- /* 远程模糊查询经营单位 */
- fSbuRemoteMethod(name) {
- if (name == null || name === '') {
- return false
- }
- let queryParams = {pageNum: 1, pageSize: 10, fName: name}
- listCorps(queryParams).then((response) => {
- this.fSbuOptions = response.rows
- });
- },
- /* 远程模糊查询仓库 */
- warehouseRemoteMethod(name) {
- if (name == null || name === '') {
- return false
- }
- let queryParams = {pageNum: 1, pageSize: 10, fName: name}
- listWarehouse(queryParams).then((response) => {
- this.warehouseOptions = response.rows
- });
- },
- /* 远程模糊查询操作用户 */
- userRemoteMethod(name) {
- if (name == null || name === '') {
- return false
- }
- let queryParams = {pageNum: 1, pageSize: 10, userName: name}
- listUser(queryParams).then((response) => {
- this.userOptions = response.rows
- });
- },
- },
- };
- </script>
|