@@ -213,6 +212,16 @@
{{ scope.row.设备 }}
+
+
+
+ {{ scope.row.总工时 }}
+
+
+
+
+ {{ scope.row.单个工时 }}
+
@@ -224,16 +233,6 @@
{{ scope.row.完成时间 }}
-
-
- {{ scope.row.检测时间 }}
-
-
-
-
- {{ scope.row.检测数量 }}
-
-
{{ scope.row.调拨员 }}
diff --git a/src/views/WarehouseManagement/InventoryQuery/index.vue b/src/views/WarehouseManagement/InventoryQuery/index.vue
index 80affdcc..5a1c2678 100644
--- a/src/views/WarehouseManagement/InventoryQuery/index.vue
+++ b/src/views/WarehouseManagement/InventoryQuery/index.vue
@@ -174,7 +174,18 @@
- {{ scope.row.需求量 }}
+
+
+
+
+
+
+ {{ scope.row.需求量 }}
+
@@ -384,7 +395,9 @@ export default {
pageSize1: 30, // 分页每页显示条数
orderName: '', // 排序列名
order: '', // 排序方式
- multipleSelection: [] // 选中的行
+ multipleSelection: [], // 选中的行
+ demandDetailData: [],
+ demandDetailLoading: false
}
},
computed: {
@@ -423,6 +436,19 @@ export default {
}
})
},
+ getDemandDetail(row) {
+ this.demandDetailLoading = true
+ this.demandDetailData = []
+ var param = []
+ param[0] = ['物料流水号', row.物料流水号]
+ var Data = this.CreateData('11', '仓储管理_报缺补货_需求量明细_查询', param)
+ this.ExecDatabase(Data).then(response => {
+ this.demandDetailData = response.data.filter(item => item.最终需求量 !== 0)
+ this.demandDetailLoading = false
+ }).catch(() => {
+ this.demandDetailLoading = false
+ })
+ },
handleSizeChanges1(val) {
this.pageCurrent1 = 1
this.pageSize1 = val
diff --git a/src/views/WarehouseManagement/PurchasePartsStorage/index.vue b/src/views/WarehouseManagement/PurchasePartsStorage/index.vue
index 04c3b1a3..958d2e3c 100644
--- a/src/views/WarehouseManagement/PurchasePartsStorage/index.vue
+++ b/src/views/WarehouseManagement/PurchasePartsStorage/index.vue
@@ -1045,6 +1045,14 @@ export default {
if (this.tableData1.length === 0) {
this.getContractState()
this.getSummaries()
+ } else {
+ this.$nextTick(function() {
+ this.tableData1.forEach(function(row) {
+ if (Number(row.等待入库数量) > 0) {
+ this.$refs.table.toggleRowSelection(row, true)
+ }
+ }.bind(this))
+ }.bind(this))
}
})
},