...
|
...
|
@@ -2,7 +2,8 @@ import Service from '../service'; |
|
|
|
|
|
const apiUrl = {
|
|
|
queryLogisticsList: '/erp/queryLogisticsList',
|
|
|
proxyOutStorage: 'erp/proxyOutStorage',
|
|
|
proxyOutStorage: '/erp/proxyOutStorage',
|
|
|
proxyReturnedGoodsInstorage: '/erp/proxyReturnedGoodsInstorage',
|
|
|
};
|
|
|
|
|
|
class LogisticsService extends Service {
|
...
|
...
|
@@ -21,6 +22,13 @@ class LogisticsService extends Service { |
|
|
proxyOutStorage(params) {
|
|
|
return this.post(apiUrl.proxyOutStorage, params);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 一件代发退货入库(同意退款)
|
|
|
*/
|
|
|
proxyReturnedGoodsInstorage(params) {
|
|
|
return this.post(apiUrl.proxyReturnedGoodsInstorage, params);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
export default LogisticsService; |
...
|
...
|
|