diff --git a/src/api/wmsManagement/wmGoodsNowProduction.js b/src/api/wmsManagement/wmGoodsNowProduction.js
index 9a6a77f..92b8dd0 100644
--- a/src/api/wmsManagement/wmGoodsNowProduction.js
+++ b/src/api/wmsManagement/wmGoodsNowProduction.js
@@ -80,4 +80,17 @@ export function updateactualInventoryQuantity(query) {
method: 'get',
params: query,
})
-}
\ No newline at end of file
+}
+
+
+/**
+* 成品库当前货物表分页查询(字典形式)
+* @param {查询条件} query
+*/
+export function dictWmGoodsNowProduction(query) {
+ return request({
+ url: '/mes/wm/WmGoodsNowProduction/dict',
+ method: 'get',
+ params: query,
+ })
+}
diff --git a/src/api/wmsManagement/wmOutOrder.js b/src/api/wmsManagement/wmOutOrder.js
index d6dd6ff..fd5414d 100644
--- a/src/api/wmsManagement/wmOutOrder.js
+++ b/src/api/wmsManagement/wmOutOrder.js
@@ -111,7 +111,16 @@ export function persistenceOrderplan(params) {
})
}
-
+/**
+ * 获取出库单的持久化存储出库计划并计算计划批次当前已出库数量
+ */
+export function getOutOrderPlanAndOutProductionNum(params) {
+ return request({
+ url: '/mes/wm/WmOutOrder/getOutOrderPlanAndOutProductionNum',
+ method: 'get',
+ params
+ })
+}
diff --git a/src/style/base.styl b/src/style/base.styl
index 425c6af..7772ffa 100644
--- a/src/style/base.styl
+++ b/src/style/base.styl
@@ -143,3 +143,26 @@
.large-tip
font-size 16px
+
+
+// Element table 表格样式
+/* 修改表格边框颜色 */
+.el-table .el-table__body td, .el-table .el-table__header th {
+ border-color: #d3dce6; /* 你想要的边框颜色 */
+}
+
+/* 修改表格背景色 */
+.el-table .el-table__body tr.el-table__row:not(.el-table__row--striped) td {
+ background-color: #F2F6FC; /* 你想要的背景色 */
+}
+
+/* 修改表格行高亮颜色 */
+.el-table .el-table__body tr.el-table__row:hover td {
+ background-color: #dde5ee; /* 你想要的高亮颜色 */
+}
+
+/* 修改表头字体颜色和背景色 */
+.el-table .el-table__header th {
+ color: #303133; /* 你想要的表头字体颜色 */
+ background-color: #C0C4CC; /* 你想要的表头背景色 */
+}
\ No newline at end of file
diff --git a/src/views/wmsManagement/WmGoodsNowProduction.vue b/src/views/wmsManagement/WmGoodsNowProduction.vue
index 45c79b0..9e0c5c9 100644
--- a/src/views/wmsManagement/WmGoodsNowProduction.vue
+++ b/src/views/wmsManagement/WmGoodsNowProduction.vue
@@ -189,6 +189,7 @@ import {
delWmGoodsNowProduction,
updateWmGoodsNowProduction,
getWmGoodsNowProduction,
+ dictWmGoodsNowProduction
} from '@/api/wmsManagement/wmGoodsNowProduction.js'
export default {
diff --git a/src/views/wmsManagement/WmGoodsOutProduction.vue b/src/views/wmsManagement/WmGoodsOutProduction.vue
index 7d9696f..cd258e7 100644
--- a/src/views/wmsManagement/WmGoodsOutProduction.vue
+++ b/src/views/wmsManagement/WmGoodsOutProduction.vue
@@ -9,16 +9,7 @@
-
+
@@ -42,62 +33,22 @@
- 手动添加出库记录
+ 手动添加出库记录
- 按批次添加出库记录
+ 按批次添加出库记录
- 修改
+ 修改
- 删除
+ 删除
-
+
@@ -112,85 +63,38 @@
-
-
+
+
-
+
-
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
+
+
+
+
@@ -204,7 +108,13 @@
-
+
+
+
+
+
+
+
@@ -222,7 +132,7 @@
{{ (form.goodsNumLogic - form.goodsNumAction) }}
-
+
@@ -235,15 +145,11 @@
-
-
-
-
-
+
@@ -251,295 +157,311 @@
+ }
+
\ No newline at end of file
diff --git a/src/views/wmsManagement/WmOutOrder.vue b/src/views/wmsManagement/WmOutOrder.vue
index 21839fb..6305fcc 100644
--- a/src/views/wmsManagement/WmOutOrder.vue
+++ b/src/views/wmsManagement/WmOutOrder.vue
@@ -25,7 +25,7 @@
-
+
搜索
重置
@@ -47,9 +47,9 @@
-
+
-
+
@@ -65,7 +65,7 @@
停用
-
+
{{ scope.row.year + '-' + scope.row.week + '-' + scope.row.date }}
@@ -78,7 +78,7 @@
- 出库计划
+ 出库详情
@@ -109,7 +109,7 @@
-
+
diff --git a/src/views/wmsManagement/WmpatchSearch.vue b/src/views/wmsManagement/WmpatchSearch.vue
index b232e6b..a52ad34 100644
--- a/src/views/wmsManagement/WmpatchSearch.vue
+++ b/src/views/wmsManagement/WmpatchSearch.vue
@@ -6,6 +6,7 @@
+
@@ -16,6 +17,7 @@
import TAB3 from './components/TheWmBatchSearch/入库记录根据零件号/index.vue';
import TAB4 from './components/TheWmBatchSearch/出库记录根据批次号/index.vue';
import TAB5 from './components/TheWmBatchSearch/出库记录根据零件号/index.vue';
+ import TAB6 from './components/TheWmBatchSearch/出库记录根据出库单/index.vue';
export default {
name: 'WmpatchSearch',
components: {
@@ -23,7 +25,8 @@
TAB2,
TAB3,
TAB4,
- TAB5
+ TAB5,
+ TAB6
},
data() {
return {
diff --git a/src/views/wmsManagement/components/TheBatchOutProductionDialog/TheBatchOutProductionDialog.vue b/src/views/wmsManagement/components/TheBatchOutProductionDialog/TheBatchOutProductionDialog.vue
index ef4d29b..8e7baaa 100644
--- a/src/views/wmsManagement/components/TheBatchOutProductionDialog/TheBatchOutProductionDialog.vue
+++ b/src/views/wmsManagement/components/TheBatchOutProductionDialog/TheBatchOutProductionDialog.vue
@@ -1,6 +1,6 @@
-
+
@@ -42,7 +42,7 @@
- 取消
+ 取消
按所勾选出库
@@ -99,6 +99,15 @@
this.outOrderOptions = [];
this.PackageCodeOptions = [];
},
+ // 不关闭弹窗
+ endAction(){
+ this.$refs['elForm'].resetFields()
+ this.$emit("refresh");
+ this.dataList = [];
+ this.total = 0;
+ this.outOrderOptions = [];
+ this.PackageCodeOptions = [];
+ },
handelConfirm() {
this.$refs['elForm'].validate(valid => {
if (!valid) return
@@ -205,7 +214,7 @@
doPatchOutProduction(data).then((res) => {
if (res.code === 200 || res.data === "ok") {
this.$message.success("批量操作成功!")
- this.close();
+ this.endAction();
} else {
this.$message.error(res.msg)
}
@@ -241,7 +250,7 @@
doPatchOutProduction(data).then((res) => {
if (res.code === 200 || res.data === "ok") {
this.$message.success("批量操作成功!")
- this.close();
+ this.endAction();
} else {
this.$message.error(res.msg)
}
diff --git a/src/views/wmsManagement/components/TheChouseMaterial/TheChouseMaterial.vue b/src/views/wmsManagement/components/TheChouseMaterial/TheChouseMaterial.vue
index dfd1d46..e66b3b2 100644
--- a/src/views/wmsManagement/components/TheChouseMaterial/TheChouseMaterial.vue
+++ b/src/views/wmsManagement/components/TheChouseMaterial/TheChouseMaterial.vue
@@ -1,10 +1,10 @@
-
+
-
+
@@ -15,7 +15,7 @@
- 搜索
+ 搜索
diff --git a/src/views/wmsManagement/components/TheOutboundPlan/index.vue b/src/views/wmsManagement/components/TheOutboundPlan/index.vue
index 791ce81..24b5864 100644
--- a/src/views/wmsManagement/components/TheOutboundPlan/index.vue
+++ b/src/views/wmsManagement/components/TheOutboundPlan/index.vue
@@ -1,35 +1,29 @@
-
+
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+ 已出完
+ 未出完
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/wmsManagement/components/TheWmBatchSearch/出库记录根据批次号/index.vue b/src/views/wmsManagement/components/TheWmBatchSearch/出库记录根据批次号/index.vue
index 018f9a5..98f63c5 100644
--- a/src/views/wmsManagement/components/TheWmBatchSearch/出库记录根据批次号/index.vue
+++ b/src/views/wmsManagement/components/TheWmBatchSearch/出库记录根据批次号/index.vue
@@ -4,9 +4,6 @@
-
-
-
搜索
重置
@@ -25,7 +22,7 @@
-
+