livraison) var $num_acquisition = 0; //Identifiant de la suggestion ayant déclenché la commande (optionnel) var $num_rubrique = 0; //Identifiant du numéro de rubrique budgétaire à laquelle est affectée la ligne d'acte var $num_produit = ''; //Identifiant de notice ou 0 si produit non géré var $num_type = '0'; //Identifiant du type de produit var $libelle = ''; //Libelle de la ligne de commande, reprend titre, editeur, auteur, collection, ... var $code = ''; //ISBN, ISSN, ... var $prix = '0.00'; //Prix de l'ouvrage var $tva = '0.00'; //Tva applicable sur l'ouvrage var $remise = '0.00'; //Remise sur ligne var $nb = 0; //nb d'articles var $date_ech = '0000-00-00'; //Date d'échéance var $date_cre = '0000-00-00'; //Date de création de ligne var $statut = 1; //Statut de reception var $index_ligne = ''; //Index de recherche var $debit_tva = 0; var $commentaires_gestion = ''; var $commentaires_opac = ''; //Constructeur. function lignes_actes($id_ligne= 0) { global $dbh; if ($id_ligne) { $this->id_ligne = $id_ligne; $this->load(); } } // charge une ligne d'acte à partir de la base. function load(){ global $dbh,$acquisition_gestion_tva; $q = "select * from lignes_actes where id_ligne = '".$this->id_ligne."' "; $r = mysql_query($q, $dbh) ; $obj = mysql_fetch_object($r); $this->type_ligne = $obj->type_ligne; $this->num_acte = $obj->num_acte; $this->lig_ref = $obj->lig_ref; $this->num_acquisition = $obj->num_acquisition; $this->num_rubrique = $obj->num_rubrique; $this->num_produit = $obj->num_produit; $this->num_type = $obj->num_type; $this->libelle = $obj->libelle; $this->code = $obj->code; $this->prix = $obj->prix; $this->tva = $obj->tva; $this->remise = $obj->remise; $this->nb = $obj->nb; $this->date_ech = $obj->date_ech; $this->date_cre = $obj->date_cre; $this->statut = $obj->statut; $this->debit_tva = $obj->debit_tva; // Pour les anciennes commandes if(!$this->debit_tva)$this->debit_tva=$acquisition_gestion_tva; $this->commentaires_gestion = $obj->commentaires_gestion; $this->commentaires_opac = $obj->commentaires_opac; } // enregistre une ligne d'acte en base function save(){ global $dbh,$acquisition_gestion_tva; if(!$this->debit_tva)$this->debit_tva=$acquisition_gestion_tva; if (!$this->num_acte) die("Erreur de création Lignes_Actes"); if ($this->id_ligne) { $q = "update lignes_actes set type_ligne = '".$this->type_ligne."', num_acte = '".$this->num_acte."', lig_ref = '".$this->lig_ref."', num_acquisition = '".$this->num_acquisition."', "; $q.= "num_rubrique = '".$this->num_rubrique."', num_produit = '".$this->num_produit."', num_type = '".$this->num_type."', "; $q.= "libelle = '".$this->libelle."', code = '".$this->code."', prix = '".$this->prix."', tva = '".$this->tva."', nb = '".$this->nb."', debit_tva = '".$this->debit_tva."', "; $q.= "remise = '".$this->remise."', date_ech = '".$this->date_ech."', date_cre = '".$this->date_cre."', statut = '".$this->statut."', "; $q.= "commentaires_gestion = '".$this->commentaires_gestion."', commentaires_opac = '".$this->commentaires_opac."', "; $q.= "index_ligne = ' ".strip_empty_words($this->libelle)." '"; $q.= "where id_ligne = '".$this->id_ligne."' "; $r = mysql_query($q, $dbh); } else { $q = "insert into lignes_actes set type_ligne = '".$this->type_ligne."', num_acte = '".$this->num_acte."', lig_ref = '".$this->lig_ref."', num_acquisition = '".$this->num_acquisition."', num_rubrique = '".$this->num_rubrique."', "; $q.= "num_produit = '".$this->num_produit."', num_type = '".$this->num_type."', libelle = '".$this->libelle."', code = '".$this->code."', prix = '".$this->prix."', tva = '".$this->tva."', nb = '".$this->nb."', debit_tva = '".$this->debit_tva."', "; $q.= "remise = '".$this->remise."', date_ech = '".$this->date_ech."', date_cre = '".today()."', statut = '".$this->statut."', "; $q.= "commentaires_gestion = '".$this->commentaires_gestion."', commentaires_opac = '".$this->commentaires_opac."', "; $q.= "index_ligne = ' ".strip_empty_words($this->libelle)." '"; $r = mysql_query($q, $dbh); $this->id_ligne = mysql_insert_id($dbh); } } //supprime une ligne d'acte de la base function delete($id_ligne= 0) { global $dbh; if(!$id_ligne) $id_ligne = $this->id_ligne; $q = "delete from lignes_actes where id_ligne = '".$id_ligne."' "; $r = mysql_query($q, $dbh); } //retourne les lignes de livraison pour une ligne de commande //Si num_acte est indiqué, recherche uniquement dans les enregistrements de l'acte correspondant function getLivraisons($id_lig, $num_acte=0) { global $dbh; if ($num_acte) { $q = "select * from lignes_actes where lig_ref = '".$id_lig."' and num_acte = '".$num_acte."' order by id_ligne "; } else { $q = "select lignes_actes.* from actes,lignes_actes where actes.type_acte = '".TYP_ACT_LIV."' and lignes_actes.lig_ref = '".$id_lig."' "; $q.= "and lignes_actes.num_acte = actes.id_acte order by id_ligne "; } $r = mysql_query($q, $dbh); return $r; } //retourne les lignes de facture pour une ligne de commande //Si num_acte est indiqué, recherche uniquement dans les enregistrements de l'acte correspondant function getFactures($id_lig, $num_acte=0) { global $dbh; if ($num_acte) { $q = "select * from lignes_actes where lig_ref = '".$id_lig."' and num_acte = '".$num_acte."' order by id_ligne "; } else { $q = "select lignes_actes.* from actes,lignes_actes where actes.type_acte = '3' and lignes_actes.lig_ref = '".$id_lig."' "; $q.= "and lignes_actes.num_acte = actes.id_acte order by id_ligne "; } $r = mysql_query($q, $dbh); return $r; } //optimization de la table lignes_actes function optimize() { global $dbh; $opt = mysql_query('OPTIMIZE TABLE lignes_actes', $dbh); return $opt; } //modification des lignes par lot function updateFields($t_id=array(), $t_fields=array()) { global $dbh; if (count($t_id) && count($t_fields)) { $t=array(); foreach($t_fields as $f=>$v) { $t[]= $f."='".$v."' "; } $q="update lignes_actes set ".implode(',',$t)." where id_ligne in ('".implode("','",$t_id)."') "; mysql_query($q,$dbh); } } //retourne une requete pour recuperation des lignes avec id d'acte et id fournisseur function getLines($tab_lig=array(), $relances=false) { global $dbh; $q=''; if(count($tab_lig)) { $q = "select num_fournisseur, id_acte, id_ligne from lignes_actes join actes on actes.id_acte=lignes_actes.num_acte "; if($relances) $q.= "join lignes_actes_statuts on lignes_actes.statut=lignes_actes_statuts.id_statut and lignes_actes_statuts.relance='1' "; $q.= "where id_ligne in ('".implode("','",$tab_lig)."') "; $q.= "order by num_fournisseur, id_acte, id_ligne "; } return $q; } //retourne un tableau des dates de relances sur une ligne function getRelances ($id_lig=0) { global $dbh, $msg; $tab = array(); if ($id_lig) { $q = "select num_ligne, date_format(date_relance, '".$msg["format_date"]."') as date_rel "; $q.= "from lignes_actes_relances where num_ligne ='".$id_lig."' "; $q.= "order by num_ligne, date_relance desc "; $r = mysql_query($q, $dbh); if (mysql_num_rows($r)) { while ($row=mysql_fetch_object($r)) { $tab[]=$row->date_rel; } } } return $tab; } //retourne un tableau des lignes de relances pour un fournisseur function getRelancesBySupplier ($id_fou=0) { global $dbh, $msg; $tab = array(); if ($id_fou) { $q = "select id_acte, type_acte, date_format(date_acte, '".$msg["format_date"]."') as date_acte, numero as numero, "; $q.= "num_ligne, date_format(date_relance, '".$msg["format_date"]."') as date_rel , type_ligne, num_acquisition, num_rubrique, num_produit, num_type, "; $q.= "libelle, code, prix, tva, nb, lignes_actes_relances.statut as statut, remise, debit_tva, commentaires_gestion, commentaires_opac "; $q.= "from actes join lignes_actes_relances on num_acte=id_acte where num_fournisseur ='".$id_fou."' "; $q.= "order by date_relance desc, num_acte "; $r = mysql_query($q, $dbh); if (mysql_num_rows($r)) { while ($row=mysql_fetch_array($r, MYSQL_ASSOC)) { $tab[]=$row; } } } return $tab; } //enregistre la relance d'un ensemble de lignes function setRelances ($tab_lig=array()) { global $dbh; if (count($tab_lig)) { $q1 = "select * from lignes_actes where id_ligne in ('".implode("','",$tab_lig)."') "; $r1 = mysql_query($q1,$dbh); if (mysql_num_rows($r1)) { while ($row=mysql_fetch_object($r1)) { $q2 = "insert ignore into lignes_actes_relances set num_ligne = '".$row->id_ligne."' ,date_relance=curdate(), type_ligne = '".$row->type_ligne."', num_acte = '".$row->num_acte."', lig_ref = '".$row->lig_ref."', num_acquisition = '".$row->num_acquisition."', num_rubrique = '".$row->num_rubrique."', "; $q2.= "num_produit = '".$row->num_produit."', num_type = '".$row->num_type."', libelle = '".addslashes($row->libelle)."', code = '".addslashes($row->code)."', prix = '".$row->prix."', tva = '".$row->tva."', nb = '".$row->nb."', debit_tva = '".$row->debit_tva."', "; $q2.= "remise = '".$row->remise."', date_ech = '".$row->date_ech."', date_cre = '".today()."', statut = '".$row->statut."', "; $q2.= "commentaires_gestion = '".addslashes($row->commentaires_gestion)."', commentaires_opac = '".addslashes($row->commentaires_opac)."', "; $q2.= "index_ligne = ' ".addslashes($row->libelle)." '"; mysql_query($q2, $dbh); } } } } function deleteRelances($id_fou=0, $id_acte=0) { global $dbh; $q=''; if ($id_fou) { $q = "delete from lignes_actes_relances where num_acte in (select id_acte from actes where num_fournisseur='".$id_fou."' ) "; } elseif($id_acte) { $q = "delete from lignes_actes_relances where num_acte='".$id_acte."' "; } if ($q) { mysql_query($q, $dbh); } } function getNbDelivered($id_lig=0) { global $dbh; if(!$id_lig) $id_lig=$this->id_ligne; $q = "select ifnull(sum(nb),0) from lignes_actes join actes on id_acte=num_acte where actes.type_acte = '".TYP_ACT_LIV."' and lig_ref = '".$id_lig."' "; $r = mysql_result(mysql_query($q, $dbh),0,0); return $r; } } ?>