This commit is contained in:
Regis Houssin 2006-02-18 14:27:43 +00:00
parent f19bbf261d
commit 0080b6c321
2 changed files with 3 additions and 2 deletions

View File

@ -672,7 +672,7 @@ class pdf_muscadet extends ModelePDFCommandesSuppliers
$posy+=6;
$pdf->SetXY(100,$posy);
$pdf->SetTextColor(0,0,60);
$pdf->MultiCell(100, 4, $langs->trans("Date")." : " . dolibarr_print_date($com->date_commande,"%d %b %Y"), '', 'R');
$pdf->MultiCell(100, 4, $langs->trans("Date")." : " . dolibarr_print_date($com->date,"%d %b %Y"), '', 'R');
if ($showadress)
{

View File

@ -90,9 +90,10 @@ class CommandeFournisseur
$this->total_tva = $obj->tva;
$this->total_ttc = $obj->total_ttc;
$this->date_commande = $obj->date_commande; // date à laquelle la commande a été transmise
$this->date = $obj->date_creation;
$this->remise_percent = $obj->remise_percent;
$this->methode_commande_id = $obj->fk_methode_commande;
$this->methode_commande = $obj->methode_commande;
$this->methode_commande = $obj->methode_commande;
$this->source = $obj->source;
$this->facturee = $obj->facture;