|
|
|
@ -254,7 +254,7 @@ import codesPanel from "./PanelCreateOrderCodes"
|
|
|
|
|
import codeDetailPanel from "./PanelCreateOrderCodeDetail"
|
|
|
|
|
import bizDetailPanel from "./PanelCreateOrderBizDetail"
|
|
|
|
|
import A from "../../plugins/KeyScaner"
|
|
|
|
|
import {findByInvUser, getLocalJoinByUser} from '@/api/basic/busType'
|
|
|
|
|
import {findByInvUser, getLocalJoinByUser, getBusTypeList} from '@/api/basic/busType'
|
|
|
|
|
import {deleteRe} from "@/api/auth/register";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -409,11 +409,11 @@ export default {
|
|
|
|
|
|
|
|
|
|
initBusType() {
|
|
|
|
|
let query = {
|
|
|
|
|
code: this.orderFormData.invCode,
|
|
|
|
|
action: this.orderFormData.action,
|
|
|
|
|
};
|
|
|
|
|
findByInvUser(query)
|
|
|
|
|
getBusTypeList(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.busTypeOptions = response.data || [];
|
|
|
|
|
this.busTypeOptions = response.data.list || [];
|
|
|
|
|
this.curAction = this.getActionItem(this.orderFormData.action);
|
|
|
|
|
if ((this.curAction.checkEnable && (this.curAction.checkWebNew || this.curAction.checkUdims || this.curAction.checkCopy
|
|
|
|
|
|| this.curAction.checkPdaEd || this.curAction.checkPdaUn || this.curAction.checkPc || this.curAction.checkWebNew || this.curAction.checkSp || this.curAction.checkChange || this.curAction.checkBalance)) || this.viewType == 1) {
|
|
|
|
@ -496,7 +496,7 @@ export default {
|
|
|
|
|
//获取当前单据类型
|
|
|
|
|
getActionItem(action) {
|
|
|
|
|
for (let i = 0; i < this.busTypeOptions.length; i++) {
|
|
|
|
|
if (this.busTypeOptions[i].action == action) {
|
|
|
|
|
if (this.busTypeOptions[i].action === action) {
|
|
|
|
|
return this.busTypeOptions[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -955,6 +955,7 @@ export default {
|
|
|
|
|
// //加载选择框候选数据
|
|
|
|
|
this.findInvListByUser();
|
|
|
|
|
this.initBusType();
|
|
|
|
|
|
|
|
|
|
this.findMethod(this.orderFormData.fromCorp);
|
|
|
|
|
this.findFromInvList();
|
|
|
|
|
} else { //新增页面
|
|
|
|
|