|
|
|
@ -7,7 +7,7 @@
|
|
|
|
|
style="display: flex; margin: 0px 0 15px 75%; height: 35px">
|
|
|
|
|
<el-button size="mini" type="primary" @click="triggerFileUpload2"
|
|
|
|
|
>
|
|
|
|
|
上传阳采单据
|
|
|
|
|
上传阳采单据(1)
|
|
|
|
|
</el-button>
|
|
|
|
|
<!-- 隐藏的文件输入元素 -->
|
|
|
|
|
<input type="file" ref="fileInput2" accept=".xlsx,.xls" style="display: none;" @change="handleFileUpload2"/>
|
|
|
|
@ -215,7 +215,7 @@
|
|
|
|
|
size="mini"
|
|
|
|
|
@click.native="selectOrder()"
|
|
|
|
|
v-if="curAction.checkWebNew != 2 || viewType !=1"
|
|
|
|
|
>下载码上放心追溯码
|
|
|
|
|
>下载码上放心追溯码(2)
|
|
|
|
|
<!-- v-if="(curAction.checkWebNew !== 2 || viewType !== 1) && orderFormData.billNo"-->
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
@ -969,15 +969,28 @@ export default {
|
|
|
|
|
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.orderFormData)));
|
|
|
|
|
tQuery.orderId = this.orderFormData.billNo;
|
|
|
|
|
tQuery.productType = 2
|
|
|
|
|
// 显示加载状态
|
|
|
|
|
const loading = this.$loading({
|
|
|
|
|
lock: true,
|
|
|
|
|
text: '目前追溯码过多请耐心等待...',
|
|
|
|
|
spinner: 'el-icon-loading',
|
|
|
|
|
background: 'rgba(0, 0, 0, 0.7)'
|
|
|
|
|
});
|
|
|
|
|
if (this.viewType == 2) { //扫码单据立即提交
|
|
|
|
|
submitCodes(tQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功,等待处理,请刷新后查看!");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
loading.close();
|
|
|
|
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
// 关闭加载状态
|
|
|
|
|
loading.close();
|
|
|
|
|
});
|
|
|
|
|
} else if (this.viewType == 1) { //业务单据提交提交
|
|
|
|
|
if (val == 1 || this.curAction.checkWebNew == 2)
|
|
|
|
@ -991,6 +1004,11 @@ export default {
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
loading.close();
|
|
|
|
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
// 关闭加载状态
|
|
|
|
|
loading.close();
|
|
|
|
|
});
|
|
|
|
|
} else if (this.viewType == 4) {
|
|
|
|
|
submitAllocateBiz(tQuery).then((response) => {
|
|
|
|
@ -1000,6 +1018,11 @@ export default {
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
loading.close();
|
|
|
|
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
// 关闭加载状态
|
|
|
|
|
loading.close();
|
|
|
|
|
});
|
|
|
|
|
} else { //校验后提交
|
|
|
|
|
submitOrderWeb(tQuery)
|
|
|
|
@ -1010,8 +1033,14 @@ export default {
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
loading.close();
|
|
|
|
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
// 关闭加载状态
|
|
|
|
|
loading.close();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
saveOrder() {
|
|
|
|
|