Package cli_fmw.report

Examples of cli_fmw.report.TableReportOptions


    public void print() {
        if (readyForPrint()) {
            String title = "Сведения о типе дисконтной карты(уровни дисконта)";
            HashMap<String, Object> data = new LinkedHashMap<String, Object>();
            data.put("type", "Тип карты: " + selectedCard.getTitle());
            TableReportOptions ops = new TableReportOptions(TableReportOptions.PageOrentation.horizontal);
            PrintCreators.createGeneratedReport(title, ops, data.entrySet(), null, mainTable.getModel(), getClass());
        }
    }
View Full Code Here


            fieldName = "Врач: ";
            fieldValue = collab.getTitle();
            extraField = new ExtraField(fieldValue, fieldName, AlignmentType.left);
            analyseReporter.addField(extraField, true);
        }
        TableReportOptions ops = new TableReportOptions();
        ops.topMargin = 0;
        ops.bottomMargin = 0;
        analyseReporter.setPageOptions(ops);
        analyseReporter.finish();
    }
View Full Code Here

    }
   
    @Override
    public void print(CombinedReportCreator cCreator) throws ClipsException {
        FormReportCreator creater = cCreator.createFormReporter(getClass(), 1);
        TableReportOptions ops = new TableReportOptions();
        ops.topMargin = 0;
        ops.bottomMargin = 0;
        HashMap<String, Object> data = new LinkedHashMap<String, Object>();
        String title = "Данные непереносимости действующих веществ";
        data.put("client", "Пациент: " + getSerrenLocal().getPolisData().getClient(getAuditListener()).toString());
View Full Code Here

        ops.bottomMargin = 0;
        ops.topMargin = 0;
        parCreator.setUpReport(null, ops, null);
       
        FormReportCreator creator = parCreator.createFormReporter(getClass(), 2);
        TableReportOptions opts = new TableReportOptions();
        opts.bottomMargin = 0;
        opts.topMargin = 0;
        creator.createReport(title, opts, data.entrySet(), null);
        creator.finish();
       
View Full Code Here

TOP

Related Classes of cli_fmw.report.TableReportOptions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.