|
|
|
|
@ -176,6 +176,7 @@ import { AllocateOrderDetailVO, AllocateOrderDetailQuery, AllocateOrderDetailFor
|
|
|
|
|
import { getAllocateOrder } from '@/api/wms/allocateOrder';
|
|
|
|
|
import { AllocateOrderVO, AllocateOrderForm, AllocateOrderQuery } from '@/api/wms/allocateOrder/types';
|
|
|
|
|
import { useRoute } from 'vue-router';
|
|
|
|
|
import { getBaseMaterialCategoryListInWMS } from '@/api/wms/baseMaterialCategory';
|
|
|
|
|
const router = useRoute();
|
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
|
|
const { erp_synchronous_status } = toRefs<any>(proxy?.useDict('erp_synchronous_status', 'wms_allocate_way'));
|
|
|
|
|
@ -402,7 +403,7 @@ const handleExport = () => {
|
|
|
|
|
|
|
|
|
|
let mategoryOptions = ref([]);
|
|
|
|
|
const getMaterialCategorySelect = async () => {
|
|
|
|
|
const res = await getBaseMaterialCategoryList(null);
|
|
|
|
|
const res = await getBaseMaterialCategoryListInWMS(null);
|
|
|
|
|
mategoryOptions.value = res.data;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|