| | |
| | | |
| | | import com.vincent.rsf.framework.common.R; |
| | | import com.vincent.rsf.framework.exception.CoolException; |
| | | import com.vincent.rsf.server.api.controller.erp.params.OrderParams; |
| | | import com.vincent.rsf.server.api.controller.erp.params.SyncLocReviseParams; |
| | | import com.vincent.rsf.server.api.controller.erp.params.SyncOrderParams; |
| | | import com.vincent.rsf.server.api.controller.erp.params.SyncTransferParams; |
| | | import com.vincent.rsf.server.api.controller.erp.params.*; |
| | | import com.vincent.rsf.server.api.service.ReceiveMsgService; |
| | | import com.vincent.rsf.server.common.annotation.OperationLog; |
| | | import com.vincent.rsf.server.common.utils.ExcelUtil; |
| | |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/22 |
| | | * @description: 盘点差异单同步 |
| | | * @version 1.0 |
| | | */ |
| | | @PostMapping("/sync/check/result") |
| | | @ApiOperation("盘点差异单同步") |
| | | @OperationLog("盘点差异单") |
| | | public R checkResult(@RequestBody SyncCheckDiffParams syncParams) { |
| | | if (Objects.isNull(syncParams)) { |
| | | return R.error("参数不能为空!!"); |
| | | } |
| | | return receiveMsgService.syncCheckDiffs(syncParams); |
| | | } |
| | | |
| | | } |