| | |
| | | import com.vincent.rsf.server.common.domain.BaseParam; |
| | | import com.vincent.rsf.server.common.domain.KeyValVo; |
| | | import com.vincent.rsf.server.common.domain.PageParam; |
| | | import com.vincent.rsf.server.manager.entity.AsnOrder; |
| | | import com.vincent.rsf.server.manager.entity.AsnOrderLog; |
| | | import com.vincent.rsf.server.manager.service.AsnOrderLogService; |
| | | import com.vincent.rsf.server.manager.service.CloudWmsFeedbackResendService; |
| | | import com.vincent.rsf.server.system.controller.BaseController; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | |
| | | @Autowired |
| | | private AsnOrderLogService asnOrderLogService; |
| | | @Autowired |
| | | private CloudWmsFeedbackResendService cloudWmsFeedbackResendService; |
| | | |
| | | @ApiOperation("云仓入出库反馈重发(写入上报待办队列)") |
| | | @OperationLog("CloudWMS feedback resend") |
| | | @PreAuthorize("hasAuthority('manager:asnOrderLog:cloudWmsResend')") |
| | | @PostMapping("/asnOrderLog/cloudWms/resendFeedback/{id}") |
| | | public R resendCloudWmsFeedback(@PathVariable Long id) { |
| | | return cloudWmsFeedbackResendService.resendInOutFeedbackByAsnOrderLogId(id); |
| | | } |
| | | |
| | | @PreAuthorize("hasAuthority('manager:asnOrderLog:list')") |
| | | @PostMapping("/asnOrderLog/page") |