lbq
20 小时以前 3cc9e4551c42c1eb40c09f181857f2e0b1aa8355
rsf-server/src/main/java/com/vincent/rsf/server/api/controller/erp/ReportMsgController.java
@@ -43,8 +43,19 @@
            return R.error("上报明细不能为空!!");
        }
        return reportMsgService.reportOrders(params);
        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);
    }
}