ReportList reportList = fileLoadService
.findReportListByStdIdDate(new Long(sr
.getId()), year, month, day,
orgInfo.getId());
if (reportList == null) {
fileLoadService.createReportByStandard(
standardId, orgId, period, currencyId,
year, month, day); ReportList reportListNew = fileLoadService
.findReportListByStdIdDate(new Long(sr
.getId()), year, month, day,
orgInfo.getId());

fileLoadService.saveCells(new Long(
reportListNew.getId()), cellMap);
} else {
fileLoadService.saveCells(new Long(reportList
.getId()), cellMap);
}Spring管理