add(new Label("nom", new PropertyModel(facture.getTransaction()
.getPersonne(), "string")));
add(new Label("numero", new PropertyModel(facture, "id")));
add(DateLabel.forDatePattern("date", new PropertyModel(facture,
"creation"), "yyyy-MM-dd hh:mm:ss"));
add(new CurrencyLabel("soustotal", new PropertyModel(facture,
"soustotal")));
add(new CurrencyLabel("escompte",
new PropertyModel(facture, "escompte")));
add(new CurrencyLabel("total", new PropertyModel(facture, "total")));
}