Package clips.contract

Examples of clips.contract.PanelContractSearch


    }//GEN-LAST:event_btServiceActionPerformed

    private void btContractActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btContractActionPerformed
        try {
            EmptyDialog dlg = new EmptyDialog(MainWindow.mainWindow, "Выбор контракта", getAuditManager());
            PanelContractSearch panel = new PanelContractSearch(dlg, true);
            dlg.addNewPage(panel, null);
            dlg.setVisible(true);
            if (dlg.getDlgResult() == ModalDialog.DLG_OK) {
                contract = panel.getSelectedContract();
                if (contract != null) {
                    tfContract.setText(contract.getInfo());
                }
                else {
                    btContract.setEnabled(false);
View Full Code Here

TOP

Related Classes of clips.contract.PanelContractSearch

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.