|
|
|
@ -3,8 +3,8 @@
|
|
|
|
|
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="120px">
|
|
|
|
|
<el-row type="flex" justify="end">
|
|
|
|
|
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
|
|
|
|
|
<el-button type="primary" @click.native="saveOrder('1')" :loading="loading">草稿保存</el-button>
|
|
|
|
|
<el-button type="primary" @click.native="saveOrder('2')" :loading="loading">提交单据</el-button>
|
|
|
|
|
<el-button type="primary" @click.native="saveOrder('1')" :loading="draftLoading">草稿保存</el-button>
|
|
|
|
|
<el-button type="primary" @click.native="saveOrder('2')" :loading="submitLoading">提交单据</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
@ -256,6 +256,8 @@ export default {
|
|
|
|
|
codeArray: [],
|
|
|
|
|
total: 0,
|
|
|
|
|
loading: false,
|
|
|
|
|
draftLoading: false,
|
|
|
|
|
submitLoading: false,
|
|
|
|
|
index: null,
|
|
|
|
|
formLoading: false,
|
|
|
|
|
formVisible: false,
|
|
|
|
@ -352,6 +354,7 @@ export default {
|
|
|
|
|
if (this.formData.arrivalTime<this.formData.createTime) {
|
|
|
|
|
return this.$message.error("到货时间不能比单据日期早!!!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.submitFunction(status);
|
|
|
|
|
} else {
|
|
|
|
|
let tip = "是否确定提交订单?";
|
|
|
|
@ -360,9 +363,14 @@ export default {
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.submitLoading = true
|
|
|
|
|
this.submitFunction(status);
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (status == '1'){
|
|
|
|
|
this.draftLoading = false
|
|
|
|
|
}else {
|
|
|
|
|
this.submitLoading = false
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -382,9 +390,17 @@ export default {
|
|
|
|
|
subErpOrders: this.codeArray,
|
|
|
|
|
type: 1,
|
|
|
|
|
}
|
|
|
|
|
if (status == '1'){
|
|
|
|
|
this.draftLoading = true
|
|
|
|
|
}
|
|
|
|
|
inserThrOrderWeb(tQuery)
|
|
|
|
|
.then(response => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (status == '1'){
|
|
|
|
|
this.draftLoading = false
|
|
|
|
|
}else {
|
|
|
|
|
this.submitLoading = false
|
|
|
|
|
}
|
|
|
|
|
// this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success(tMessage + "成功");
|
|
|
|
|
this.closeDialog(true);
|
|
|
|
@ -393,7 +409,11 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (status == '1'){
|
|
|
|
|
this.draftLoading = false
|
|
|
|
|
}else {
|
|
|
|
|
this.submitLoading = false
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
selectProductFunction() {
|
|
|
|
|