Package reportgen.gui.genepanel.subreportpanel.dlg

Examples of reportgen.gui.genepanel.subreportpanel.dlg.SubReportChooseDlg


            if(lst.size() == 0) {
                Message.error(this, "Нет доступных подотчетов");
            } else {

                SubReportChooseDlg dlg = new SubReportChooseDlg(parent, lst);
                dlg.setVisible(true);
                if(dlg.isOK()) {
                    Report selected = dlg.getSelectedReport();
                    ItemSelectorEditable<QueryExecuterSub> subreports = reportQuery.getSubReports();
                    QueryExecuterSub srq = new QueryExecuterSub(
                            selected.getID(), selected.getQuery(), selected.getTitle(),
                            selected.getDescription(), "", "", 1, RowCount.SINGLE);
                    subreports.add(srq);
View Full Code Here

TOP

Related Classes of reportgen.gui.genepanel.subreportpanel.dlg.SubReportChooseDlg

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.