fix:半成品生产入库显示隐藏物料
This commit is contained in:
parent
0bd5345cd1
commit
4466350cde
|
|
@ -28,6 +28,15 @@
|
||||||
:value="item"
|
:value="item"
|
||||||
>
|
>
|
||||||
<span style="float: left">{{ item.full_name }}</span>
|
<span style="float: left">{{ item.full_name }}</span>
|
||||||
|
<span
|
||||||
|
style="
|
||||||
|
float: right;
|
||||||
|
color: '#E6A23C';
|
||||||
|
font-size: 13px;
|
||||||
|
"
|
||||||
|
v-if="item.is_hidden"
|
||||||
|
>隐</span
|
||||||
|
>
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
@ -286,7 +295,7 @@ export default {
|
||||||
this.inputBatchDisable = true;
|
this.inputBatchDisable = true;
|
||||||
} else if (type == "do_in") {
|
} else if (type == "do_in") {
|
||||||
//生产入库
|
//生产入库
|
||||||
query = { page: 0, type__in: type__in, is_hidden: false };
|
query = { page: 0, type__in: type__in };
|
||||||
this.inputBatchDisable = false;
|
this.inputBatchDisable = false;
|
||||||
} else if (type == "pur_in") {
|
} else if (type == "pur_in") {
|
||||||
//采购入库
|
//采购入库
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue