fix: 修复

演示数据2.0
chenhc 7 months ago
parent b2b8c0f353
commit 1555f7a1d4

@ -3,9 +3,9 @@
<el-card class="el-card">
<el-form :model="filterQuery" class="query-form" size="mini" label-width="100px" v-if="showSearch">
<el-row style=" display:flex; flex-wrap: wrap; ">
<el-col :span="6">
<el-col :span="8">
<el-form-item label="仓库:">
<el-select v-model="filterQuery.invCode" placeholder="请选择仓库" clearable="true"
<el-select v-model="filterQuery.fromInvCode" placeholder="请选择仓库" clearable="true"
style="width: 90%"
>
<el-option
@ -19,6 +19,16 @@
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item class="query-form-item" label="出入库类型:">
<el-select v-model="filterQuery.mainAction" placeholder="请选择出入库类型" style="width: 90%" disabled>
<el-option label="全部" value=""></el-option>
<el-option label="入库" value="WareHouseIn"></el-option>
<el-option label="出库" value="WareHouseOut"></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="出入库时间:">
<el-date-picker
@ -60,10 +70,10 @@
@selection-change="handleCheckedChange" :row-style="{ height: '32px' }">
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="物资仓库" prop="fromInvName" show-overflow-tooltip width="120"></el-table-column>
<el-table-column label="物资数量" prop="count" width="120">
<el-table-column label="物资仓库" prop="fromInvName" show-overflow-tooltip width="240"></el-table-column>
<el-table-column label="物资数量" prop="count" width="180">
</el-table-column>
<el-table-column label="物资金额" prop="amount" width="120">
<el-table-column label="物资金额" prop="amount" width="180">
</el-table-column>
</el-table>
@ -110,16 +120,17 @@ export default {
spec: null,
batchNo: null,
page: 1,
limit: 10,
limit: 30,
startAduditTime: null,
endAduditTime: null,
actionType: null,
fromCorp: null,
fromInvCode: null,
keyWords: null,
inoutPrintStatus: null,
confirmStarTime:null, //
confirmEndTime:null,
corpName:null,
mainAction:"WareHouseOut",
},
printMap: {
@ -213,7 +224,7 @@ export default {
spec: null,
batchNo: null,
page: 1,
limit: 10,
limit: 30,
startAduditTime: null,
endAduditTime: null,
actionType: null,
@ -332,6 +343,8 @@ export default {
this.optinPrintLoading = false
if (res.code === 20000) {
let printParams = {
mainAction :this.filterQuery.mainAction,
fromInvCode :this.filterQuery.fromInvCode,
startAduditTime :this.filterQuery.startAduditTime,
endAduditTime: this.filterQuery.endAduditTime,
confirmStarTime : this.filterQuery.confirmStarTime ,
@ -384,6 +397,7 @@ export default {
let printParams = {
templateId: res.data,
orderIdFk: this.filterQuery.orderIdFk,
fromInvCode: this.filterQuery.fromInvCode,
invCode: this.filterQuery.invCode,
nameCode: this.filterQuery.nameCode,
coName: this.filterQuery.coName,

Loading…
Cancel
Save