@ -750,7 +750,7 @@ public class MesReportWorkController extends BaseController {
/**批次预报工数据**/
@PostMapping("/preReportRow")
public AjaxResult preReportRow(@RequestBody MesReportWork mesReportWork) {
public AjaxResult preReportRow(@RequestBody MesReportWork mesReportWork) throws Exception {
R r = mesReportWorkService.preReportRow(mesReportWork);
if(r.getCode()==200){
return AjaxResult.success();
@ -135,7 +135,7 @@ public interface IMesReportWorkService {
int deleteReportNow(String reportCode);
R preReportRow(MesReportWork mesReportWork);
R preReportRow(MesReportWork mesReportWork) throws Exception;
List<MesDailyReportVo> getDailyReportNew(MesDailyReportVo mesDailyReportVo);
List<MesDailyReportVo> getDailyReportExportNew(MesDailyReportVo mesDailyReportVo);
@ -839,7 +839,7 @@ public class MesReportWorkServiceImpl implements IMesReportWorkService {
@Override
@DS("#header.poolName")
public R preReportRow(MesReportWork mesReportWork) {
public R preReportRow(MesReportWork mesReportWork) throws Exception {
mesReportWork.setFactoryCode(ServletUtils.getRequest().getHeader("PoolName"));
R s = iWCSInterfaceService.prReportWork(mesReportWork);
return s;