#
zhou zhou
9 天以前 00e3e4bf1e3ee01d856c2bf8e94906b6aad09012
rsf-server/src/main/java/com/vincent/rsf/server/api/controller/erp/ReportMsgController.java
@@ -44,7 +44,19 @@
        }
        return reportMsgService.uploadReportOrders(params);
    }
    @ApiOperation("盘点库存修改")
    @PostMapping("/orders/check/update")
    public R checkReport(@RequestBody ReportParams params) {
        if (Objects.isNull(params)) {
            return R.error("参数不能为空!!");
        }
        if (Objects.isNull(params.getAction()) || params.getAction().isEmpty()) {
            return R.error("上报明细不能为空!!");
        }
        return reportMsgService.uploadCheckOrder(params);
    }
}