|
|
@@ -141,7 +141,13 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
updateOutInRecord: async (params) => {
|
|
|
- const res = await request.post(`wms/outin/updateOutInRecord`, params);
|
|
|
+ const res = await request.post(`/wms/outin/updateOutInRecord`, params);
|
|
|
+ if (res.data.code == 0) {
|
|
|
+ return res.data;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ getDetailByCode: async (params) => {
|
|
|
+ const res = await request.post(`/wms/outin/getDetailByCode`, params);
|
|
|
if (res.data.code == 0) {
|
|
|
return res.data;
|
|
|
}
|