|
|
|
@ -73,7 +73,7 @@
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item prop="billType">
|
|
|
|
|
<el-select v-model="formData.billType" placeholder="请选择业务类型"
|
|
|
|
|
:disabled="codeArray.length>0"
|
|
|
|
|
:disabled="codeArray.length>0" @change="actionChange"
|
|
|
|
|
clearable>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in busTypes"
|
|
|
|
@ -275,6 +275,7 @@
|
|
|
|
|
width="85%"
|
|
|
|
|
v-if="selectInvProductVisible"
|
|
|
|
|
:append-to-body='true'
|
|
|
|
|
:invQueryData="invQueryData"
|
|
|
|
|
>
|
|
|
|
|
<dialogInvProduct
|
|
|
|
|
:closeDialog="closeDialogC2"
|
|
|
|
@ -367,6 +368,7 @@ export default {
|
|
|
|
|
formVisible: false,
|
|
|
|
|
deleteLoading: false,
|
|
|
|
|
orderNo: null,
|
|
|
|
|
invQueryData:[],
|
|
|
|
|
|
|
|
|
|
statusMap: {
|
|
|
|
|
101: "未处理",
|
|
|
|
@ -512,6 +514,12 @@ export default {
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
actionChange(val) {
|
|
|
|
|
|
|
|
|
|
this.formData.billType=val
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
submit(formName) {
|
|
|
|
|
if (this.total < 1) {
|
|
|
|
@ -543,8 +551,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
selectProductFunction(event) {
|
|
|
|
|
|
|
|
|
|
if (event != null)
|
|
|
|
|
if (event != null) {
|
|
|
|
|
event.target.select();
|
|
|
|
|
}
|
|
|
|
|
if (this.$isBlank(event)) {
|
|
|
|
|
if (this.$isBlank(this.formData.billType)) {
|
|
|
|
|
this.$message.error("单据类型不能为空!")
|
|
|
|
@ -569,6 +578,7 @@ export default {
|
|
|
|
|
if (this.orderEditor) {
|
|
|
|
|
this.thisData.orderId = this.formData.id
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.invQueryData.corpId = this.formData.corpId;
|
|
|
|
|
this.selectProductVisible = true;
|
|
|
|
|
return;
|
|
|
|
@ -995,6 +1005,7 @@ export default {
|
|
|
|
|
this.formData = {
|
|
|
|
|
billdate: "",
|
|
|
|
|
corpName: store.getters.companyName,
|
|
|
|
|
corpId:store.getters.customerId,
|
|
|
|
|
customerId: store.getters.customerId,
|
|
|
|
|
billType: "",
|
|
|
|
|
type: "2",
|
|
|
|
|