Commit e533387f authored by neo's avatar neo

[bugfix] fixed bb formula reportname

parent a14726e8
...@@ -33,6 +33,7 @@ public class ReportCellDataSourceDto extends FormulaDataSourceDto { ...@@ -33,6 +33,7 @@ public class ReportCellDataSourceDto extends FormulaDataSourceDto {
nulDataSource.columnIndex = bbParasBo.getColumnIndex() - 1; nulDataSource.columnIndex = bbParasBo.getColumnIndex() - 1;
nulDataSource.rowIndex = bbParasBo.getRowIndex() - 1; nulDataSource.rowIndex = bbParasBo.getRowIndex() - 1;
nulDataSource.isOnlyManualInput = false; nulDataSource.isOnlyManualInput = false;
nulDataSource.reportName = bbParasBo.getReportCode();
return nulDataSource; return nulDataSource;
} }
...@@ -51,6 +52,7 @@ public class ReportCellDataSourceDto extends FormulaDataSourceDto { ...@@ -51,6 +52,7 @@ public class ReportCellDataSourceDto extends FormulaDataSourceDto {
dataSource.cellTemplateID = cellData.getCellTemplateId() + ""; dataSource.cellTemplateID = cellData.getCellTemplateId() + "";
dataSource.resultType = cellTemplateData.getResultType(); dataSource.resultType = cellTemplateData.getResultType();
dataSource.isOnlyManualInput = false; dataSource.isOnlyManualInput = false;
dataSource.reportName = bbParasBo.getReportCode();
return dataSource; return dataSource;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment