1
This commit is contained in:
@@ -3,15 +3,19 @@
|
|||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-card class="search-card">
|
<el-card class="search-card">
|
||||||
<el-form :model="queryParams" size="small" label-position="right" inline ref="RecordQueryForm" @submit.native.prevent>
|
<el-form :model="queryParams" size="small" label-position="right" inline ref="RecordQueryForm" @submit.native.prevent>
|
||||||
<el-form-item label="仓库盘点时间" prop="inventoryTime">
|
|
||||||
<el-date-picker v-model="queryParams.inventoryTime" type="datetime" :clearable="true" placeholder="盘点时间"></el-date-picker>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="报表查询时间" prop="startTime">
|
<el-form-item label="报表查询时间" prop="startTime">
|
||||||
<el-date-picker v-model="queryParams.startTime" type="datetime" :clearable="true" placeholder="开始时间"></el-date-picker>
|
<el-date-picker v-model="queryParams.startTime" type="datetime" :clearable="true" placeholder="开始时间"></el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="至" prop="endTime">
|
<el-form-item label="至" prop="endTime">
|
||||||
<el-date-picker v-model="queryParams.endTime" type="datetime" :clearable="true" placeholder="结束时间" default-time="23:59:59"></el-date-picker>
|
<el-date-picker v-model="queryParams.endTime" type="datetime" :clearable="true" placeholder="结束时间" default-time="23:59:59"></el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="抛光库盘点" prop="inventoryTime">
|
||||||
|
{{boardData.polishStockTime}}
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="一次合格库盘点" prop="inventoryTime">
|
||||||
|
{{boardData.oneTimeStockTime}}
|
||||||
|
</el-form-item>
|
||||||
<div>
|
<div>
|
||||||
<el-form-item label="零件号" prop="partnumber">
|
<el-form-item label="零件号" prop="partnumber">
|
||||||
<el-input v-model.trim="queryParams.partnumber" placeholder="请输入零件号" clearable />
|
<el-input v-model.trim="queryParams.partnumber" placeholder="请输入零件号" clearable />
|
||||||
@@ -30,16 +34,22 @@
|
|||||||
<span class="card-header-box">抛光品</span>
|
<span class="card-header-box">抛光品</span>
|
||||||
</div>
|
</div>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<!-- <el-col :span="12">
|
||||||
<div>
|
<div>
|
||||||
<span class="span-text-1"> 现有库存 </span>
|
<span class="span-text-1"> 现有库存 </span>
|
||||||
<span class="span-num-1">{{ polishWarehouseCount }}</span>
|
<span class="span-num-1">{{ polishWarehouseCount }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
</el-col> -->
|
||||||
|
<el-col :span="12">
|
||||||
|
<div>
|
||||||
|
<span class="span-text-1"> 现有库存 </span>
|
||||||
|
<span class="span-num-1">{{ boardData.realPolishWarehouseCount }}</span>
|
||||||
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<div>
|
<div>
|
||||||
<span class="span-text-1"> 盘点时库存 </span>
|
<span class="span-text-1"> 盘点库存 </span>
|
||||||
<span class="span-num-1">{{ inventoryData.polishWarehouseTotal }}</span>
|
<span class="span-num-1">{{ boardData.stockPolishWarehouseCount }}</span>
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@@ -100,16 +110,22 @@
|
|||||||
<span class="card-header-box">一次合格品</span>
|
<span class="card-header-box">一次合格品</span>
|
||||||
</div>
|
</div>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<!-- <el-col :span="12">
|
||||||
<div>
|
<div>
|
||||||
<span class="span-text-1"> 现有库存 </span>
|
<span class="span-text-1"> 现有库存 </span>
|
||||||
<span class="span-num-1">{{ oneTimeWarehouseCount }}</span>
|
<span class="span-num-1">{{ oneTimeWarehouseCount }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
</el-col> -->
|
||||||
|
<el-col :span="12">
|
||||||
|
<div>
|
||||||
|
<span class="span-text-1"> 现有库存 </span>
|
||||||
|
<span class="span-num-1">{{ boardData.realOneTimeWarehouseCount }}</span>
|
||||||
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<div>
|
<div>
|
||||||
<span class="span-text-1"> 盘点时库存 </span>
|
<span class="span-text-1"> 盘点库存 </span>
|
||||||
<span class="span-num-1">{{ inventoryData.oneTimeWarehouseTotal }}</span>
|
<span class="span-num-1">{{ boardData.stockOneTimeWarehouseCount }}</span>
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@@ -457,6 +473,13 @@ export default {
|
|||||||
finishProductPackageTotal: 0,
|
finishProductPackageTotal: 0,
|
||||||
finishProductPartOutTotal: 0,
|
finishProductPartOutTotal: 0,
|
||||||
finishProductPackageOutTotal: 0,
|
finishProductPackageOutTotal: 0,
|
||||||
|
|
||||||
|
// 盘点库存
|
||||||
|
stockPolishWarehouseCount:0,
|
||||||
|
stockOneTimeWarehouseCount:0,
|
||||||
|
// 实际库存
|
||||||
|
realPolishWarehouseCount:0,
|
||||||
|
realOneTimeWarehouseCount:0,
|
||||||
remark: '',
|
remark: '',
|
||||||
updatedTime: '',
|
updatedTime: '',
|
||||||
},
|
},
|
||||||
@@ -532,7 +555,7 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
// 查询盘点时的仓库数据
|
// 查询盘点时的仓库数据
|
||||||
this.getInventoryData()
|
// this.getInventoryData()
|
||||||
CheckIsDoorknob({ partnumber: this.queryParams.partnumber }).then((res) => {
|
CheckIsDoorknob({ partnumber: this.queryParams.partnumber }).then((res) => {
|
||||||
console.log(res.data)
|
console.log(res.data)
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user