|
@@ -32,7 +32,8 @@ import {
|
|
|
API_GET_INVENTORYCOSTINFO,
|
|
|
API_POST_ADD_INVENTORYCOSTINFO,
|
|
|
API_POST_EDIT_INVENTORYCOSTINFO,
|
|
|
- API_GET_WEIGHTEDDETAILS
|
|
|
+ API_GET_WEIGHTEDDETAILS,
|
|
|
+ API_GET_WAREHOUSE
|
|
|
} from '@/api/V2/warehouse'
|
|
|
// import { app } from 'electron'
|
|
|
// 列表
|
|
@@ -100,6 +101,8 @@ export const addinventory = appRx.post(API_POST_ADD_INVENTORYCOSTINFO,errorCatch
|
|
|
export const editinventory = appRx.post(API_POST_EDIT_INVENTORYCOSTINFO,errorCatcher, errorHandle, filter)
|
|
|
// 编辑库点费用
|
|
|
export const weighteddetails = appRx.get(API_GET_WEIGHTEDDETAILS,errorCatcher, errorHandle, filter)
|
|
|
+// 编辑库点费用
|
|
|
+export const getwarehousebase = appRx.get(API_GET_WAREHOUSE,errorCatcher, errorHandle, filter)
|
|
|
|
|
|
|
|
|
|