成品出库审核:5楼成品仓库默认人工出库
master
xs 2 months ago
parent 3478123c48
commit 57ab2f2f43

@ -208,7 +208,11 @@ export default {
{ required: true, message: "人工出库标识不能为空", trigger: "change" } { required: true, message: "人工出库标识不能为空", trigger: "change" }
], ],
}, },
detailFlag: true detailFlag: true,
MANUAL_FLAG:{
YES:'1',
NO:'0'
}
}; };
}, },
created() { created() {
@ -228,6 +232,7 @@ export default {
this.loading = true; this.loading = true;
getProductOutstockAudit(this.form.productOutstockId).then(response => { getProductOutstockAudit(this.form.productOutstockId).then(response => {
this.form = response.data; this.form = response.data;
this.form.manualFlag = this.form.warehouseId ===531 ? '1' : null;
this.loading = false; this.loading = false;
}); });
}, },

Loading…
Cancel
Save