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