This commit is contained in:
zty 2025-01-13 11:30:40 +08:00
commit b31ae9403c
3 changed files with 9 additions and 4 deletions

View File

@ -144,6 +144,8 @@
:value="item.id"
>
<span>{{ item.batch }}</span>
<span v-if="item.material_">({{ item.material_.process_name }})</span>
<div style="float: right">
<span>{{ item.count }}</span>
<span v-if="item.notok_sign_name !== null" style="color: #aaaaaa">

View File

@ -86,7 +86,8 @@
min-width="80"
>
<template #default="scope">
<el-link :underline="false" type="primary" @click="showWpr(scope.row)">{{scope.row.count}}</el-link>
<span v-if="scope.row.material_&&scope.row.material_.tracking==10">{{scope.row.count}}</span>
<el-link v-else :underline="false" type="primary" @click="showWpr(scope.row)">{{scope.row.count}}</el-link>
</template>
</el-table-column>
<el-table-column
@ -111,9 +112,8 @@
>
<template #default="scope">
<el-link :underline="false" @click="printMaterial(scope.row)" type="primary">物料标签</el-link>
<!-- <el-link
v-if="scope.row.material_&&scope.row.material_.tracking==10" -->
<el-link
v-if="scope.row.material_&&scope.row.material_.tracking==10"
:underline="false"
@click="inmCheck(scope.row)"
type="primary"

View File

@ -156,6 +156,8 @@ export default {
return item.parent==null;
})
that.form.parent = that.mlogbInOptions[0].id;
}else{
that.form.parent = '';
}
})
},
@ -209,7 +211,8 @@ export default {
that.form.batch = '';
that.form.parent = '';
that.form.count_use = 0;
that.getParentList();
that.$emit("closed");
that.visible = false;
}).catch((err) => {});
},
//