diff --git a/hw-modules/hw-mes/src/main/resources/mapper/mes/MesBaseMaterialInfoMapper.xml b/hw-modules/hw-mes/src/main/resources/mapper/mes/MesBaseMaterialInfoMapper.xml
index 383637f7..eb921657 100644
--- a/hw-modules/hw-mes/src/main/resources/mapper/mes/MesBaseMaterialInfoMapper.xml
+++ b/hw-modules/hw-mes/src/main/resources/mapper/mes/MesBaseMaterialInfoMapper.xml
@@ -82,7 +82,7 @@
and bmi.erp_id = #{erpId}
- and bmi.material_code = #{materialCode}
+ and bmi.material_code like concat('%', #{materialCode},'%')
and bmi.old_material_code = #{oldMaterialCode}
and bmi.material_name like concat('%', #{materialName},
diff --git a/hw-ui/src/views/mes/materialBom/index.vue b/hw-ui/src/views/mes/materialBom/index.vue
index 2a97a5b1..7a972f5a 100644
--- a/hw-ui/src/views/mes/materialBom/index.vue
+++ b/hw-ui/src/views/mes/materialBom/index.vue
@@ -202,7 +202,7 @@
-
+
{
- this.baseMaterialTypeOptions = [];
- const data = {matrialTypeId: 0, typeName: '顶级节点', children: []};
- data.children = this.handleTree(response.data, "matrialTypeId", "parentId");
- this.baseMaterialTypeOptions.push(data);
+ this.baseMaterialTypeOptions = this.handleTree(response.data, "matrialTypeId", "parentId");
});
},
/** 删除按钮操作 */
diff --git a/hw-ui/src/views/mes/processInfo/index.vue b/hw-ui/src/views/mes/processInfo/index.vue
index 8708da4a..dd28e16a 100644
--- a/hw-ui/src/views/mes/processInfo/index.vue
+++ b/hw-ui/src/views/mes/processInfo/index.vue
@@ -85,6 +85,7 @@
+
{{ formatDayHourMinutes(scope.row.productionTime) }}
@@ -128,6 +129,7 @@
size="mini"
type="text"
icon="el-icon-s-check"
+ v-if="scope.row.processType !== '3'"
@click="handleUserUpdate(scope.row)"
>关联人员
@@ -163,6 +165,9 @@
>
+
+
+
@@ -362,6 +367,7 @@ export default {
processCode: null,
processName: null,
processType: null,
+ processFloor: null,
productionTime: null,
activeFlag: null,
remark: null,
@@ -392,6 +398,7 @@ export default {
{key: 8, label: `创建时间`, visible: true},
{key: 9, label: `更新人`, visible: false},
{key: 10, label: `更新时间`, visible: true},
+ {key: 11, label: `所在楼层`, visible: true},
],
//产线选项
prodLineList: [],
@@ -433,6 +440,7 @@ export default {
processName: null,
processType: null,
productionTime: null,
+ processFloor: null,
productionTimeDays: 0,
productionTimeHours: 0,
productionTimeMinutes: 0,
@@ -618,8 +626,13 @@ export default {
},
//在选择下拉列表时赋username的值
- handleSelectUser(){
- const selected = this.userList.find(option => option.value === newValue);
+ handleSelectUser(row){
+ const selectedUser = this.userList.find(user => user.userId === row.userId);
+ if (selectedUser) {
+ row.userName = selectedUser.nickName;
+ } else {
+ row.userName = null;
+ }
},
/** 工序关联人员删除按钮操作 */