|
|
|
@ -583,7 +583,7 @@ import codesPanel from "./PanelCreateOrderCodes";
|
|
|
|
|
import codeDetailPanel from "./PanelCreateOrderCodeDetail";
|
|
|
|
|
import bizDetailPanel from "./PanelCreateOrderBizDetail";
|
|
|
|
|
import A from "../../plugins/KeyScaner";
|
|
|
|
|
import {findByInvUser} from "@/api/basic/busType";
|
|
|
|
|
import {findByInvUser, getBusTypeList} from "@/api/basic/busType";
|
|
|
|
|
import {getInvSpaceList} from "@/api/inventory/invSpace";
|
|
|
|
|
import DialogSelectUnit from "./DialogSelectUnit";
|
|
|
|
|
import selectRlDialog from "./DialogSelectRl";
|
|
|
|
@ -813,11 +813,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 (isBlank(this.curAction)) {
|
|
|
|
|
this.curAction = {
|
|
|
|
|