use of org.isisaddons.module.excel.dom.WorksheetContent in project estatio by estatio.
the class PaymentLineDownloadManager method downloadToExcel.
@Action(semantics = SemanticsOf.SAFE)
public Blob downloadToExcel(final String fileName) {
final List<PaymentLineExportV1> exportV1s = getPayments().stream().map(x -> new PaymentLineExportV1(x)).collect(Collectors.toList());
WorksheetSpec spec = new WorksheetSpec(exportClass, "invoiceExport");
WorksheetContent worksheetContent = new WorksheetContent(exportV1s, spec);
return excelService.toExcel(worksheetContent, fileName);
}
use of org.isisaddons.module.excel.dom.WorksheetContent in project estatio by estatio.
the class Lease_DownloadBudgetCalculationsForLease method downloadBudgetCalculationsForLease.
@Action(semantics = SemanticsOf.SAFE)
@ActionLayout(cssClassFa = "fa-download")
@MemberOrder(name = "budgetCalculationRuns", sequence = "1")
public Blob downloadBudgetCalculationsForLease(Budget budget, BudgetCalculationType type) {
final String fileName = lease.getReference() + " - budget details" + ".xlsx";
WorksheetSpec spec = new WorksheetSpec(DetailedCalculationResultViewmodel.class, "values for lease");
WorksheetContent worksheetContent = new WorksheetContent(budgetAssignmentService.getDetailedCalculationResults(lease, budget, type), spec);
return excelService.toExcelPivot(worksheetContent, fileName);
}
use of org.isisaddons.module.excel.dom.WorksheetContent in project estatio by estatio.
the class BudgetImportExportManager method exportBudget.
@Action(semantics = SemanticsOf.SAFE)
@ActionLayout(cssClassFa = "fa-download")
public Blob exportBudget() {
final String fileName = withExtension(getFileName(), ".xlsx");
WorksheetSpec spec1 = new WorksheetSpec(BudgetImportExport.class, "budget");
WorksheetSpec spec2 = new WorksheetSpec(KeyItemImportExportLineItem.class, "keyItems");
WorksheetSpec spec3 = new WorksheetSpec(BudgetOverrideImportExport.class, "overrides");
WorksheetSpec spec4 = new WorksheetSpec(ChargeImport.class, "charges");
WorksheetContent worksheetContent = new WorksheetContent(getLines(), spec1);
WorksheetContent keyItemsContent = new WorksheetContent(getKeyItemLines(), spec2);
WorksheetContent overridesContent = new WorksheetContent(getOverrides(), spec3);
WorksheetContent chargesContent = new WorksheetContent(getCharges(), spec4);
return excelService.toExcel(Arrays.asList(worksheetContent, keyItemsContent, overridesContent, chargesContent), fileName);
}
use of org.isisaddons.module.excel.dom.WorksheetContent in project estatio by estatio.
the class Budget_DownloadCalculations method downloadCalculations.
@Action(semantics = SemanticsOf.SAFE)
@ActionLayout(cssClassFa = "fa-download")
public Blob downloadCalculations() {
final String fileName = budget.title() + ".xlsx";
WorksheetSpec spec = new WorksheetSpec(CalculationResultViewModel.class, "values");
WorksheetContent worksheetContent = new WorksheetContent(budgetAssignmentService.getCalculationResults(budget), spec);
return excelService.toExcelPivot(worksheetContent, fileName);
}
use of org.isisaddons.module.excel.dom.WorksheetContent in project estatio by estatio.
the class CodaMappingManager method downloadToExcel.
@Action(semantics = SemanticsOf.SAFE)
@MemberOrder(name = "mappings", sequence = "1")
public Blob downloadToExcel(final String fileName) {
final List<CodaMappingImport> exports = getMappings().stream().map(x -> new CodaMappingImport(x)).collect(Collectors.toList());
WorksheetSpec spec = new WorksheetSpec(CodaMappingImport.class, SHEET_NAME);
WorksheetContent worksheetContent = new WorksheetContent(exports, spec);
return excelService.toExcel(worksheetContent, fileName);
}
Aggregations