Search in sources :

Example 1 with WorksheetSpec

use of org.isisaddons.module.excel.dom.WorksheetSpec 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);
}
Also used : Action(org.apache.isis.applib.annotation.Action) Nature(org.apache.isis.applib.annotation.Nature) Setter(lombok.Setter) Getter(lombok.Getter) PaymentLineRepository(org.estatio.module.capex.dom.payment.PaymentLineRepository) PromptStyle(org.apache.isis.applib.annotation.PromptStyle) Collectors(java.util.stream.Collectors) MemberOrder(org.apache.isis.applib.annotation.MemberOrder) Programmatic(org.apache.isis.applib.annotation.Programmatic) PropertyLayout(org.apache.isis.applib.annotation.PropertyLayout) LocalDate(org.joda.time.LocalDate) ActionLayout(org.apache.isis.applib.annotation.ActionLayout) CollectionLayout(org.apache.isis.applib.annotation.CollectionLayout) SemanticsOf(org.apache.isis.applib.annotation.SemanticsOf) PaymentLine(org.estatio.module.capex.dom.payment.PaymentLine) List(java.util.List) WorksheetContent(org.isisaddons.module.excel.dom.WorksheetContent) DomainObject(org.apache.isis.applib.annotation.DomainObject) WorksheetSpec(org.isisaddons.module.excel.dom.WorksheetSpec) Contributed(org.apache.isis.applib.annotation.Contributed) ExcelService(org.isisaddons.module.excel.dom.ExcelService) Blob(org.apache.isis.applib.value.Blob) NoArgsConstructor(lombok.NoArgsConstructor) WorksheetSpec(org.isisaddons.module.excel.dom.WorksheetSpec) WorksheetContent(org.isisaddons.module.excel.dom.WorksheetContent) Action(org.apache.isis.applib.annotation.Action)

Example 2 with WorksheetSpec

use of org.isisaddons.module.excel.dom.WorksheetSpec 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);
}
Also used : WorksheetSpec(org.isisaddons.module.excel.dom.WorksheetSpec) WorksheetContent(org.isisaddons.module.excel.dom.WorksheetContent) Action(org.apache.isis.applib.annotation.Action) MemberOrder(org.apache.isis.applib.annotation.MemberOrder) ActionLayout(org.apache.isis.applib.annotation.ActionLayout)

Example 3 with WorksheetSpec

use of org.isisaddons.module.excel.dom.WorksheetSpec in project estatio by estatio.

the class OrderInvoiceImportForDemoXlsxFixture method execute.

@Override
protected void execute(final ExecutionContext executionContext) {
    setExcelResource(Resources.getResource(getClass(), "OrderInvoiceImportForDemo.xlsx"));
    setMatcher(sheetName -> {
        if (sheetName.startsWith("OXFORD")) {
            return new WorksheetSpec(rowFactoryFor(OrderInvoiceImportHandler.class, executionContext), sheetName, Mode.RELAXED);
        } else {
            return null;
        }
    });
    super.execute(executionContext);
    for (FixtureResult result : executionContext.getResults()) {
        if (result.getClassName().equals(OrderInvoiceLine.class.getName())) {
            OrderInvoiceLine line = (OrderInvoiceLine) result.getObject();
            OrderInvoiceLine._apply applyMixin = factoryService.mixin(OrderInvoiceLine._apply.class, line);
            if (applyMixin.disableAct() == null) {
                applyMixin.act();
            }
        }
    }
}
Also used : WorksheetSpec(org.isisaddons.module.excel.dom.WorksheetSpec) OrderInvoiceImportHandler(org.estatio.module.capex.imports.OrderInvoiceImportHandler) FixtureResult(org.apache.isis.applib.fixturescripts.FixtureResult) OrderInvoiceLine(org.estatio.module.capex.imports.OrderInvoiceLine)

Example 4 with WorksheetSpec

use of org.isisaddons.module.excel.dom.WorksheetSpec in project estatio by estatio.

the class CapexChargeHierarchyXlsxFixture method execute.

@Override
protected void execute(final ExecutionContext executionContext) {
    Charge before = chargeRepository.findByReference("WORKS");
    List<Charge> beforeAll = chargeRepository.listAll();
    setExcelResource(Resources.getResource(getClass(), "CapexChargeHierarchy.xlsx"));
    setMatcher(sheetName -> {
        if (sheetName.startsWith("ChargeHierarchy")) {
            return new WorksheetSpec(rowFactoryFor(IncomingChargeHandler.class, executionContext), sheetName, Mode.STRICT);
        } else {
            return null;
        }
    });
    super.execute(executionContext);
    Charge after = chargeRepository.findByReference("WORKS");
    List<Charge> afterAll = chargeRepository.listAll();
}
Also used : WorksheetSpec(org.isisaddons.module.excel.dom.WorksheetSpec) Charge(org.estatio.module.charge.dom.Charge)

Example 5 with WorksheetSpec

use of org.isisaddons.module.excel.dom.WorksheetSpec 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);
}
Also used : WorksheetSpec(org.isisaddons.module.excel.dom.WorksheetSpec) WorksheetContent(org.isisaddons.module.excel.dom.WorksheetContent) Action(org.apache.isis.applib.annotation.Action) ActionLayout(org.apache.isis.applib.annotation.ActionLayout)

Aggregations

WorksheetSpec (org.isisaddons.module.excel.dom.WorksheetSpec)12 Action (org.apache.isis.applib.annotation.Action)10 ActionLayout (org.apache.isis.applib.annotation.ActionLayout)9 WorksheetContent (org.isisaddons.module.excel.dom.WorksheetContent)8 MemberOrder (org.apache.isis.applib.annotation.MemberOrder)5 List (java.util.List)3 CollectionLayout (org.apache.isis.applib.annotation.CollectionLayout)3 ArrayList (java.util.ArrayList)2 Collectors (java.util.stream.Collectors)2 Contributed (org.apache.isis.applib.annotation.Contributed)2 DomainObject (org.apache.isis.applib.annotation.DomainObject)2 Nature (org.apache.isis.applib.annotation.Nature)2 SemanticsOf (org.apache.isis.applib.annotation.SemanticsOf)2 Blob (org.apache.isis.applib.value.Blob)2 ExcelService (org.isisaddons.module.excel.dom.ExcelService)2 Inject (javax.inject.Inject)1 Getter (lombok.Getter)1 NoArgsConstructor (lombok.NoArgsConstructor)1 Setter (lombok.Setter)1 Parameter (org.apache.isis.applib.annotation.Parameter)1