/**
* 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());
}