|
|
@ -213,11 +213,9 @@
|
|
|
|
>出入库必须校验预验收库
|
|
|
|
>出入库必须校验预验收库
|
|
|
|
</el-checkbox>
|
|
|
|
</el-checkbox>
|
|
|
|
<el-checkbox v-model="formData.vailInv"
|
|
|
|
<el-checkbox v-model="formData.vailInv"
|
|
|
|
:disabled="corpOrderIdDisabled"
|
|
|
|
|
|
|
|
>是否查询库存
|
|
|
|
>是否查询库存
|
|
|
|
</el-checkbox>
|
|
|
|
</el-checkbox>
|
|
|
|
<el-checkbox v-model="formData.codeFillCheck"
|
|
|
|
<el-checkbox v-model="formData.codeFillCheck"
|
|
|
|
:disabled="corpOrderIdDisabled"
|
|
|
|
|
|
|
|
>采集UDI码时进行三期校验
|
|
|
|
>采集UDI码时进行三期校验
|
|
|
|
</el-checkbox>
|
|
|
|
</el-checkbox>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -479,6 +477,8 @@ export default {
|
|
|
|
invWarehouseCode: null,
|
|
|
|
invWarehouseCode: null,
|
|
|
|
subInvCode: null,
|
|
|
|
subInvCode: null,
|
|
|
|
fromSubInvCode: null,
|
|
|
|
fromSubInvCode: null,
|
|
|
|
|
|
|
|
codeFillCheck: null,
|
|
|
|
|
|
|
|
vailInv: null,
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
editOriginCodeVisible: false,
|
|
|
|
editOriginCodeVisible: false,
|
|
|
@ -879,6 +879,12 @@ export default {
|
|
|
|
this.busTypes = response.data.list || [];
|
|
|
|
this.busTypes = response.data.list || [];
|
|
|
|
if (this.formData.action != null) {
|
|
|
|
if (this.formData.action != null) {
|
|
|
|
this.curAction = this.getActionItem(this.formData.action);
|
|
|
|
this.curAction = this.getActionItem(this.formData.action);
|
|
|
|
|
|
|
|
if (this.curAction != null) {
|
|
|
|
|
|
|
|
this.formData.vailInv = this.curAction.vailInv;
|
|
|
|
|
|
|
|
this.formData.codeFillCheck = this.curAction.codeFillCheck;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
@ -1018,11 +1024,6 @@ export default {
|
|
|
|
this.$set(this.formData, "outChangeEnable", this.curAction.ullageFill);
|
|
|
|
this.$set(this.formData, "outChangeEnable", this.curAction.ullageFill);
|
|
|
|
this.$set(this.formData, "codeFillCheck", this.curAction.codeFillCheck);
|
|
|
|
this.$set(this.formData, "codeFillCheck", this.curAction.codeFillCheck);
|
|
|
|
|
|
|
|
|
|
|
|
// this.formData.vailIn = this.curAction.vailInv;
|
|
|
|
|
|
|
|
// this.formData.preCheck = this.curAction.scanPreIn;
|
|
|
|
|
|
|
|
// this.formData.outChangeEnable = this.curAction.ullageFill;
|
|
|
|
|
|
|
|
// this.formData.codeFillCheck = this.curAction.codeFillCheck;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
//绑定数据
|
|
|
|
//绑定数据
|
|
|
|