Skip to content
Snippets Groups Projects
Commit fb7e6808 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

New: Ajoute code produit sur facture crabe si parametre FACTURE_CODEPRODUITSERVICE defini.

parent 5229690a
No related branches found
No related tags found
No related merge requests found
......@@ -40,14 +40,15 @@ class pdf_crabe extends ModelePDFFactures
/**
\brief Constructeur
\param db handler accs base de donne
\param db Handler accs base de donne
*/
function pdf_crabe($db)
{
global $langs;
$this->db = $db;
$this->description = "Modle de facture complet (Gre l'option fiscale de facturation TVA, le choix du mode de rglement afficher, logo...)";
$this->name = "crabe";
$this->description = "Modle de facture complet (Gre l'option fiscale de facturation TVA, le choix du mode de rglement afficher, logo...)";
$this->option_logo = 1; // Affiche logo FAC_PDF_LOGO
$this->option_tva = 1; // Gere option tva FACTURE_TVAOPTION
$this->option_modereg = 1; // Gere choix mode rglement FACTURE_CHQ_NUMBER, FACTURE_RIB_NUMBER
......@@ -103,7 +104,7 @@ class pdf_crabe extends ModelePDFFactures
if ($conf->facture->dir_output)
{
$fac = new Facture($this->db,"",$facid);
$fac->fetch($facid);
$ret=$fac->fetch($facid);
$facref = sanitize_string($fac->ref);
$dir = $conf->facture->dir_output . "/" . $facref;
......@@ -147,29 +148,35 @@ class pdf_crabe extends ModelePDFFactures
$nexY = $pdf->GetY();
$nblignes = sizeof($fac->lignes);
// Boucle sur les lignes de factures
// Boucle sur les lignes
for ($i = 0 ; $i < $nblignes ; $i++)
{
$curY = $nexY;
// Description produit
$codeproduitservice="";
$libelleproduitservice=$fac->lignes[$i]->libelle;
if ($fac->lignes[$i]->desc&&$fac->lignes[$i]->desc!=$fac->lignes[$i]->libelle)
{
if ($libelleproduitservice) $libelleproduitservice.="\n";
$libelleproduitservice.=$fac->lignes[$i]->desc;
}
$pdf->SetXY (11, $curY );
if (defined("FACTURE_CODEPRODUITSERVICE") && FACTURE_CODEPRODUITSERVICE) {
if ($conf->global->FACTURE_CODEPRODUITSERVICE && $fac->lignes[$i]->produit_id)
{
// Affiche code produit si ligne associe un code produit
$prodser = new Product($this->db);
$prodser->fetch($fac->lignes[$i]->produit_id);
if ($prodser->ref) {
$codeproduitservice=" - ".$langs->trans("ProductCode")." ".$prodser->ref;
$libelleproduitservice=$langs->trans("ProductCode")." ".$prodser->ref." - ".$libelleproduitservice;
}
}
if ($fac->lignes[$i]->date_start && $fac->lignes[$i]->date_end) {
// Affichage dure si il y en a une
$codeproduitservice.=" (".$langs->trans("From")." ".dolibarr_print_date($fac->lignes[$i]->date_start)." ".$langs->trans("to")." ".dolibarr_print_date($fac->lignes[$i]->date_end).")";
$libelleproduitservice.="\n(".$langs->trans("From")." ".dolibarr_print_date($fac->lignes[$i]->date_start)." ".$langs->trans("to")." ".dolibarr_print_date($fac->lignes[$i]->date_end).")";
}
$pdf->MultiCell(108, 5, $fac->lignes[$i]->desc."$codeproduitservice", 0, 'J');
$pdf->MultiCell(108, 5, $libelleproduitservice, 0, 'J');
$nexY = $pdf->GetY();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment