Package gui.charge.facture

Examples of gui.charge.facture.FichePaiementFactureEditionFenetre


  /**
   * Cr�e une nouvelle fiche paiement facture
   * @throws PrjException
   */
  private void creeNouvelleFichePaiementFacture() throws PrjException {
    FichePaiementFactureEditionFenetre dlgDialog;

    try {
      dlgDialog = new FichePaiementFactureEditionFenetre();
      dlgDialog.affiche();

      if (dlgDialog.OK_Button()) {
        FichePaiementFacture fichePaiementFacture = dlgDialog.renvoiFichePaiementFacture();
        getFichePaiementFactureDao().insert(fichePaiementFacture);
      }
    } catch (PrjException e) {
      throw new PrjException(e.RetourMessage());
    }
View Full Code Here

TOP

Related Classes of gui.charge.facture.FichePaiementFactureEditionFenetre

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.