|
|
|
@ -49,7 +49,7 @@
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item label="内部进出平衡补单" prop="supplementOrderType">
|
|
|
|
|
<el-select :disabled="inputQuery.corpType !=1"
|
|
|
|
|
<el-select :disabled="inputQuery.corpType !=3"
|
|
|
|
|
size="small"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
v-model="inputQuery.supplementOrderType"
|
|
|
|
@ -73,7 +73,7 @@
|
|
|
|
|
remote
|
|
|
|
|
size="small"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
:disabled="inputQuery.corpType!=3"
|
|
|
|
|
:disabled="inputQuery.corpType!=4"
|
|
|
|
|
clearable="true"
|
|
|
|
|
reserve-keyword
|
|
|
|
|
:remote-method="findSpecialMethod"
|
|
|
|
@ -185,6 +185,7 @@ import {candidateBusType} from "@/api/basic/busType";
|
|
|
|
|
import busTypeAdvancedSettings from "@/views/basic/busType/busTypeAdvancedSettings.vue";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import {getOriginBusType} from "@/api/basic/busOriginType";
|
|
|
|
|
import {getBasicUnitMaintains2} from "@/api/basic/basicUnitMaintain";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "BussinessTypeModify",
|
|
|
|
@ -212,17 +213,17 @@ export default {
|
|
|
|
|
originTypes: [],
|
|
|
|
|
value: "",
|
|
|
|
|
options: [{
|
|
|
|
|
value: 0,
|
|
|
|
|
label: '供应商信息'
|
|
|
|
|
}, {
|
|
|
|
|
value: 1,
|
|
|
|
|
label: '仓库信息'
|
|
|
|
|
label: '客户信息'
|
|
|
|
|
}, {
|
|
|
|
|
value: 2,
|
|
|
|
|
label: '供应商信息'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 2,
|
|
|
|
|
label: '客户信息'
|
|
|
|
|
}, {
|
|
|
|
|
value: 3,
|
|
|
|
|
label: '内部科室'
|
|
|
|
|
}, {
|
|
|
|
|
value: 4,
|
|
|
|
|
label: '特殊往来'
|
|
|
|
|
}],
|
|
|
|
|
twoCheck: false,
|
|
|
|
@ -240,14 +241,13 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
this.inputQuery.corpType = 1;
|
|
|
|
|
},
|
|
|
|
|
findSpecialMethod() {
|
|
|
|
|
let query = {
|
|
|
|
|
corpType: 4,
|
|
|
|
|
};
|
|
|
|
|
getBasicUnitMaintains(query).then((response) => {
|
|
|
|
|
this.fromSpecialOptions = response.data.page.list || [];
|
|
|
|
|
getBasicUnitMaintains2(query).then((response) => {
|
|
|
|
|
this.fromSpecialOptions = response.data.list || [];
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
@ -256,6 +256,9 @@ export default {
|
|
|
|
|
if (type != 2) {
|
|
|
|
|
this.inputQuery.genUnit = false;
|
|
|
|
|
}
|
|
|
|
|
if (this.inputQuery.corpType === 4) {
|
|
|
|
|
this.findSpecialMethod();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//获取单据类型
|
|
|
|
|