| | |
| | | package com.vincent.rsf.server.api.feign.fallback; |
| | | |
| | | import com.vincent.rsf.server.api.controller.erp.params.InOutResultReportParam; |
| | | import com.vincent.rsf.server.api.controller.erp.params.InventoryAdjustReportParam; |
| | | import com.vincent.rsf.server.api.controller.erp.params.DapIlcwmsCompletionRequest; |
| | | import com.vincent.rsf.server.api.feign.CloudWmsErpFeignClient; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Component; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public Map<String, Object> reportInOutResult(InOutResultReportParam body) { |
| | | log.error("调用云仓WMS 入/出库结果上报接口失败,触发降级", cause); |
| | | public Map<String, Object> cusInventoryCompletionReport(DapIlcwmsCompletionRequest body) { |
| | | log.error("调用云仓 入库完成反馈失败,触发降级", cause); |
| | | return errorResponse(); |
| | | } |
| | | |
| | | @Override |
| | | public Map<String, Object> reportInventoryAdjust(InventoryAdjustReportParam body) { |
| | | log.error("调用云仓WMS 库存调整上报接口失败,触发降级", cause); |
| | | public Map<String, Object> cusOutboundCompletionReport(DapIlcwmsCompletionRequest body) { |
| | | log.error("调用云仓 出库完成反馈失败,触发降级", cause); |
| | | return errorResponse(); |
| | | } |
| | | |
| | | @Override |
| | | public Map<String, Object> reportInventoryAdjust(DapIlcwmsCompletionRequest body) { |
| | | log.error("调用云仓 9.2 库存调整上报失败,触发降级", cause); |
| | | return errorResponse(); |
| | | } |
| | | |