This commit is contained in:
akulikov 2024-12-03 17:22:53 +03:00
parent 968616c93d
commit 95d0c65b1a

View file

@ -57,6 +57,12 @@ public class KSRepLccValueReportBuilder extends CSVReportBuilder<EmptyParams, KS
return rows;
}
@Override
protected String getReportFilename(EmptyParams params) {
String filename = super.getReportFilename(params);
return filename.replaceAll("_REPORT", "");
}
@Override
public ReportBuilderType getReportType() {
return ReportBuilderType.KS_REP_LCC_VALUE;