12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088 |
- <?php
- /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2005-2014 Regis Houssin <regis.houssin@capnetworks.com>
- * Copyright (C) 2006-2007 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2007 Franky Van Liedekerke <franky.van.liedekerke@telenet.be>
- * Copyright (C) 2011-2012 Philippe Grand <philippe.grand@atoo-net.com>
- * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
- * Copyright (C) 2014-2015 Marcos García <marcosgdf@gmail.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/livraison/class/livraison.class.php
- * \ingroup delivery
- * \brief Fichier de la classe de gestion des bons de livraison
- */
- require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
- require_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php';
- require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
- if (! empty($conf->propal->enabled)) require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
- if (! empty($conf->commande->enabled)) require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
- /**
- * Class to manage receptions
- */
- class Livraison extends CommonObject
- {
- public $element="delivery";
- public $fk_element="fk_livraison";
- public $table_element="livraison";
- public $table_element_line="livraisondet";
- var $brouillon;
- var $socid;
- var $ref_customer;
- var $date_delivery; // Date really received
- var $date_creation;
- var $date_valid;
- var $model_pdf;
- /**
- * Constructor
- *
- * @param DoliDB $db Database handler
- */
- function __construct($db)
- {
- $this->db = $db;
- $this->lines = array();
- $this->products = array();
- // List of short language codes for status
- $this->statuts[-1] = 'StatusDeliveryCanceled';
- $this->statuts[0] = 'StatusDeliveryDraft';
- $this->statuts[1] = 'StatusDeliveryValidated';
- }
- /**
- * Create delivery receipt in database
- *
- * @param User $user Objet du user qui cree
- * @return int <0 si erreur, id livraison cree si ok
- */
- function create($user)
- {
- global $conf;
- dol_syslog("Livraison::create");
- if (empty($this->model_pdf)) $this->model_pdf=$conf->global->LIVRAISON_ADDON_PDF;
- $error = 0;
- $now=dol_now();
- /* On positionne en mode brouillon le bon de livraison */
- $this->brouillon = 1;
- $this->user = $user;
- $this->db->begin();
- $sql = "INSERT INTO ".MAIN_DB_PREFIX."livraison (";
- $sql.= "ref";
- $sql.= ", entity";
- $sql.= ", fk_soc";
- $sql.= ", ref_customer";
- $sql.= ", date_creation";
- $sql.= ", fk_user_author";
- $sql.= ", date_delivery";
- $sql.= ", fk_address";
- $sql.= ", note_private";
- $sql.= ", note_public";
- $sql.= ", model_pdf";
- $sql.= ", fk_incoterms, location_incoterms";
- $sql.= ") VALUES (";
- $sql.= "'(PROV)'";
- $sql.= ", ".$conf->entity;
- $sql.= ", ".$this->socid;
- $sql.= ", '".$this->db->escape($this->ref_customer)."'";
- $sql.= ", '".$this->db->idate($now)."'";
- $sql.= ", ".$user->id;
- $sql.= ", ".($this->date_delivery?"'".$this->db->idate($this->date_delivery)."'":"null");
- $sql.= ", ".($this->fk_delivery_address > 0 ? $this->fk_delivery_address : "null");
- $sql.= ", ".(!empty($this->note_private)?"'".$this->db->escape($this->note_private)."'":"null");
- $sql.= ", ".(!empty($this->note_public)?"'".$this->db->escape($this->note_public)."'":"null");
- $sql.= ", ".(!empty($this->model_pdf)?"'".$this->db->escape($this->model_pdf)."'":"null");
- $sql.= ", ".(int) $this->fk_incoterms;
- $sql.= ", '".$this->db->escape($this->location_incoterms)."'";
- $sql.= ")";
- dol_syslog("Livraison::create", LOG_DEBUG);
- $resql=$this->db->query($sql);
- if ($resql)
- {
- $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."livraison");
- $numref = "(PROV".$this->id.")";
- $sql = "UPDATE ".MAIN_DB_PREFIX."livraison ";
- $sql.= "SET ref = '".$this->db->escape($numref)."'";
- $sql.= " WHERE rowid = ".$this->id;
- dol_syslog("Livraison::create", LOG_DEBUG);
- $resql=$this->db->query($sql);
- if ($resql)
- {
- if (! $conf->expedition_bon->enabled)
- {
- $commande = new Commande($this->db);
- $commande->id = $this->commande_id;
- $commande->fetch_lines();
- }
- /*
- * Insertion des produits dans la base
- */
- $num=count($this->lines);
- for ($i = 0; $i < $num; $i++)
- {
- $origin_id=$this->lines[$i]->origin_line_id;
- if (! $origin_id) $origin_id=$this->lines[$i]->commande_ligne_id; // For backward compatibility
- if (! $this->create_line($origin_id, $this->lines[$i]->qty, $this->lines[$i]->fk_product, $this->lines[$i]->description))
- {
- $error++;
- }
- }
- if (! $error && $this->id && $this->origin_id)
- {
- $ret = $this->add_object_linked();
- if (!$ret)
- {
- $error++;
- }
- if (! $conf->expedition_bon->enabled)
- {
- // TODO uniformiser les statuts
- $ret = $this->setStatut(2,$this->origin_id,$this->origin);
- if (! $ret)
- {
- $error++;
- }
- }
- }
- if (! $error)
- {
- $this->db->commit();
- return $this->id;
- }
- else
- {
- $error++;
- $this->error=$this->db->lasterror()." - sql=".$this->db->lastqueryerror;
- $this->db->rollback();
- return -3;
- }
- }
- else
- {
- $error++;
- $this->error=$this->db->lasterror()." - sql=".$this->db->lastqueryerror;
- $this->db->rollback();
- return -2;
- }
- }
- else
- {
- $error++;
- $this->error=$this->db->lasterror()." - sql=".$this->db->lastqueryerror;
- $this->db->rollback();
- return -1;
- }
- }
- /**
- * Create a line
- *
- * @param string $origin_id Id of order
- * @param string $qty Quantity
- * @param string $fk_product Id of predefined product
- * @param string $description Description
- * @return int <0 if KO, >0 if OK
- */
- function create_line($origin_id, $qty, $fk_product, $description)
- {
- $error = 0;
- $idprod = $fk_product;
- $j = 0;
- $sql = "INSERT INTO ".MAIN_DB_PREFIX."livraisondet (fk_livraison, fk_origin_line,";
- $sql.= " fk_product, description, qty)";
- $sql.= " VALUES (".$this->id.",".$origin_id.",";
- $sql.= " ".($idprod>0?$idprod:"null").",";
- $sql.= " ".($description?"'".$this->db->escape($description)."'":"null").",";
- $sql.= $qty.")";
- dol_syslog(get_class($this)."::create_line", LOG_DEBUG);
- if (! $this->db->query($sql) )
- {
- $error++;
- }
- if ($error == 0 )
- {
- return 1;
- }
- }
- /**
- * Load a delivery receipt
- *
- * @param int $id Id of object to load
- * @return integer
- */
- function fetch($id)
- {
- global $conf;
- $sql = "SELECT l.rowid, l.fk_soc, l.date_creation, l.date_valid, l.ref, l.ref_customer, l.fk_user_author,";
- $sql.=" l.total_ht, l.fk_statut, l.fk_user_valid, l.note_private, l.note_public";
- $sql.= ", l.date_delivery, l.fk_address, l.model_pdf";
- $sql.= ", el.fk_source as origin_id, el.sourcetype as origin";
- $sql.= ', l.fk_incoterms, l.location_incoterms';
- $sql.= ", i.libelle as libelle_incoterms";
- $sql.= " FROM ".MAIN_DB_PREFIX."livraison as l";
- $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."element_element as el ON el.fk_target = l.rowid AND el.targettype = '".$this->element."'";
- $sql.= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_incoterms as i ON l.fk_incoterms = i.rowid';
- $sql.= " WHERE l.rowid = ".$id;
- dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
- $result = $this->db->query($sql);
- if ($result)
- {
- if ($this->db->num_rows($result))
- {
- $obj = $this->db->fetch_object($result);
- $this->id = $obj->rowid;
- $this->date_delivery = $this->db->jdate($obj->date_delivery);
- $this->date_creation = $this->db->jdate($obj->date_creation);
- $this->date_valid = $this->db->jdate($obj->date_valid);
- $this->ref = $obj->ref;
- $this->ref_customer = $obj->ref_customer;
- $this->socid = $obj->fk_soc;
- $this->statut = $obj->fk_statut;
- $this->user_author_id = $obj->fk_user_author;
- $this->user_valid_id = $obj->fk_user_valid;
- $this->fk_delivery_address = $obj->fk_address;
- $this->note = $obj->note_private; //TODO deprecated
- $this->note_private = $obj->note_private;
- $this->note_public = $obj->note_public;
- $this->modelpdf = $obj->model_pdf;
- $this->origin = $obj->origin; // May be 'shipping'
- $this->origin_id = $obj->origin_id; // May be id of shipping
- //Incoterms
- $this->fk_incoterms = $obj->fk_incoterms;
- $this->location_incoterms = $obj->location_incoterms;
- $this->libelle_incoterms = $obj->libelle_incoterms;
- $this->db->free($result);
- if ($this->statut == 0) $this->brouillon = 1;
-
-
- // Retrieve all extrafields for delivery
- // fetch optionals attributes and labels
- require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
- $extrafields=new ExtraFields($this->db);
- $extralabels=$extrafields->fetch_name_optionals_label($this->table_element,true);
- $this->fetch_optionals($this->id,$extralabels);
- /*
- * Lignes
- */
- $result=$this->fetch_lines();
- if ($result < 0)
- {
- return -3;
- }
- return 1;
- }
- else
- {
- $this->error='Delivery with id '.$id.' not found sql='.$sql;
- dol_syslog(get_class($this).'::fetch Error '.$this->error, LOG_ERR);
- return -2;
- }
- }
- else
- {
- $this->error=$this->db->error();
- return -1;
- }
- }
- /**
- * Validate object and update stock if option enabled
- *
- * @param User $user Object user that validate
- * @return int
- */
- function valid($user)
- {
- global $conf, $langs;
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- dol_syslog(get_class($this)."::valid begin");
- $this->db->begin();
- $error = 0;
- if ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->expedition->livraison->creer))
- || (! empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->expedition->livraison_advance->validate)))
- {
- if (! empty($conf->global->LIVRAISON_ADDON_NUMBER))
- {
- // Definition du nom de module de numerotation de commande
- $modName = $conf->global->LIVRAISON_ADDON_NUMBER;
- if (is_readable(DOL_DOCUMENT_ROOT .'/core/modules/livraison/'.$modName.'.php'))
- {
- require_once DOL_DOCUMENT_ROOT .'/core/modules/livraison/'.$modName.'.php';
- $now=dol_now();
- // Recuperation de la nouvelle reference
- $objMod = new $modName($this->db);
- $soc = new Societe($this->db);
- $soc->fetch($this->socid);
- if (preg_match('/^[\(]?PROV/i', $this->ref) || empty($this->ref)) // empty should not happened, but when it occurs, the test save life
- {
- $numref = $objMod->livraison_get_num($soc,$this);
- }
- else
- {
- $numref = $this->ref;
- }
- $this->newref = $numref;
- // Tester si non deja au statut valide. Si oui, on arrete afin d'eviter
- // de decrementer 2 fois le stock.
- $sql = "SELECT ref";
- $sql.= " FROM ".MAIN_DB_PREFIX."livraison";
- $sql.= " WHERE ref = '".$this->db->escape($numref)."'";
- $sql.= " AND fk_statut <> 0";
- $sql.= " AND entity = ".$conf->entity;
- $resql=$this->db->query($sql);
- if ($resql)
- {
- $num = $this->db->num_rows($resql);
- if ($num > 0)
- {
- return 0;
- }
- }
- $sql = "UPDATE ".MAIN_DB_PREFIX."livraison SET";
- $sql.= " ref='".$this->db->escape($numref)."'";
- $sql.= ", fk_statut = 1";
- $sql.= ", date_valid = '".$this->db->idate($now)."'";
- $sql.= ", fk_user_valid = ".$user->id;
- $sql.= " WHERE rowid = ".$this->id;
- $sql.= " AND fk_statut = 0";
- $resql=$this->db->query($sql);
- if (! $resql)
- {
- dol_print_error($this->db);
- $this->error=$this->db->lasterror();
- $error++;
- }
- if (! $error && ! $notrigger)
- {
- // Call trigger
- $result=$this->call_trigger('DELIVERY_VALIDATE',$user);
- if ($result < 0) $error++;
- // End call triggers
- }
- if (! $error)
- {
- $this->oldref = $this->ref;
- // Rename directory if dir was a temporary ref
- if (preg_match('/^[\(]?PROV/i', $this->ref))
- {
- // On renomme repertoire ($this->ref = ancienne ref, $numfa = nouvelle ref)
- // afin de ne pas perdre les fichiers attaches
- $oldref = dol_sanitizeFileName($this->ref);
- $newref = dol_sanitizeFileName($numref);
- $dirsource = $conf->expedition->dir_output.'/receipt/'.$oldref;
- $dirdest = $conf->expedition->dir_output.'/receipt/'.$newref;
- if (file_exists($dirsource))
- {
- dol_syslog(get_class($this)."::valid rename dir ".$dirsource." into ".$dirdest);
- if (@rename($dirsource, $dirdest))
- {
- dol_syslog("Rename ok");
- // Rename docs starting with $oldref with $newref
- $listoffiles=dol_dir_list($conf->expedition->dir_output.'/receipt/'.$newref, 'files', 1, '^'.preg_quote($oldref,'/'));
- foreach($listoffiles as $fileentry)
- {
- $dirsource=$fileentry['name'];
- $dirdest=preg_replace('/^'.preg_quote($oldref,'/').'/',$newref, $dirsource);
- $dirsource=$fileentry['path'].'/'.$dirsource;
- $dirdest=$fileentry['path'].'/'.$dirdest;
- @rename($dirsource, $dirdest);
- }
- }
- }
- }
- // Set new ref and current status
- if (! $error)
- {
- $this->ref = $numref;
- $this->statut = 1;
- }
- dol_syslog(get_class($this)."::valid ok");
- }
- if (! $error)
- {
- $this->db->commit();
- return 1;
- }
- else
- {
- $this->db->rollback();
- return -1;
- }
- }
- }
- }
- else
- {
- $this->error="Non autorise";
- dol_syslog(get_class($this)."::valid ".$this->error, LOG_ERR);
- return -1;
- }
- }
- /**
- * Cree le bon de livraison depuis une expedition existante
- *
- * @param User $user Utilisateur qui cree
- * @param int $sending_id Id de l'expedition qui sert de modele
- * @return integer
- */
- function create_from_sending($user, $sending_id)
- {
- $expedition = new Expedition($this->db);
- $result=$expedition->fetch($sending_id);
- $this->lines = array();
- $num=count($expedition->lines);
- for ($i = 0; $i < $num; $i++)
- {
- $line = new LivraisonLigne($this->db);
- $line->origin_line_id = $expedition->lines[$i]->origin_line_id;
- $line->libelle = $expedition->lines[$i]->libelle;
- $line->description = $expedition->lines[$i]->description;
- $line->qty = $expedition->lines[$i]->qty_shipped;
- $line->fk_product = $expedition->lines[$i]->fk_product;
- $line->ref = $expedition->lines[$i]->ref;
- $this->lines[$i] = $line;
- }
- $this->origin = $expedition->element;
- $this->origin_id = $expedition->id;
- $this->note_private = $expedition->note_private;
- $this->note_public = $expedition->note_public;
- $this->fk_project = $expedition->fk_project;
- $this->date_delivery = $expedition->date_delivery;
- $this->fk_delivery_address = $expedition->fk_delivery_address;
- $this->socid = $expedition->socid;
- $this->ref_customer = $expedition->ref_customer;
-
- //Incoterms
- $this->fk_incoterms = $expedition->fk_incoterms;
- $this->location_incoterms = $expedition->location_incoterms;
- return $this->create($user);
- }
- /**
- * Update a livraison line (only extrafields)
- *
- * @param int $id Id of line (livraison line)
- * @param array $array_options extrafields array
- * @return int <0 if KO, >0 if OK
- */
- function update_line($id, $array_options=0)
- {
- global $conf;
- $error = 0;
-
- if ($id > 0 && !$error && empty($conf->global->MAIN_EXTRAFIELDS_DISABLED) && is_array($array_options) && count($array_options)>0) // For avoid conflicts if trigger used
- {
- $livraisonline = new LivraisonLigne($this->db);
- $livraisonline->array_options=$array_options;
- $livraisonline->id=$id;
- $result=$livraisonline->insertExtraFields();
-
- if ($result < 0)
- {
- $this->error[]=$livraisonline->error;
- $error++;
- }
- }
-
- if (! $error) return 1;
- else return -1;
- }
-
-
- /**
- * Add line
- *
- * @param int $origin_id Origin id
- * @param int $qty Qty
- * @return void
- */
- function addline($origin_id, $qty)
- {
- $num = count($this->lines);
- $line = new LivraisonLigne($this->db);
- $line->origin_id = $origin_id;
- $line->qty = $qty;
- $this->lines[$num] = $line;
- }
- /**
- * Delete line
- *
- * @param int $lineid Line id
- * @return integer|null
- */
- function deleteline($lineid)
- {
- if ($this->statut == 0)
- {
- $sql = "DELETE FROM ".MAIN_DB_PREFIX."commandedet";
- $sql.= " WHERE rowid = ".$lineid;
- if ($this->db->query($sql) )
- {
- $this->update_price();
- return 1;
- }
- else
- {
- return 0;
- }
- }
- }
- /**
- * Delete object
- *
- * @return integer
- */
- function delete()
- {
- global $conf, $langs, $user;
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- $this->db->begin();
- $error=0;
- $sql = "DELETE FROM ".MAIN_DB_PREFIX."livraisondet";
- $sql.= " WHERE fk_livraison = ".$this->id;
- if ($this->db->query($sql))
- {
- // Delete linked object
- $res = $this->deleteObjectLinked();
- if ($res < 0) $error++;
- if (! $error)
- {
- $sql = "DELETE FROM ".MAIN_DB_PREFIX."livraison";
- $sql.= " WHERE rowid = ".$this->id;
- if ($this->db->query($sql))
- {
- $this->db->commit();
- // On efface le repertoire de pdf provisoire
- $ref = dol_sanitizeFileName($this->ref);
- if (! empty($conf->expedition->dir_output))
- {
- $dir = $conf->expedition->dir_output . '/receipt/' . $ref ;
- $file = $dir . '/' . $ref . '.pdf';
- if (file_exists($file))
- {
- if (!dol_delete_file($file))
- {
- return 0;
- }
- }
- if (file_exists($dir))
- {
- if (!dol_delete_dir($dir))
- {
- $this->error=$langs->trans("ErrorCanNotDeleteDir",$dir);
- return 0;
- }
- }
- }
- // Call trigger
- $result=$this->call_trigger('DELIVERY_DELETE',$user);
- if ($result < 0)
- {
- $this->db->rollback();
- return -4;
- }
- // End call triggers
- return 1;
- }
- else
- {
- $this->error=$this->db->lasterror()." - sql=$sql";
- $this->db->rollback();
- return -3;
- }
- }
- else
- {
- $this->error=$this->db->lasterror()." - sql=$sql";
- $this->db->rollback();
- return -2;
- }
- }
- else
- {
- $this->error=$this->db->lasterror()." - sql=$sql";
- $this->db->rollback();
- return -1;
- }
- }
- /**
- * Return clicable name (with picto eventually)
- *
- * @param int $withpicto 0=No picto, 1=Include picto into link, 2=Only picto
- * @return string Chaine avec URL
- */
- function getNomUrl($withpicto=0)
- {
- global $langs;
- $result='';
- $urlOption='';
- $label=$langs->trans("ShowReceiving").': '.$this->ref;
- $link = '<a href="'.DOL_URL_ROOT.'/livraison/card.php?id='.$this->id.'" title="'.dol_escape_htmltag($label, 1).'" class="classfortooltip">';
- $linkend='</a>';
- $picto='sending';
- if ($withpicto) $result.=($link.img_object($label, $picto, 'class="classfortooltip"').$linkend);
- if ($withpicto && $withpicto != 2) $result.=' ';
- $result.=$link.$this->ref.$linkend;
- return $result;
- }
- /**
- * Load lines
- *
- * @return void
- */
- function fetch_lines()
- {
- $this->lines = array();
- $sql = "SELECT ld.rowid, ld.fk_product, ld.description, ld.subprice, ld.total_ht, ld.qty as qty_shipped, ld.fk_origin_line, ";
- $sql.= " cd.qty as qty_asked, cd.label as custom_label,";
- $sql.= " p.ref as product_ref, p.fk_product_type as fk_product_type, p.label as product_label, p.description as product_desc";
- $sql.= " FROM ".MAIN_DB_PREFIX."commandedet as cd, ".MAIN_DB_PREFIX."livraisondet as ld";
- $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."product as p on p.rowid = ld.fk_product";
- $sql.= " WHERE ld.fk_origin_line = cd.rowid";
- $sql.= " AND ld.fk_livraison = ".$this->id;
- dol_syslog(get_class($this)."::fetch_lines", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql)
- {
- $num = $this->db->num_rows($resql);
- $i = 0;
- while ($i < $num)
- {
- $line = new LivraisonLigne($this->db);
- $obj = $this->db->fetch_object($resql);
- $line->id = $obj->rowid;
- $line->label = $obj->custom_label;
- $line->description = $obj->description;
- $line->fk_product = $obj->fk_product;
- $line->qty_asked = $obj->qty_asked;
- $line->qty_shipped = $obj->qty_shipped;
- $line->ref = $obj->product_ref; // deprecated
- $line->libelle = $obj->product_label; // deprecated
- $line->product_label = $obj->product_label; // Product label
- $line->product_ref = $obj->product_ref; // Product ref
- $line->product_desc = $obj->product_desc; // Product description
- $line->product_type = $obj->fk_product_type;
- $line->fk_origin_line = $obj->fk_origin_line;
- $line->price = $obj->price;
- $line->total_ht = $obj->total_ht;
- $this->lines[$i] = $line;
- $i++;
- }
- $this->db->free($resql);
- }
- return $this->lines;
- }
- /**
- * Retourne le libelle du statut d'une expedition
- *
- * @param int $mode Mode
- * @return string Label
- */
- function getLibStatut($mode=0)
- {
- return $this->LibStatut($this->statut,$mode);
- }
- /**
- * Renvoi le libelle d'un statut donne
- *
- * @param int $statut Id statut
- * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto
- * @return string Label
- */
- function LibStatut($statut,$mode)
- {
- global $langs;
- if ($mode==0)
- {
- if ($statut==-1) return $langs->trans('StatusDeliveryCanceled');
- if ($statut==0) return $langs->trans('StatusDeliveryDraft');
- if ($statut==1) return $langs->trans('StatusDeliveryValidated');
- }
- if ($mode==1)
- {
- if ($statut==-1) return $langs->trans($this->statuts[$statut]);
- if ($statut==0) return $langs->trans($this->statuts[$statut]);
- if ($statut==1) return $langs->trans($this->statuts[$statut]);
- }
- if ($mode == 4)
- {
- if ($statut==-1) return img_picto($langs->trans('StatusDeliveryCanceled'),'statut5').' '.$langs->trans('StatusDeliveryCanceled');
- if ($statut==0) return img_picto($langs->trans('StatusDeliveryDraft'),'statut0').' '.$langs->trans('StatusDeliveryDraft');
- if ($statut==1) return img_picto($langs->trans('StatusDeliveryValidated'),'statut4').' '.$langs->trans('StatusDeliveryValidated');
- }
- }
- /**
- * Initialise an instance with random values.
- * Used to build previews or test instances.
- * id must be 0 if object instance is a specimen.
- *
- * @return void
- */
- function initAsSpecimen()
- {
- global $user,$langs,$conf;
- $now=dol_now();
- // Load array of products prodids
- $num_prods = 0;
- $prodids = array();
- $sql = "SELECT rowid";
- $sql.= " FROM ".MAIN_DB_PREFIX."product";
- $sql.= " WHERE entity IN (".getEntity('product', 1).")";
- $sql.= " AND tosell = 1";
- $resql = $this->db->query($sql);
- if ($resql)
- {
- $num_prods = $this->db->num_rows($resql);
- $i = 0;
- while ($i < $num_prods)
- {
- $i++;
- $row = $this->db->fetch_row($resql);
- $prodids[$i] = $row[0];
- }
- }
- // Initialise parametres
- $this->id=0;
- $this->ref = 'SPECIMEN';
- $this->specimen=1;
- $this->socid = 1;
- $this->date_delivery = $now;
- $this->note_public='Public note';
- $this->note_private='Private note';
- $i=0;
- $line=new LivraisonLigne($this->db);
- $line->fk_product = $prodids[0];
- $line->qty_asked = 10;
- $line->qty_shipped = 9;
- $line->ref = 'REFPROD';
- $line->label = 'Specimen';
- $line->description = 'Description';
- $line->price = 100;
- $line->total_ht = 100;
- $this->lines[$i] = $line;
- }
- /**
- * Renvoie la quantite de produit restante a livrer pour une commande
- *
- * @return array Product remaining to be delivered
- * TODO use new function
- */
- function getRemainingDelivered()
- {
- global $langs;
- // Get the linked object
- $this->fetchObjectLinked('','',$this->id,$this->element);
- //var_dump($this->linkedObjectIds);
- // Get the product ref and qty in source
- $sqlSourceLine = "SELECT st.rowid, st.description, st.qty";
- $sqlSourceLine.= ", p.ref, p.label";
- $sqlSourceLine.= " FROM ".MAIN_DB_PREFIX.$this->linkedObjectIds[0]['type']."det as st";
- $sqlSourceLine.= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON st.fk_product = p.rowid";
- $sqlSourceLine.= " WHERE fk_".$this->linked_object[0]['type']." = ".$this->linked_object[0]['linkid'];
- $resultSourceLine = $this->db->query($sqlSourceLine);
- if ($resultSourceLine)
- {
- $num_lines = $this->db->num_rows($resultSourceLine);
- $i = 0;
- $resultArray = array();
- while ($i < $num_lines)
- {
- $objSourceLine = $this->db->fetch_object($resultSourceLine);
- // Recupere les lignes de la source deja livrees
- $sql = "SELECT ld.fk_origin_line, sum(ld.qty) as qty";
- $sql.= " FROM ".MAIN_DB_PREFIX."livraisondet as ld, ".MAIN_DB_PREFIX."livraison as l,";
- $sql.= " ".MAIN_DB_PREFIX.$this->linked_object[0]['type']." as c";
- $sql.= ", ".MAIN_DB_PREFIX.$this->linked_object[0]['type']."det as cd";
- $sql.= " WHERE ld.fk_livraison = l.rowid";
- $sql.= " AND ld.fk_origin_line = cd.rowid";
- $sql.= " AND cd.fk_".$this->linked_object[0]['type']." = c.rowid";
- $sql.= " AND cd.fk_".$this->linked_object[0]['type']." = ".$this->linked_object[0]['linkid'];
- $sql.= " AND ld.fk_origin_line = ".$objSourceLine->rowid;
- $sql.= " GROUP BY ld.fk_origin_line";
- $result = $this->db->query($sql);
- $row = $this->db->fetch_row($result);
- if ($objSourceLine->qty - $row[1] > 0)
- {
- if ($row[0] == $objSourceLine->rowid)
- {
- $array[$i]['qty'] = $objSourceLine->qty - $row[1];
- }
- else
- {
- $array[$i]['qty'] = $objSourceLine->qty;
- }
- $array[$i]['ref'] = $objSourceLine->ref;
- $array[$i]['label'] = $objSourceLine->label?$objSourceLine->label:$objSourceLine->description;
- }
- elseif($objSourceLine->qty - $row[1] < 0)
- {
- $array[$i]['qty'] = $objSourceLine->qty - $row[1]. " Erreur livraison !";
- $array[$i]['ref'] = $objSourceLine->ref;
- $array[$i]['label'] = $objSourceLine->label?$objSourceLine->label:$objSourceLine->description;
- }
- $i++;
- }
- return $array;
- }
- else
- {
- $this->error=$this->db->error()." - sql=$sqlSourceLine";
- return -1;
- }
- }
- /**
- * Set the planned delivery date
- *
- * @param User $user Objet utilisateur qui modifie
- * @param timestamp $date_livraison Date de livraison
- * @return int <0 if KO, >0 if OK
- */
- function set_date_livraison($user, $date_livraison)
- {
- if ($user->rights->expedition->creer)
- {
- $sql = "UPDATE ".MAIN_DB_PREFIX."livraison";
- $sql.= " SET date_delivery = ".($date_livraison ? "'".$this->db->idate($date_livraison)."'" : 'null');
- $sql.= " WHERE rowid = ".$this->id;
- dol_syslog(get_class($this)."::set_date_livraison", LOG_DEBUG);
- $resql=$this->db->query($sql);
- if ($resql)
- {
- $this->date_delivery = $date_livraison;
- return 1;
- }
- else
- {
- $this->error=$this->db->error();
- return -1;
- }
- }
- else
- {
- return -2;
- }
- }
- /**
- * Create object on disk
- *
- * @param string $modele force le modele a utiliser ('' to not force)
- * @param Translate $outputlangs Object langs to use for output
- * @param int $hidedetails Hide details of lines
- * @param int $hidedesc Hide description
- * @param int $hideref Hide ref
- * @return int 0 if KO, 1 if OK
- */
- public function generateDocument($modele, $outputlangs='',$hidedetails=0,$hidedesc=0,$hideref=0)
- {
- global $conf,$user,$langs;
- $langs->load("deliveries");
- // Positionne modele sur le nom du modele de bon de livraison a utiliser
- if (! dol_strlen($modele))
- {
- if (! empty($conf->global->LIVRAISON_ADDON_PDF))
- {
- $modele = $conf->global->LIVRAISON_ADDON_PDF;
- }
- else
- {
- $modele = 'typhon';
- }
- }
- $modelpath = "core/modules/livraison/doc/";
- return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref);
- }
- /**
- * Function used to replace a thirdparty id with another one.
- *
- * @param DoliDB $db Database handler
- * @param int $origin_id Old thirdparty id
- * @param int $dest_id New thirdparty id
- * @return bool
- */
- public static function replaceThirdparty(DoliDB $db, $origin_id, $dest_id)
- {
- $tables = array(
- 'livraison'
- );
- return CommonObject::commonReplaceThirdparty($db, $origin_id, $dest_id, $tables);
- }
- }
- /**
- * Classe de gestion des lignes de bons de livraison
- */
- class LivraisonLigne extends CommonObjectLine
- {
- var $db;
-
- // From llx_expeditiondet
- var $qty;
- var $qty_asked;
- var $qty_shipped;
- var $price;
- var $fk_product;
- var $origin_id;
- var $label; // Label produit
- var $description; // Description produit
- /**
- * @deprecated
- * @see product_ref
- */
- var $ref;
- /**
- * @deprecated
- * @see product_label;
- */
- var $libelle;
- public $product_ref;
- public $product_label;
-
- public $element='livraisondet';
- public $table_element='livraisondet';
- /**
- * Constructor
- *
- * @param DoliDB $db Database handler
- */
- function __construct($db)
- {
- $this->db=$db;
- }
- }
|