Package clips.contract.info

Examples of clips.contract.info.PanelContractInfo


        updateTable();
    }//GEN-LAST:event_btFindActionPerformed
   
    private void btNewActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btNewActionPerformed
        try {
            PanelContractInfo panel = new PanelContractInfo(getContainer(), new ContractLocal(getAuditManager()));
            PageGeneric page = getContainer().addNewPage(panel, this);
            getContainer().activatePage(page);
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
        }
View Full Code Here


    private void btCopyActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btCopyActionPerformed
      if (tabContractList.getSelectedRowCount() > 0) {
          try {
              ContractLocal cl = contractList.get(tabContractList.getSelectedRowSorted());
              cl = cl.copy();
              PanelContractInfo panel = new PanelContractInfo(getContainer(), cl);
              PageGeneric page = getContainer().addNewPage(panel, this);
              getContainer().activatePage(page);
          } catch (ClipsException ex) {
              MessageBox.showException(ex);
          }
View Full Code Here

    private void btOpenContractActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btOpenContractActionPerformed
      try {
            contract = contractList.get(tabContractList.getSelectedRowSorted());
            if (!isForSerRenSearch) {
                PanelContractInfo panel = new PanelContractInfo(getContainer(), contract);
                getContainer().addNewPage(panel, this);
            }
            else {
                if (getContainer() instanceof EmptyDialog) {
                    ((EmptyDialog)getContainer()).setDlgResult(ModalDialog.DLG_OK);
View Full Code Here

        );
    }// </editor-fold>//GEN-END:initComponents

    private void btContractViewActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btContractViewActionPerformed
        try {
            PanelContractInfo panel = new PanelContractInfo(getContainer(),
                    contractList.get(tableContractList.getSelectedRowSorted()).getContract());
            PageGeneric page = getContainer().addNewPage(panel, this);
            getContainer().activatePage(page);
        } catch (PageException e) {
            MessageBox.showException(e);
View Full Code Here

        if (tabSerRenList.getSelectedRowCount() > 0) {
            try {
                SerRenLocal service = serRenList.get(tabSerRenList.getSelectedRowSorted());
                ContractLocal c = service.getPolisData().getContract();
                if (c != null) {
                    PanelContractInfo panel = new PanelContractInfo(getContainer(), c);
                    getContainer().addNewPage(panel, this);
                }
            } catch (PageException ex) {
                MessageBox.showException(ex);
            } catch (ClipsException ex) {
View Full Code Here

TOP

Related Classes of clips.contract.info.PanelContractInfo

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.