|
|
|
@ -266,6 +266,7 @@
|
|
|
|
|
:refreshPanel="refreshCodesPanel"
|
|
|
|
|
:viewType="viewType"
|
|
|
|
|
v-if="isCodeDetailAlive"
|
|
|
|
|
@clearBillNo="clearBillNo"
|
|
|
|
|
></codeDetailPanel>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="扫码明细" v-if="viewCodeDetailVisible">
|
|
|
|
@ -1345,7 +1346,6 @@ export default {
|
|
|
|
|
this.isBizDetailAlive = false;
|
|
|
|
|
this.isCodeDetailAlive = false;
|
|
|
|
|
this.isSickerAlive = false;
|
|
|
|
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
//重新加载组件
|
|
|
|
|
this.isCodeAlive = true;
|
|
|
|
@ -1364,6 +1364,12 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
//判断详情是否为空 为空清除billNo
|
|
|
|
|
clearBillNo(data) {
|
|
|
|
|
if(data){
|
|
|
|
|
this.orderFormData.billNo = null;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
refreshOrder(orderQuery) {
|
|
|
|
|
this.orderFormData = orderQuery;
|
|
|
|
@ -1667,19 +1673,19 @@ export default {
|
|
|
|
|
}else {
|
|
|
|
|
tQuery.inoutType = 1
|
|
|
|
|
}
|
|
|
|
|
saveOrderWeb(tQuery).then((response) => {
|
|
|
|
|
this.saveLoading = false
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("保存成功")
|
|
|
|
|
this.successCloseData()
|
|
|
|
|
this.result = ""
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.saveLoading = false
|
|
|
|
|
});
|
|
|
|
|
// saveOrderWeb(tQuery).then((response) => {
|
|
|
|
|
// this.saveLoading = false
|
|
|
|
|
// if (response.code === 20000) {
|
|
|
|
|
// this.$message.success("保存成功")
|
|
|
|
|
// this.successCloseData()
|
|
|
|
|
// this.result = ""
|
|
|
|
|
// this.$refs.inputRef.focus();
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$message.error(response.message);
|
|
|
|
|
// }
|
|
|
|
|
// this.loading = false;
|
|
|
|
|
// this.saveLoading = false
|
|
|
|
|
// });
|
|
|
|
|
},
|
|
|
|
|
// 刷新表单
|
|
|
|
|
resetForm() {
|
|
|
|
|