123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="业务编号,格式RK+YYYY+YY+NNN,
- 编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用删除单据号,每月从001开始。
- RK CK DB HZ
- " prop="fBillno">
- <el-input
- v-model="queryParams.fBillno"
- placeholder="请输入业务编号,格式RK+YYYY+YY+NNN,
- 编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用删除单据号,每月从001开始。
- RK CK DB HZ
- "
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno" prop="fOriginalbillno">
- <el-input
- v-model="queryParams.fOriginalbillno"
- placeholder="请输入原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="制单部门,默认当前登录人所在部门 显示名称,存储id 非空" prop="fDeptid">
- <el-input
- v-model="queryParams.fDeptid"
- placeholder="请输入制单部门,默认当前登录人所在部门 显示名称,存储id 非空"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="业务所属部门,默认当前登录人所在部门, 显示名称,存储id 非空,可以下拉,从t_depts表选取" prop="fBsdeptid">
- <el-input
- v-model="queryParams.fBsdeptid"
- placeholder="请输入业务所属部门,默认当前登录人所在部门, 显示名称,存储id 非空,可以下拉,从t_depts表选取"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="客户id,t_corps 中的no或 name,模糊查找选择后,存储id,显示name" prop="fCorpid">
- <el-input
- v-model="queryParams.fCorpid"
- placeholder="请输入客户id,t_corps 中的no或 name,模糊查找选择后,存储id,显示name"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效" prop="fTocorpid">
- <el-input
- v-model="queryParams.fTocorpid"
- placeholder="请输入货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="结算方式(数据字段),默认提取corps中stltypeid,也可以从表t_stltypes中下拉选择,存储id,显示name" prop="fStltypeid">
- <el-select v-model="queryParams.fStltypeid" placeholder="请选择结算方式(数据字段),默认提取corps中stltypeid,也可以从表t_stltypes中下拉选择,存储id,显示name" clearable size="small">
- <el-option
- v-for="dict in fStltypeidOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="客户存货编号,格式编号客户编号+YYYY +NNNN,
- 编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用,每年从001开始
- " prop="fBscorpno">
- <el-input
- v-model="queryParams.fBscorpno"
- placeholder="请输入客户存货编号,格式编号客户编号+YYYY +NNNN,
- 编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用,每年从001开始
- "
- 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 label="入" prop="fBsdate">
- <el-date-picker clearable size="small" style="width: 200px"
- v-model="queryParams.fBsdate"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择入">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="货物品名,t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name" prop="fGoodsid">
- <el-input
- v-model="queryParams.fGoodsid"
- placeholder="请输入货物品名,t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="计划件数,由明细表自动合计生成" prop="fPlanqty">
- <el-input
- v-model="queryParams.fPlanqty"
- placeholder="请输入计划件数,由明细表自动合计生成"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="计划毛重(kg),单位为吨,保留6位小数,由明细表自动合计生成" prop="fPlangrossweight">
- <el-input
- v-model="queryParams.fPlangrossweight"
- placeholder="请输入计划毛重,单位为吨,保留6位小数,由明细表自动合计生成"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="计划净重(kg),由明细表自动合计生成" prop="fPlannetweight">
- <el-input
- v-model="queryParams.fPlannetweight"
- placeholder="请输入计划净重,由明细表自动合计生成"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="件数,由明细表自动合计生成" prop="fQty">
- <el-input
- v-model="queryParams.fQty"
- placeholder="请输入件数,由明细表自动合计生成"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="毛重(kg),由明细表自动合计生成" prop="fGrossweight">
- <el-input
- v-model="queryParams.fGrossweight"
- placeholder="请输入毛重,由明细表自动合计生成"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="净重(kg),由明细表自动合计生成" prop="fNetweight">
- <el-input
- v-model="queryParams.fNetweight"
- placeholder="请输入净重,由明细表自动合计生成"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="贸易方式(数据字典),对应t_trademodels " prop="fTrademodeid">
- <el-select v-model="queryParams.fTrademodeid" placeholder="请选择贸易方式(数据字典),对应t_trademodels " 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-form-item label="计费单位(数据字典),下拉选择毛重(kg)或净重(kg)" prop="fFeetunit">
- <el-input
- v-model="queryParams.fFeetunit"
- 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="fVslvoy">
- <el-input
- v-model="queryParams.fVslvoy"
- placeholder="请输入船名航次"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="到港日期" prop="fEta">
- <el-date-picker clearable size="small" style="width: 200px"
- v-model="queryParams.fEta"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择到港日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="报关单号" prop="fCustomno">
- <el-input
- v-model="queryParams.fCustomno"
- placeholder="请输入报关单号"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="是否过磅(数据字典)," prop="fIfweigh">
- <el-select v-model="queryParams.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-form-item label="是否质押(数据字典)" prop="fIfpledge">
- <el-select v-model="queryParams.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-form-item label="是否破损(数据字典)" prop="fIfdamage">
- <el-select v-model="queryParams.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-form-item label="银行名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name" prop="fBankcorpid">
- <el-input
- v-model="queryParams.fBankcorpid"
- placeholder="请输入银行名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="单据类型(数据字典),SJRK" prop="fBilltype">
- <el-select v-model="queryParams.fBilltype" placeholder="请选择单据类型(数据字典),SJRK" clearable size="small">
- <el-option
- v-for="dict in fBilltypeOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="状态(数据字典),N 入" prop="fBillstatus">
- <el-select v-model="queryParams.fBillstatus" placeholder="请选择状态(数据字典),N 入" clearable size="small">
- <el-option
- v-for="dict in fBillstatusOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </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="['basicdata: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="['basicdata: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="['basicdata: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="['basicdata: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 label="状态(数据字典),N 入" align="center" prop="fId" />
- <el-table-column label="业务编号,格式RK+YYYY+YY+NNN,
- 编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用删除单据号,每月从001开始。
- RK CK DB HZ
- " align="center" prop="fBillno" />
- <el-table-column label="原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno" align="center" prop="fOriginalbillno" />
- <el-table-column label="制单部门,默认当前登录人所在部门 显示名称,存储id 非空" align="center" prop="fDeptid" />
- <el-table-column label="业务所属部门,默认当前登录人所在部门, 显示名称,存储id 非空,可以下拉,从t_depts表选取" align="center" prop="fBsdeptid" />
- <el-table-column label="客户id,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" :formatter="fStltypeidFormat" />
- <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="fBsdate" width="180">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.fBsdate, '{y}-{m}-{d}') }}</span>
- </template>
- </el-table-column>
- <el-table-column label="货物品名,t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name" align="center" prop="fGoodsid" />
- <el-table-column label="计划件数,由明细表自动合计生成" align="center" prop="fPlanqty" />
- <el-table-column label="计划毛重(kg),单位为吨,保留6位小数,由明细表自动合计生成" align="center" prop="fPlangrossweight" />
- <el-table-column label="计划净重(kg),由明细表自动合计生成" align="center" prop="fPlannetweight" />
- <el-table-column label="件数,由明细表自动合计生成" align="center" prop="fQty" />
- <el-table-column label="毛重(kg),由明细表自动合计生成" align="center" prop="fGrossweight" />
- <el-table-column label="净重(kg),由明细表自动合计生成" align="center" prop="fNetweight" />
- <el-table-column label="贸易方式(数据字典),对应t_trademodels " align="center" prop="fTrademodeid" :formatter="fTrademodeidFormat" />
- <el-table-column label="计费单位(数据字典),下拉选择毛重(kg)或净重(kg)" align="center" prop="fFeetunit" />
- <el-table-column label="提单号" align="center" prop="fMblno" />
- <el-table-column label="船名航次" 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="是否过磅(数据字典)," align="center" prop="fIfweigh" :formatter="fIfweighFormat" />
- <el-table-column label="是否质押(数据字典)" align="center" prop="fIfpledge" :formatter="fIfpledgeFormat" />
- <el-table-column label="是否破损(数据字典)" align="center" prop="fIfdamage" :formatter="fIfdamageFormat" />
- <el-table-column label="银行名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name" align="center" prop="fBankcorpid" />
- <el-table-column label="单据类型(数据字典),SJRK" align="center" prop="fBilltype" :formatter="fBilltypeFormat" />
- <el-table-column label="状态(数据字典),N 入" align="center" prop="fBillstatus" :formatter="fBillstatusFormat" />
- <el-table-column label="备注" align="center" prop="remark" />
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="150" fixed="right">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['basicdata:warehousebills:edit']"
- >修改</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['basicdata: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="500px" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
- <el-form-item label="业务编号,格式RK+YYYY+YY+NNN,
- 编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用删除单据号,每月从001开始。
- RK CK DB HZ
- " prop="fBillno">
- <el-input v-model="form.fBillno" placeholder="请输入业务编号,格式RK+YYYY+YY+NNN,
- 编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用删除单据号,每月从001开始。
- RK CK DB HZ
- " />
- </el-form-item>
- <el-form-item label="原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno" prop="fOriginalbillno">
- <el-input v-model="form.fOriginalbillno" placeholder="请输入原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno" />
- </el-form-item>
- <el-form-item label="制单部门,默认当前登录人所在部门 显示名称,存储id 非空" prop="fDeptid">
- <el-input v-model="form.fDeptid" placeholder="请输入制单部门,默认当前登录人所在部门 显示名称,存储id 非空" />
- </el-form-item>
- <el-form-item label="业务所属部门,默认当前登录人所在部门, 显示名称,存储id 非空,可以下拉,从t_depts表选取" prop="fBsdeptid">
- <el-input v-model="form.fBsdeptid" placeholder="请输入业务所属部门,默认当前登录人所在部门, 显示名称,存储id 非空,可以下拉,从t_depts表选取" />
- </el-form-item>
- <el-form-item label="客户id,t_corps 中的no或 name,模糊查找选择后,存储id,显示name" prop="fCorpid">
- <el-input v-model="form.fCorpid" placeholder="请输入客户id,t_corps 中的no或 name,模糊查找选择后,存储id,显示name" />
- </el-form-item>
- <el-form-item label="货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效" prop="fTocorpid">
- <el-input v-model="form.fTocorpid" placeholder="请输入货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效" />
- </el-form-item>
- <el-form-item label="结算方式(数据字段),默认提取corps中stltypeid,也可以从表t_stltypes中下拉选择,存储id,显示name" prop="fStltypeid">
- <el-select v-model="form.fStltypeid" placeholder="请选择结算方式(数据字段),默认提取corps中stltypeid,也可以从表t_stltypes中下拉选择,存储id,显示name">
- <el-option
- v-for="dict in fStltypeidOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="parseInt(dict.dictValue)"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="客户存货编号,格式编号客户编号+YYYY +NNNN,
- 编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用,每年从001开始
- " prop="fBscorpno">
- <el-input v-model="form.fBscorpno" placeholder="请输入客户存货编号,格式编号客户编号+YYYY +NNNN,
- 编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用,每年从001开始
- " />
- </el-form-item>
- <el-form-item label="仓库,基础资料" prop="fWarehouseid">
- <el-input v-model="form.fWarehouseid" placeholder="请输入仓库,基础资料" />
- </el-form-item>
- <el-form-item label="入" prop="fBsdate">
- <el-date-picker clearable size="small" style="width: 200px"
- v-model="form.fBsdate"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择入">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="货物品名,t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name" prop="fGoodsid">
- <el-input v-model="form.fGoodsid" placeholder="请输入货物品名,t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name" />
- </el-form-item>
- <el-form-item label="计划件数,由明细表自动合计生成" prop="fPlanqty">
- <el-input v-model="form.fPlanqty" placeholder="请输入计划件数,由明细表自动合计生成" />
- </el-form-item>
- <el-form-item label="计划毛重(kg),单位为吨,保留6位小数,由明细表自动合计生成" prop="fPlangrossweight">
- <el-input v-model="form.fPlangrossweight" placeholder="请输入计划毛重,单位为吨,保留6位小数,由明细表自动合计生成" />
- </el-form-item>
- <el-form-item label="计划净重(kg),由明细表自动合计生成" prop="fPlannetweight">
- <el-input v-model="form.fPlannetweight" placeholder="请输入计划净重,由明细表自动合计生成" />
- </el-form-item>
- <el-form-item label="件数,由明细表自动合计生成" prop="fQty">
- <el-input v-model="form.fQty" placeholder="请输入件数,由明细表自动合计生成" />
- </el-form-item>
- <el-form-item label="毛重(kg),由明细表自动合计生成" prop="fGrossweight">
- <el-input v-model="form.fGrossweight" placeholder="请输入毛重,由明细表自动合计生成" />
- </el-form-item>
- <el-form-item label="净重(kg),由明细表自动合计生成" prop="fNetweight">
- <el-input v-model="form.fNetweight" placeholder="请输入净重,由明细表自动合计生成" />
- </el-form-item>
- <el-form-item label="贸易方式(数据字典),对应t_trademodels " prop="fTrademodeid">
- <el-select v-model="form.fTrademodeid" placeholder="请选择贸易方式(数据字典),对应t_trademodels ">
- <el-option
- v-for="dict in fTrademodeidOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="parseInt(dict.dictValue)"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="计费单位(数据字典),下拉选择毛重(kg)或净重(kg)" prop="fFeetunit">
- <el-input v-model="form.fFeetunit" placeholder="请输入计费单位(数据字典),下拉选择毛重或净重" />
- </el-form-item>
- <el-form-item label="提单号" prop="fMblno">
- <el-input v-model="form.fMblno" placeholder="请输入提单号" />
- </el-form-item>
- <el-form-item label="船名航次" prop="fVslvoy">
- <el-input v-model="form.fVslvoy" placeholder="请输入船名航次" />
- </el-form-item>
- <el-form-item label="到港日期" prop="fEta">
- <el-date-picker clearable size="small" style="width: 200px"
- v-model="form.fEta"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择到港日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="报关单号" prop="fCustomno">
- <el-input v-model="form.fCustomno" placeholder="请输入报关单号" />
- </el-form-item>
- <el-form-item label="是否过磅(数据字典)," prop="fIfweigh">
- <el-select v-model="form.fIfweigh" placeholder="请选择是否过磅(数据字典),">
- <el-option
- v-for="dict in fIfweighOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="是否质押(数据字典)" prop="fIfpledge">
- <el-select v-model="form.fIfpledge" placeholder="请选择是否质押(数据字典)">
- <el-option
- v-for="dict in fIfpledgeOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="是否破损(数据字典)" prop="fIfdamage">
- <el-select v-model="form.fIfdamage" placeholder="请选择是否破损(数据字典)">
- <el-option
- v-for="dict in fIfdamageOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="银行名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name" prop="fBankcorpid">
- <el-input v-model="form.fBankcorpid" placeholder="请输入银行名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name" />
- </el-form-item>
- <el-form-item label="单据类型(数据字典),SJRK" prop="fBilltype">
- <el-select v-model="form.fBilltype" placeholder="请选择单据类型(数据字典),SJRK">
- <el-option
- v-for="dict in fBilltypeOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="状态(数据字典),N 入" prop="fBillstatus">
- <el-select v-model="form.fBillstatus" placeholder="请选择状态(数据字典),N 入">
- <el-option
- v-for="dict in fBillstatusOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="删除状态" prop="delFlag">
- <el-input v-model="form.delFlag" placeholder="请输入删除状态" />
- </el-form-item>
- <el-form-item label="备注" prop="remark">
- <el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
- </el-form-item>
- </el-form>
- <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/basicdata/warehousebills";
- export default {
- name: "Warehousebills",
- components: {
- },
- data() {
- return {
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 仓库表格数据
- warehousebillsList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 结算方式(数据字段),默认提取corps中stltypeid,也可以从表t_stltypes中下拉选择,存储id,显示name字典
- fStltypeidOptions: [],
- // 贸易方式(数据字典),对应t_trademodels 字典
- fTrademodeidOptions: [],
- // 是否过磅(数据字典),字典
- fIfweighOptions: [],
- // 是否质押(数据字典)字典
- fIfpledgeOptions: [],
- // 是否破损(数据字典)字典
- fIfdamageOptions: [],
- // 单据类型(数据字典),SJRK字典
- fBilltypeOptions: [],
- // 状态(数据字典),N 入字典
- fBillstatusOptions: [],
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- fBillno: null,
- fOriginalbillno: null,
- fDeptid: null,
- fBsdeptid: null,
- fCorpid: null,
- fTocorpid: null,
- fStltypeid: null,
- fBscorpno: null,
- fWarehouseid: null,
- fBsdate: null,
- fGoodsid: null,
- fPlanqty: null,
- fPlangrossweight: null,
- fPlannetweight: null,
- fQty: null,
- fGrossweight: null,
- fNetweight: null,
- fTrademodeid: null,
- fFeetunit: null,
- fMblno: null,
- fVslvoy: null,
- fEta: null,
- fCustomno: null,
- fIfweigh: null,
- fIfpledge: null,
- fIfdamage: null,
- fBankcorpid: null,
- fBilltype: null,
- fBillstatus: null,
- },
- // 表单参数
- form: {},
- // 表单校验
- rules: {
- fBillno: [
- { required: true, message: "业务编号,格式RK+YYYY+YY+NNN,编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用删除单据号,每月从001开始。RK CK DB HZ不能为空", trigger: "blur" }
- ],
- fOriginalbillno: [
- { required: true, message: "原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno不能为空", trigger: "blur" }
- ],
- fCorpid: [
- { required: true, message: "客户id,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_stltype_type").then(response => {
- this.fStltypeidOptions = response.data;
- });
- this.getDicts("data_trademodes").then(response => {
- this.fTrademodeidOptions = 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: {
- /** 查询仓库列表 */
- getList() {
- this.loading = true;
- listWarehousebills(this.queryParams).then(response => {
- this.warehousebillsList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- // 结算方式(数据字段),默认提取corps中stltypeid,也可以从表t_stltypes中下拉选择,存储id,显示name字典翻译
- fStltypeidFormat(row, column) {
- return this.selectDictLabel(this.fStltypeidOptions, row.fStltypeid);
- },
- // 贸易方式(数据字典),对应t_trademodels 字典翻译
- fTrademodeidFormat(row, column) {
- return this.selectDictLabel(this.fTrademodeidOptions, row.fTrademodeid);
- },
- // 是否过磅(数据字典),字典翻译
- fIfweighFormat(row, column) {
- return this.selectDictLabel(this.fIfweighOptions, row.fIfweigh);
- },
- // 是否质押(数据字典)字典翻译
- fIfpledgeFormat(row, column) {
- return this.selectDictLabel(this.fIfpledgeOptions, row.fIfpledge);
- },
- // 是否破损(数据字典)字典翻译
- 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,
- fOriginalbillno: null,
- fDeptid: null,
- fBsdeptid: null,
- fCorpid: null,
- fTocorpid: null,
- fStltypeid: null,
- fBscorpno: null,
- fWarehouseid: null,
- fBsdate: null,
- fGoodsid: null,
- fPlanqty: null,
- fPlangrossweight: null,
- fPlannetweight: null,
- fQty: null,
- fGrossweight: null,
- fNetweight: null,
- fTrademodeid: 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
- };
- 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.open = true;
- this.title = "添加仓库";
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- const fId = row.fId || this.ids
- getWarehousebills(fId).then(response => {
- this.form = response.data;
- this.open = true;
- this.title = "修改仓库";
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if (this.form.fId != null) {
- updateWarehousebills(this.form).then(response => {
- this.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- });
- } else {
- addWarehousebills(this.form).then(response => {
- this.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const fIds = row.fId || this.ids;
- this.$confirm('是否确认删除仓库编号为"' + fIds + '"的数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return delWarehousebills(fIds);
- }).then(() => {
- this.getList();
- this.msgSuccess("删除成功");
- })
- },
- /** 导出按钮操作 */
- handleExport() {
- const queryParams = this.queryParams;
- this.$confirm('是否确认导出所有仓库数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return exportWarehousebills(queryParams);
- }).then(response => {
- this.download(response.msg);
- })
- }
- }
- };
- </script>
|