2005-09-15 02:37:03 +02:00
< ? php
2006-12-01 22:35:44 +01:00
/* Copyright ( C ) 2003 - 2006 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2012-08-05 21:30:40 +02:00
* Copyright ( C ) 2004 - 2012 Laurent Destailleur < eldy @ users . sourceforge . net >
2018-10-27 14:43:12 +02:00
* Copyright ( C ) 2005 - 2014 Regis Houssin < regis . houssin @ inodbox . com >
2006-02-12 09:54:15 +01:00
* Copyright ( C ) 2006 Andre Cianfarani < acianfa @ free . fr >
2016-05-06 22:30:34 +02:00
* Copyright ( C ) 2010 - 2016 Juanjo Menent < jmenent @ 2 byte . es >
2011-05-21 09:12:21 +02:00
* Copyright ( C ) 2011 Jean Heimburger < jean @ tiaris . info >
2014-09-24 11:47:34 +02:00
* Copyright ( C ) 2012 - 2014 Christophe Battarel < christophe . battarel @ altairis . fr >
2015-02-26 14:15:33 +01:00
* Copyright ( C ) 2012 Cedric Salvador < csalvador @ gpcsolutions . fr >
2013-09-10 11:04:36 +02:00
* Copyright ( C ) 2013 Florian Henry < florian . henry @ open - concept . pro >
2015-02-15 15:07:24 +01:00
* Copyright ( C ) 2014 - 2015 Marcos GarcÃa < marcosgdf @ gmail . com >
2018-06-15 09:47:28 +02:00
* Copyright ( C ) 2018 Nicolas ZABOURI < info @ inovea - conseil . com >
2018-11-27 11:36:31 +01:00
* Copyright ( C ) 2016 - 2018 Ferran Marcet < fmarcet @ 2 byte . es >
2005-09-15 02:37:03 +02:00
*
* This program is free software ; you can redistribute it and / or modify
2014-08-18 20:23:06 +02:00
* it under the terms of the GNU General Public License as published by
2013-01-16 15:36:08 +01:00
* the Free Software Foundation ; either version 3 of the License , or
2005-09-15 02:37:03 +02:00
* ( 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
2019-09-23 21:55:30 +02:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2005-09-15 02:37:03 +02:00
*/
2008-08-07 22:29:46 +02:00
2005-09-15 02:37:03 +02:00
/**
2010-04-27 10:13:42 +02:00
* \file htdocs / commande / class / commande . class . php
2008-08-07 22:29:46 +02:00
* \ingroup commande
* \brief Fichier des classes de commandes
*/
2019-11-13 19:37:08 +01:00
include_once DOL_DOCUMENT_ROOT . '/core/class/commonorder.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/commonobjectline.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/product/class/product.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/margin/lib/margins.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/multicurrency/class/multicurrency.class.php' ;
2008-08-07 22:29:46 +02:00
2005-09-15 02:37:03 +02:00
/**
2012-08-05 21:30:40 +02:00
* Class to manage customers orders
2008-08-07 22:29:46 +02:00
*/
2012-07-11 18:13:41 +02:00
class Commande extends CommonOrder
2005-09-15 02:37:03 +02:00
{
2018-08-30 09:40:04 +02:00
/**
2018-08-23 17:07:27 +02:00
* @ var string ID to identify managed object
*/
2019-11-13 19:37:08 +01:00
public $element = 'commande' ;
2018-08-30 09:40:04 +02:00
/**
2018-08-22 18:12:44 +02:00
* @ var string Name of table without prefix where object is stored
*/
2019-11-13 19:37:08 +01:00
public $table_element = 'commande' ;
2018-08-30 09:40:04 +02:00
2018-09-02 11:08:41 +02:00
/**
2019-11-02 09:27:06 +01:00
* @ var string Name of subtable line
2018-09-02 11:08:41 +02:00
*/
2018-08-30 09:40:04 +02:00
public $table_element_line = 'commandedet' ;
2018-09-02 11:08:41 +02:00
2019-11-02 09:27:06 +01:00
/**
* @ var string Name of class line
*/
2018-08-30 09:40:04 +02:00
public $class_element_line = 'OrderLine' ;
2018-09-01 15:13:59 +02:00
/**
2019-11-02 09:27:06 +01:00
* @ var string Field name with ID of parent key if this field has a parent
2018-09-01 15:13:59 +02:00
*/
2018-08-30 09:40:04 +02:00
public $fk_element = 'fk_commande' ;
2018-09-01 15:13:59 +02:00
2018-09-05 10:31:12 +02:00
/**
2019-11-02 09:27:06 +01:00
* @ var string String with name of icon for commande class . Here is object_order . png
2018-09-05 10:31:12 +02:00
*/
2018-08-30 09:40:04 +02:00
public $picto = 'order' ;
2018-09-02 11:08:41 +02:00
2018-08-30 09:40:04 +02:00
/**
* 0 = No test on entity , 1 = Test with field entity , 2 = Test with link by societe
* @ var int
*/
public $ismultientitymanaged = 1 ;
2018-09-02 11:08:41 +02:00
2018-08-30 09:40:04 +02:00
/**
* 0 = Default , 1 = View may be restricted to sales representative only if no permission to see all or to company of external user if external user
* @ var integer
*/
public $restrictiononfksoc = 1 ;
/**
* { @ inheritdoc }
*/
protected $table_ref_field = 'ref' ;
2014-12-25 21:47:39 +01:00
2015-04-03 05:18:47 +02:00
/**
2019-11-02 09:27:06 +01:00
* @ var int Thirparty ID
2015-04-03 05:18:47 +02:00
*/
2018-08-30 09:40:04 +02:00
public $socid ;
2015-04-03 05:18:47 +02:00
2019-11-02 09:27:06 +01:00
/**
* @ var string Thirparty ref of order
*/
2018-08-30 09:40:04 +02:00
public $ref_client ;
2019-11-02 09:27:06 +01:00
/**
* @ var string Internal ref for order
2020-03-06 14:38:06 +01:00
* @ deprecated
2019-11-02 09:27:06 +01:00
*/
2018-08-30 09:40:04 +02:00
public $ref_int ;
2019-11-02 09:27:06 +01:00
/**
* @ var int Contact ID
*/
2018-08-30 09:40:04 +02:00
public $contactid ;
2015-04-01 16:33:39 +02:00
2015-03-15 11:48:57 +01:00
/**
2017-07-13 12:42:32 +02:00
* Status of the order
2015-03-15 11:48:57 +01:00
* @ var int
*/
2018-08-30 09:40:04 +02:00
public $statut ;
2018-09-02 11:08:41 +02:00
2015-03-15 11:48:57 +01:00
/**
2019-11-02 09:27:06 +01:00
* @ var int Status Billed or not
2015-03-15 11:48:57 +01:00
*/
2019-11-02 09:27:06 +01:00
public $billed ;
2018-08-30 09:40:04 +02:00
2018-10-27 09:51:19 +02:00
/**
* @ var int Draft Status of the order
*/
2016-07-08 21:28:21 +02:00
public $brouillon ;
public $cond_reglement_code ;
2018-08-30 09:40:04 +02:00
2018-10-09 09:40:00 +02:00
/**
2019-11-02 09:27:06 +01:00
* @ var int bank account ID
2018-10-09 09:40:00 +02:00
*/
2018-08-30 09:40:04 +02:00
public $fk_account ;
/**
2019-11-02 09:27:06 +01:00
* @ var string It holds the label of the payment mode . Use it in case translation cannot be found .
2018-08-30 09:40:04 +02:00
*/
public $mode_reglement ;
/**
2019-11-02 09:27:06 +01:00
* @ var int Payment mode id
2018-08-30 09:40:04 +02:00
*/
public $mode_reglement_id ;
2018-09-02 11:08:41 +02:00
2018-08-30 09:40:04 +02:00
/**
2019-11-02 09:27:06 +01:00
* @ var string Payment mode code
2018-08-30 09:40:04 +02:00
*/
public $mode_reglement_code ;
2018-09-02 11:08:41 +02:00
2018-08-30 09:40:04 +02:00
/**
* Availability delivery time id
* @ var int
*/
public $availability_id ;
2018-09-02 11:08:41 +02:00
2018-08-30 09:40:04 +02:00
/**
* Availability delivery time code
* @ var string
*/
public $availability_code ;
2018-09-02 11:08:41 +02:00
2018-08-30 09:40:04 +02:00
/**
* Label of availability delivery time . Use it in case translation cannot be found .
* @ var string
*/
public $availability ;
2020-01-30 01:48:28 +01:00
public $demand_reason_id ; // Source reason. Why we receive order (after a phone campaign, ...)
2018-08-30 09:40:04 +02:00
public $demand_reason_code ;
2019-11-02 09:27:06 +01:00
/**
* @ var int Date of order
*/
public $date ;
2015-12-27 13:10:33 +01:00
2015-04-23 23:21:06 +02:00
/**
2019-11-02 09:27:06 +01:00
* @ var int Date of order
2015-04-23 23:21:06 +02:00
* @ deprecated
2019-04-08 16:04:15 +02:00
* @ see $date
2015-04-23 23:21:06 +02:00
*/
2018-08-30 09:40:04 +02:00
public $date_commande ;
2018-09-02 11:08:41 +02:00
2019-11-13 19:37:08 +01:00
public $date_livraison ; // Date expected of shipment (date starting shipment, not the reception that occurs some days after)
2018-10-09 09:40:00 +02:00
/**
* @ var int ID
*/
2018-08-30 09:40:04 +02:00
public $fk_remise_except ;
2018-10-09 09:40:00 +02:00
2018-08-30 09:40:04 +02:00
public $remise_percent ;
public $remise_absolue ;
public $info_bits ;
public $rang ;
public $special_code ;
2019-11-13 19:37:08 +01:00
public $source ; // Order mode. How we received order (by phone, by email, ...)
public $extraparams = array ();
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
public $linked_objects = array ();
2018-08-30 09:40:04 +02:00
2019-11-02 09:27:06 +01:00
/**
* @ var int User author ID
*/
2018-08-30 09:40:04 +02:00
public $user_author_id ;
2019-11-02 09:27:06 +01:00
/**
* @ var int User validator ID
*/
2018-08-30 09:40:04 +02:00
public $user_valid ;
2011-09-12 19:08:02 +02:00
2015-03-23 01:39:12 +01:00
/**
* @ var OrderLine []
*/
2016-07-08 21:28:21 +02:00
public $lines = array ();
2011-09-12 19:08:02 +02:00
2016-01-23 00:38:17 +01:00
// Multicurrency
2018-10-09 09:40:00 +02:00
/**
2019-11-02 09:27:06 +01:00
* @ var int Currency ID
2018-10-09 09:40:00 +02:00
*/
2016-07-08 21:28:21 +02:00
public $fk_multicurrency ;
2018-10-09 09:40:00 +02:00
2016-07-08 21:28:21 +02:00
public $multicurrency_code ;
public $multicurrency_tx ;
public $multicurrency_total_ht ;
public $multicurrency_total_tva ;
public $multicurrency_total_ttc ;
2016-07-08 18:30:50 +02:00
2019-11-02 09:27:06 +01:00
/**
* @ var Commande clone of order object
*/
2016-07-08 21:28:21 +02:00
public $oldcopy ;
2019-02-25 00:56:48 +01:00
2019-02-20 12:29:47 +01:00
//! key of module source when order generated from a dedicated module ('cashdesk', 'takepos', ...)
public $module_source ;
//! key of pos source ('0', '1', ...)
public $pos_source ;
2019-02-25 00:56:48 +01:00
2020-03-04 00:47:03 +01:00
/**
* 'type' if the field format ( 'integer' , 'integer:ObjectClass:PathToClass[:AddCreateButtonOrNot[:Filter]]' , 'varchar(x)' , 'double(24,8)' , 'real' , 'price' , 'text' , 'html' , 'date' , 'datetime' , 'timestamp' , 'duration' , 'mail' , 'phone' , 'url' , 'password' )
* Note : Filter can be a string like " (t.ref:like:'SO-%') or (t.date_creation:<:'20160101') or (t.nature:is:NULL) "
* 'label' the translation key .
* 'enabled' is a condition when the field must be managed .
* 'position' is the sort order of field .
* 'notnull' is set to 1 if not null in database . Set to - 1 if we must set data to null if empty ( '' or 0 ) .
* 'visible' says if field is visible in list ( Examples : 0 = Not visible , 1 = Visible on list and create / update / view forms , 2 = Visible on list only , 3 = Visible on create / update / view form only ( not list ), 4 = Visible on list and update / view form only ( not create ) . 5 = Visible on list and view only ( not create / not update ) . Using a negative value means field is not shown by default on list but can be selected for viewing )
* 'noteditable' says if field is not editable ( 1 or 0 )
* 'default' is a default value for creation ( can still be overwrote by the Setup of Default Values if field is editable in creation form ) . Note : If default is set to '(PROV)' and field is 'ref' , the default value will be set to '(PROVid)' where id is rowid when a new record is created .
* 'index' if we want an index in database .
* 'foreignkey' => 'tablename.field' if the field is a foreign key ( it is recommanded to name the field fk_ ... ) .
* 'searchall' is 1 if we want to search in this field when making a search from the quick search button .
* 'isameasure' must be set to 1 if you want to have a total on list for this field . Field type must be summable like integer or double ( 24 , 8 ) .
* 'css' is the CSS style to use on field . For example : 'maxwidth200'
* 'help' is a string visible as a tooltip on field
* 'showoncombobox' if value of the field must be visible into the label of the combobox that list record
* 'disabled' is 1 if we want to have the field locked by a 'disabled' attribute . In most cases , this is never set into the definition of $fields into class , but is set dynamically by some part of code .
* 'arraykeyval' to set list of value if type is a list of predefined values . For example : array ( " 0 " => " Draft " , " 1 " => " Active " , " -1 " => " Cancel " )
* 'comment' is not used . You can store here any text of your choice . It is not used by application .
*
* Note : To have value dynamic , you can set value to 0 in definition and edit the value on the fly into the constructor .
*/
// BEGIN MODULEBUILDER PROPERTIES
/**
* @ var array Array with all fields and their property . Do not use it as a static var . It may be modified by constructor .
*/
2020-03-12 12:45:44 +01:00
public $fields = array (
2020-03-04 00:47:03 +01:00
'rowid' => array ( 'type' => 'integer' , 'label' => 'TechnicalID' , 'enabled' => 1 , 'visible' =>- 1 , 'notnull' => 1 , 'position' => 10 ),
2020-03-08 19:25:00 +01:00
'entity' => array ( 'type' => 'integer' , 'label' => 'Entity' , 'default' => 1 , 'enabled' => 1 , 'visible' =>- 2 , 'notnull' => 1 , 'position' => 20 , 'index' => 1 ),
'ref' => array ( 'type' => 'varchar(30)' , 'label' => 'Ref' , 'enabled' => 1 , 'visible' =>- 1 , 'notnull' => 1 , 'showoncombobox' => 1 , 'position' => 25 ),
'ref_ext' => array ( 'type' => 'varchar(255)' , 'label' => 'RefExt' , 'enabled' => 1 , 'visible' => 0 , 'position' => 26 ),
2020-03-12 12:45:44 +01:00
'ref_int' => array ( 'type' => 'varchar(255)' , 'label' => 'RefInt' , 'enabled' => 1 , 'visible' => 0 , 'position' => 27 ), // deprecated
2020-03-08 19:25:00 +01:00
'ref_client' => array ( 'type' => 'varchar(255)' , 'label' => 'RefCustomer' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 28 ),
2020-03-04 00:47:03 +01:00
'fk_soc' => array ( 'type' => 'integer:Societe:societe/class/societe.class.php' , 'label' => 'ThirdParty' , 'enabled' => 1 , 'visible' =>- 1 , 'notnull' => 1 , 'position' => 20 ),
2020-03-08 19:25:00 +01:00
'fk_projet' => array ( 'type' => 'integer:Project:projet/class/project.class.php:1:fk_statut=1' , 'label' => 'Project' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 25 ),
'date_creation' => array ( 'type' => 'datetime' , 'label' => 'DateCreation' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 55 ),
'tms' => array ( 'type' => 'timestamp' , 'label' => 'DateModification' , 'enabled' => 1 , 'visible' =>- 1 , 'notnull' => 1 , 'position' => 56 ),
2020-03-04 00:47:03 +01:00
'date_valid' => array ( 'type' => 'datetime' , 'label' => 'DateValidation' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 60 ),
2020-03-08 19:25:00 +01:00
'date_cloture' => array ( 'type' => 'datetime' , 'label' => 'DateClosing' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 65 ),
'date_commande' => array ( 'type' => 'date' , 'label' => 'Date' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 70 ),
'fk_user_author' => array ( 'type' => 'integer:User:user/class/user.class.php' , 'label' => 'UserAuthor' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 75 ),
2020-03-04 00:47:03 +01:00
'fk_user_modif' => array ( 'type' => 'integer:User:user/class/user.class.php' , 'label' => 'UserModif' , 'enabled' => 1 , 'visible' =>- 2 , 'notnull' =>- 1 , 'position' => 80 ),
'fk_user_valid' => array ( 'type' => 'integer:User:user/class/user.class.php' , 'label' => 'UserValidation' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 85 ),
2020-03-08 19:25:00 +01:00
'fk_user_cloture' => array ( 'type' => 'integer:User:user/class/user.class.php' , 'label' => 'UserClosing' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 90 ),
2020-03-04 00:47:03 +01:00
'source' => array ( 'type' => 'smallint(6)' , 'label' => 'Source' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 95 ),
2020-03-08 19:25:00 +01:00
//'amount_ht' =>array('type'=>'double(24,8)', 'label'=>'AmountHT', 'enabled'=>1, 'visible'=>-1, 'position'=>105),
'remise_percent' => array ( 'type' => 'double' , 'label' => 'RelativeDiscount' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 110 ),
'remise_absolue' => array ( 'type' => 'double' , 'label' => 'CustomerRelativeDiscount' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 115 ),
2020-03-08 20:10:31 +01:00
//'remise' =>array('type'=>'double', 'label'=>'Remise', 'enabled'=>1, 'visible'=>-1, 'position'=>120),
'tva' => array ( 'type' => 'double(24,8)' , 'label' => 'VAT' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 125 , 'isameasure' => 1 ),
'localtax1' => array ( 'type' => 'double(24,8)' , 'label' => 'LocalTax1' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 130 , 'isameasure' => 1 ),
'localtax2' => array ( 'type' => 'double(24,8)' , 'label' => 'LocalTax2' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 135 , 'isameasure' => 1 ),
'total_ht' => array ( 'type' => 'double(24,8)' , 'label' => 'TotalHT' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 140 , 'isameasure' => 1 ),
'total_ttc' => array ( 'type' => 'double(24,8)' , 'label' => 'TotalTTC' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 145 , 'isameasure' => 1 ),
2020-03-04 00:47:03 +01:00
'note_private' => array ( 'type' => 'text' , 'label' => 'NotePublic' , 'enabled' => 1 , 'visible' => 0 , 'position' => 150 ),
'note_public' => array ( 'type' => 'text' , 'label' => 'NotePrivate' , 'enabled' => 1 , 'visible' => 0 , 'position' => 155 ),
2020-03-08 19:25:00 +01:00
'model_pdf' => array ( 'type' => 'varchar(255)' , 'label' => 'PDFTemplate' , 'enabled' => 1 , 'visible' => 0 , 'position' => 160 ),
2020-03-08 20:10:31 +01:00
//'facture' =>array('type'=>'tinyint(4)', 'label'=>'ParentInvoice', 'enabled'=>1, 'visible'=>-1, 'position'=>165),
2020-03-08 19:25:00 +01:00
'fk_account' => array ( 'type' => 'integer' , 'label' => 'BankAccount' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 170 ),
'fk_currency' => array ( 'type' => 'varchar(3)' , 'label' => 'MulticurrencyID' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 175 ),
'fk_cond_reglement' => array ( 'type' => 'integer' , 'label' => 'PaymentTerm' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 180 ),
'fk_mode_reglement' => array ( 'type' => 'integer' , 'label' => 'PaymentMode' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 185 ),
2020-03-08 20:10:31 +01:00
'date_livraison' => array ( 'type' => 'date' , 'label' => 'DateDeliveryPlanned' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 190 ),
'fk_shipping_method' => array ( 'type' => 'integer' , 'label' => 'ShippingMethod' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 195 ),
2020-03-04 00:47:03 +01:00
'fk_warehouse' => array ( 'type' => 'integer:Entrepot:product/stock/class/entrepot.class.php' , 'label' => 'Fk warehouse' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 200 ),
2020-03-08 19:25:00 +01:00
'fk_availability' => array ( 'type' => 'integer' , 'label' => 'Availability' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 205 ),
'fk_input_reason' => array ( 'type' => 'integer' , 'label' => 'InputReason' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 210 ),
//'fk_delivery_address' =>array('type'=>'integer', 'label'=>'DeliveryAddress', 'enabled'=>1, 'visible'=>-1, 'position'=>215),
2020-03-04 00:47:03 +01:00
'extraparams' => array ( 'type' => 'varchar(255)' , 'label' => 'Extraparams' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 225 ),
2020-03-08 20:10:31 +01:00
'fk_incoterms' => array ( 'type' => 'integer' , 'label' => 'IncotermCode' , 'enabled' => '$conf->incoterm->enabled' , 'visible' =>- 1 , 'position' => 230 ),
'location_incoterms' => array ( 'type' => 'varchar(255)' , 'label' => 'IncotermLabel' , 'enabled' => '$conf->incoterm->enabled' , 'visible' =>- 1 , 'position' => 235 ),
'fk_multicurrency' => array ( 'type' => 'integer' , 'label' => 'Fk multicurrency' , 'enabled' => '$conf->multicurrency->enabled' , 'visible' =>- 1 , 'position' => 240 ),
'multicurrency_code' => array ( 'type' => 'varchar(255)' , 'label' => 'MulticurrencyCurrency' , 'enabled' => '$conf->multicurrency->enabled' , 'visible' =>- 1 , 'position' => 245 ),
'multicurrency_tx' => array ( 'type' => 'double(24,8)' , 'label' => 'MulticurrencyRate' , 'enabled' => '$conf->multicurrency->enabled' , 'visible' =>- 1 , 'position' => 250 , 'isameasure' => 1 ),
'multicurrency_total_ht' => array ( 'type' => 'double(24,8)' , 'label' => 'MulticurrencyAmountHT' , 'enabled' => '$conf->multicurrency->enabled' , 'visible' =>- 1 , 'position' => 255 , 'isameasure' => 1 ),
'multicurrency_total_tva' => array ( 'type' => 'double(24,8)' , 'label' => 'MulticurrencyAmountVAT' , 'enabled' => '$conf->multicurrency->enabled' , 'visible' =>- 1 , 'position' => 260 , 'isameasure' => 1 ),
'multicurrency_total_ttc' => array ( 'type' => 'double(24,8)' , 'label' => 'MulticurrencyAmountTTC' , 'enabled' => '$conf->multicurrency->enabled' , 'visible' =>- 1 , 'position' => 265 , 'isameasure' => 1 ),
2020-03-08 19:25:00 +01:00
'last_main_doc' => array ( 'type' => 'varchar(255)' , 'label' => 'LastMainDoc' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 270 ),
'module_source' => array ( 'type' => 'varchar(32)' , 'label' => 'POSModule' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 275 ),
'pos_source' => array ( 'type' => 'varchar(32)' , 'label' => 'POSTerminal' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 280 ),
'fk_statut' => array ( 'type' => 'smallint(6)' , 'label' => 'Status' , 'enabled' => 1 , 'visible' =>- 1 , 'position' => 500 ),
'import_key' => array ( 'type' => 'varchar(14)' , 'label' => 'ImportId' , 'enabled' => 1 , 'visible' =>- 2 , 'position' => 900 ),
2020-03-04 00:47:03 +01:00
);
// END MODULEBUILDER PROPERTIES
2018-08-30 09:40:04 +02:00
/**
* ERR Not enough stock
*/
const STOCK_NOT_ENOUGH_FOR_ORDER = - 3 ;
2011-09-12 19:08:02 +02:00
2015-04-03 05:18:47 +02:00
/**
* Canceled status
*/
const STATUS_CANCELED = - 1 ;
/**
* Draft status
*/
const STATUS_DRAFT = 0 ;
/**
* Validated status
*/
const STATUS_VALIDATED = 1 ;
/**
2017-10-07 13:04:31 +02:00
* Shipment on process
2016-04-01 16:59:08 +02:00
*/
const STATUS_SHIPMENTONPROCESS = 2 ;
2019-11-13 19:37:08 +01:00
const STATUS_ACCEPTED = 2 ; // For backward compatibility. Use key STATUS_SHIPMENTONPROCESS instead.
2017-10-11 11:36:24 +02:00
2015-04-03 05:18:47 +02:00
/**
2017-10-07 13:04:31 +02:00
* Closed ( Sent , billed or not )
2015-04-03 05:18:47 +02:00
*/
const STATUS_CLOSED = 3 ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
/**
* Constructor
*
* @ param DoliDB $db Database handler
*/
2019-02-25 00:56:48 +01:00
public function __construct ( $db )
2018-08-30 09:40:04 +02:00
{
$this -> db = $db ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
$this -> remise = 0 ;
$this -> remise_percent = 0 ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
$this -> products = array ();
}
2012-02-06 17:18:19 +01:00
2018-08-30 09:40:04 +02:00
/**
2011-12-16 12:47:23 +01:00
* Returns the reference to the following non used Order depending on the active numbering module
* defined into COMMANDE_ADDON
*
* @ param Societe $soc Object thirdparty
* @ return string Order free reference
*/
2019-02-25 00:56:48 +01:00
public function getNextNumRef ( $soc )
2018-08-30 09:40:04 +02:00
{
global $langs , $conf ;
$langs -> load ( " order " );
2011-09-12 19:08:02 +02:00
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> global -> COMMANDE_ADDON ))
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$mybool = false ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
$file = $conf -> global -> COMMANDE_ADDON . " .php " ;
2015-01-18 17:13:42 +01:00
$classname = $conf -> global -> COMMANDE_ADDON ;
2015-01-17 18:58:05 +01:00
2015-01-18 17:13:42 +01:00
// Include file with class
2019-11-13 19:37:08 +01:00
$dirmodels = array_merge ( array ( '/' ), ( array ) $conf -> modules_parts [ 'models' ]);
2015-01-18 17:13:42 +01:00
foreach ( $dirmodels as $reldir )
{
2018-08-30 09:40:04 +02:00
$dir = dol_buildpath ( $reldir . " core/modules/commande/ " );
// Load file with numbering class (if found)
2019-11-13 19:37:08 +01:00
$mybool |= @ include_once $dir . $file ;
2018-08-30 09:40:04 +02:00
}
2018-10-27 09:51:19 +02:00
if ( $mybool === false )
2013-07-07 13:17:48 +02:00
{
2019-01-27 11:55:16 +01:00
dol_print_error ( '' , " Failed to include file " . $file );
2015-01-17 18:58:05 +01:00
return '' ;
2013-07-07 03:26:51 +02:00
}
2018-08-30 09:40:04 +02:00
$obj = new $classname ();
2019-01-27 11:55:16 +01:00
$numref = $obj -> getNextValue ( $soc , $this );
2018-08-30 09:40:04 +02:00
if ( $numref != " " )
{
return $numref ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $obj -> error ;
2018-08-30 09:40:04 +02:00
//dol_print_error($this->db,get_class($this)."::getNextNumRef ".$obj->error);
return " " ;
}
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
print $langs -> trans ( " Error " ) . " " . $langs -> trans ( " Error_COMMANDE_ADDON_NotDefined " );
return " " ;
}
}
/**
* Validate order
*
* @ param User $user User making status change
* @ param int $idwarehouse Id of warehouse to use for stock decrease
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
* @ return int <= 0 if OK , 0 = Nothing done , > 0 if KO
*/
2019-02-25 00:56:48 +01:00
public function valid ( $user , $idwarehouse = 0 , $notrigger = 0 )
2012-07-06 13:43:59 +02:00
{
2020-01-30 01:48:28 +01:00
global $conf , $langs ;
2019-07-28 22:26:55 +02:00
2018-08-30 09:40:04 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2012-07-06 13:43:59 +02:00
2020-01-30 01:48:28 +01:00
$error = 0 ;
2012-07-06 13:43:59 +02:00
2018-08-30 09:40:04 +02:00
// Protection
if ( $this -> statut == self :: STATUS_VALIDATED )
{
dol_syslog ( get_class ( $this ) . " ::valid action abandonned: already validated " , LOG_WARNING );
return 0 ;
}
2019-11-13 19:37:08 +01:00
if ( ! (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> creer ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> order_advance -> validate ))))
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> error = 'NotEnoughPermissions' ;
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::valid " . $this -> error , LOG_ERR );
return - 1 ;
}
2019-11-13 19:37:08 +01:00
$now = dol_now ();
2018-08-30 09:40:04 +02:00
2012-07-06 13:43:59 +02:00
$this -> db -> begin ();
2018-08-30 09:40:04 +02:00
// Definition du nom de module de numerotation de commande
$soc = new Societe ( $this -> db );
$soc -> fetch ( $this -> socid );
// Class of company linked to order
2019-11-13 19:37:08 +01:00
$result = $soc -> set_as_client ();
2018-08-30 09:40:04 +02:00
// Define new ref
2019-11-13 19:37:08 +01:00
if ( ! $error && ( preg_match ( '/^[\(]?PROV/i' , $this -> ref ) || empty ( $this -> ref ))) // empty should not happened, but when it occurs, the test save life
2018-08-30 09:40:04 +02:00
{
$num = $this -> getNextNumRef ( $soc );
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$num = $this -> ref ;
}
2020-03-03 11:49:17 +01:00
$this -> newref = dol_sanitizeFileName ( $num );
2018-08-30 09:40:04 +02:00
// Validate
2012-07-06 13:43:59 +02:00
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande " ;
2020-01-30 01:48:28 +01:00
$sql .= " SET ref = ' " . $this -> db -> escape ( $num ) . " ', " ;
$sql .= " fk_statut = " . self :: STATUS_VALIDATED . " , " ;
$sql .= " date_valid=' " . $this -> db -> idate ( $now ) . " ', " ;
$sql .= " fk_user_valid = " . $user -> id ;
$sql .= " WHERE rowid = " . $this -> id ;
2012-07-06 13:43:59 +02:00
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::valid() " , LOG_DEBUG );
2020-01-30 01:48:28 +01:00
$resql = $this -> db -> query ( $sql );
if ( ! $resql )
2012-07-06 13:43:59 +02:00
{
2018-08-30 09:40:04 +02:00
dol_print_error ( $this -> db );
2020-01-30 01:48:28 +01:00
$this -> error = $this -> db -> lasterror ();
2018-08-30 09:40:04 +02:00
$error ++ ;
}
2020-01-30 01:48:28 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
// If stock is incremented on validate order, we must increment it
2020-01-30 01:48:28 +01:00
if ( $result >= 0 && ! empty ( $conf -> stock -> enabled ) && $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER == 1 )
2012-07-06 13:43:59 +02:00
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/product/stock/class/mouvementstock.class.php' ;
2012-07-06 13:43:59 +02:00
$langs -> load ( " agenda " );
2018-08-30 09:40:04 +02:00
// Loop on each line
2020-01-30 01:48:28 +01:00
$cpt = count ( $this -> lines );
2018-08-30 09:40:04 +02:00
for ( $i = 0 ; $i < $cpt ; $i ++ )
2012-07-06 13:43:59 +02:00
{
if ( $this -> lines [ $i ] -> fk_product > 0 )
{
$mouvP = new MouvementStock ( $this -> db );
2018-08-30 09:40:04 +02:00
$mouvP -> origin = & $this ;
// We decrement stock of product (and sub-products)
2019-11-13 19:37:08 +01:00
$result = $mouvP -> livraison ( $user , $this -> lines [ $i ] -> fk_product , $idwarehouse , $this -> lines [ $i ] -> qty , $this -> lines [ $i ] -> subprice , $langs -> trans ( " OrderValidatedInDolibarr " , $num ));
2014-08-01 14:26:13 +02:00
if ( $result < 0 )
2014-07-11 14:02:21 +02:00
{
2012-07-06 13:43:59 +02:00
$error ++ ;
2019-11-13 19:37:08 +01:00
$this -> error = $mouvP -> error ;
2012-07-06 13:43:59 +02:00
}
}
2018-08-30 09:40:04 +02:00
if ( $error ) break ;
2012-07-06 13:43:59 +02:00
}
}
2018-08-30 09:40:04 +02:00
}
2012-07-06 13:43:59 +02:00
2019-11-13 19:37:08 +01:00
if ( ! $error && ! $notrigger )
2018-08-30 09:40:04 +02:00
{
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_VALIDATE' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
2012-07-06 13:43:59 +02:00
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> oldref = $this -> ref ;
// Rename directory if dir was a temporary ref
if ( preg_match ( '/^[\(]?PROV/i' , $this -> ref ))
2012-07-06 13:43:59 +02:00
{
2019-07-28 22:26:55 +02:00
// Now we rename also files into index
2020-01-30 01:48:28 +01:00
$sql = 'UPDATE ' . MAIN_DB_PREFIX . " ecm_files set filename = CONCAT(' " . $this -> db -> escape ( $this -> newref ) . " ', SUBSTR(filename, " . ( strlen ( $this -> ref ) + 1 ) . " )), filepath = 'commande/ " . $this -> db -> escape ( $this -> newref ) . " ' " ;
$sql .= " WHERE filename LIKE ' " . $this -> db -> escape ( $this -> ref ) . " %' AND filepath = 'commande/ " . $this -> db -> escape ( $this -> ref ) . " ' and entity = " . $conf -> entity ;
2019-07-28 22:26:55 +02:00
$resql = $this -> db -> query ( $sql );
2020-01-30 01:48:28 +01:00
if ( ! $resql ) { $error ++ ; $this -> error = $this -> db -> lasterror (); }
2019-07-28 22:26:55 +02:00
// We rename directory ($this->ref = old ref, $num = new ref) in order not to lose the attachments
2018-08-30 09:40:04 +02:00
$oldref = dol_sanitizeFileName ( $this -> ref );
$newref = dol_sanitizeFileName ( $num );
2019-05-12 14:25:41 +02:00
$dirsource = $conf -> commande -> multidir_output [ $this -> entity ] . '/' . $oldref ;
$dirdest = $conf -> commande -> multidir_output [ $this -> entity ] . '/' . $newref ;
2020-01-30 01:48:28 +01:00
if ( ! $error && file_exists ( $dirsource ))
2014-06-14 12:30:48 +02:00
{
2018-08-30 09:40:04 +02:00
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
2020-01-30 01:48:28 +01:00
$listoffiles = dol_dir_list ( $conf -> commande -> multidir_output [ $this -> entity ] . '/' . $newref , 'files' , 1 , '^' . preg_quote ( $oldref , '/' ));
foreach ( $listoffiles as $fileentry )
2018-08-30 09:40:04 +02:00
{
2020-01-30 01:48:28 +01:00
$dirsource = $fileentry [ 'name' ];
$dirdest = preg_replace ( '/^' . preg_quote ( $oldref , '/' ) . '/' , $newref , $dirsource );
$dirsource = $fileentry [ 'path' ] . '/' . $dirsource ;
$dirdest = $fileentry [ 'path' ] . '/' . $dirdest ;
2018-08-30 09:40:04 +02:00
@ rename ( $dirsource , $dirdest );
}
}
2014-06-14 12:30:48 +02:00
}
2012-07-06 13:43:59 +02:00
}
}
2018-08-30 09:40:04 +02:00
// Set new ref and current status
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> ref = $num ;
$this -> statut = self :: STATUS_VALIDATED ;
2018-10-30 14:47:39 +01:00
$this -> brouillon = 0 ;
2018-08-30 09:40:04 +02:00
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2012-07-06 13:43:59 +02:00
$this -> db -> rollback ();
return - 1 ;
}
}
2011-09-12 19:08:02 +02:00
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Set draft status
*
* @ param User $user Object user that modify
* @ param int $idwarehouse Warehouse ID to use for stock change ( Used only if option STOCK_CALCULATE_ON_VALIDATE_ORDER is on )
* @ return int < 0 if KO , > 0 if OK
*/
2019-03-15 19:01:40 +01:00
public function setDraft ( $user , $idwarehouse = - 1 )
2019-02-25 00:56:48 +01:00
{
2018-09-02 09:27:59 +02:00
//phpcs:enable
2019-11-13 19:37:08 +01:00
global $conf , $langs ;
2017-06-09 09:25:15 +02:00
2019-11-13 19:37:08 +01:00
$error = 0 ;
2017-06-09 09:25:15 +02:00
2018-08-30 09:40:04 +02:00
// Protection
if ( $this -> statut <= self :: STATUS_DRAFT )
2016-01-23 00:38:17 +01:00
{
2018-08-30 09:40:04 +02:00
return 0 ;
2016-01-23 00:38:17 +01:00
}
2016-07-08 18:30:50 +02:00
2019-11-13 19:37:08 +01:00
if ( ! (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> creer ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> order_advance -> validate ))))
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> error = 'Permission denied' ;
2018-08-30 09:40:04 +02:00
return - 1 ;
}
2011-09-12 19:08:02 +02:00
2019-05-01 09:38:27 +02:00
dol_syslog ( __METHOD__ , LOG_DEBUG );
2019-03-21 17:37:56 +01:00
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande " ;
2019-11-13 19:37:08 +01:00
$sql .= " SET fk_statut = " . self :: STATUS_DRAFT ;
$sql .= " WHERE rowid = " . $this -> id ;
2018-08-30 09:40:04 +02:00
if ( $this -> db -> query ( $sql ))
{
2019-11-13 19:37:08 +01:00
if ( ! $error )
2019-03-21 17:37:56 +01:00
{
2019-11-13 19:37:08 +01:00
$this -> oldcopy = clone $this ;
2019-03-21 17:37:56 +01:00
}
// If stock is decremented on validate order, we must reincrement it
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> stock -> enabled ) && $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER == 1 )
2018-08-30 09:40:04 +02:00
{
$result = 0 ;
require_once DOL_DOCUMENT_ROOT . '/product/stock/class/mouvementstock.class.php' ;
$langs -> load ( " agenda " );
2017-11-13 13:07:31 +01:00
2019-11-13 19:37:08 +01:00
$num = count ( $this -> lines );
2018-08-30 09:40:04 +02:00
for ( $i = 0 ; $i < $num ; $i ++ )
{
if ( $this -> lines [ $i ] -> fk_product > 0 )
2015-04-03 11:00:52 +02:00
{
2018-08-30 09:40:04 +02:00
$mouvP = new MouvementStock ( $this -> db );
$mouvP -> origin = & $this ;
// We increment stock of product (and sub-products)
2019-11-13 19:37:08 +01:00
$result = $mouvP -> reception ( $user , $this -> lines [ $i ] -> fk_product , $idwarehouse , $this -> lines [ $i ] -> qty , 0 , $langs -> trans ( " OrderBackToDraftInDolibarr " , $this -> ref ));
if ( $result < 0 ) { $error ++ ; $this -> error = $mouvP -> error ; break ; }
2015-04-03 11:00:52 +02:00
}
2018-08-30 09:40:04 +02:00
}
}
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
if ( ! $error ) {
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_UNVALIDATE' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
}
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
if ( ! $error ) {
2019-11-13 19:37:08 +01:00
$this -> statut = self :: STATUS_DRAFT ;
2018-08-30 09:40:04 +02:00
$this -> db -> commit ();
return 1 ;
2019-11-13 19:37:08 +01:00
} else {
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 1 ;
}
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 1 ;
}
2019-02-28 23:19:58 +01:00
}
2011-09-12 19:08:02 +02:00
2019-02-28 23:19:58 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Tag the order as validated ( opened )
* Function used when order is reopend after being closed .
*
* @ param User $user Object user that change status
* @ return int < 0 if KO , 0 if nothing is done , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function set_reopen ( $user )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2019-11-13 19:37:08 +01:00
$error = 0 ;
2015-02-26 13:03:17 +01:00
2018-08-30 09:40:04 +02:00
if ( $this -> statut != self :: STATUS_CANCELED && $this -> statut != self :: STATUS_CLOSED )
{
dol_syslog ( get_class ( $this ) . " ::set_reopen order has not status closed " , LOG_WARNING );
return 0 ;
}
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
2014-09-24 11:47:34 +02:00
2018-08-30 09:40:04 +02:00
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande' ;
2019-11-13 19:37:08 +01:00
$sql .= ' SET fk_statut=' . self :: STATUS_VALIDATED . ', facture=0' ;
$sql .= ' WHERE rowid = ' . $this -> id ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::set_reopen " , LOG_DEBUG );
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_REOPEN' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$error ++ ;
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> lasterror ();
2018-08-30 09:40:04 +02:00
dol_print_error ( $this -> db );
}
2011-09-12 19:08:02 +02:00
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> statut = self :: STATUS_VALIDATED ;
$this -> billed = 0 ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2018-08-30 09:40:04 +02:00
{
dol_syslog ( get_class ( $this ) . " ::set_reopen " . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2018-08-30 09:40:04 +02:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2018-08-30 09:40:04 +02:00
}
}
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
/**
* Close order
*
* @ param User $user Objet user that close
* @ param int $notrigger 1 = Does not execute triggers , 0 = Execute triggers
* @ return int < 0 if KO , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function cloture ( $user , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
global $conf ;
2011-09-12 19:08:02 +02:00
2020-01-30 01:48:28 +01:00
$error = 0 ;
2015-06-01 11:24:30 +02:00
2020-04-10 11:54:14 +02:00
$usercanclose = (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> creer ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> order_advance -> close )));
if ( $usercanclose )
2018-08-30 09:40:04 +02:00
{
$this -> db -> begin ();
2011-09-12 19:08:02 +02:00
2020-01-30 01:48:28 +01:00
$now = dol_now ();
2015-10-15 12:17:57 +02:00
2019-10-16 01:20:58 +02:00
$sql = 'UPDATE ' . MAIN_DB_PREFIX . $this -> table_element ;
2020-01-30 01:48:28 +01:00
$sql .= ' SET fk_statut = ' . self :: STATUS_CLOSED . ',' ;
$sql .= ' fk_user_cloture = ' . $user -> id . ',' ;
$sql .= " date_cloture = ' " . $this -> db -> idate ( $now ) . " ' " ;
$sql .= ' WHERE rowid = ' . $this -> id . ' AND fk_statut > ' . self :: STATUS_DRAFT ;
2012-07-02 19:30:37 +02:00
2018-08-30 09:40:04 +02:00
if ( $this -> db -> query ( $sql ))
{
2020-01-30 01:48:28 +01:00
if ( ! $notrigger )
2018-08-30 09:40:04 +02:00
{
// Call trigger
2020-01-30 01:48:28 +01:00
$result = $this -> call_trigger ( 'ORDER_CLOSE' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
2020-01-30 01:48:28 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2020-01-30 01:48:28 +01:00
$this -> statut = self :: STATUS_CLOSED ;
2018-08-30 09:40:04 +02:00
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 1 ;
}
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> lasterror ();
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 1 ;
}
}
return 0 ;
}
/**
* Cancel an order
* If stock is decremented on order validation , we must reincrement it
*
* @ param int $idwarehouse Id warehouse to use for stock change .
* @ return int < 0 if KO , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function cancel ( $idwarehouse = - 1 )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
global $conf , $user , $langs ;
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
$error = 0 ;
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande " ;
2019-11-13 19:37:08 +01:00
$sql .= " SET fk_statut = " . self :: STATUS_CANCELED ;
$sql .= " WHERE rowid = " . $this -> id ;
$sql .= " AND fk_statut = " . self :: STATUS_VALIDATED ;
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::cancel " , LOG_DEBUG );
if ( $this -> db -> query ( $sql ))
{
// If stock is decremented on validate order, we must reincrement it
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> stock -> enabled ) && $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER == 1 )
2018-08-30 09:40:04 +02:00
{
require_once DOL_DOCUMENT_ROOT . '/product/stock/class/mouvementstock.class.php' ;
$langs -> load ( " agenda " );
2019-11-13 19:37:08 +01:00
$num = count ( $this -> lines );
2018-08-30 09:40:04 +02:00
for ( $i = 0 ; $i < $num ; $i ++ )
{
if ( $this -> lines [ $i ] -> fk_product > 0 )
{
$mouvP = new MouvementStock ( $this -> db );
// We increment stock of product (and sub-products)
2019-11-13 19:37:08 +01:00
$result = $mouvP -> reception ( $user , $this -> lines [ $i ] -> fk_product , $idwarehouse , $this -> lines [ $i ] -> qty , 0 , $langs -> trans ( " OrderCanceledInDolibarr " , $this -> ref )); // price is 0, we don't want WAP to be changed
2018-08-30 09:40:04 +02:00
if ( $result < 0 )
{
$error ++ ;
2019-11-13 19:37:08 +01:00
$this -> error = $mouvP -> error ;
2018-08-30 09:40:04 +02:00
break ;
}
}
}
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_CANCEL' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> statut = self :: STATUS_CANCELED ;
2018-08-30 09:40:04 +02:00
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2018-08-30 09:40:04 +02:00
{
dol_syslog ( get_class ( $this ) . " ::cancel " . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2018-08-30 09:40:04 +02:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2018-08-30 09:40:04 +02:00
}
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 1 ;
}
}
/**
* Create order
* Note that this -> ref can be set or empty . If empty , we will use " (PROV) "
*
* @ param User $user Objet user that make creation
* @ param int $notrigger Disable all triggers
* @ return int < 0 if KO , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function create ( $user , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
global $conf , $langs ;
$error = 0 ;
2018-08-30 09:40:04 +02:00
// Clean parameters
2019-11-13 19:37:08 +01:00
$this -> brouillon = 1 ; // set command as draft
2018-08-30 09:40:04 +02:00
// $date_commande is deprecated
$date = ( $this -> date_commande ? $this -> date_commande : $this -> date );
// Multicurrency (test on $this->multicurrency_tx because we should take the default rate only if not using origin rate)
2019-11-13 19:37:08 +01:00
if ( ! empty ( $this -> multicurrency_code ) && empty ( $this -> multicurrency_tx )) list ( $this -> fk_multicurrency , $this -> multicurrency_tx ) = MultiCurrency :: getIdAndTxFromCode ( $this -> db , $this -> multicurrency_code , $date );
2018-08-30 09:40:04 +02:00
else $this -> fk_multicurrency = MultiCurrency :: getIdFromCode ( $this -> db , $this -> multicurrency_code );
if ( empty ( $this -> fk_multicurrency ))
{
$this -> multicurrency_code = $conf -> currency ;
$this -> fk_multicurrency = 0 ;
$this -> multicurrency_tx = 1 ;
}
dol_syslog ( get_class ( $this ) . " ::create user= " . $user -> id );
// Check parameters
2019-11-13 19:37:08 +01:00
if ( ! empty ( $this -> ref )) // We check that ref is not already used
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$result = self :: isExistingObject ( $this -> element , 0 , $this -> ref ); // Check ref is not yet used
2018-08-30 09:40:04 +02:00
if ( $result > 0 )
{
2019-11-13 19:37:08 +01:00
$this -> error = 'ErrorRefAlreadyExists' ;
2019-01-27 11:55:16 +01:00
dol_syslog ( get_class ( $this ) . " ::create " . $this -> error , LOG_WARNING );
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 1 ;
}
}
$soc = new Societe ( $this -> db );
2020-01-30 01:48:28 +01:00
$result = $soc -> fetch ( $this -> socid );
2018-08-30 09:40:04 +02:00
if ( $result < 0 )
{
2020-01-30 01:48:28 +01:00
$this -> error = " Failed to fetch company " ;
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::create " . $this -> error , LOG_ERR );
return - 2 ;
}
2020-04-03 12:54:23 +02:00
if ( ! empty ( $conf -> global -> ORDER_REQUIRE_SOURCE ) && $this -> source < 0 )
2018-08-30 09:40:04 +02:00
{
2020-01-30 01:48:28 +01:00
$this -> error = $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Source " ));
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::create " . $this -> error , LOG_ERR );
return - 1 ;
}
2020-01-30 01:48:28 +01:00
$now = dol_now ();
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
$sql = " INSERT INTO " . MAIN_DB_PREFIX . " commande ( " ;
2020-01-30 01:48:28 +01:00
$sql .= " ref, fk_soc, date_creation, fk_user_author, fk_projet, date_commande, source, note_private, note_public, ref_ext, ref_client, ref_int " ;
$sql .= " , model_pdf, fk_cond_reglement, fk_mode_reglement, fk_account, fk_availability, fk_input_reason, date_livraison, fk_delivery_address " ;
$sql .= " , fk_shipping_method " ;
$sql .= " , fk_warehouse " ;
$sql .= " , remise_absolue, remise_percent " ;
$sql .= " , fk_incoterms, location_incoterms " ;
$sql .= " , entity, module_source, pos_source " ;
$sql .= " , fk_multicurrency " ;
$sql .= " , multicurrency_code " ;
$sql .= " , multicurrency_tx " ;
$sql .= " ) " ;
$sql .= " VALUES ('(PROV)', " . $this -> socid . " , ' " . $this -> db -> idate ( $now ) . " ', " . $user -> id ;
$sql .= " , " . ( $this -> fk_project > 0 ? $this -> fk_project : " null " );
$sql .= " , ' " . $this -> db -> idate ( $date ) . " ' " ;
$sql .= " , " . ( $this -> source >= 0 && $this -> source != '' ? $this -> db -> escape ( $this -> source ) : 'null' );
$sql .= " , ' " . $this -> db -> escape ( $this -> note_private ) . " ' " ;
$sql .= " , ' " . $this -> db -> escape ( $this -> note_public ) . " ' " ;
$sql .= " , " . ( $this -> ref_ext ? " ' " . $this -> db -> escape ( $this -> ref_ext ) . " ' " : " null " );
$sql .= " , " . ( $this -> ref_client ? " ' " . $this -> db -> escape ( $this -> ref_client ) . " ' " : " null " );
$sql .= " , " . ( $this -> ref_int ? " ' " . $this -> db -> escape ( $this -> ref_int ) . " ' " : " null " );
$sql .= " , ' " . $this -> db -> escape ( $this -> modelpdf ) . " ' " ;
$sql .= " , " . ( $this -> cond_reglement_id > 0 ? $this -> cond_reglement_id : " null " );
$sql .= " , " . ( $this -> mode_reglement_id > 0 ? $this -> mode_reglement_id : " null " );
$sql .= " , " . ( $this -> fk_account > 0 ? $this -> fk_account : 'NULL' );
$sql .= " , " . ( $this -> availability_id > 0 ? $this -> availability_id : " null " );
$sql .= " , " . ( $this -> demand_reason_id > 0 ? $this -> demand_reason_id : " null " );
$sql .= " , " . ( $this -> date_livraison ? " ' " . $this -> db -> idate ( $this -> date_livraison ) . " ' " : " null " );
$sql .= " , " . ( $this -> fk_delivery_address > 0 ? $this -> fk_delivery_address : 'NULL' );
$sql .= " , " . ( $this -> shipping_method_id > 0 ? $this -> shipping_method_id : 'NULL' );
$sql .= " , " . ( $this -> warehouse_id > 0 ? $this -> warehouse_id : 'NULL' );
$sql .= " , " . ( $this -> remise_absolue > 0 ? $this -> db -> escape ( $this -> remise_absolue ) : 'NULL' );
$sql .= " , " . ( $this -> remise_percent > 0 ? $this -> db -> escape ( $this -> remise_percent ) : 0 );
$sql .= " , " . ( int ) $this -> fk_incoterms ;
$sql .= " , ' " . $this -> db -> escape ( $this -> location_incoterms ) . " ' " ;
$sql .= " , " . setEntity ( $this );
$sql .= " , " . ( $this -> module_source ? " ' " . $this -> db -> escape ( $this -> module_source ) . " ' " : " null " );
$sql .= " , " . ( $this -> pos_source != '' ? " ' " . $this -> db -> escape ( $this -> pos_source ) . " ' " : " null " );
$sql .= " , " . ( int ) $this -> fk_multicurrency ;
$sql .= " , ' " . $this -> db -> escape ( $this -> multicurrency_code ) . " ' " ;
$sql .= " , " . ( double ) $this -> multicurrency_tx ;
$sql .= " ) " ;
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::create " , LOG_DEBUG );
2020-01-30 01:48:28 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( $resql )
{
$this -> id = $this -> db -> last_insert_id ( MAIN_DB_PREFIX . 'commande' );
if ( $this -> id )
{
2020-01-30 01:48:28 +01:00
$fk_parent_line = 0 ;
$num = count ( $this -> lines );
2018-08-30 09:40:04 +02:00
/*
* Insert products details into db
*/
2020-01-30 01:48:28 +01:00
for ( $i = 0 ; $i < $num ; $i ++ )
2018-08-30 09:40:04 +02:00
{
$line = $this -> lines [ $i ];
// Test and convert into object this->lines[$i]. When coming from REST API, we may still have an array
//if (! is_object($line)) $line=json_decode(json_encode($line), false); // convert recursively array into object.
2020-01-30 01:48:28 +01:00
if ( ! is_object ( $line )) $line = ( object ) $line ;
2018-08-30 09:40:04 +02:00
// Reset fk_parent_line for no child products and special product
if (( $line -> product_type != 9 && empty ( $line -> fk_parent_line )) || $line -> product_type == 9 ) {
$fk_parent_line = 0 ;
}
// Complete vat rate with code
$vatrate = $line -> tva_tx ;
2019-11-13 19:37:08 +01:00
if ( $line -> vat_src_code && ! preg_match ( '/\(.*\)/' , $vatrate )) $vatrate .= ' (' . $line -> vat_src_code . ')' ;
2018-08-30 09:40:04 +02:00
2020-04-10 10:59:32 +02:00
if ( ! empty ( $conf -> global -> MAIN_CREATEFROM_KEEP_LINE_ORIGIN_INFORMATION )) {
$originid = $line -> origin_id ;
$origintype = $line -> origin ;
2020-03-12 09:44:43 +01:00
} else {
2020-04-10 10:59:32 +02:00
$originid = $line -> id ;
$origintype = $this -> element ;
2020-03-12 09:44:43 +01:00
}
2019-02-25 00:56:48 +01:00
$result = $this -> addline (
2018-08-30 09:40:04 +02:00
$line -> desc ,
$line -> subprice ,
$line -> qty ,
$vatrate ,
$line -> localtax1_tx ,
$line -> localtax2_tx ,
$line -> fk_product ,
$line -> remise_percent ,
$line -> info_bits ,
$line -> fk_remise_except ,
'HT' ,
0 ,
$line -> date_start ,
$line -> date_end ,
$line -> product_type ,
$line -> rang ,
$line -> special_code ,
$fk_parent_line ,
$line -> fk_fournprice ,
$line -> pa_ht ,
$line -> label ,
$line -> array_options ,
$line -> fk_unit ,
2020-03-12 09:44:43 +01:00
$origintype ,
$originid
2018-08-30 10:42:47 +02:00
);
2018-08-30 09:40:04 +02:00
if ( $result < 0 )
{
if ( $result != self :: STOCK_NOT_ENOUGH_FOR_ORDER )
{
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> lasterror ();
2020-01-19 12:15:47 +01:00
$this -> errors [] = $this -> error ;
2018-08-30 09:40:04 +02:00
dol_print_error ( $this -> db );
}
$this -> db -> rollback ();
return - 1 ;
}
// Defined the new fk_parent_line
if ( $result > 0 && $line -> product_type == 9 ) {
$fk_parent_line = $result ;
}
}
// update ref
2019-11-13 19:37:08 +01:00
$initialref = '(PROV' . $this -> id . ')' ;
if ( ! empty ( $this -> ref )) $initialref = $this -> ref ;
2018-08-30 09:40:04 +02:00
$sql = 'UPDATE ' . MAIN_DB_PREFIX . " commande SET ref=' " . $this -> db -> escape ( $initialref ) . " ' WHERE rowid= " . $this -> id ;
if ( $this -> db -> query ( $sql ))
{
2019-11-24 18:25:55 +01:00
$this -> ref = $initialref ;
2018-08-30 09:40:04 +02:00
2019-11-24 18:25:55 +01:00
if ( ! empty ( $this -> linkedObjectsIds ) && empty ( $this -> linked_objects )) // To use new linkedObjectsIds instead of old linked_objects
{
$this -> linked_objects = $this -> linkedObjectsIds ; // TODO Replace linked_objects with linkedObjectsIds
}
2018-08-30 09:40:04 +02:00
2019-11-24 18:25:55 +01:00
// Add object linked
if ( ! $error && $this -> id && is_array ( $this -> linked_objects ) && ! empty ( $this -> linked_objects ))
{
foreach ( $this -> linked_objects as $origin => $tmp_origin_id )
2018-08-30 09:40:04 +02:00
{
2019-11-24 18:25:55 +01:00
if ( is_array ( $tmp_origin_id )) // New behaviour, if linked_object can have several links per type, so is something like array('contract'=>array(id1, id2, ...))
2018-08-30 09:40:04 +02:00
{
2019-11-24 18:25:55 +01:00
foreach ( $tmp_origin_id as $origin_id )
2018-08-30 09:40:04 +02:00
{
$ret = $this -> add_object_linked ( $origin , $origin_id );
2019-11-13 19:37:08 +01:00
if ( ! $ret )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> lasterror ();
2018-08-30 09:40:04 +02:00
$error ++ ;
}
2018-08-30 10:30:52 +02:00
}
2020-05-21 15:05:19 +02:00
} else // Old behaviour, if linked_object has only one link per type, so is something like array('contract'=>id1))
2019-11-24 18:25:55 +01:00
{
$origin_id = $tmp_origin_id ;
$ret = $this -> add_object_linked ( $origin , $origin_id );
if ( ! $ret )
{
$this -> error = $this -> db -> lasterror ();
$error ++ ;
}
}
2018-08-30 09:40:04 +02:00
}
2019-11-24 18:25:55 +01:00
}
2018-08-30 09:40:04 +02:00
2019-11-24 18:25:55 +01:00
if ( ! $error && $this -> id && ! empty ( $conf -> global -> MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN ) && ! empty ( $this -> origin ) && ! empty ( $this -> origin_id )) // Get contact from origin object
{
$originforcontact = $this -> origin ;
$originidforcontact = $this -> origin_id ;
if ( $originforcontact == 'shipping' ) // shipment and order share the same contacts. If creating from shipment we take data of order
2018-08-30 09:40:04 +02:00
{
2019-11-24 18:25:55 +01:00
require_once DOL_DOCUMENT_ROOT . '/expedition/class/expedition.class.php' ;
$exp = new Expedition ( $this -> db );
$exp -> fetch ( $this -> origin_id );
$exp -> fetchObjectLinked ();
if ( count ( $exp -> linkedObjectsIds [ 'commande' ]) > 0 )
2018-08-30 09:40:04 +02:00
{
2019-11-24 18:25:55 +01:00
foreach ( $exp -> linkedObjectsIds [ 'commande' ] as $key => $value )
2018-08-30 09:40:04 +02:00
{
2019-11-24 18:25:55 +01:00
$originforcontact = 'commande' ;
if ( is_object ( $value )) $originidforcontact = $value -> id ;
else $originidforcontact = $value ;
break ; // We take first one
2018-08-30 09:40:04 +02:00
}
}
2019-11-24 18:25:55 +01:00
}
2018-08-30 09:40:04 +02:00
2019-11-24 18:25:55 +01:00
$sqlcontact = " SELECT ctc.code, ctc.source, ec.fk_socpeople FROM " . MAIN_DB_PREFIX . " element_contact as ec, " . MAIN_DB_PREFIX . " c_type_contact as ctc " ;
$sqlcontact .= " WHERE element_id = " . $originidforcontact . " AND ec.fk_c_type_contact = ctc.rowid AND ctc.element = ' " . $originforcontact . " ' " ;
2018-08-30 09:40:04 +02:00
2019-11-24 18:25:55 +01:00
$resqlcontact = $this -> db -> query ( $sqlcontact );
if ( $resqlcontact )
{
while ( $objcontact = $this -> db -> fetch_object ( $resqlcontact ))
2018-08-30 09:40:04 +02:00
{
2019-11-24 18:25:55 +01:00
//print $objcontact->code.'-'.$objcontact->source.'-'.$objcontact->fk_socpeople."\n";
$this -> add_contact ( $objcontact -> fk_socpeople , $objcontact -> code , $objcontact -> source ); // May failed because of duplicate key or because code of contact type does not exists for new object
2018-08-30 09:40:04 +02:00
}
2020-05-21 15:05:19 +02:00
} else dol_print_error ( $resqlcontact );
2018-08-30 09:40:04 +02:00
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$result = $this -> insertExtraFields ();
2018-08-30 10:30:52 +02:00
if ( $result < 0 ) $error ++ ;
2018-08-30 09:40:04 +02:00
}
2019-11-13 19:37:08 +01:00
if ( ! $error && ! $notrigger )
2018-08-30 09:40:04 +02:00
{
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_CREATE' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> db -> commit ();
return $this -> id ;
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2018-08-30 09:40:04 +02:00
}
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> lasterror ();
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 1 ;
}
}
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
dol_print_error ( $this -> db );
$this -> db -> rollback ();
return - 1 ;
}
}
/**
* Load an object from its id and create a new one in database
*
2019-04-25 12:11:32 +02:00
* @ param User $user User making the clone
* @ param int $socid Id of thirdparty
* @ return int New id of clone
2018-08-30 09:40:04 +02:00
*/
2019-04-25 12:11:32 +02:00
public function createFromClone ( User $user , $socid = 0 )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
global $conf , $user , $hookmanager ;
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
$error = 0 ;
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
// get lines so they will be clone
2019-11-13 19:37:08 +01:00
foreach ( $this -> lines as $line )
2018-08-30 09:40:04 +02:00
$line -> fetch_optionals ();
2019-03-27 10:09:45 +01:00
// Load source object
$objFrom = clone $this ;
2018-08-30 09:40:04 +02:00
2019-03-27 10:09:45 +01:00
// Change socid if needed
2019-11-13 19:37:08 +01:00
if ( ! empty ( $socid ) && $socid != $this -> socid )
2019-03-27 10:09:45 +01:00
{
$objsoc = new Societe ( $this -> db );
2019-11-13 19:37:08 +01:00
if ( $objsoc -> fetch ( $socid ) > 0 )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> socid = $objsoc -> id ;
$this -> cond_reglement_id = ( ! empty ( $objsoc -> cond_reglement_id ) ? $objsoc -> cond_reglement_id : 0 );
$this -> mode_reglement_id = ( ! empty ( $objsoc -> mode_reglement_id ) ? $objsoc -> mode_reglement_id : 0 );
$this -> fk_project = 0 ;
$this -> fk_delivery_address = 0 ;
2019-03-27 10:09:45 +01:00
}
2018-08-30 10:30:52 +02:00
2019-03-27 10:09:45 +01:00
// TODO Change product price if multi-prices
}
2018-08-30 10:30:52 +02:00
2019-11-13 19:37:08 +01:00
$this -> id = 0 ;
2019-03-27 10:09:45 +01:00
$this -> ref = '' ;
2019-11-13 19:37:08 +01:00
$this -> statut = self :: STATUS_DRAFT ;
2018-08-30 09:40:04 +02:00
2019-03-27 10:09:45 +01:00
// Clear fields
$this -> user_author_id = $user -> id ;
$this -> user_valid = '' ;
2019-11-13 19:37:08 +01:00
$this -> date = dol_now ();
$this -> date_commande = dol_now ();
2019-03-27 10:09:45 +01:00
$this -> date_creation = '' ;
$this -> date_validation = '' ;
if ( empty ( $conf -> global -> MAIN_KEEP_REF_CUSTOMER_ON_CLONING )) $this -> ref_client = '' ;
2018-08-30 10:30:52 +02:00
2019-03-27 10:09:45 +01:00
// Create clone
$this -> context [ 'createfromclone' ] = 'createfromclone' ;
2019-11-13 19:37:08 +01:00
$result = $this -> create ( $user );
2019-03-27 10:09:45 +01:00
if ( $result < 0 ) $error ++ ;
2019-11-13 19:37:08 +01:00
if ( ! $error )
2019-03-27 10:09:45 +01:00
{
// copy internal contacts
if ( $this -> copy_linked_contact ( $objFrom , 'internal' ) < 0 )
2018-08-30 09:40:04 +02:00
{
2019-03-27 10:09:45 +01:00
$error ++ ;
2018-08-30 09:40:04 +02:00
}
2019-03-27 10:09:45 +01:00
}
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
if ( ! $error )
2019-03-27 10:09:45 +01:00
{
// copy external contacts if same company
2019-03-27 10:27:08 +01:00
if ( $this -> socid == $objFrom -> socid )
2018-08-30 10:30:52 +02:00
{
2019-03-27 10:09:45 +01:00
if ( $this -> copy_linked_contact ( $objFrom , 'external' ) < 0 )
$error ++ ;
2018-08-30 10:30:52 +02:00
}
2019-03-27 10:09:45 +01:00
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2019-03-27 10:09:45 +01:00
{
// Hook of thirdparty module
if ( is_object ( $hookmanager ))
2018-08-30 10:30:52 +02:00
{
2019-11-13 19:37:08 +01:00
$parameters = array ( 'objFrom' => $objFrom );
$action = '' ;
$reshook = $hookmanager -> executeHooks ( 'createFrom' , $parameters , $this , $action ); // Note that $action and $object may have been modified by some hooks
2019-03-27 10:09:45 +01:00
if ( $reshook < 0 ) $error ++ ;
2018-08-30 10:30:52 +02:00
}
2019-03-27 10:09:45 +01:00
}
unset ( $this -> context [ 'createfromclone' ]);
// End
2019-11-13 19:37:08 +01:00
if ( ! $error )
2019-03-27 10:09:45 +01:00
{
$this -> db -> commit ();
return $this -> id ;
2020-05-21 15:05:19 +02:00
} else {
2019-03-27 10:09:45 +01:00
$this -> db -> rollback ();
return - 1 ;
}
2018-08-30 09:40:04 +02:00
}
/**
* Load an object from a proposal and create a new order into database
*
* @ param Object $object Object source
* @ param User $user User making creation
* @ return int < 0 if KO , 0 if nothing done , 1 if OK
*/
2019-02-25 00:56:48 +01:00
public function createFromProposal ( $object , User $user )
2018-08-30 09:40:04 +02:00
{
global $conf , $hookmanager ;
dol_include_once ( '/core/class/extrafields.class.php' );
2019-11-13 19:37:08 +01:00
$error = 0 ;
2018-08-30 09:40:04 +02:00
$this -> date_commande = dol_now ();
$this -> source = 0 ;
2019-11-13 19:37:08 +01:00
$num = count ( $object -> lines );
2018-08-30 09:40:04 +02:00
for ( $i = 0 ; $i < $num ; $i ++ )
{
$line = new OrderLine ( $this -> db );
$line -> libelle = $object -> lines [ $i ] -> libelle ;
$line -> label = $object -> lines [ $i ] -> label ;
$line -> desc = $object -> lines [ $i ] -> desc ;
$line -> price = $object -> lines [ $i ] -> price ;
$line -> subprice = $object -> lines [ $i ] -> subprice ;
$line -> vat_src_code = $object -> lines [ $i ] -> vat_src_code ;
$line -> tva_tx = $object -> lines [ $i ] -> tva_tx ;
$line -> localtax1_tx = $object -> lines [ $i ] -> localtax1_tx ;
$line -> localtax2_tx = $object -> lines [ $i ] -> localtax2_tx ;
$line -> qty = $object -> lines [ $i ] -> qty ;
$line -> fk_remise_except = $object -> lines [ $i ] -> fk_remise_except ;
$line -> remise_percent = $object -> lines [ $i ] -> remise_percent ;
$line -> fk_product = $object -> lines [ $i ] -> fk_product ;
$line -> info_bits = $object -> lines [ $i ] -> info_bits ;
$line -> product_type = $object -> lines [ $i ] -> product_type ;
$line -> rang = $object -> lines [ $i ] -> rang ;
$line -> special_code = $object -> lines [ $i ] -> special_code ;
$line -> fk_parent_line = $object -> lines [ $i ] -> fk_parent_line ;
2019-11-13 19:37:08 +01:00
$line -> fk_unit = $object -> lines [ $i ] -> fk_unit ;
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
$line -> date_start = $object -> lines [ $i ] -> date_start ;
2018-08-30 09:40:04 +02:00
$line -> date_end = $object -> lines [ $i ] -> date_end ;
$line -> fk_fournprice = $object -> lines [ $i ] -> fk_fournprice ;
$marginInfos = getMarginInfos ( $object -> lines [ $i ] -> subprice , $object -> lines [ $i ] -> remise_percent , $object -> lines [ $i ] -> tva_tx , $object -> lines [ $i ] -> localtax1_tx , $object -> lines [ $i ] -> localtax2_tx , $object -> lines [ $i ] -> fk_fournprice , $object -> lines [ $i ] -> pa_ht );
$line -> pa_ht = $marginInfos [ 0 ];
$line -> marge_tx = $marginInfos [ 1 ];
$line -> marque_tx = $marginInfos [ 2 ];
// get extrafields from original line
2018-02-21 14:48:25 +01:00
$object -> lines [ $i ] -> fetch_optionals ();
2019-11-13 19:37:08 +01:00
foreach ( $object -> lines [ $i ] -> array_options as $options_key => $value )
2015-10-15 12:17:57 +02:00
$line -> array_options [ $options_key ] = $value ;
2014-11-12 17:51:26 +01:00
2018-08-30 10:30:52 +02:00
$this -> lines [ $i ] = $line ;
2018-08-30 09:40:04 +02:00
}
2019-05-12 14:25:41 +02:00
$this -> entity = $object -> entity ;
2018-08-30 09:40:04 +02:00
$this -> socid = $object -> socid ;
$this -> fk_project = $object -> fk_project ;
$this -> cond_reglement_id = $object -> cond_reglement_id ;
$this -> mode_reglement_id = $object -> mode_reglement_id ;
$this -> fk_account = $object -> fk_account ;
$this -> availability_id = $object -> availability_id ;
$this -> demand_reason_id = $object -> demand_reason_id ;
$this -> date_livraison = $object -> date_livraison ;
$this -> shipping_method_id = $object -> shipping_method_id ;
$this -> warehouse_id = $object -> warehouse_id ;
$this -> fk_delivery_address = $object -> fk_delivery_address ;
2020-06-25 12:17:47 +02:00
$this -> contact_id = $object -> contact_id ;
2018-08-30 09:40:04 +02:00
$this -> ref_client = $object -> ref_client ;
2019-03-18 20:09:09 +01:00
2019-03-18 20:16:19 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PROPAGATE_NOTES_FROM_ORIGIN ))
2019-03-18 20:09:09 +01:00
{
$this -> note_private = $object -> note_private ;
$this -> note_public = $object -> note_public ;
}
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
$this -> origin = $object -> element ;
$this -> origin_id = $object -> id ;
2018-08-30 09:40:04 +02:00
// get extrafields from original line
2020-03-27 16:02:58 +01:00
$object -> fetch_optionals ();
2018-08-30 09:40:04 +02:00
$e = new ExtraFields ( $this -> db );
2019-09-28 10:55:09 +02:00
$element_extrafields = $e -> fetch_name_optionals_label ( $this -> table_element );
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
foreach ( $object -> array_options as $options_key => $value ) {
if ( array_key_exists ( str_replace ( 'options_' , '' , $options_key ), $element_extrafields )) {
2018-08-30 09:40:04 +02:00
$this -> array_options [ $options_key ] = $value ;
}
}
// Possibility to add external linked objects with hooks
$this -> linked_objects [ $this -> origin ] = $this -> origin_id ;
2019-11-13 19:37:08 +01:00
if ( is_array ( $object -> other_linked_objects ) && ! empty ( $object -> other_linked_objects ))
2018-08-30 09:40:04 +02:00
{
2018-08-30 10:30:52 +02:00
$this -> linked_objects = array_merge ( $this -> linked_objects , $object -> other_linked_objects );
2018-08-30 09:40:04 +02:00
}
$ret = $this -> create ( $user );
if ( $ret > 0 )
{
// Actions hooked (by external module)
$hookmanager -> initHooks ( array ( 'orderdao' ));
2019-11-13 19:37:08 +01:00
$parameters = array ( 'objFrom' => $object );
$action = '' ;
$reshook = $hookmanager -> executeHooks ( 'createFrom' , $parameters , $this , $action ); // Note that $action and $object may have been modified by some hooks
2018-08-30 09:40:04 +02:00
if ( $reshook < 0 ) $error ++ ;
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2020-04-03 12:54:23 +02:00
// Validate immediatly the order
2020-04-10 10:59:32 +02:00
if ( ! empty ( $conf -> global -> ORDER_VALID_AFTER_CLOSE_PROPAL ))
2018-08-30 09:40:04 +02:00
{
$this -> fetch ( $ret );
$this -> valid ( $user );
}
return $ret ;
2020-05-21 15:05:19 +02:00
} else return - 1 ;
} else return - 1 ;
2018-08-30 09:40:04 +02:00
}
/**
* Add an order line into database ( linked to product / service or not )
*
* @ param string $desc Description of line
* @ param float $pu_ht Unit price ( without tax )
* @ param float $qty Quantite
* @ param float $txtva Force Vat rate , - 1 for auto ( Can contain the vat_src_code too with syntax '9.9 (CODE)' )
* @ param float $txlocaltax1 Local tax 1 rate ( deprecated , use instead txtva with code inside )
* @ param float $txlocaltax2 Local tax 2 rate ( deprecated , use instead txtva with code inside )
* @ param int $fk_product Id of product
2019-03-18 13:45:24 +01:00
* @ param float $remise_percent Percentage discount of the line
2019-06-29 16:29:32 +02:00
* @ param int $info_bits Bits of type of lines
2018-08-30 09:40:04 +02:00
* @ param int $fk_remise_except Id remise
* @ param string $price_base_type HT or TTC
* @ param float $pu_ttc Prix unitaire TTC
* @ param int $date_start Start date of the line - Added by Matelli ( See http :// matelli . fr / showcases / patchs - dolibarr / add - dates - in - order - lines . html )
* @ param int $date_end End date of the line - Added by Matelli ( See http :// matelli . fr / showcases / patchs - dolibarr / add - dates - in - order - lines . html )
* @ param int $type Type of line ( 0 = product , 1 = service ) . Not used if fk_product is defined , the type of product is used .
* @ param int $rang Position of line
* @ param int $special_code Special code ( also used by externals modules ! )
* @ param int $fk_parent_line Parent line
* @ param int $fk_fournprice Id supplier price
* @ param int $pa_ht Buying price ( without tax )
* @ param string $label Label
* @ param array $array_options extrafields array . Example array ( 'options_codeforfield1' => 'valueforfield1' , 'options_codeforfield2' => 'valueforfield2' , ... )
* @ param string $fk_unit Code of the unit to use . Null to use the default one
2020-03-12 09:44:43 +01:00
* @ param string $origin Depend on global conf MAIN_CREATEFROM_KEEP_LINE_ORIGIN_INFORMATION can be 'orderdet' , 'propaldet' ... , else 'order' , 'propal,' ....
* @ param int $origin_id Depend on global conf MAIN_CREATEFROM_KEEP_LINE_ORIGIN_INFORMATION can be Id of origin object ( aka line id ), else object id
2018-08-30 09:40:04 +02:00
* @ param double $pu_ht_devise Unit price in currency
* @ return int > 0 if OK , < 0 if KO
*
2019-04-08 16:04:15 +02:00
* @ see add_product ()
2018-08-30 09:40:04 +02:00
*
* Les parametres sont deja cense etre juste et avec valeurs finales a l ' appel
* de cette methode . Aussi , pour le taux tva , il doit deja avoir ete defini
* par l ' appelant par la methode get_default_tva ( societe_vendeuse , societe_acheteuse , produit )
* et le desc doit deja avoir la bonne valeur ( a l ' appelant de gerer le multilangue )
*/
2019-02-25 00:56:48 +01:00
public function addline ( $desc , $pu_ht , $qty , $txtva , $txlocaltax1 = 0 , $txlocaltax2 = 0 , $fk_product = 0 , $remise_percent = 0 , $info_bits = 0 , $fk_remise_except = 0 , $price_base_type = 'HT' , $pu_ttc = 0 , $date_start = '' , $date_end = '' , $type = 0 , $rang = - 1 , $special_code = 0 , $fk_parent_line = 0 , $fk_fournprice = null , $pa_ht = 0 , $label = '' , $array_options = 0 , $fk_unit = null , $origin = '' , $origin_id = 0 , $pu_ht_devise = 0 )
2018-08-30 09:40:04 +02:00
{
global $mysoc , $conf , $langs , $user ;
$logtext = " ::addline commandeid= $this->id , desc= $desc , pu_ht= $pu_ht , qty= $qty , txtva= $txtva , fk_product= $fk_product , remise_percent= $remise_percent " ;
2019-11-13 19:37:08 +01:00
$logtext .= " , info_bits= $info_bits , fk_remise_except= $fk_remise_except , price_base_type= $price_base_type , pu_ttc= $pu_ttc , date_start= $date_start " ;
$logtext .= " , date_end= $date_end , type= $type special_code= $special_code , fk_unit= $fk_unit , origin= $origin , origin_id= $origin_id , pu_ht_devise= $pu_ht_devise " ;
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . $logtext , LOG_DEBUG );
2018-12-04 14:58:11 +01:00
if ( $this -> statut == self :: STATUS_DRAFT )
2018-08-30 09:40:04 +02:00
{
2018-12-04 14:58:11 +01:00
include_once DOL_DOCUMENT_ROOT . '/core/lib/price.lib.php' ;
2011-09-12 19:08:02 +02:00
2018-12-04 14:58:11 +01:00
// Clean parameters
2019-11-13 19:37:08 +01:00
if ( empty ( $remise_percent )) $remise_percent = 0 ;
if ( empty ( $qty )) $qty = 0 ;
if ( empty ( $info_bits )) $info_bits = 0 ;
if ( empty ( $rang )) $rang = 0 ;
if ( empty ( $txtva )) $txtva = 0 ;
if ( empty ( $txlocaltax1 )) $txlocaltax1 = 0 ;
if ( empty ( $txlocaltax2 )) $txlocaltax2 = 0 ;
if ( empty ( $fk_parent_line ) || $fk_parent_line < 0 ) $fk_parent_line = 0 ;
if ( empty ( $this -> fk_multicurrency )) $this -> fk_multicurrency = 0 ;
$remise_percent = price2num ( $remise_percent );
$qty = price2num ( $qty );
$pu_ht = price2num ( $pu_ht );
$pu_ht_devise = price2num ( $pu_ht_devise );
$pu_ttc = price2num ( $pu_ttc );
$pa_ht = price2num ( $pa_ht );
2018-12-04 14:58:11 +01:00
if ( ! preg_match ( '/\((.*)\)/' , $txtva )) {
2019-11-13 19:37:08 +01:00
$txtva = price2num ( $txtva ); // $txtva can have format '5,1' or '5.1' or '5.1(XXX)', we must clean only if '5,1'
2018-12-04 14:58:11 +01:00
}
$txlocaltax1 = price2num ( $txlocaltax1 );
$txlocaltax2 = price2num ( $txlocaltax2 );
2019-11-13 19:37:08 +01:00
if ( $price_base_type == 'HT' )
2018-12-04 14:58:11 +01:00
{
2019-11-13 19:37:08 +01:00
$pu = $pu_ht ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$pu = $pu_ttc ;
2018-12-04 14:58:11 +01:00
}
2019-11-13 19:37:08 +01:00
$label = trim ( $label );
$desc = trim ( $desc );
2018-08-30 09:40:04 +02:00
2018-12-04 14:58:11 +01:00
// Check parameters
if ( $type < 0 ) return - 1 ;
2019-03-27 10:00:29 +01:00
2019-03-24 14:30:00 +01:00
if ( $date_start && $date_end && $date_start > $date_end ) {
$langs -> load ( " errors " );
2019-11-13 19:37:08 +01:00
$this -> error = $langs -> trans ( 'ErrorStartDateGreaterEnd' );
2019-03-24 14:30:00 +01:00
return - 1 ;
}
2018-08-30 09:40:04 +02:00
2018-12-04 14:58:11 +01:00
$this -> db -> begin ();
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
$product_type = $type ;
2018-08-30 09:40:04 +02:00
if ( ! empty ( $fk_product ))
{
2019-11-13 19:37:08 +01:00
$product = new Product ( $this -> db );
$result = $product -> fetch ( $fk_product );
$product_type = $product -> type ;
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> global -> STOCK_MUST_BE_ENOUGH_FOR_ORDER ) && $product_type == 0 && $product -> stock_reel < $qty )
2018-08-30 09:40:04 +02:00
{
$langs -> load ( " errors " );
2019-11-13 19:37:08 +01:00
$this -> error = $langs -> trans ( 'ErrorStockIsNotEnoughToAddProductOnOrder' , $product -> ref );
2020-01-19 12:15:47 +01:00
$this -> errors [] = $this -> error ;
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::addline error=Product " . $product -> ref . " : " . $this -> error , LOG_ERR );
$this -> db -> rollback ();
return self :: STOCK_NOT_ENOUGH_FOR_ORDER ;
}
}
// Calcul du total TTC et de la TVA pour la ligne a partir de
// qty, pu, remise_percent et txtva
// TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
// la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
2019-11-13 19:37:08 +01:00
$localtaxes_type = getLocalTaxesFromRate ( $txtva , 0 , $this -> thirdparty , $mysoc );
2018-08-30 09:40:04 +02:00
2018-08-30 10:30:52 +02:00
// Clean vat code
2020-01-13 15:58:03 +01:00
$reg = array ();
2019-11-13 19:37:08 +01:00
$vat_src_code = '' ;
2018-08-30 09:40:04 +02:00
if ( preg_match ( '/\((.*)\)/' , $txtva , $reg ))
{
$vat_src_code = $reg [ 1 ];
2019-11-13 19:37:08 +01:00
$txtva = preg_replace ( '/\s*\(.*\)/' , '' , $txtva ); // Remove code into vatrate.
2018-08-30 09:40:04 +02:00
}
$tabprice = calcul_price_total ( $qty , $pu , $remise_percent , $txtva , $txlocaltax1 , $txlocaltax2 , 0 , $price_base_type , $info_bits , $product_type , $mysoc , $localtaxes_type , 100 , $this -> multicurrency_tx , $pu_ht_devise );
/* var_dump ( $txlocaltax1 );
2018-08-30 10:30:52 +02:00
var_dump ( $txlocaltax2 );
var_dump ( $localtaxes_type );
var_dump ( $tabprice );
var_dump ( $tabprice [ 9 ]);
var_dump ( $tabprice [ 10 ]);
exit ; */
2018-08-30 09:40:04 +02:00
$total_ht = $tabprice [ 0 ];
$total_tva = $tabprice [ 1 ];
$total_ttc = $tabprice [ 2 ];
$total_localtax1 = $tabprice [ 9 ];
$total_localtax2 = $tabprice [ 10 ];
$pu_ht = $tabprice [ 3 ];
// MultiCurrency
$multicurrency_total_ht = $tabprice [ 16 ];
$multicurrency_total_tva = $tabprice [ 17 ];
$multicurrency_total_ttc = $tabprice [ 18 ];
$pu_ht_devise = $tabprice [ 19 ];
// Rang to use
2019-08-10 00:46:20 +02:00
$ranktouse = $rang ;
if ( $ranktouse == - 1 )
2018-08-30 09:40:04 +02:00
{
$rangmax = $this -> line_max ( $fk_parent_line );
2019-08-10 00:46:20 +02:00
$ranktouse = $rangmax + 1 ;
2018-08-30 09:40:04 +02:00
}
// TODO A virer
// Anciens indicateurs: $price, $remise (a ne plus utiliser)
$price = $pu ;
$remise = 0 ;
if ( $remise_percent > 0 )
{
$remise = round (( $pu * $remise_percent / 100 ), 2 );
$price = $pu - $remise ;
}
// Insert line
2020-01-30 01:48:28 +01:00
$this -> line = new OrderLine ( $this -> db );
2018-08-30 09:40:04 +02:00
$this -> line -> context = $this -> context ;
2020-01-30 01:48:28 +01:00
$this -> line -> fk_commande = $this -> id ;
$this -> line -> label = $label ;
$this -> line -> desc = $desc ;
$this -> line -> qty = $qty ;
$this -> line -> vat_src_code = $vat_src_code ;
$this -> line -> tva_tx = $txtva ;
$this -> line -> localtax1_tx = ( $total_localtax1 ? $localtaxes_type [ 1 ] : 0 );
$this -> line -> localtax2_tx = ( $total_localtax2 ? $localtaxes_type [ 3 ] : 0 );
$this -> line -> localtax1_type = $localtaxes_type [ 0 ];
$this -> line -> localtax2_type = $localtaxes_type [ 2 ];
$this -> line -> fk_product = $fk_product ;
$this -> line -> product_type = $product_type ;
$this -> line -> fk_remise_except = $fk_remise_except ;
$this -> line -> remise_percent = $remise_percent ;
$this -> line -> subprice = $pu_ht ;
$this -> line -> rang = $ranktouse ;
$this -> line -> info_bits = $info_bits ;
$this -> line -> total_ht = $total_ht ;
$this -> line -> total_tva = $total_tva ;
$this -> line -> total_localtax1 = $total_localtax1 ;
$this -> line -> total_localtax2 = $total_localtax2 ;
$this -> line -> total_ttc = $total_ttc ;
$this -> line -> special_code = $special_code ;
$this -> line -> origin = $origin ;
$this -> line -> origin_id = $origin_id ;
$this -> line -> fk_parent_line = $fk_parent_line ;
$this -> line -> fk_unit = $fk_unit ;
$this -> line -> date_start = $date_start ;
$this -> line -> date_end = $date_end ;
2018-08-30 09:40:04 +02:00
$this -> line -> fk_fournprice = $fk_fournprice ;
$this -> line -> pa_ht = $pa_ht ;
// Multicurrency
2020-01-30 01:48:28 +01:00
$this -> line -> fk_multicurrency = $this -> fk_multicurrency ;
$this -> line -> multicurrency_code = $this -> multicurrency_code ;
2018-08-30 09:40:04 +02:00
$this -> line -> multicurrency_subprice = $pu_ht_devise ;
$this -> line -> multicurrency_total_ht = $multicurrency_total_ht ;
$this -> line -> multicurrency_total_tva = $multicurrency_total_tva ;
$this -> line -> multicurrency_total_ttc = $multicurrency_total_ttc ;
// TODO Ne plus utiliser
2020-01-30 01:48:28 +01:00
$this -> line -> price = $price ;
$this -> line -> remise = $remise ;
2018-08-30 09:40:04 +02:00
2020-01-30 01:48:28 +01:00
if ( is_array ( $array_options ) && count ( $array_options ) > 0 ) {
$this -> line -> array_options = $array_options ;
2018-08-30 09:40:04 +02:00
}
2020-01-30 01:48:28 +01:00
$result = $this -> line -> insert ( $user );
2018-08-30 09:40:04 +02:00
if ( $result > 0 )
{
// Reorder if child line
2020-01-30 01:48:28 +01:00
if ( ! empty ( $fk_parent_line )) $this -> line_order ( true , 'DESC' );
2018-08-30 09:40:04 +02:00
// Mise a jour informations denormalisees au niveau de la commande meme
2020-01-30 01:48:28 +01:00
$result = $this -> update_price ( 1 , 'auto' , 0 , $mysoc ); // This method is designed to add line from user input so total calculation must be done using 'auto' mode.
2018-08-30 09:40:04 +02:00
if ( $result > 0 )
{
$this -> db -> commit ();
2019-11-12 10:11:30 +01:00
return $this -> line -> id ;
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 1 ;
}
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> line -> error ;
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::addline error= " . $this -> error , LOG_ERR );
$this -> db -> rollback ();
return - 2 ;
}
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::addline status of order must be Draft to allow use of ->addline() " , LOG_ERR );
return - 3 ;
}
}
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Add line into array
* $this -> client must be loaded
*
2019-02-25 00:56:48 +01:00
* @ param int $idproduct Product Id
* @ param float $qty Quantity
* @ param float $remise_percent Product discount relative
* @ param int $date_start Start date of the line
* @ param int $date_end End date of the line
* @ return void
2018-08-30 09:40:04 +02:00
*
* TODO Remplacer les appels a cette fonction par generation objet Ligne
* insere dans tableau $this -> products
*/
2019-02-25 00:56:48 +01:00
public function add_product ( $idproduct , $qty , $remise_percent = 0.0 , $date_start = '' , $date_end = '' )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
global $conf , $mysoc ;
2019-11-13 19:37:08 +01:00
if ( ! $qty ) $qty = 1 ;
2018-08-30 09:40:04 +02:00
if ( $idproduct > 0 )
{
2019-11-13 19:37:08 +01:00
$prod = new Product ( $this -> db );
2018-08-30 09:40:04 +02:00
$prod -> fetch ( $idproduct );
2019-01-27 11:55:16 +01:00
$tva_tx = get_default_tva ( $mysoc , $this -> thirdparty , $prod -> id );
$tva_npr = get_default_npr ( $mysoc , $this -> thirdparty , $prod -> id );
2019-11-13 19:37:08 +01:00
if ( empty ( $tva_tx )) $tva_npr = 0 ;
$vat_src_code = '' ; // May be defined into tva_tx
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
$localtax1_tx = get_localtax ( $tva_tx , 1 , $this -> thirdparty , $mysoc , $tva_npr );
$localtax2_tx = get_localtax ( $tva_tx , 2 , $this -> thirdparty , $mysoc , $tva_npr );
2018-08-30 09:40:04 +02:00
// multiprix
2019-11-13 19:37:08 +01:00
if ( $conf -> global -> PRODUIT_MULTIPRICES && $this -> thirdparty -> price_level ) {
2018-08-30 10:30:52 +02:00
$price = $prod -> multiprices [ $this -> thirdparty -> price_level ];
2018-08-30 10:42:47 +02:00
} else {
$price = $prod -> price ;
}
2019-11-13 19:37:08 +01:00
$line = new OrderLine ( $this -> db );
2018-08-30 10:42:47 +02:00
$line -> context = $this -> context ;
2019-11-13 19:37:08 +01:00
$line -> fk_product = $idproduct ;
$line -> desc = $prod -> description ;
$line -> qty = $qty ;
$line -> subprice = $price ;
$line -> remise_percent = $remise_percent ;
$line -> vat_src_code = $vat_src_code ;
$line -> tva_tx = $tva_tx ;
$line -> localtax1_tx = $localtax1_tx ;
$line -> localtax2_tx = $localtax2_tx ;
$line -> ref = $prod -> ref ;
$line -> libelle = $prod -> label ;
$line -> product_desc = $prod -> description ;
$line -> fk_unit = $prod -> fk_unit ;
2018-08-30 10:42:47 +02:00
// Save the start and end date of the line in the object
if ( $date_start ) { $line -> date_start = $date_start ; }
2019-11-13 19:37:08 +01:00
if ( $date_end ) { $line -> date_end = $date_end ; }
2018-08-30 10:42:47 +02:00
$this -> lines [] = $line ;
/** POUR AJOUTER AUTOMATIQUEMENT LES SOUSPRODUITS a LA COMMANDE
if ( ! empty ( $conf -> global -> PRODUIT_SOUSPRODUITS ))
{
$prod = new Product ( $this -> db );
$prod -> fetch ( $idproduct );
$prod -> get_sousproduits_arbo ();
$prods_arbo = $prod -> get_arbo_each_prod ();
if ( count ( $prods_arbo ) > 0 )
{
foreach ( $prods_arbo as $key => $value )
{
// print "id : ".$value[1].' :qty: '.$value[0].'<br>';
if ( ! in_array ( $value [ 1 ], $this -> products ))
$this -> add_product ( $value [ 1 ], $value [ 0 ]);
}
}
}
**/
2018-08-30 09:40:04 +02:00
}
}
/**
2020-02-10 00:22:53 +01:00
* Get object from database . Get also lines .
2018-08-30 09:40:04 +02:00
*
* @ param int $id Id of object to load
* @ param string $ref Ref of object
* @ param string $ref_ext External reference of object
2020-03-06 14:38:06 +01:00
* @ param string $notused Internal reference of other object
2018-08-30 09:40:04 +02:00
* @ return int > 0 if OK , < 0 if KO , 0 if not found
*/
2020-03-06 14:38:06 +01:00
public function fetch ( $id , $ref = '' , $ref_ext = '' , $notused = '' )
2018-08-30 09:40:04 +02:00
{
// Check parameters
2020-03-06 14:38:06 +01:00
if ( empty ( $id ) && empty ( $ref ) && empty ( $ref_ext )) return - 1 ;
2018-08-30 09:40:04 +02:00
$sql = 'SELECT c.rowid, c.entity, c.date_creation, c.ref, c.fk_soc, c.fk_user_author, c.fk_user_valid, c.fk_statut' ;
2020-01-30 01:48:28 +01:00
$sql .= ', c.amount_ht, c.total_ht, c.total_ttc, c.tva as total_tva, c.localtax1 as total_localtax1, c.localtax2 as total_localtax2, c.fk_cond_reglement, c.fk_mode_reglement, c.fk_availability, c.fk_input_reason' ;
$sql .= ', c.fk_account' ;
$sql .= ', c.date_commande, c.date_valid, c.tms' ;
$sql .= ', c.date_livraison' ;
$sql .= ', c.fk_shipping_method' ;
$sql .= ', c.fk_warehouse' ;
$sql .= ', c.fk_projet as fk_project, c.remise_percent, c.remise, c.remise_absolue, c.source, c.facture as billed' ;
$sql .= ', c.note_private, c.note_public, c.ref_client, c.ref_ext, c.ref_int, c.model_pdf, c.last_main_doc, c.fk_delivery_address, c.extraparams' ;
$sql .= ', c.fk_incoterms, c.location_incoterms' ;
$sql .= " , c.fk_multicurrency, c.multicurrency_code, c.multicurrency_tx, c.multicurrency_total_ht, c.multicurrency_total_tva, c.multicurrency_total_ttc " ;
$sql .= " , c.module_source, c.pos_source " ;
$sql .= " , i.libelle as label_incoterms " ;
$sql .= ', p.code as mode_reglement_code, p.libelle as mode_reglement_libelle' ;
$sql .= ', cr.code as cond_reglement_code, cr.libelle as cond_reglement_libelle, cr.libelle_facture as cond_reglement_libelle_doc' ;
$sql .= ', ca.code as availability_code, ca.label as availability_label' ;
$sql .= ', dr.code as demand_reason_code' ;
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'commande as c' ;
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'c_payment_term as cr ON c.fk_cond_reglement = cr.rowid' ;
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'c_paiement as p ON c.fk_mode_reglement = p.id' ;
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'c_availability as ca ON c.fk_availability = ca.rowid' ;
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'c_input_reason as dr ON c.fk_input_reason = dr.rowid' ;
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'c_incoterms as i ON c.fk_incoterms = i.rowid' ;
if ( $id ) $sql .= " WHERE c.rowid= " . $id ;
else $sql .= " WHERE c.entity IN ( " . getEntity ( 'commande' ) . " ) " ; // Dont't use entity if you use rowid
if ( $ref ) $sql .= " AND c.ref=' " . $this -> db -> escape ( $ref ) . " ' " ;
if ( $ref_ext ) $sql .= " AND c.ref_ext=' " . $this -> db -> escape ( $ref_ext ) . " ' " ;
2020-03-06 14:38:06 +01:00
if ( $notused ) $sql .= " AND c.ref_int=' " . $this -> db -> escape ( $notused ) . " ' " ;
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::fetch " , LOG_DEBUG );
$result = $this -> db -> query ( $sql );
if ( $result )
{
$obj = $this -> db -> fetch_object ( $result );
if ( $obj )
{
2019-11-13 19:37:08 +01:00
$this -> id = $obj -> rowid ;
$this -> entity = $obj -> entity ;
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
$this -> ref = $obj -> ref ;
$this -> ref_client = $obj -> ref_client ;
$this -> ref_customer = $obj -> ref_client ;
2018-08-30 09:40:04 +02:00
$this -> ref_ext = $obj -> ref_ext ;
$this -> ref_int = $obj -> ref_int ;
2020-02-10 00:22:53 +01:00
2019-11-13 19:37:08 +01:00
$this -> socid = $obj -> fk_soc ;
2020-02-13 12:36:05 +01:00
$this -> thirdparty = null ; // Clear if another value was already set by fetch_thirdparty
2020-02-10 00:22:53 +01:00
$this -> fk_project = $obj -> fk_project ;
2020-02-13 12:36:05 +01:00
$this -> project = null ; // Clear if another value was already set by fetch_projet
2020-02-10 00:22:53 +01:00
2019-11-13 19:37:08 +01:00
$this -> statut = $obj -> fk_statut ;
$this -> user_author_id = $obj -> fk_user_author ;
$this -> user_valid = $obj -> fk_user_valid ;
2018-08-30 09:40:04 +02:00
$this -> total_ht = $obj -> total_ht ;
$this -> total_tva = $obj -> total_tva ;
$this -> total_localtax1 = $obj -> total_localtax1 ;
$this -> total_localtax2 = $obj -> total_localtax2 ;
$this -> total_ttc = $obj -> total_ttc ;
2019-11-13 19:37:08 +01:00
$this -> date = $this -> db -> jdate ( $obj -> date_commande );
2018-08-30 09:40:04 +02:00
$this -> date_commande = $this -> db -> jdate ( $obj -> date_commande );
2018-10-17 00:06:24 +02:00
$this -> date_creation = $this -> db -> jdate ( $obj -> date_creation );
2019-11-13 19:37:08 +01:00
$this -> date_validation = $this -> db -> jdate ( $obj -> date_valid );
$this -> date_modification = $this -> db -> jdate ( $obj -> tms );
2018-08-30 09:40:04 +02:00
$this -> remise = $obj -> remise ;
$this -> remise_percent = $obj -> remise_percent ;
$this -> remise_absolue = $obj -> remise_absolue ;
$this -> source = $obj -> source ;
$this -> billed = $obj -> billed ;
2019-11-13 19:37:08 +01:00
$this -> note = $obj -> note_private ; // deprecated
$this -> note_private = $obj -> note_private ;
$this -> note_public = $obj -> note_public ;
2020-08-18 14:48:38 +02:00
$this -> model_pdf = $obj -> model_pdf ;
2019-11-13 19:37:08 +01:00
$this -> modelpdf = $obj -> model_pdf ;
$this -> last_main_doc = $obj -> last_main_doc ;
2018-08-30 09:40:04 +02:00
$this -> mode_reglement_id = $obj -> fk_mode_reglement ;
$this -> mode_reglement_code = $obj -> mode_reglement_code ;
$this -> mode_reglement = $obj -> mode_reglement_libelle ;
$this -> cond_reglement_id = $obj -> fk_cond_reglement ;
$this -> cond_reglement_code = $obj -> cond_reglement_code ;
$this -> cond_reglement = $obj -> cond_reglement_libelle ;
2019-11-13 19:37:08 +01:00
$this -> cond_reglement_doc = $obj -> cond_reglement_libelle_doc ;
$this -> fk_account = $obj -> fk_account ;
$this -> availability_id = $obj -> fk_availability ;
2018-08-30 09:40:04 +02:00
$this -> availability_code = $obj -> availability_code ;
$this -> availability = $obj -> availability_label ;
$this -> demand_reason_id = $obj -> fk_input_reason ;
2019-11-13 19:37:08 +01:00
$this -> demand_reason_code = $obj -> demand_reason_code ;
$this -> date_livraison = $this -> db -> jdate ( $obj -> date_livraison );
$this -> shipping_method_id = ( $obj -> fk_shipping_method > 0 ) ? $obj -> fk_shipping_method : null ;
$this -> warehouse_id = ( $obj -> fk_warehouse > 0 ) ? $obj -> fk_warehouse : null ;
$this -> fk_delivery_address = $obj -> fk_delivery_address ;
2019-02-20 12:29:47 +01:00
$this -> module_source = $obj -> module_source ;
$this -> pos_source = $obj -> pos_source ;
2019-02-25 00:56:48 +01:00
2018-08-30 09:40:04 +02:00
//Incoterms
2019-02-20 12:29:47 +01:00
$this -> fk_incoterms = $obj -> fk_incoterms ;
$this -> location_incoterms = $obj -> location_incoterms ;
2019-06-25 13:00:02 +02:00
$this -> label_incoterms = $obj -> label_incoterms ;
2018-08-30 09:40:04 +02:00
// Multicurrency
$this -> fk_multicurrency = $obj -> fk_multicurrency ;
2019-11-13 19:37:08 +01:00
$this -> multicurrency_code = $obj -> multicurrency_code ;
2018-08-30 09:40:04 +02:00
$this -> multicurrency_tx = $obj -> multicurrency_tx ;
2019-11-13 19:37:08 +01:00
$this -> multicurrency_total_ht = $obj -> multicurrency_total_ht ;
2018-08-30 09:40:04 +02:00
$this -> multicurrency_total_tva = $obj -> multicurrency_total_tva ;
$this -> multicurrency_total_ttc = $obj -> multicurrency_total_ttc ;
2019-11-13 19:37:08 +01:00
$this -> extraparams = ( array ) json_decode ( $obj -> extraparams , true );
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
$this -> lines = array ();
2018-08-30 09:40:04 +02:00
if ( $this -> statut == self :: STATUS_DRAFT ) $this -> brouillon = 1 ;
// Retreive all extrafield
// fetch optionals attributes and labels
$this -> fetch_optionals ();
$this -> db -> free ( $result );
2020-02-10 00:22:53 +01:00
// Lines
2019-11-13 19:37:08 +01:00
$result = $this -> fetch_lines ();
2018-08-30 09:40:04 +02:00
if ( $result < 0 )
{
return - 3 ;
}
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = 'Order with id ' . $id . ' not found sql=' . $sql ;
2018-08-30 09:40:04 +02:00
return 0 ;
}
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
return - 1 ;
}
}
2019-02-28 23:19:58 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Adding line of fixed discount in the order in DB
*
* @ param int $idremise Id de la remise fixe
* @ return int > 0 si ok , < 0 si ko
*/
2019-02-25 00:56:48 +01:00
public function insert_discount ( $idremise )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
global $langs ;
include_once DOL_DOCUMENT_ROOT . '/core/lib/price.lib.php' ;
include_once DOL_DOCUMENT_ROOT . '/core/class/discount.class.php' ;
$this -> db -> begin ();
2019-11-13 19:37:08 +01:00
$remise = new DiscountAbsolute ( $this -> db );
$result = $remise -> fetch ( $idremise );
2018-08-30 09:40:04 +02:00
if ( $result > 0 )
{
if ( $remise -> fk_facture ) // Protection against multiple submission
{
2019-11-13 19:37:08 +01:00
$this -> error = $langs -> trans ( " ErrorDiscountAlreadyUsed " );
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 5 ;
}
$line = new OrderLine ( $this -> db );
2019-11-13 19:37:08 +01:00
$line -> fk_commande = $this -> id ;
$line -> fk_remise_except = $remise -> id ;
$line -> desc = $remise -> description ; // Description ligne
$line -> vat_src_code = $remise -> vat_src_code ;
$line -> tva_tx = $remise -> tva_tx ;
$line -> subprice = - $remise -> amount_ht ;
$line -> price = - $remise -> amount_ht ;
$line -> fk_product = 0 ; // Id produit predefini
$line -> qty = 1 ;
$line -> remise = 0 ;
$line -> remise_percent = 0 ;
$line -> rang = - 1 ;
$line -> info_bits = 2 ;
2018-08-30 09:40:04 +02:00
$line -> total_ht = - $remise -> amount_ht ;
$line -> total_tva = - $remise -> amount_tva ;
$line -> total_ttc = - $remise -> amount_ttc ;
2019-11-13 19:37:08 +01:00
$result = $line -> insert ();
2018-08-30 09:40:04 +02:00
if ( $result > 0 )
{
2019-11-13 19:37:08 +01:00
$result = $this -> update_price ( 1 );
2018-08-30 09:40:04 +02:00
if ( $result > 0 )
{
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 1 ;
}
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $line -> error ;
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 2 ;
}
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 2 ;
}
}
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Load array lines
*
2020-05-22 13:18:47 +02:00
* @ param int $only_product Return only physical products , not services
2019-06-25 18:12:16 +02:00
* @ param int $loadalsotranslation Return translation for products
2018-08-30 09:40:04 +02:00
* @ return int < 0 if KO , > 0 if OK
*/
2019-06-25 15:41:20 +02:00
public function fetch_lines ( $only_product = 0 , $loadalsotranslation = 0 )
2018-08-30 09:40:04 +02:00
{
2019-06-25 15:41:20 +02:00
global $langs , $conf ;
2018-09-02 09:27:59 +02:00
// phpcs:enable
2019-11-13 19:37:08 +01:00
$this -> lines = array ();
2018-08-30 09:40:04 +02:00
$sql = 'SELECT l.rowid, l.fk_product, l.fk_parent_line, l.product_type, l.fk_commande, l.label as custom_label, l.description, l.price, l.qty, l.vat_src_code, l.tva_tx,' ;
2019-11-13 19:37:08 +01:00
$sql .= ' l.localtax1_tx, l.localtax2_tx, l.localtax1_type, l.localtax2_type, l.fk_remise_except, l.remise_percent, l.subprice, l.fk_product_fournisseur_price as fk_fournprice, l.buy_price_ht as pa_ht, l.rang, l.info_bits, l.special_code,' ;
$sql .= ' l.total_ht, l.total_ttc, l.total_tva, l.total_localtax1, l.total_localtax2, l.date_start, l.date_end,' ;
$sql .= ' l.fk_unit,' ;
$sql .= ' l.fk_multicurrency, l.multicurrency_code, l.multicurrency_subprice, l.multicurrency_total_ht, l.multicurrency_total_tva, l.multicurrency_total_ttc,' ;
$sql .= ' p.ref as product_ref, p.description as product_desc, p.fk_product_type, p.label as product_label, p.tobatch as product_tobatch,' ;
$sql .= ' p.weight, p.weight_units, p.volume, p.volume_units' ;
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'commandedet as l' ;
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'product as p ON (p.rowid = l.fk_product)' ;
$sql .= ' WHERE l.fk_commande = ' . $this -> id ;
2018-08-30 09:40:04 +02:00
if ( $only_product ) $sql .= ' AND p.fk_product_type = 0' ;
$sql .= ' ORDER BY l.rang, l.rowid' ;
dol_syslog ( get_class ( $this ) . " ::fetch_lines " , LOG_DEBUG );
$result = $this -> db -> query ( $sql );
if ( $result )
{
$num = $this -> db -> num_rows ( $result );
2015-10-15 12:17:57 +02:00
2018-08-30 09:40:04 +02:00
$i = 0 ;
while ( $i < $num )
{
$objp = $this -> db -> fetch_object ( $result );
$line = new OrderLine ( $this -> db );
$line -> rowid = $objp -> rowid ;
$line -> id = $objp -> rowid ;
$line -> fk_commande = $objp -> fk_commande ;
$line -> commande_id = $objp -> fk_commande ;
$line -> label = $objp -> custom_label ;
$line -> desc = $objp -> description ;
2019-11-13 19:37:08 +01:00
$line -> description = $objp -> description ; // Description line
2018-08-30 09:40:04 +02:00
$line -> product_type = $objp -> product_type ;
$line -> qty = $objp -> qty ;
$line -> vat_src_code = $objp -> vat_src_code ;
$line -> tva_tx = $objp -> tva_tx ;
$line -> localtax1_tx = $objp -> localtax1_tx ;
$line -> localtax2_tx = $objp -> localtax2_tx ;
$line -> localtax1_type = $objp -> localtax1_type ;
$line -> localtax2_type = $objp -> localtax2_type ;
$line -> total_ht = $objp -> total_ht ;
$line -> total_ttc = $objp -> total_ttc ;
$line -> total_tva = $objp -> total_tva ;
$line -> total_localtax1 = $objp -> total_localtax1 ;
$line -> total_localtax2 = $objp -> total_localtax2 ;
$line -> subprice = $objp -> subprice ;
$line -> fk_remise_except = $objp -> fk_remise_except ;
$line -> remise_percent = $objp -> remise_percent ;
$line -> price = $objp -> price ;
$line -> fk_product = $objp -> fk_product ;
2019-11-13 19:37:08 +01:00
$line -> fk_fournprice = $objp -> fk_fournprice ;
$marginInfos = getMarginInfos ( $objp -> subprice , $objp -> remise_percent , $objp -> tva_tx , $objp -> localtax1_tx , $objp -> localtax2_tx , $line -> fk_fournprice , $objp -> pa_ht );
$line -> pa_ht = $marginInfos [ 0 ];
2018-08-30 09:40:04 +02:00
$line -> marge_tx = $marginInfos [ 1 ];
2018-08-30 10:30:52 +02:00
$line -> marque_tx = $marginInfos [ 2 ];
2018-08-30 09:40:04 +02:00
$line -> rang = $objp -> rang ;
$line -> info_bits = $objp -> info_bits ;
2019-11-13 19:37:08 +01:00
$line -> special_code = $objp -> special_code ;
$line -> fk_parent_line = $objp -> fk_parent_line ;
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
$line -> ref = $objp -> product_ref ;
$line -> product_ref = $objp -> product_ref ;
$line -> libelle = $objp -> product_label ;
$line -> product_label = $objp -> product_label ;
2018-08-30 09:40:04 +02:00
$line -> product_desc = $objp -> product_desc ;
$line -> product_tobatch = $objp -> product_tobatch ;
2019-11-13 19:37:08 +01:00
$line -> fk_product_type = $objp -> fk_product_type ; // Produit ou service
2018-08-30 09:40:04 +02:00
$line -> fk_unit = $objp -> fk_unit ;
$line -> weight = $objp -> weight ;
$line -> weight_units = $objp -> weight_units ;
$line -> volume = $objp -> volume ;
$line -> volume_units = $objp -> volume_units ;
$line -> date_start = $this -> db -> jdate ( $objp -> date_start );
$line -> date_end = $this -> db -> jdate ( $objp -> date_end );
2015-10-15 12:17:57 +02:00
2018-08-30 09:40:04 +02:00
// Multicurrency
2019-11-13 19:37:08 +01:00
$line -> fk_multicurrency = $objp -> fk_multicurrency ;
$line -> multicurrency_code = $objp -> multicurrency_code ;
2018-08-30 09:40:04 +02:00
$line -> multicurrency_subprice = $objp -> multicurrency_subprice ;
$line -> multicurrency_total_ht = $objp -> multicurrency_total_ht ;
$line -> multicurrency_total_tva = $objp -> multicurrency_total_tva ;
$line -> multicurrency_total_ttc = $objp -> multicurrency_total_ttc ;
2018-10-04 17:56:56 +02:00
$line -> fetch_optionals ();
2019-06-29 16:29:32 +02:00
2019-06-25 15:41:20 +02:00
// multilangs
2020-01-30 01:48:28 +01:00
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && ! empty ( $objp -> fk_product ) && ! empty ( $loadalsotranslation )) {
2019-10-20 09:58:31 +02:00
$line = new Product ( $this -> db );
$line -> fetch ( $objp -> fk_product );
$line -> getMultiLangs ();
2019-06-25 15:41:20 +02:00
}
2018-10-04 17:56:56 +02:00
$this -> lines [ $i ] = $line ;
2018-08-30 09:40:04 +02:00
$i ++ ;
}
$this -> db -> free ( $result );
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
return - 3 ;
}
}
/**
* Return number of line with type product .
*
* @ return int < 0 if KO , Nbr of product lines if OK
*/
2019-02-25 00:56:48 +01:00
public function getNbOfProductsLines ()
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$nb = 0 ;
foreach ( $this -> lines as $line )
2018-08-30 09:40:04 +02:00
{
if ( $line -> product_type == 0 ) $nb ++ ;
}
return $nb ;
}
/**
* Return number of line with type service .
*
* @ return int < 0 if KO , Nbr of service lines if OK
*/
2019-02-25 00:56:48 +01:00
public function getNbOfServicesLines ()
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$nb = 0 ;
foreach ( $this -> lines as $line )
2018-08-30 09:40:04 +02:00
{
if ( $line -> product_type == 1 ) $nb ++ ;
}
return $nb ;
}
/**
2019-02-25 00:56:48 +01:00
* Count number of shipments for this order
2018-08-30 09:40:04 +02:00
*
* @ return int < 0 if KO , Nb of shipment found if OK
*/
2019-02-25 00:56:48 +01:00
public function getNbOfShipments ()
2018-08-30 09:40:04 +02:00
{
$nb = 0 ;
$sql = 'SELECT COUNT(DISTINCT ed.fk_expedition) as nb' ;
2019-11-13 19:37:08 +01:00
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'expeditiondet as ed,' ;
$sql .= ' ' . MAIN_DB_PREFIX . 'commandedet as cd' ;
$sql .= ' WHERE' ;
$sql .= ' ed.fk_origin_line = cd.rowid' ;
$sql .= ' AND cd.fk_commande =' . $this -> id ;
2018-08-30 09:40:04 +02:00
//print $sql;
dol_syslog ( get_class ( $this ) . " ::getNbOfShipments " , LOG_DEBUG );
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
2018-08-30 10:30:52 +02:00
$obj = $this -> db -> fetch_object ( $resql );
if ( $obj ) $nb = $obj -> nb ;
2018-08-30 09:40:04 +02:00
2018-08-30 10:30:52 +02:00
$this -> db -> free ( $resql );
2018-08-30 09:40:04 +02:00
return $nb ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> lasterror ();
2018-08-30 09:40:04 +02:00
return - 1 ;
}
}
/**
* Load array this -> expeditions of lines of shipments with nb of products sent for each order line
* Note : For a dedicated shipment , the fetch_lines can be used to load the qty_asked and qty_shipped . This function is use to return qty_shipped cumulated for the order
*
* @ param int $filtre_statut Filter on shipment status
* @ return int < 0 if KO , Nb of lines found if OK
*/
2019-02-25 00:56:48 +01:00
public function loadExpeditions ( $filtre_statut = - 1 )
2018-08-30 09:40:04 +02:00
{
$this -> expeditions = array ();
$sql = 'SELECT cd.rowid, cd.fk_product,' ;
2019-11-13 19:37:08 +01:00
$sql .= ' sum(ed.qty) as qty' ;
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'expeditiondet as ed,' ;
if ( $filtre_statut >= 0 ) $sql .= ' ' . MAIN_DB_PREFIX . 'expedition as e,' ;
$sql .= ' ' . MAIN_DB_PREFIX . 'commandedet as cd' ;
$sql .= ' WHERE' ;
if ( $filtre_statut >= 0 ) $sql .= ' ed.fk_expedition = e.rowid AND' ;
$sql .= ' ed.fk_origin_line = cd.rowid' ;
$sql .= ' AND cd.fk_commande =' . $this -> id ;
if ( $this -> fk_product > 0 ) $sql .= ' AND cd.fk_product = ' . $this -> fk_product ;
if ( $filtre_statut >= 0 ) $sql .= ' AND e.fk_statut >= ' . $filtre_statut ;
$sql .= ' GROUP BY cd.rowid, cd.fk_product' ;
2018-08-30 09:40:04 +02:00
//print $sql;
dol_syslog ( get_class ( $this ) . " ::loadExpeditions " , LOG_DEBUG );
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
$num = $this -> db -> num_rows ( $resql );
$i = 0 ;
while ( $i < $num )
{
$obj = $this -> db -> fetch_object ( $resql );
$this -> expeditions [ $obj -> rowid ] = $obj -> qty ;
$i ++ ;
}
$this -> db -> free ( $resql );
return $num ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> lasterror ();
2018-08-30 09:40:04 +02:00
return - 1 ;
}
}
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Returns a array with expeditions lines number
*
* @ return int Nb of shipments
*
* TODO deprecate , move to Shipping class
*/
2019-02-25 00:56:48 +01:00
public function nb_expedition ()
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
$sql = 'SELECT count(*)' ;
2019-11-13 19:37:08 +01:00
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'expedition as e' ;
$sql .= ', ' . MAIN_DB_PREFIX . 'element_element as el' ;
$sql .= ' WHERE el.fk_source = ' . $this -> id ;
$sql .= " AND el.fk_target = e.rowid " ;
$sql .= " AND el.targettype = 'shipping' " ;
2018-08-30 09:40:04 +02:00
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
$row = $this -> db -> fetch_row ( $resql );
return $row [ 0 ];
2020-05-21 15:05:19 +02:00
} else dol_print_error ( $this -> db );
2018-08-30 09:40:04 +02:00
}
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Return a array with the pending stock by product
*
* @ param int $filtre_statut Filtre sur statut
* @ return int 0 si OK , < 0 si KO
*
* TODO FONCTION NON FINIE A FINIR
*/
2019-02-25 00:56:48 +01:00
public function stock_array ( $filtre_statut = self :: STATUS_CANCELED )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
$this -> stocks = array ();
// Tableau des id de produit de la commande
2019-11-13 19:37:08 +01:00
$array_of_product = array ();
2018-08-30 09:40:04 +02:00
// Recherche total en stock pour chaque produit
// TODO $array_of_product est défini vide juste au dessus !!
if ( count ( $array_of_product ))
{
$sql = " SELECT fk_product, sum(ps.reel) as total " ;
2019-11-13 19:37:08 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " product_stock as ps " ;
$sql .= " WHERE ps.fk_product IN ( " . join ( ',' , $array_of_product ) . " ) " ;
$sql .= ' GROUP BY fk_product ' ;
2018-08-30 09:40:04 +02:00
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
$num = $this -> db -> num_rows ( $resql );
$i = 0 ;
while ( $i < $num )
{
$obj = $this -> db -> fetch_object ( $resql );
$this -> stocks [ $obj -> fk_product ] = $obj -> total ;
$i ++ ;
}
$this -> db -> free ( $resql );
}
}
return 0 ;
}
/**
* Delete an order line
*
* @ param User $user User object
* @ param int $lineid Id of line to delete
* @ return int > 0 if OK , 0 if nothing to do , < 0 if KO
*/
2019-02-25 00:56:48 +01:00
public function deleteline ( $user = null , $lineid = 0 )
2018-08-30 09:40:04 +02:00
{
if ( $this -> statut == self :: STATUS_DRAFT )
{
$this -> db -> begin ();
$sql = " SELECT fk_product, qty " ;
2019-11-13 19:37:08 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " commandedet " ;
$sql .= " WHERE rowid = " . $lineid ;
2018-08-30 09:40:04 +02:00
$result = $this -> db -> query ( $sql );
if ( $result )
{
$obj = $this -> db -> fetch_object ( $result );
if ( $obj )
{
$product = new Product ( $this -> db );
$product -> id = $obj -> fk_product ;
// Delete line
$line = new OrderLine ( $this -> db );
// For triggers
$line -> fetch ( $lineid );
if ( $line -> delete ( $user ) > 0 )
{
2019-11-13 19:37:08 +01:00
$result = $this -> update_price ( 1 );
2018-08-30 09:40:04 +02:00
if ( $result > 0 )
{
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> lasterror ();
2018-08-30 09:40:04 +02:00
return - 1 ;
}
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
$this -> error = $line -> error ;
2018-08-30 09:40:04 +02:00
return - 1 ;
}
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return 0 ;
}
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> lasterror ();
2018-08-30 09:40:04 +02:00
return - 1 ;
}
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = 'ErrorDeleteLineNotAllowedByObjectStatus' ;
2018-08-30 09:40:04 +02:00
return - 1 ;
}
}
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Applique une remise relative
*
* @ param User $user User qui positionne la remise
* @ param float $remise Discount ( percent )
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
* @ return int < 0 if KO , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function set_remise ( $user , $remise , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2019-11-13 19:37:08 +01:00
$remise = trim ( $remise ) ? trim ( $remise ) : 0 ;
2018-08-30 09:40:04 +02:00
if ( $user -> rights -> commande -> creer )
{
2019-11-13 19:37:08 +01:00
$error = 0 ;
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
2019-11-13 19:37:08 +01:00
$remise = price2num ( $remise );
2018-08-30 09:40:04 +02:00
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande' ;
2019-11-13 19:37:08 +01:00
$sql .= ' SET remise_percent = ' . $remise ;
$sql .= ' WHERE rowid = ' . $this -> id . ' AND fk_statut = ' . self :: STATUS_DRAFT . ' ;' ;
2018-08-30 09:40:04 +02:00
dol_syslog ( __METHOD__ , LOG_DEBUG );
2019-11-13 19:37:08 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( ! $resql )
{
2019-11-13 19:37:08 +01:00
$this -> errors [] = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$error ++ ;
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> oldcopy = clone $this ;
2018-08-30 09:40:04 +02:00
$this -> remise_percent = $remise ;
$this -> update_price ( 1 );
}
2019-11-13 19:37:08 +01:00
if ( ! $notrigger && empty ( $error ))
2018-08-30 09:40:04 +02:00
{
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_MODIFY' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2018-08-30 09:40:04 +02:00
{
dol_syslog ( __METHOD__ . ' Error: ' . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2018-08-30 09:40:04 +02:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2018-08-30 09:40:04 +02:00
}
}
}
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Applique une remise absolue
*
* @ param User $user User qui positionne la remise
* @ param float $remise Discount
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
* @ return int < 0 if KO , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function set_remise_absolue ( $user , $remise , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2019-11-13 19:37:08 +01:00
$remise = trim ( $remise ) ? trim ( $remise ) : 0 ;
2018-08-30 09:40:04 +02:00
if ( $user -> rights -> commande -> creer )
{
2019-11-13 19:37:08 +01:00
$error = 0 ;
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
2019-11-13 19:37:08 +01:00
$remise = price2num ( $remise );
2018-08-30 09:40:04 +02:00
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande' ;
2019-11-13 19:37:08 +01:00
$sql .= ' SET remise_absolue = ' . $remise ;
$sql .= ' WHERE rowid = ' . $this -> id . ' AND fk_statut = ' . self :: STATUS_DRAFT . ' ;' ;
2018-08-30 09:40:04 +02:00
dol_syslog ( __METHOD__ , LOG_DEBUG );
2019-11-13 19:37:08 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( ! $resql )
{
2019-11-13 19:37:08 +01:00
$this -> errors [] = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$error ++ ;
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> oldcopy = clone $this ;
2018-08-30 09:40:04 +02:00
$this -> remise_absolue = $remise ;
$this -> update_price ( 1 );
}
2019-11-13 19:37:08 +01:00
if ( ! $notrigger && empty ( $error ))
2018-08-30 09:40:04 +02:00
{
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_MODIFY' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2018-08-30 09:40:04 +02:00
{
dol_syslog ( __METHOD__ . ' Error: ' . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2018-08-30 09:40:04 +02:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2018-08-30 09:40:04 +02:00
}
}
}
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Set the order date
*
* @ param User $user Object user making change
* @ param int $date Date
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
* @ return int < 0 if KO , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function set_date ( $user , $date , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
if ( $user -> rights -> commande -> creer )
{
2019-11-13 19:37:08 +01:00
$error = 0 ;
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande " ;
2019-11-13 19:37:08 +01:00
$sql .= " SET date_commande = " . ( $date ? " ' " . $this -> db -> idate ( $date ) . " ' " : 'null' );
$sql .= " WHERE rowid = " . $this -> id . " AND fk_statut = " . self :: STATUS_DRAFT ;
2018-08-30 09:40:04 +02:00
dol_syslog ( __METHOD__ , LOG_DEBUG );
2019-11-13 19:37:08 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( ! $resql )
{
2019-11-13 19:37:08 +01:00
$this -> errors [] = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$error ++ ;
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> oldcopy = clone $this ;
2018-08-30 09:40:04 +02:00
$this -> date = $date ;
2015-06-01 11:24:30 +02:00
}
2014-05-13 10:12:45 +02:00
2019-11-13 19:37:08 +01:00
if ( ! $notrigger && empty ( $error ))
2015-10-03 18:33:46 +02:00
{
2018-08-30 09:40:04 +02:00
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_MODIFY' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
2015-10-03 18:33:46 +02:00
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2015-10-03 18:33:46 +02:00
{
2018-08-30 09:40:04 +02:00
dol_syslog ( __METHOD__ . ' Error: ' . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2015-10-03 18:33:46 +02:00
}
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2015-10-03 18:33:46 +02:00
}
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
return - 2 ;
}
}
2011-09-12 19:08:02 +02:00
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Set the planned delivery date
*
* @ param User $user Objet utilisateur qui modifie
* @ param int $date_livraison Date de livraison
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
2018-08-30 10:30:52 +02:00
* @ return int < 0 si ko , > 0 si ok
2018-08-30 09:40:04 +02:00
*/
2019-02-25 00:56:48 +01:00
public function set_date_livraison ( $user , $date_livraison , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
if ( $user -> rights -> commande -> creer )
{
2019-11-13 19:37:08 +01:00
$error = 0 ;
2016-07-08 18:30:50 +02:00
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande " ;
2019-11-13 19:37:08 +01:00
$sql .= " SET date_livraison = " . ( $date_livraison ? " ' " . $this -> db -> idate ( $date_livraison ) . " ' " : 'null' );
$sql .= " WHERE rowid = " . $this -> id ;
2012-07-19 10:26:26 +02:00
2018-08-30 09:40:04 +02:00
dol_syslog ( __METHOD__ , LOG_DEBUG );
2019-11-13 19:37:08 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( ! $resql )
{
2019-11-13 19:37:08 +01:00
$this -> errors [] = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$error ++ ;
}
2016-01-23 00:38:17 +01:00
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> oldcopy = clone $this ;
2018-08-30 09:40:04 +02:00
$this -> date_livraison = $date_livraison ;
}
2011-09-12 19:08:02 +02:00
2019-11-13 19:37:08 +01:00
if ( ! $notrigger && empty ( $error ))
2018-08-30 09:40:04 +02:00
{
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_MODIFY' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
2013-06-10 16:05:41 +02:00
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2018-08-30 09:40:04 +02:00
{
dol_syslog ( __METHOD__ . ' Error: ' . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2018-08-30 09:40:04 +02:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2018-08-30 09:40:04 +02:00
}
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
return - 2 ;
}
}
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Return list of orders ( eventuelly filtered on a user ) into an array
*
* @ param int $shortlist 0 = Return array [ id ] = ref , 1 = Return array []( id => id , ref => ref , name => name )
* @ param int $draft 0 = not draft , 1 = draft
* @ param User $excluser Objet user to exclude
* @ param int $socid Id third pary
* @ param int $limit For pagination
* @ param int $offset For pagination
* @ param string $sortfield Sort criteria
* @ param string $sortorder Sort order
* @ return int - 1 if KO , array with result if OK
*/
2019-02-25 00:56:48 +01:00
public function liste_array ( $shortlist = 0 , $draft = 0 , $excluser = '' , $socid = 0 , $limit = 0 , $offset = 0 , $sortfield = 'c.date_commande' , $sortorder = 'DESC' )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
global $user ;
2018-07-01 18:49:37 +02:00
2018-08-30 09:40:04 +02:00
$ga = array ();
2018-07-01 18:49:37 +02:00
2018-08-30 09:40:04 +02:00
$sql = " SELECT s.rowid, s.nom as name, s.client, " ;
2019-11-13 19:37:08 +01:00
$sql .= " c.rowid as cid, c.ref " ;
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " , sc.fk_soc, sc.fk_user " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " societe as s, " . MAIN_DB_PREFIX . " commande as c " ;
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " , " . MAIN_DB_PREFIX . " societe_commerciaux as sc " ;
$sql .= " WHERE c.entity IN ( " . getEntity ( 'commande' ) . " ) " ;
$sql .= " AND c.fk_soc = s.rowid " ;
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) //restriction
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . $user -> id ;
2018-08-30 09:40:04 +02:00
}
2019-11-13 19:37:08 +01:00
if ( $socid ) $sql .= " AND s.rowid = " . $socid ;
if ( $draft ) $sql .= " AND c.fk_statut = " . self :: STATUS_DRAFT ;
if ( is_object ( $excluser )) $sql .= " AND c.fk_user_author <> " . $excluser -> id ;
$sql .= $this -> db -> order ( $sortfield , $sortorder );
$sql .= $this -> db -> plimit ( $limit , $offset );
2011-09-12 19:08:02 +02:00
2019-11-13 19:37:08 +01:00
$result = $this -> db -> query ( $sql );
2018-02-24 16:21:16 +01:00
if ( $result )
{
2018-08-30 09:40:04 +02:00
$numc = $this -> db -> num_rows ( $result );
if ( $numc )
2018-02-24 16:21:16 +01:00
{
2018-08-30 09:40:04 +02:00
$i = 0 ;
while ( $i < $numc )
{
$obj = $this -> db -> fetch_object ( $result );
2018-02-24 16:21:16 +01:00
2018-08-30 09:40:04 +02:00
if ( $shortlist == 1 )
{
$ga [ $obj -> cid ] = $obj -> ref ;
2020-05-21 15:05:19 +02:00
} elseif ( $shortlist == 2 )
2018-08-30 09:40:04 +02:00
{
$ga [ $obj -> cid ] = $obj -> ref . ' (' . $obj -> name . ')' ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$ga [ $i ][ 'id' ] = $obj -> cid ;
2018-08-30 09:40:04 +02:00
$ga [ $i ][ 'ref' ] = $obj -> ref ;
$ga [ $i ][ 'name' ] = $obj -> name ;
}
$i ++ ;
}
}
return $ga ;
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
dol_print_error ( $this -> db );
return - 1 ;
}
}
2012-07-08 12:18:29 +02:00
2018-08-30 09:40:04 +02:00
/**
* Update delivery delay
*
* @ param int $availability_id Id du nouveau mode
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
* @ return int > 0 if OK , < 0 if KO
*/
2019-02-25 00:56:48 +01:00
public function availability ( $availability_id , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
global $user ;
2015-02-10 12:22:07 +01:00
2018-08-30 09:40:04 +02:00
dol_syslog ( 'Commande::availability(' . $availability_id . ')' );
if ( $this -> statut >= self :: STATUS_DRAFT )
{
2019-11-13 19:37:08 +01:00
$error = 0 ;
2016-07-08 18:30:50 +02:00
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande' ;
$sql .= ' SET fk_availability = ' . $availability_id ;
$sql .= ' WHERE rowid=' . $this -> id ;
2016-07-08 18:30:50 +02:00
2018-08-30 09:40:04 +02:00
dol_syslog ( __METHOD__ , LOG_DEBUG );
2019-11-13 19:37:08 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( ! $resql )
{
2019-11-13 19:37:08 +01:00
$this -> errors [] = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$error ++ ;
}
2017-11-02 12:38:36 +01:00
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> oldcopy = clone $this ;
2018-08-30 09:40:04 +02:00
$this -> availability_id = $availability_id ;
}
2011-09-12 19:08:02 +02:00
2019-11-13 19:37:08 +01:00
if ( ! $notrigger && empty ( $error ))
2018-08-30 09:40:04 +02:00
{
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_MODIFY' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
2012-02-06 17:18:19 +01:00
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2018-08-30 09:40:04 +02:00
{
dol_syslog ( __METHOD__ . ' Error: ' . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2018-08-30 09:40:04 +02:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2018-08-30 09:40:04 +02:00
}
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$error_str = 'Command status do not meet requirement ' . $this -> statut ;
2018-08-30 09:40:04 +02:00
dol_syslog ( __METHOD__ . $error_str , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error = $error_str ;
$this -> errors [] = $this -> error ;
2018-08-30 09:40:04 +02:00
return - 2 ;
}
}
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Update order demand_reason
*
* @ param int $demand_reason_id Id of new demand
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
* @ return int > 0 if ok , < 0 if ko
*/
2019-02-25 00:56:48 +01:00
public function demand_reason ( $demand_reason_id , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
global $user ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
dol_syslog ( 'Commande::demand_reason(' . $demand_reason_id . ')' );
if ( $this -> statut >= self :: STATUS_DRAFT )
{
2019-11-13 19:37:08 +01:00
$error = 0 ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande' ;
$sql .= ' SET fk_input_reason = ' . $demand_reason_id ;
$sql .= ' WHERE rowid=' . $this -> id ;
dol_syslog ( __METHOD__ , LOG_DEBUG );
2019-11-13 19:37:08 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( ! $resql )
{
2019-11-13 19:37:08 +01:00
$this -> errors [] = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$error ++ ;
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> oldcopy = clone $this ;
2018-08-30 09:40:04 +02:00
$this -> demand_reason_id = $demand_reason_id ;
}
2019-11-13 19:37:08 +01:00
if ( ! $notrigger && empty ( $error ))
2018-08-30 09:40:04 +02:00
{
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_MODIFY' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2018-08-30 09:40:04 +02:00
{
dol_syslog ( __METHOD__ . ' Error: ' . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2018-08-30 09:40:04 +02:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2018-08-30 09:40:04 +02:00
}
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$error_str = 'order status do not meet requirement ' . $this -> statut ;
2018-08-30 09:40:04 +02:00
dol_syslog ( __METHOD__ . $error_str , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error = $error_str ;
$this -> errors [] = $this -> error ;
2018-08-30 09:40:04 +02:00
return - 2 ;
}
}
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Set customer ref
*
* @ param User $user User that make change
* @ param string $ref_client Customer ref
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
* @ return int < 0 if KO , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function set_ref_client ( $user , $ref_client , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
if ( $user -> rights -> commande -> creer )
{
2019-11-13 19:37:08 +01:00
$error = 0 ;
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande SET' ;
2019-11-13 19:37:08 +01:00
$sql .= ' ref_client = ' . ( empty ( $ref_client ) ? 'NULL' : '\'' . $this -> db -> escape ( $ref_client ) . '\'' );
$sql .= ' WHERE rowid = ' . $this -> id ;
2018-08-30 09:40:04 +02:00
dol_syslog ( __METHOD__ . ' this->id=' . $this -> id . ', ref_client=' . $ref_client , LOG_DEBUG );
2019-11-13 19:37:08 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( ! $resql )
{
2019-11-13 19:37:08 +01:00
$this -> errors [] = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$error ++ ;
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> oldcopy = clone $this ;
2018-08-30 09:40:04 +02:00
$this -> ref_client = $ref_client ;
}
2019-11-13 19:37:08 +01:00
if ( ! $notrigger && empty ( $error ))
2018-08-30 09:40:04 +02:00
{
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_MODIFY' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2018-08-30 09:40:04 +02:00
{
dol_syslog ( __METHOD__ . ' Error: ' . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2018-08-30 09:40:04 +02:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2018-08-30 09:40:04 +02:00
}
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
return - 1 ;
}
}
2011-09-12 19:08:02 +02:00
2012-07-08 12:18:29 +02:00
/**
* Classify the order as invoiced
*
2016-07-08 21:02:27 +02:00
* @ param User $user Object user making the change
2016-09-24 07:18:38 +02:00
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
2016-07-08 21:02:27 +02:00
* @ return int < 0 if KO , > 0 if OK
2012-07-08 12:18:29 +02:00
*/
2019-02-25 00:56:48 +01:00
public function classifyBilled ( User $user , $notrigger = 0 )
2012-07-08 12:18:29 +02:00
{
2018-08-30 09:40:04 +02:00
$error = 0 ;
2012-07-08 13:19:13 +02:00
$this -> db -> begin ();
2011-09-12 19:08:02 +02:00
2012-07-08 12:18:29 +02:00
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande SET facture = 1' ;
2020-01-30 01:48:28 +01:00
$sql .= ' WHERE rowid = ' . $this -> id . ' AND fk_statut > ' . self :: STATUS_DRAFT ;
2012-07-08 13:19:13 +02:00
2014-06-12 11:31:53 +02:00
dol_syslog ( get_class ( $this ) . " ::classifyBilled " , LOG_DEBUG );
2012-07-08 12:18:29 +02:00
if ( $this -> db -> query ( $sql ))
{
2020-01-30 01:48:28 +01:00
if ( ! $error )
2012-07-08 13:19:13 +02:00
{
2020-01-30 01:48:28 +01:00
$this -> oldcopy = clone $this ;
$this -> billed = 1 ;
2016-07-08 21:02:27 +02:00
}
2016-07-08 21:28:21 +02:00
2020-01-30 01:48:28 +01:00
if ( ! $notrigger && empty ( $error ))
2016-07-08 21:02:27 +02:00
{
2018-08-30 09:40:04 +02:00
// Call trigger
2020-01-30 01:48:28 +01:00
$result = $this -> call_trigger ( 'ORDER_CLASSIFY_BILLED' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
2016-07-08 21:02:27 +02:00
}
2012-07-08 12:18:29 +02:00
2020-01-30 01:48:28 +01:00
if ( ! $error )
2016-07-08 21:02:27 +02:00
{
2012-07-08 13:19:13 +02:00
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2020-01-30 01:48:28 +01:00
foreach ( $this -> errors as $errmsg )
2014-06-14 12:30:48 +02:00
{
dol_syslog ( get_class ( $this ) . " ::classifyBilled " . $errmsg , LOG_ERR );
2020-01-30 01:48:28 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2014-06-14 12:30:48 +02:00
}
2012-07-08 13:19:13 +02:00
$this -> db -> rollback ();
2020-01-30 01:48:28 +01:00
return - 1 * $error ;
2012-07-08 13:19:13 +02:00
}
2020-05-21 15:05:19 +02:00
} else {
2020-01-30 01:48:28 +01:00
$this -> error = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
2012-07-08 12:18:29 +02:00
return - 1 ;
}
}
2016-06-06 13:29:37 +02:00
/**
* Classify the order as not invoiced
*
* @ return int < 0 if ko , > 0 if ok
*/
2019-02-25 00:56:48 +01:00
public function classifyUnBilled ()
2016-06-06 13:29:37 +02:00
{
2018-08-30 09:40:04 +02:00
global $conf , $user , $langs ;
$error = 0 ;
$this -> db -> begin ();
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande SET facture = 0' ;
2019-11-13 19:37:08 +01:00
$sql .= ' WHERE rowid = ' . $this -> id . ' AND fk_statut > ' . self :: STATUS_DRAFT ;
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::classifyUnBilled " , LOG_DEBUG );
if ( $this -> db -> query ( $sql ))
{
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> oldcopy = clone $this ;
$this -> billed = 1 ;
2018-08-30 09:40:04 +02:00
}
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_CLASSIFY_UNBILLED' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> billed = 0 ;
2018-08-30 09:40:04 +02:00
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2018-08-30 09:40:04 +02:00
{
dol_syslog ( get_class ( $this ) . " ::classifyUnBilled " . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2018-08-30 09:40:04 +02:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2018-08-30 09:40:04 +02:00
}
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 1 ;
}
2016-06-06 13:29:37 +02:00
}
2016-07-08 18:30:50 +02:00
2018-08-30 09:40:04 +02:00
/**
* Update a line in database
*
* @ param int $rowid Id of line to update
* @ param string $desc Description of line
* @ param float $pu Unit price
* @ param float $qty Quantity
* @ param float $remise_percent Percent of discount
* @ param float $txtva Taux TVA
* @ param float $txlocaltax1 Local tax 1 rate
* @ param float $txlocaltax2 Local tax 2 rate
* @ param string $price_base_type HT or TTC
* @ param int $info_bits Miscellaneous informations on line
* @ param int $date_start Start date of the line
* @ param int $date_end End date of the line
* @ param int $type Type of line ( 0 = product , 1 = service )
* @ param int $fk_parent_line Id of parent line ( 0 in most cases , used by modules adding sublevels into lines ) .
* @ param int $skip_update_total Keep fields total_xxx to 0 ( used for special lines by some modules )
* @ param int $fk_fournprice Id of origin supplier price
* @ param int $pa_ht Price ( without tax ) of product when it was bought
* @ param string $label Label
* @ param int $special_code Special code ( also used by externals modules ! )
2015-02-28 04:59:27 +01:00
* @ param array $array_options extrafields array
2018-08-30 09:40:04 +02:00
* @ param string $fk_unit Code of the unit to use . Null to use the default one
2016-12-11 09:29:20 +01:00
* @ param double $pu_ht_devise Amount in currency
2018-08-30 09:40:04 +02:00
* @ param int $notrigger disable line update trigger
* @ return int < 0 if KO , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function updateline ( $rowid , $desc , $pu , $qty , $remise_percent , $txtva , $txlocaltax1 = 0.0 , $txlocaltax2 = 0.0 , $price_base_type = 'HT' , $info_bits = 0 , $date_start = '' , $date_end = '' , $type = 0 , $fk_parent_line = 0 , $skip_update_total = 0 , $fk_fournprice = null , $pa_ht = 0 , $label = '' , $special_code = 0 , $array_options = 0 , $fk_unit = null , $pu_ht_devise = 0 , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
global $conf , $mysoc , $langs , $user ;
dol_syslog ( get_class ( $this ) . " ::updateline id= $rowid , desc= $desc , pu= $pu , qty= $qty , remise_percent= $remise_percent , txtva= $txtva , txlocaltax1= $txlocaltax1 , txlocaltax2= $txlocaltax2 , price_base_type= $price_base_type , info_bits= $info_bits , date_start= $date_start , date_end= $date_end , type= $type , fk_parent_line= $fk_parent_line , pa_ht= $pa_ht , special_code= $special_code " );
include_once DOL_DOCUMENT_ROOT . '/core/lib/price.lib.php' ;
2019-04-11 18:55:16 +02:00
if ( $this -> statut == Commande :: STATUS_DRAFT )
2018-08-30 09:40:04 +02:00
{
// Clean parameters
2019-11-13 19:37:08 +01:00
if ( empty ( $qty )) $qty = 0 ;
if ( empty ( $info_bits )) $info_bits = 0 ;
if ( empty ( $txtva )) $txtva = 0 ;
if ( empty ( $txlocaltax1 )) $txlocaltax1 = 0 ;
if ( empty ( $txlocaltax2 )) $txlocaltax2 = 0 ;
if ( empty ( $remise_percent )) $remise_percent = 0 ;
if ( empty ( $special_code ) || $special_code == 3 ) $special_code = 0 ;
2019-03-27 10:00:29 +01:00
2019-03-24 14:30:00 +01:00
if ( $date_start && $date_end && $date_start > $date_end ) {
$langs -> load ( " errors " );
2019-11-13 19:37:08 +01:00
$this -> error = $langs -> trans ( 'ErrorStartDateGreaterEnd' );
2019-03-24 14:30:00 +01:00
return - 1 ;
}
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
$remise_percent = price2num ( $remise_percent );
$qty = price2num ( $qty );
2018-08-30 09:40:04 +02:00
$pu = price2num ( $pu );
2019-11-13 19:37:08 +01:00
$pa_ht = price2num ( $pa_ht );
$pu_ht_devise = price2num ( $pu_ht_devise );
$txtva = price2num ( $txtva );
$txlocaltax1 = price2num ( $txlocaltax1 );
$txlocaltax2 = price2num ( $txlocaltax2 );
2019-03-27 10:00:29 +01:00
2019-03-24 14:30:00 +01:00
$this -> db -> begin ();
2018-08-30 09:40:04 +02:00
// Calcul du total TTC et de la TVA pour la ligne a partir de
// qty, pu, remise_percent et txtva
// TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
// la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
2019-11-13 19:37:08 +01:00
$localtaxes_type = getLocalTaxesFromRate ( $txtva , 0 , $this -> thirdparty , $mysoc );
2018-08-30 09:40:04 +02:00
2018-08-30 10:30:52 +02:00
// Clean vat code
2019-11-13 19:37:08 +01:00
$vat_src_code = '' ;
2018-08-30 09:40:04 +02:00
if ( preg_match ( '/\((.*)\)/' , $txtva , $reg ))
{
$vat_src_code = $reg [ 1 ];
2019-11-13 19:37:08 +01:00
$txtva = preg_replace ( '/\s*\(.*\)/' , '' , $txtva ); // Remove code into vatrate.
2018-08-30 09:40:04 +02:00
}
2019-11-13 19:37:08 +01:00
$tabprice = calcul_price_total ( $qty , $pu , $remise_percent , $txtva , $txlocaltax1 , $txlocaltax2 , 0 , $price_base_type , $info_bits , $type , $mysoc , $localtaxes_type , 100 , $this -> multicurrency_tx , $pu_ht_devise );
2018-08-30 09:40:04 +02:00
$total_ht = $tabprice [ 0 ];
$total_tva = $tabprice [ 1 ];
$total_ttc = $tabprice [ 2 ];
$total_localtax1 = $tabprice [ 9 ];
$total_localtax2 = $tabprice [ 10 ];
2016-12-11 00:42:52 +01:00
$pu_ht = $tabprice [ 3 ];
$pu_tva = $tabprice [ 4 ];
$pu_ttc = $tabprice [ 5 ];
2011-09-12 19:08:02 +02:00
2016-01-23 00:38:17 +01:00
// MultiCurrency
$multicurrency_total_ht = $tabprice [ 16 ];
2018-08-30 09:40:04 +02:00
$multicurrency_total_tva = $tabprice [ 17 ];
$multicurrency_total_ttc = $tabprice [ 18 ];
2016-12-11 00:42:52 +01:00
$pu_ht_devise = $tabprice [ 19 ];
2016-07-08 18:30:50 +02:00
2018-08-30 09:40:04 +02:00
// Anciens indicateurs: $price, $subprice (a ne plus utiliser)
$price = $pu_ht ;
2016-07-08 18:30:50 +02:00
if ( $price_base_type == 'TTC' )
2016-03-14 17:27:12 +01:00
{
2016-12-11 00:42:52 +01:00
$subprice = $pu_ttc ;
2020-05-21 15:05:19 +02:00
} else {
2016-12-11 00:42:52 +01:00
$subprice = $pu_ht ;
2016-03-14 17:27:12 +01:00
}
2018-08-30 09:40:04 +02:00
$remise = 0 ;
if ( $remise_percent > 0 )
{
2019-01-27 11:55:16 +01:00
$remise = round (( $pu * $remise_percent / 100 ), 2 );
2018-08-30 09:40:04 +02:00
$price = ( $pu - $remise );
}
//Fetch current line from the database and then clone the object and set it in $oldline property
$line = new OrderLine ( $this -> db );
$line -> fetch ( $rowid );
2020-01-25 14:03:24 +01:00
$line -> fetch_optionals ();
2018-08-30 09:40:04 +02:00
if ( ! empty ( $line -> fk_product ))
{
2019-11-13 19:37:08 +01:00
$product = new Product ( $this -> db );
$result = $product -> fetch ( $line -> fk_product );
$product_type = $product -> type ;
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> global -> STOCK_MUST_BE_ENOUGH_FOR_ORDER ) && $product_type == 0 && $product -> stock_reel < $qty )
2018-08-30 09:40:04 +02:00
{
$langs -> load ( " errors " );
2019-11-13 19:37:08 +01:00
$this -> error = $langs -> trans ( 'ErrorStockIsNotEnoughToAddProductOnOrder' , $product -> ref );
2020-01-19 12:15:47 +01:00
$this -> errors [] = $this -> error ;
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::addline error=Product " . $product -> ref . " : " . $this -> error , LOG_ERR );
$this -> db -> rollback ();
return self :: STOCK_NOT_ENOUGH_FOR_ORDER ;
}
}
$staticline = clone $line ;
$line -> oldline = $staticline ;
$this -> line = $line ;
$this -> line -> context = $this -> context ;
// Reorder if fk_parent_line change
2020-01-30 01:48:28 +01:00
if ( ! empty ( $fk_parent_line ) && ! empty ( $staticline -> fk_parent_line ) && $fk_parent_line != $staticline -> fk_parent_line )
2018-08-30 09:40:04 +02:00
{
$rangmax = $this -> line_max ( $fk_parent_line );
$this -> line -> rang = $rangmax + 1 ;
}
2020-01-30 01:48:28 +01:00
$this -> line -> id = $rowid ;
$this -> line -> label = $label ;
$this -> line -> desc = $desc ;
$this -> line -> qty = $qty ;
2018-08-30 09:40:04 +02:00
2020-01-30 01:48:28 +01:00
$this -> line -> vat_src_code = $vat_src_code ;
2018-08-30 09:40:04 +02:00
$this -> line -> tva_tx = $txtva ;
$this -> line -> localtax1_tx = $txlocaltax1 ;
$this -> line -> localtax2_tx = $txlocaltax2 ;
2013-09-12 09:59:23 +02:00
$this -> line -> localtax1_type = $localtaxes_type [ 0 ];
$this -> line -> localtax2_type = $localtaxes_type [ 2 ];
2018-08-30 09:40:04 +02:00
$this -> line -> remise_percent = $remise_percent ;
$this -> line -> subprice = $subprice ;
$this -> line -> info_bits = $info_bits ;
$this -> line -> special_code = $special_code ;
$this -> line -> total_ht = $total_ht ;
$this -> line -> total_tva = $total_tva ;
2019-11-13 19:37:08 +01:00
$this -> line -> total_localtax1 = $total_localtax1 ;
$this -> line -> total_localtax2 = $total_localtax2 ;
2018-08-30 09:40:04 +02:00
$this -> line -> total_ttc = $total_ttc ;
$this -> line -> date_start = $date_start ;
$this -> line -> date_end = $date_end ;
$this -> line -> product_type = $type ;
$this -> line -> fk_parent_line = $fk_parent_line ;
2019-11-13 19:37:08 +01:00
$this -> line -> skip_update_total = $skip_update_total ;
2018-08-30 09:40:04 +02:00
$this -> line -> fk_unit = $fk_unit ;
2011-09-12 19:08:02 +02:00
2015-10-26 20:33:42 +01:00
$this -> line -> fk_fournprice = $fk_fournprice ;
2012-08-23 07:50:20 +02:00
$this -> line -> pa_ht = $pa_ht ;
2012-07-20 09:57:50 +02:00
2016-01-23 00:38:17 +01:00
// Multicurrency
2016-12-11 00:42:52 +01:00
$this -> line -> multicurrency_subprice = $pu_ht_devise ;
2016-01-23 00:38:17 +01:00
$this -> line -> multicurrency_total_ht = $multicurrency_total_ht ;
2018-08-30 09:40:04 +02:00
$this -> line -> multicurrency_total_tva = $multicurrency_total_tva ;
$this -> line -> multicurrency_total_ttc = $multicurrency_total_ttc ;
2016-07-08 18:30:50 +02:00
2018-08-30 09:40:04 +02:00
// TODO deprecated
2019-11-13 19:37:08 +01:00
$this -> line -> price = $price ;
$this -> line -> remise = $remise ;
2011-09-12 19:08:02 +02:00
2019-11-13 19:37:08 +01:00
if ( is_array ( $array_options ) && count ( $array_options ) > 0 ) {
2020-01-25 14:03:24 +01:00
// We replace values in this->line->array_options only for entries defined into $array_options
2020-01-30 01:48:28 +01:00
foreach ( $array_options as $key => $value ) {
2020-01-25 14:03:24 +01:00
$this -> line -> array_options [ $key ] = $array_options [ $key ];
}
2013-06-10 16:05:41 +02:00
}
2019-11-13 19:37:08 +01:00
$result = $this -> line -> update ( $user , $notrigger );
2018-08-30 09:40:04 +02:00
if ( $result > 0 )
{
// Reorder if child line
2019-11-13 19:37:08 +01:00
if ( ! empty ( $fk_parent_line )) $this -> line_order ( true , 'DESC' );
2018-08-30 09:40:04 +02:00
// Mise a jour info denormalisees
$this -> update_price ( 1 );
$this -> db -> commit ();
return $result ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> line -> error ;
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 1 ;
}
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = get_class ( $this ) . " ::updateline Order status makes operation forbidden " ;
$this -> errors = array ( 'OrderStatusMakeOperationForbidden' );
2018-08-30 09:40:04 +02:00
return - 2 ;
}
}
2011-09-12 19:08:02 +02:00
2015-01-10 01:07:18 +01:00
/**
* Update database
*
* @ param User $user User that modify
* @ param int $notrigger 0 = launch triggers after , 1 = disable triggers
* @ return int < 0 if KO , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function update ( User $user , $notrigger = 0 )
2015-01-10 01:07:18 +01:00
{
2018-01-30 17:00:17 +01:00
global $conf ;
2019-11-13 19:37:08 +01:00
$error = 0 ;
2015-01-10 01:07:18 +01:00
// Clean parameters
2019-11-13 19:37:08 +01:00
if ( isset ( $this -> ref )) $this -> ref = trim ( $this -> ref );
if ( isset ( $this -> ref_client )) $this -> ref_client = trim ( $this -> ref_client );
if ( isset ( $this -> note ) || isset ( $this -> note_private )) $this -> note_private = ( isset ( $this -> note_private ) ? trim ( $this -> note_private ) : trim ( $this -> note ));
if ( isset ( $this -> note_public )) $this -> note_public = trim ( $this -> note_public );
if ( isset ( $this -> modelpdf )) $this -> modelpdf = trim ( $this -> modelpdf );
if ( isset ( $this -> import_key )) $this -> import_key = trim ( $this -> import_key );
2015-01-10 01:07:18 +01:00
// Check parameters
// Put here code to add control on parameters values
// Update request
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande SET " ;
2019-11-13 19:37:08 +01:00
$sql .= " ref= " . ( isset ( $this -> ref ) ? " ' " . $this -> db -> escape ( $this -> ref ) . " ' " : " null " ) . " , " ;
$sql .= " ref_client= " . ( isset ( $this -> ref_client ) ? " ' " . $this -> db -> escape ( $this -> ref_client ) . " ' " : " null " ) . " , " ;
$sql .= " ref_ext= " . ( isset ( $this -> ref_ext ) ? " ' " . $this -> db -> escape ( $this -> ref_ext ) . " ' " : " null " ) . " , " ;
$sql .= " fk_soc= " . ( isset ( $this -> socid ) ? $this -> socid : " null " ) . " , " ;
$sql .= " date_commande= " . ( strval ( $this -> date_commande ) != '' ? " ' " . $this -> db -> idate ( $this -> date_commande ) . " ' " : 'null' ) . " , " ;
$sql .= " date_valid= " . ( strval ( $this -> date_validation ) != '' ? " ' " . $this -> db -> idate ( $this -> date_validation ) . " ' " : 'null' ) . " , " ;
$sql .= " tva= " . ( isset ( $this -> total_tva ) ? $this -> total_tva : " null " ) . " , " ;
$sql .= " localtax1= " . ( isset ( $this -> total_localtax1 ) ? $this -> total_localtax1 : " null " ) . " , " ;
$sql .= " localtax2= " . ( isset ( $this -> total_localtax2 ) ? $this -> total_localtax2 : " null " ) . " , " ;
$sql .= " total_ht= " . ( isset ( $this -> total_ht ) ? $this -> total_ht : " null " ) . " , " ;
$sql .= " total_ttc= " . ( isset ( $this -> total_ttc ) ? $this -> total_ttc : " null " ) . " , " ;
$sql .= " fk_statut= " . ( isset ( $this -> statut ) ? $this -> statut : " null " ) . " , " ;
$sql .= " fk_user_author= " . ( isset ( $this -> user_author_id ) ? $this -> user_author_id : " null " ) . " , " ;
$sql .= " fk_user_valid= " . ( isset ( $this -> user_valid ) ? $this -> user_valid : " null " ) . " , " ;
$sql .= " fk_projet= " . ( isset ( $this -> fk_project ) ? $this -> fk_project : " null " ) . " , " ;
$sql .= " fk_cond_reglement= " . ( isset ( $this -> cond_reglement_id ) ? $this -> cond_reglement_id : " null " ) . " , " ;
$sql .= " fk_mode_reglement= " . ( isset ( $this -> mode_reglement_id ) ? $this -> mode_reglement_id : " null " ) . " , " ;
$sql .= " fk_account= " . ( $this -> fk_account > 0 ? $this -> fk_account : " null " ) . " , " ;
$sql .= " note_private= " . ( isset ( $this -> note_private ) ? " ' " . $this -> db -> escape ( $this -> note_private ) . " ' " : " null " ) . " , " ;
$sql .= " note_public= " . ( isset ( $this -> note_public ) ? " ' " . $this -> db -> escape ( $this -> note_public ) . " ' " : " null " ) . " , " ;
$sql .= " model_pdf= " . ( isset ( $this -> modelpdf ) ? " ' " . $this -> db -> escape ( $this -> modelpdf ) . " ' " : " null " ) . " , " ;
$sql .= " import_key= " . ( isset ( $this -> import_key ) ? " ' " . $this -> db -> escape ( $this -> import_key ) . " ' " : " null " ) . " " ;
$sql .= " WHERE rowid= " . $this -> id ;
2015-01-10 01:07:18 +01:00
$this -> db -> begin ();
dol_syslog ( get_class ( $this ) . " ::update " , LOG_DEBUG );
$resql = $this -> db -> query ( $sql );
2019-11-13 19:37:08 +01:00
if ( ! $resql ) {
$error ++ ; $this -> errors [] = " Error " . $this -> db -> lasterror ();
2015-01-10 01:07:18 +01:00
}
2020-04-23 13:21:39 +02:00
if ( ! $error )
2015-01-10 01:07:18 +01:00
{
2019-11-13 19:37:08 +01:00
$result = $this -> insertExtraFields ();
2018-08-12 16:29:26 +02:00
if ( $result < 0 )
2015-01-10 01:07:18 +01:00
{
2018-08-12 16:29:26 +02:00
$error ++ ;
2015-01-10 01:07:18 +01:00
}
}
2019-11-13 19:37:08 +01:00
if ( ! $error && ! $notrigger )
2018-08-12 16:29:26 +02:00
{
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_MODIFY' , $user );
2018-08-12 16:29:26 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
2015-01-10 01:07:18 +01:00
// Commit or rollback
if ( $error )
{
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2015-01-10 01:07:18 +01:00
{
dol_syslog ( get_class ( $this ) . " ::update " . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2015-01-10 01:07:18 +01:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$this -> db -> commit ();
return 1 ;
}
}
/**
* Delete the customer order
*
* @ param User $user User object
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
* @ return int <= 0 if KO , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function delete ( $user , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
global $conf , $langs ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
$error = 0 ;
2019-11-13 19:37:08 +01:00
dol_syslog ( get_class ( $this ) . " ::delete " . $this -> id , LOG_DEBUG );
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
2019-11-13 19:37:08 +01:00
if ( ! $error && ! $notrigger )
2018-08-30 09:40:04 +02:00
{
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'ORDER_DELETE' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
if ( $this -> nb_expedition () != 0 )
{
$this -> errors [] = $langs -> trans ( 'SomeShipmentExists' );
$error ++ ;
}
2020-04-23 17:51:06 +02:00
if ( ! $error )
{
// Delete extrafields of order details
2020-05-02 03:39:56 +02:00
$main = MAIN_DB_PREFIX . 'commandedet' ;
$ef = $main . " _extrafields " ;
$sql = " DELETE FROM $ef WHERE fk_object IN (SELECT rowid FROM $main WHERE fk_commande = " . $this -> id . " ) " ;
2020-04-23 17:51:06 +02:00
if ( ! $this -> db -> query ( $sql ))
{
$error ++ ;
$this -> errors [] = $this -> db -> lasterror ();
}
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
// Delete order details
$sql = 'DELETE FROM ' . MAIN_DB_PREFIX . " commandedet WHERE fk_commande = " . $this -> id ;
2019-11-13 19:37:08 +01:00
if ( ! $this -> db -> query ( $sql ))
2018-08-30 09:40:04 +02:00
{
$error ++ ;
2019-11-13 19:37:08 +01:00
$this -> errors [] = $this -> db -> lasterror ();
2018-08-30 09:40:04 +02:00
}
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
// Delete linked object
$res = $this -> deleteObjectLinked ();
if ( $res < 0 ) $error ++ ;
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
// Delete linked contacts
$res = $this -> delete_linked_contact ();
if ( $res < 0 ) $error ++ ;
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
// Remove extrafields
2020-04-23 13:21:39 +02:00
$result = $this -> deleteExtraFields ();
if ( $result < 0 )
2018-08-30 09:40:04 +02:00
{
2020-04-23 13:21:39 +02:00
$error ++ ;
dol_syslog ( get_class ( $this ) . " ::delete error -4 " . $this -> error , LOG_ERR );
2018-08-30 09:40:04 +02:00
}
}
2020-01-30 01:48:28 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
// Delete object
$sql = 'DELETE FROM ' . MAIN_DB_PREFIX . " commande WHERE rowid = " . $this -> id ;
2020-01-30 01:48:28 +01:00
if ( ! $this -> db -> query ( $sql ))
2018-08-30 09:40:04 +02:00
{
$error ++ ;
2020-01-30 01:48:28 +01:00
$this -> errors [] = $this -> db -> lasterror ();
2018-08-30 09:40:04 +02:00
}
}
2020-01-30 01:48:28 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
// Remove directory with files
$comref = dol_sanitizeFileName ( $this -> ref );
2019-05-12 14:25:41 +02:00
if ( $conf -> commande -> multidir_output [ $this -> entity ] && ! empty ( $this -> ref ))
2018-08-30 09:40:04 +02:00
{
2020-01-30 01:48:28 +01:00
$dir = $conf -> commande -> multidir_output [ $this -> entity ] . " / " . $comref ;
$file = $conf -> commande -> multidir_output [ $this -> entity ] . " / " . $comref . " / " . $comref . " .pdf " ;
2018-08-30 09:40:04 +02:00
if ( file_exists ( $file )) // We must delete all files before deleting directory
{
dol_delete_preview ( $this );
2020-01-30 01:48:28 +01:00
if ( ! dol_delete_file ( $file , 0 , 0 , 0 , $this )) // For triggers
2018-08-30 09:40:04 +02:00
{
$this -> db -> rollback ();
return 0 ;
}
}
if ( file_exists ( $dir ))
{
2019-11-13 19:37:08 +01:00
if ( ! dol_delete_dir_recursive ( $dir ))
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> error = $langs -> trans ( " ErrorCanNotDeleteDir " , $dir );
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return 0 ;
}
}
}
}
2019-11-13 19:37:08 +01:00
if ( ! $error )
2018-08-30 09:40:04 +02:00
{
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2018-08-30 09:40:04 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2018-08-30 09:40:04 +02:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2018-08-30 09:40:04 +02:00
}
}
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Load indicators for dashboard ( this -> nbtodo and this -> nbtodolate )
*
* @ param User $user Object user
* @ return WorkboardResponse | int < 0 if KO , WorkboardResponse if OK
*/
2019-02-25 00:56:48 +01:00
public function load_board ( $user )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
global $conf , $langs ;
$clause = " WHERE " ;
$sql = " SELECT c.rowid, c.date_creation as datec, c.date_commande, c.date_livraison as delivery_date, c.fk_statut, c.total_ht " ;
2020-01-30 01:48:28 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " commande as c " ;
2019-10-31 20:46:31 +01:00
if ( ! $user -> rights -> societe -> client -> voir && ! $user -> socid )
2018-08-30 09:40:04 +02:00
{
2020-01-30 01:48:28 +01:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " societe_commerciaux as sc ON c.fk_soc = sc.fk_soc " ;
$sql .= " WHERE sc.fk_user = " . $user -> id ;
2018-08-30 09:40:04 +02:00
$clause = " AND " ;
}
2020-01-30 01:48:28 +01:00
$sql .= $clause . " c.entity IN ( " . getEntity ( 'commande' ) . " ) " ;
2018-08-30 09:40:04 +02:00
//$sql.= " AND c.fk_statut IN (1,2,3) AND c.facture = 0";
2020-01-30 01:48:28 +01:00
$sql .= " AND ((c.fk_statut IN ( " . self :: STATUS_VALIDATED . " , " . self :: STATUS_SHIPMENTONPROCESS . " )) OR (c.fk_statut = " . self :: STATUS_CLOSED . " AND c.facture = 0)) " ; // If status is 2 and facture=1, it must be selected
if ( $user -> socid ) $sql .= " AND c.fk_soc = " . $user -> socid ;
2018-08-30 09:40:04 +02:00
2020-01-30 01:48:28 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( $resql )
{
$response = new WorkboardResponse ();
2020-01-30 01:48:28 +01:00
$response -> warning_delay = $conf -> commande -> client -> warning_delay / 60 / 60 / 24 ;
$response -> label = $langs -> trans ( " OrdersToProcess " );
2019-08-18 04:56:48 +02:00
$response -> labelShort = $langs -> trans ( " Opened " );
2020-04-16 15:58:59 +02:00
$response -> url = DOL_URL_ROOT . '/commande/list.php?search_status=-3&mainmenu=commercial&leftmenu=orders' ;
2020-01-30 01:48:28 +01:00
$response -> img = img_object ( '' , " order " );
2018-08-30 09:40:04 +02:00
$generic_commande = new Commande ( $this -> db );
2020-01-30 01:48:28 +01:00
while ( $obj = $this -> db -> fetch_object ( $resql ))
2018-08-30 09:40:04 +02:00
{
$response -> nbtodo ++ ;
2020-01-30 01:48:28 +01:00
$response -> total += $obj -> total_ht ;
2018-08-30 09:40:04 +02:00
$generic_commande -> statut = $obj -> fk_statut ;
$generic_commande -> date_commande = $this -> db -> jdate ( $obj -> date_commande );
$generic_commande -> date_livraison = $this -> db -> jdate ( $obj -> delivery_date );
if ( $generic_commande -> hasDelay ()) {
$response -> nbtodolate ++ ;
}
}
return $response ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
return - 1 ;
}
}
/**
* Return source label of order
*
* @ return string Label
*/
2019-02-25 00:56:48 +01:00
public function getLabelSource ()
2018-08-30 09:40:04 +02:00
{
global $langs ;
2019-11-13 19:37:08 +01:00
$label = $langs -> trans ( 'OrderSource' . $this -> source );
2018-08-30 09:40:04 +02:00
if ( $label == 'OrderSource' ) return '' ;
return $label ;
}
/**
* Return status label of Order
*
* @ param int $mode 0 = Long label , 1 = Short label , 2 = Picto + Short label , 3 = Picto , 4 = Picto + Long label , 5 = Short label + Picto , 6 = Long label + Picto
* @ return string Label of status
*/
2019-02-25 00:56:48 +01:00
public function getLibStatut ( $mode )
2018-08-30 09:40:04 +02:00
{
return $this -> LibStatut ( $this -> statut , $this -> billed , $mode );
}
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Return label of status
*
2019-11-01 23:58:14 +01:00
* @ param int $status Id status
2018-08-30 09:40:04 +02:00
* @ param int $billed If invoiced
* @ param int $mode 0 = Long label , 1 = Short label , 2 = Picto + Short label , 3 = Picto , 4 = Picto + Long label , 5 = Short label + Picto , 6 = Long label + Picto
* @ param int $donotshowbilled Do not show billed status after order status
* @ return string Label of status
*/
2019-11-01 23:58:14 +01:00
public function LibStatut ( $status , $billed , $mode , $donotshowbilled = 0 )
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
global $langs , $conf ;
$billedtext = '' ;
2020-01-30 01:48:28 +01:00
if ( empty ( $donotshowbilled )) $billedtext .= ( $billed ? ' - ' . $langs -> trans ( " Billed " ) : '' );
2018-08-30 09:40:04 +02:00
2020-01-30 01:48:28 +01:00
if ( $status == self :: STATUS_CANCELED ) {
2019-11-01 12:52:03 +01:00
$labelStatus = $langs -> trans ( 'StatusOrderCanceled' );
$labelStatusShort = $langs -> trans ( 'StatusOrderCanceledShort' );
2020-03-24 13:06:59 +01:00
$statusType = 'status9' ;
2020-05-21 15:05:19 +02:00
} elseif ( $status == self :: STATUS_DRAFT ) {
2019-11-01 12:52:03 +01:00
$labelStatus = $langs -> trans ( 'StatusOrderDraft' );
$labelStatusShort = $langs -> trans ( 'StatusOrderDraftShort' );
2020-01-30 01:48:28 +01:00
$statusType = 'status0' ;
2020-05-21 15:05:19 +02:00
} elseif ( $status == self :: STATUS_VALIDATED ) {
2019-11-01 12:52:03 +01:00
$labelStatus = $langs -> trans ( 'StatusOrderValidated' ) . $billedtext ;
$labelStatusShort = $langs -> trans ( 'StatusOrderValidatedShort' ) . $billedtext ;
2020-01-30 01:48:28 +01:00
$statusType = 'status1' ;
2020-05-21 15:05:19 +02:00
} elseif ( $status == self :: STATUS_SHIPMENTONPROCESS ) {
2019-11-01 12:52:03 +01:00
$labelStatus = $langs -> trans ( 'StatusOrderSentShort' ) . $billedtext ;
$labelStatusShort = $langs -> trans ( 'StatusOrderSentShort' ) . $billedtext ;
2020-03-24 13:06:59 +01:00
$statusType = 'status4' ;
2020-05-21 15:05:19 +02:00
} elseif ( $status == self :: STATUS_CLOSED && ( ! $billed && empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) {
2019-11-01 12:52:03 +01:00
$labelStatus = $langs -> trans ( 'StatusOrderToBill' );
$labelStatusShort = $langs -> trans ( 'StatusOrderToBillShort' );
2020-01-30 01:48:28 +01:00
$statusType = 'status4' ;
2020-05-21 15:05:19 +02:00
} elseif ( $status == self :: STATUS_CLOSED && ( $billed && empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) {
2019-11-01 12:52:03 +01:00
$labelStatus = $langs -> trans ( 'StatusOrderProcessed' ) . $billedtext ;
$labelStatusShort = $langs -> trans ( 'StatusOrderProcessed' ) . $billedtext ;
2020-01-30 01:48:28 +01:00
$statusType = 'status6' ;
2020-05-21 15:05:19 +02:00
} elseif ( $status == self :: STATUS_CLOSED && ( ! empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) {
2019-11-01 12:52:03 +01:00
$labelStatus = $langs -> trans ( 'StatusOrderDelivered' );
$labelStatusShort = $langs -> trans ( 'StatusOrderDelivered' );
2020-01-30 01:48:28 +01:00
$statusType = 'status6' ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-01 12:52:03 +01:00
$labelStatus = $langs -> trans ( 'Unknown' );
$labelStatusShort = '' ;
2020-01-30 01:48:28 +01:00
$statusType = '' ;
2019-03-07 11:37:54 +01:00
$mode = 0 ;
}
2019-03-15 15:07:52 +01:00
2019-11-01 12:52:03 +01:00
return dolGetStatus ( $labelStatus , $labelStatusShort , '' , $statusType , $mode );
2015-01-10 01:07:18 +01:00
}
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
/**
* Return clicable link of object ( with eventually picto )
*
* @ param int $withpicto Add picto into link
* @ param string $option Where point the link ( 0 => main card , 1 , 2 => shipment , 'nolink' => No link )
* @ param int $max Max length to show
* @ param int $short ? ? ?
* @ param int $notooltip 1 = Disable tooltip
* @ param int $save_lastsearch_value - 1 = Auto , 0 = No save of lastsearch_values when clicking , 1 = Save lastsearch_values whenclicking
2020-02-16 12:05:00 +01:00
* @ param int $addlinktonotes Add link to notes
2018-08-30 09:40:04 +02:00
* @ return string String with URL
*/
2020-01-15 19:49:45 +01:00
public function getNomUrl ( $withpicto = 0 , $option = '' , $max = 0 , $short = 0 , $notooltip = 0 , $save_lastsearch_value = - 1 , $addlinktonotes = 0 )
2018-08-30 09:40:04 +02:00
{
global $conf , $langs , $user ;
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> dol_no_mouse_hover )) $notooltip = 1 ; // Force disable tooltips
2011-09-12 19:08:02 +02:00
2019-11-13 19:37:08 +01:00
$result = '' ;
2017-06-09 09:25:15 +02:00
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> expedition -> enabled ) && ( $option == '1' || $option == '2' )) $url = DOL_URL_ROOT . '/expedition/shipment.php?id=' . $this -> id ;
2018-08-30 09:40:04 +02:00
else $url = DOL_URL_ROOT . '/commande/card.php?id=' . $this -> id ;
2012-03-18 19:23:01 +01:00
2018-08-30 09:40:04 +02:00
if ( ! $user -> rights -> commande -> lire )
$option = 'nolink' ;
2012-03-18 19:23:01 +01:00
2018-09-04 11:23:28 +02:00
if ( $option !== 'nolink' )
{
// Add param to save lastsearch_values or not
2019-11-13 19:37:08 +01:00
$add_save_lastsearch_values = ( $save_lastsearch_value == 1 ? 1 : 0 );
if ( $save_lastsearch_value == - 1 && preg_match ( '/list\.php/' , $_SERVER [ " PHP_SELF " ])) $add_save_lastsearch_values = 1 ;
if ( $add_save_lastsearch_values ) $url .= '&save_lastsearch_values=1' ;
2018-09-04 11:23:28 +02:00
}
2018-03-13 18:04:18 +01:00
2018-09-04 11:23:28 +02:00
if ( $short ) return $url ;
2014-06-24 22:14:45 +02:00
2018-09-04 11:23:28 +02:00
$label = '' ;
2016-07-26 17:07:56 +02:00
2018-09-04 11:23:28 +02:00
if ( $user -> rights -> commande -> lire ) {
2020-04-20 03:00:10 +02:00
$label = '<u>' . $langs -> trans ( " Order " ) . '</u>' ;
2018-09-04 11:23:28 +02:00
$label .= '<br><b>' . $langs -> trans ( 'Ref' ) . ':</b> ' . $this -> ref ;
$label .= '<br><b>' . $langs -> trans ( 'RefCustomer' ) . ':</b> ' . ( $this -> ref_customer ? $this -> ref_customer : $this -> ref_client );
if ( ! empty ( $this -> total_ht )) {
$label .= '<br><b>' . $langs -> trans ( 'AmountHT' ) . ':</b> ' . price ( $this -> total_ht , 0 , $langs , 0 , - 1 , - 1 , $conf -> currency );
}
if ( ! empty ( $this -> total_tva )) {
2019-11-13 19:37:08 +01:00
$label .= '<br><b>' . $langs -> trans ( 'VAT' ) . ':</b> ' . price ( $this -> total_tva , 0 , $langs , 0 , - 1 , - 1 , $conf -> currency );
2016-07-26 17:07:56 +02:00
}
2018-09-04 11:23:28 +02:00
if ( ! empty ( $this -> total_ttc )) {
$label .= '<br><b>' . $langs -> trans ( 'AmountTTC' ) . ':</b> ' . price ( $this -> total_ttc , 0 , $langs , 0 , - 1 , - 1 , $conf -> currency );
}
2020-04-20 03:00:10 +02:00
if ( isset ( $this -> statut )) {
$label .= '<br><b>' . $langs -> trans ( " Status " ) . " :</b> " . $this -> getLibStatut ( 5 );
}
2018-09-04 11:23:28 +02:00
}
2011-09-12 19:08:02 +02:00
2019-11-13 19:37:08 +01:00
$linkclose = '' ;
2018-09-04 11:23:28 +02:00
if ( empty ( $notooltip ) && $user -> rights -> commande -> lire )
{
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> global -> MAIN_OPTIMIZEFORTEXTBROWSER ))
2018-08-30 09:40:04 +02:00
{
2020-04-20 03:00:10 +02:00
$label = $langs -> trans ( " Order " );
2019-11-13 19:37:08 +01:00
$linkclose .= ' alt="' . dol_escape_htmltag ( $label , 1 ) . '"' ;
2018-08-30 09:40:04 +02:00
}
2019-11-13 19:37:08 +01:00
$linkclose .= ' title="' . dol_escape_htmltag ( $label , 1 ) . '"' ;
$linkclose .= ' class="classfortooltip"' ;
2018-09-04 11:23:28 +02:00
}
2018-08-30 09:40:04 +02:00
2018-09-04 11:23:28 +02:00
$linkstart = '<a href="' . $url . '"' ;
2019-11-13 19:37:08 +01:00
$linkstart .= $linkclose . '>' ;
$linkend = '</a>' ;
2018-08-30 09:40:04 +02:00
2018-09-04 11:23:28 +02:00
if ( $option === 'nolink' ) {
$linkstart = '' ;
$linkend = '' ;
}
2018-08-30 09:40:04 +02:00
2018-09-04 11:23:28 +02:00
$result .= $linkstart ;
2019-11-13 19:37:08 +01:00
if ( $withpicto ) $result .= img_object (( $notooltip ? '' : $label ), $this -> picto , ( $notooltip ? (( $withpicto != 2 ) ? 'class="paddingright"' : '' ) : 'class="' . (( $withpicto != 2 ) ? 'paddingright ' : '' ) . 'classfortooltip"' ), 0 , 0 , $notooltip ? 0 : 1 );
if ( $withpicto != 2 ) $result .= $this -> ref ;
2018-09-04 11:23:28 +02:00
$result .= $linkend ;
2018-08-30 09:40:04 +02:00
2020-01-15 19:49:45 +01:00
if ( $addlinktonotes )
{
$txttoshow = ( $user -> socid > 0 ? $this -> note_public : $this -> note_private );
if ( $txttoshow )
{
$notetoshow = $langs -> trans ( " ViewPrivateNote " ) . ':<br>' . dol_string_nohtmltag ( $txttoshow , 1 );
$result .= ' <span class="note inline-block">' ;
$result .= '<a href="' . DOL_URL_ROOT . '/commande/note.php?id=' . $this -> id . '" class="classfortooltip" title="' . dol_escape_htmltag ( $notetoshow ) . '">' ;
$result .= img_picto ( '' , 'note' );
$result .= '</a>' ;
//$result.=img_picto($langs->trans("ViewNote"),'object_generic');
//$result.='</a>';
$result .= '</span>' ;
}
}
2018-09-04 11:23:28 +02:00
return $result ;
2018-08-30 09:40:04 +02:00
}
/**
* Charge les informations d 'ordre info dans l' objet commande
*
* @ param int $id Id of order
* @ return void
*/
2019-02-25 00:56:48 +01:00
public function info ( $id )
2018-08-30 09:40:04 +02:00
{
$sql = 'SELECT c.rowid, date_creation as datec, tms as datem,' ;
2019-11-13 19:37:08 +01:00
$sql .= ' date_valid as datev,' ;
$sql .= ' date_cloture as datecloture,' ;
$sql .= ' fk_user_author, fk_user_valid, fk_user_cloture' ;
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'commande as c' ;
$sql .= ' WHERE c.rowid = ' . $id ;
$result = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( $result )
{
if ( $this -> db -> num_rows ( $result ))
{
$obj = $this -> db -> fetch_object ( $result );
$this -> id = $obj -> rowid ;
if ( $obj -> fk_user_author )
{
$cuser = new User ( $this -> db );
$cuser -> fetch ( $obj -> fk_user_author );
2019-11-13 19:37:08 +01:00
$this -> user_creation = $cuser ;
2018-08-30 09:40:04 +02:00
}
if ( $obj -> fk_user_valid )
{
$vuser = new User ( $this -> db );
$vuser -> fetch ( $obj -> fk_user_valid );
$this -> user_validation = $vuser ;
}
if ( $obj -> fk_user_cloture )
{
$cluser = new User ( $this -> db );
$cluser -> fetch ( $obj -> fk_user_cloture );
2019-11-13 19:37:08 +01:00
$this -> user_cloture = $cluser ;
2018-08-30 09:40:04 +02:00
}
$this -> date_creation = $this -> db -> jdate ( $obj -> datec );
$this -> date_modification = $this -> db -> jdate ( $obj -> datem );
$this -> date_validation = $this -> db -> jdate ( $obj -> datev );
$this -> date_cloture = $this -> db -> jdate ( $obj -> datecloture );
}
$this -> db -> free ( $result );
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
dol_print_error ( $this -> db );
}
}
/**
* 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
*/
2019-02-25 00:56:48 +01:00
public function initAsSpecimen ()
2018-08-30 09:40:04 +02:00
{
2020-01-21 00:16:11 +01:00
global $conf , $langs ;
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::initAsSpecimen " );
// Load array of products prodids
$num_prods = 0 ;
$prodids = array ();
$sql = " SELECT rowid " ;
2019-11-13 19:37:08 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " product " ;
$sql .= " WHERE entity IN ( " . getEntity ( 'product' ) . " ) " ;
2020-08-19 01:43:48 +02:00
$sql .= $this -> db -> plimit ( 100 );
2018-08-30 09:40:04 +02:00
$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
2019-11-13 19:37:08 +01:00
$this -> id = 0 ;
2018-08-30 09:40:04 +02:00
$this -> ref = 'SPECIMEN' ;
2019-11-13 19:37:08 +01:00
$this -> specimen = 1 ;
2018-08-30 09:40:04 +02:00
$this -> socid = 1 ;
$this -> date = time ();
2019-11-13 19:37:08 +01:00
$this -> date_lim_reglement = $this -> date + 3600 * 24 * 30 ;
2018-08-30 09:40:04 +02:00
$this -> cond_reglement_code = 'RECEP' ;
$this -> mode_reglement_code = 'CHQ' ;
$this -> availability_code = 'DSP' ;
$this -> demand_reason_code = 'SRC_00' ;
2020-01-21 00:16:11 +01:00
2019-11-13 19:37:08 +01:00
$this -> note_public = 'This is a comment (public)' ;
$this -> note_private = 'This is a comment (private)' ;
2020-01-21 00:16:11 +01:00
$this -> multicurrency_tx = 1 ;
$this -> multicurrency_code = $conf -> currency ;
2018-08-30 09:40:04 +02:00
// Lines
$nbp = 5 ;
$xnbp = 0 ;
while ( $xnbp < $nbp )
{
2019-11-13 19:37:08 +01:00
$line = new OrderLine ( $this -> db );
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
$line -> desc = $langs -> trans ( " Description " ) . " " . $xnbp ;
$line -> qty = 1 ;
$line -> subprice = 100 ;
$line -> price = 100 ;
$line -> tva_tx = 20 ;
2018-08-30 09:40:04 +02:00
if ( $xnbp == 2 )
{
2019-11-13 19:37:08 +01:00
$line -> total_ht = 50 ;
$line -> total_ttc = 60 ;
$line -> total_tva = 10 ;
$line -> remise_percent = 50 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$line -> total_ht = 100 ;
$line -> total_ttc = 120 ;
$line -> total_tva = 20 ;
$line -> remise_percent = 0 ;
2018-08-30 09:40:04 +02:00
}
if ( $num_prods > 0 )
{
$prodid = mt_rand ( 1 , $num_prods );
2019-11-13 19:37:08 +01:00
$line -> fk_product = $prodids [ $prodid ];
$line -> product_ref = 'SPECIMEN' ;
2018-08-30 09:40:04 +02:00
}
2016-07-08 18:30:50 +02:00
2019-11-13 19:37:08 +01:00
$this -> lines [ $xnbp ] = $line ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
$this -> total_ht += $line -> total_ht ;
$this -> total_tva += $line -> total_tva ;
$this -> total_ttc += $line -> total_ttc ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
$xnbp ++ ;
}
}
2011-09-12 19:08:02 +02:00
2019-02-28 23:19:58 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
* Charge indicateurs this -> nb de tableau de bord
*
* @ return int < 0 si ko , > 0 si ok
*/
2019-02-25 00:56:48 +01:00
public function load_state_board ()
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
global $user ;
2020-01-30 01:48:28 +01:00
$this -> nb = array ();
2018-08-30 09:40:04 +02:00
$clause = " WHERE " ;
$sql = " SELECT count(co.rowid) as nb " ;
2020-01-30 01:48:28 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " commande as co " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " societe as s ON co.fk_soc = s.rowid " ;
2019-10-31 20:46:31 +01:00
if ( ! $user -> rights -> societe -> client -> voir && ! $user -> socid )
2018-08-30 09:40:04 +02:00
{
2020-01-30 01:48:28 +01:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " societe_commerciaux as sc ON s.rowid = sc.fk_soc " ;
$sql .= " WHERE sc.fk_user = " . $user -> id ;
2018-08-30 09:40:04 +02:00
$clause = " AND " ;
}
2020-01-30 01:48:28 +01:00
$sql .= " " . $clause . " co.entity IN ( " . getEntity ( 'commande' ) . " ) " ;
2018-08-30 09:40:04 +02:00
2020-01-30 01:48:28 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( $resql )
{
2020-01-30 01:48:28 +01:00
while ( $obj = $this -> db -> fetch_object ( $resql ))
2018-08-30 09:40:04 +02:00
{
2020-01-30 01:48:28 +01:00
$this -> nb [ " orders " ] = $obj -> nb ;
2018-08-30 09:40:04 +02:00
}
$this -> db -> free ( $resql );
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
dol_print_error ( $this -> db );
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
return - 1 ;
}
}
/**
2016-03-14 14:38:30 +01:00
* Create an array of order lines
*
* @ return int > 0 if OK , < 0 if KO
2018-08-30 09:40:04 +02:00
*/
2019-02-25 00:56:48 +01:00
public function getLinesArray ()
2018-08-30 09:40:04 +02:00
{
return $this -> fetch_lines ();
}
2007-05-05 00:37:06 +02:00
Created a method generateDocument for several classes
Which are: Commande, Contrat, Livraison, Facture, Projet, Propal, Task, Expedition, CommandeFournisseur, FactureFournisseur and therefore deprecated the following methods supplier_order_pdf_create, supplier_invoice_pdf_create, delivery_order_pdf_create, task_pdf_create, propale_pdf_create, project_pdf_create, facture_pdf_create, expedition_pdf_create, commande_pdf_create
2014-09-16 12:30:37 +02:00
/**
2016-10-02 20:15:11 +02:00
* Create a document onto disk according to template module .
Created a method generateDocument for several classes
Which are: Commande, Contrat, Livraison, Facture, Projet, Propal, Task, Expedition, CommandeFournisseur, FactureFournisseur and therefore deprecated the following methods supplier_order_pdf_create, supplier_invoice_pdf_create, delivery_order_pdf_create, task_pdf_create, propale_pdf_create, project_pdf_create, facture_pdf_create, expedition_pdf_create, commande_pdf_create
2014-09-16 12:30:37 +02:00
*
2016-10-02 20:15:11 +02:00
* @ param string $modele Force template to use ( '' to not force )
Created a method generateDocument for several classes
Which are: Commande, Contrat, Livraison, Facture, Projet, Propal, Task, Expedition, CommandeFournisseur, FactureFournisseur and therefore deprecated the following methods supplier_order_pdf_create, supplier_invoice_pdf_create, delivery_order_pdf_create, task_pdf_create, propale_pdf_create, project_pdf_create, facture_pdf_create, expedition_pdf_create, commande_pdf_create
2014-09-16 12:30:37 +02:00
* @ param Translate $outputlangs objet lang a utiliser pour traduction
* @ param int $hidedetails Hide details of lines
* @ param int $hidedesc Hide description
* @ param int $hideref Hide ref
2018-10-30 14:47:39 +01:00
* @ param null | array $moreparams Array to provide more information
Created a method generateDocument for several classes
Which are: Commande, Contrat, Livraison, Facture, Projet, Propal, Task, Expedition, CommandeFournisseur, FactureFournisseur and therefore deprecated the following methods supplier_order_pdf_create, supplier_invoice_pdf_create, delivery_order_pdf_create, task_pdf_create, propale_pdf_create, project_pdf_create, facture_pdf_create, expedition_pdf_create, commande_pdf_create
2014-09-16 12:30:37 +02:00
* @ return int 0 if KO , 1 if OK
*/
2019-01-27 15:20:16 +01:00
public function generateDocument ( $modele , $outputlangs , $hidedetails = 0 , $hidedesc = 0 , $hideref = 0 , $moreparams = null )
Created a method generateDocument for several classes
Which are: Commande, Contrat, Livraison, Facture, Projet, Propal, Task, Expedition, CommandeFournisseur, FactureFournisseur and therefore deprecated the following methods supplier_order_pdf_create, supplier_invoice_pdf_create, delivery_order_pdf_create, task_pdf_create, propale_pdf_create, project_pdf_create, facture_pdf_create, expedition_pdf_create, commande_pdf_create
2014-09-16 12:30:37 +02:00
{
2020-01-30 01:48:28 +01:00
global $conf , $langs ;
Created a method generateDocument for several classes
Which are: Commande, Contrat, Livraison, Facture, Projet, Propal, Task, Expedition, CommandeFournisseur, FactureFournisseur and therefore deprecated the following methods supplier_order_pdf_create, supplier_invoice_pdf_create, delivery_order_pdf_create, task_pdf_create, propale_pdf_create, project_pdf_create, facture_pdf_create, expedition_pdf_create, commande_pdf_create
2014-09-16 12:30:37 +02:00
$langs -> load ( " orders " );
2020-08-04 11:02:16 +02:00
$outputlangs -> load ( " products " );
Created a method generateDocument for several classes
Which are: Commande, Contrat, Livraison, Facture, Projet, Propal, Task, Expedition, CommandeFournisseur, FactureFournisseur and therefore deprecated the following methods supplier_order_pdf_create, supplier_invoice_pdf_create, delivery_order_pdf_create, task_pdf_create, propale_pdf_create, project_pdf_create, facture_pdf_create, expedition_pdf_create, commande_pdf_create
2014-09-16 12:30:37 +02:00
2020-01-30 01:48:28 +01:00
if ( ! dol_strlen ( $modele )) {
2017-01-16 21:16:05 +01:00
$modele = 'einstein' ;
if ( $this -> modelpdf ) {
$modele = $this -> modelpdf ;
2020-01-30 01:48:28 +01:00
} elseif ( ! empty ( $conf -> global -> COMMANDE_ADDON_PDF )) {
Created a method generateDocument for several classes
Which are: Commande, Contrat, Livraison, Facture, Projet, Propal, Task, Expedition, CommandeFournisseur, FactureFournisseur and therefore deprecated the following methods supplier_order_pdf_create, supplier_invoice_pdf_create, delivery_order_pdf_create, task_pdf_create, propale_pdf_create, project_pdf_create, facture_pdf_create, expedition_pdf_create, commande_pdf_create
2014-09-16 12:30:37 +02:00
$modele = $conf -> global -> COMMANDE_ADDON_PDF ;
}
}
2014-09-21 18:16:14 +02:00
$modelpath = " core/modules/commande/doc/ " ;
Created a method generateDocument for several classes
Which are: Commande, Contrat, Livraison, Facture, Projet, Propal, Task, Expedition, CommandeFournisseur, FactureFournisseur and therefore deprecated the following methods supplier_order_pdf_create, supplier_invoice_pdf_create, delivery_order_pdf_create, task_pdf_create, propale_pdf_create, project_pdf_create, facture_pdf_create, expedition_pdf_create, commande_pdf_create
2014-09-16 12:30:37 +02:00
2018-06-15 09:47:28 +02:00
return $this -> commonGenerateDocument ( $modelpath , $modele , $outputlangs , $hidedetails , $hidedesc , $hideref , $moreparams );
Created a method generateDocument for several classes
Which are: Commande, Contrat, Livraison, Facture, Projet, Propal, Task, Expedition, CommandeFournisseur, FactureFournisseur and therefore deprecated the following methods supplier_order_pdf_create, supplier_invoice_pdf_create, delivery_order_pdf_create, task_pdf_create, propale_pdf_create, project_pdf_create, facture_pdf_create, expedition_pdf_create, commande_pdf_create
2014-09-16 12:30:37 +02:00
}
2015-04-18 18:11:01 +02:00
/**
* 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 (
2018-08-30 10:30:52 +02:00
'commande'
2015-04-18 18:11:01 +02:00
);
return CommonObject :: commonReplaceThirdparty ( $db , $origin_id , $dest_id , $tables );
}
2015-09-05 10:42:54 +02:00
2018-08-30 09:40:04 +02:00
/**
* Is the customer order delayed ?
*
* @ return bool true if late , false if not
*/
public function hasDelay ()
{
global $conf ;
2019-11-13 19:37:08 +01:00
if ( ! ( $this -> statut > Commande :: STATUS_DRAFT && $this -> statut < Commande :: STATUS_CLOSED )) {
return false ; // Never late if not inside this status range
2018-08-30 09:40:04 +02:00
}
$now = dol_now ();
return max ( $this -> date_commande , $this -> date_livraison ) < ( $now - $conf -> commande -> client -> warning_delay );
}
/**
* Show the customer delayed info
*
* @ return string Show delayed information
*/
public function showDelay ()
{
global $conf , $langs ;
2019-11-13 19:37:08 +01:00
if ( empty ( $this -> date_livraison )) $text = $langs -> trans ( " OrderDate " ) . ' ' . dol_print_date ( $this -> date_commande , 'day' );
else $text = $text = $langs -> trans ( " DeliveryDate " ) . ' ' . dol_print_date ( $this -> date_livraison , 'day' );
$text .= ' ' . ( $conf -> commande -> client -> warning_delay > 0 ? '+' : '-' ) . ' ' . round ( abs ( $conf -> commande -> client -> warning_delay ) / 3600 / 24 , 1 ) . ' ' . $langs -> trans ( " days " ) . ' < ' . $langs -> trans ( " Today " );
2018-08-30 09:40:04 +02:00
return $text ;
}
2005-09-15 02:37:03 +02:00
}
/**
2015-11-19 16:41:11 +01:00
* Class to manage order lines
2006-12-12 18:05:40 +01:00
*/
2013-06-10 16:05:41 +02:00
class OrderLine extends CommonOrderLine
2005-09-15 02:37:03 +02:00
{
2018-08-23 17:07:27 +02:00
/**
* @ var string ID to identify managed object
*/
2019-11-13 19:37:08 +01:00
public $element = 'commandedet' ;
2018-08-30 09:40:04 +02:00
2019-11-13 19:37:08 +01:00
public $table_element = 'commandedet' ;
2013-06-10 16:05:41 +02:00
2019-02-25 00:56:48 +01:00
public $oldline ;
2011-09-12 19:08:02 +02:00
2015-03-23 01:39:12 +01:00
/**
* Id of parent order
* @ var int
*/
public $fk_commande ;
/**
* Id of parent order
* @ var int
* @ deprecated Use fk_commande
2019-04-08 16:04:15 +02:00
* @ see $fk_commande
2015-03-23 01:39:12 +01:00
*/
public $commande_id ;
2018-08-30 09:40:04 +02:00
// From llx_commandedet
2019-02-25 00:56:48 +01:00
public $fk_parent_line ;
public $fk_facture ;
2018-08-30 09:40:04 +02:00
/**
2018-09-01 13:22:08 +02:00
* @ var string Order lines label
2018-08-30 09:40:04 +02:00
*/
public $label ;
2019-02-25 00:56:48 +01:00
public $fk_remise_except ;
public $rang = 0 ;
public $fk_fournprice ;
2015-03-23 01:39:12 +01:00
/**
* Buy price without taxes
* @ var float
*/
2019-02-25 00:56:48 +01:00
public $pa_ht ;
public $marge_tx ;
public $marque_tx ;
2015-03-23 01:39:12 +01:00
/**
* @ deprecated
2019-04-08 16:04:15 +02:00
* @ see $remise_percent , $fk_remise_except
2015-03-23 01:39:12 +01:00
*/
2019-02-25 00:56:48 +01:00
public $remise ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
// Start and end date of the line
2019-02-25 00:56:48 +01:00
public $date_start ;
public $date_end ;
2018-08-30 09:40:04 +02:00
2019-02-25 00:56:48 +01:00
public $skip_update_total ; // Skip update price total for special lines
2018-08-30 09:40:04 +02:00
/**
* Constructor
*
* @ param DoliDB $db handler d ' acces base de donnee
*/
2019-02-25 00:56:48 +01:00
public function __construct ( $db )
{
2019-11-13 19:37:08 +01:00
$this -> db = $db ;
2019-02-25 00:56:48 +01:00
}
2018-08-30 09:40:04 +02:00
/**
* Load line order
*
* @ param int $rowid Id line order
* @ return int < 0 if KO , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function fetch ( $rowid )
2018-08-30 09:40:04 +02:00
{
$sql = 'SELECT cd.rowid, cd.fk_commande, cd.fk_parent_line, cd.fk_product, cd.product_type, cd.label as custom_label, cd.description, cd.price, cd.qty, cd.tva_tx, cd.localtax1_tx, cd.localtax2_tx,' ;
2019-11-13 19:37:08 +01:00
$sql .= ' cd.remise, cd.remise_percent, cd.fk_remise_except, cd.subprice,' ;
$sql .= ' cd.info_bits, cd.total_ht, cd.total_tva, cd.total_localtax1, cd.total_localtax2, cd.total_ttc, cd.fk_product_fournisseur_price as fk_fournprice, cd.buy_price_ht as pa_ht, cd.rang, cd.special_code,' ;
$sql .= ' cd.fk_unit,' ;
$sql .= ' cd.fk_multicurrency, cd.multicurrency_code, cd.multicurrency_subprice, cd.multicurrency_total_ht, cd.multicurrency_total_tva, cd.multicurrency_total_ttc,' ;
$sql .= ' p.ref as product_ref, p.label as product_libelle, p.description as product_desc, p.tobatch as product_tobatch,' ;
$sql .= ' cd.date_start, cd.date_end' ;
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'commandedet as cd' ;
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'product as p ON cd.fk_product = p.rowid' ;
$sql .= ' WHERE cd.rowid = ' . $rowid ;
2018-08-30 09:40:04 +02:00
$result = $this -> db -> query ( $sql );
if ( $result )
{
$objp = $this -> db -> fetch_object ( $result );
$this -> rowid = $objp -> rowid ;
2019-11-13 19:37:08 +01:00
$this -> id = $objp -> rowid ;
2018-08-30 09:40:04 +02:00
$this -> fk_commande = $objp -> fk_commande ;
$this -> fk_parent_line = $objp -> fk_parent_line ;
$this -> label = $objp -> custom_label ;
$this -> desc = $objp -> description ;
$this -> qty = $objp -> qty ;
$this -> price = $objp -> price ;
$this -> subprice = $objp -> subprice ;
$this -> vat_src_code = $objp -> vat_src_code ;
$this -> tva_tx = $objp -> tva_tx ;
$this -> localtax1_tx = $objp -> localtax1_tx ;
$this -> localtax2_tx = $objp -> localtax2_tx ;
$this -> remise = $objp -> remise ;
$this -> remise_percent = $objp -> remise_percent ;
$this -> fk_remise_except = $objp -> fk_remise_except ;
$this -> fk_product = $objp -> fk_product ;
$this -> product_type = $objp -> product_type ;
$this -> info_bits = $objp -> info_bits ;
2019-11-13 19:37:08 +01:00
$this -> special_code = $objp -> special_code ;
2018-08-30 09:40:04 +02:00
$this -> total_ht = $objp -> total_ht ;
$this -> total_tva = $objp -> total_tva ;
$this -> total_localtax1 = $objp -> total_localtax1 ;
$this -> total_localtax2 = $objp -> total_localtax2 ;
$this -> total_ttc = $objp -> total_ttc ;
2019-11-13 19:37:08 +01:00
$this -> fk_fournprice = $objp -> fk_fournprice ;
2012-08-23 07:50:20 +02:00
$marginInfos = getMarginInfos ( $objp -> subprice , $objp -> remise_percent , $objp -> tva_tx , $objp -> localtax1_tx , $objp -> localtax2_tx , $this -> fk_fournprice , $objp -> pa_ht );
$this -> pa_ht = $marginInfos [ 0 ];
$this -> marge_tx = $marginInfos [ 1 ];
$this -> marque_tx = $marginInfos [ 2 ];
2019-11-13 19:37:08 +01:00
$this -> special_code = $objp -> special_code ;
$this -> rang = $objp -> rang ;
2011-09-12 19:08:02 +02:00
2019-11-13 19:37:08 +01:00
$this -> ref = $objp -> product_ref ; // deprecated
$this -> product_ref = $objp -> product_ref ;
$this -> libelle = $objp -> product_libelle ; // deprecated
$this -> product_label = $objp -> product_libelle ;
2018-08-30 09:40:04 +02:00
$this -> product_desc = $objp -> product_desc ;
$this -> product_tobatch = $objp -> product_tobatch ;
$this -> fk_unit = $objp -> fk_unit ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
$this -> date_start = $this -> db -> jdate ( $objp -> date_start );
$this -> date_end = $this -> db -> jdate ( $objp -> date_end );
2011-09-12 19:08:02 +02:00
2019-11-13 19:37:08 +01:00
$this -> fk_multicurrency = $objp -> fk_multicurrency ;
$this -> multicurrency_code = $objp -> multicurrency_code ;
2016-02-16 23:58:21 +01:00
$this -> multicurrency_subprice = $objp -> multicurrency_subprice ;
$this -> multicurrency_total_ht = $objp -> multicurrency_total_ht ;
$this -> multicurrency_total_tva = $objp -> multicurrency_total_tva ;
$this -> multicurrency_total_ttc = $objp -> multicurrency_total_ttc ;
2018-08-30 09:40:04 +02:00
$this -> db -> free ( $result );
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2018-08-30 09:40:04 +02:00
$this -> error = $this -> db -> lasterror ();
return - 1 ;
}
}
/**
* Delete line in database
*
* @ param User $user User that modify
2016-09-26 09:34:51 +02:00
* @ param int $notrigger 0 = launch triggers after , 1 = disable triggers
2018-08-30 09:40:04 +02:00
* @ return int < 0 si ko , > 0 si ok
*/
2019-02-25 00:56:48 +01:00
public function delete ( User $user , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
2018-12-01 14:51:22 +01:00
global $conf , $langs ;
2011-09-12 19:08:02 +02:00
2020-01-30 01:48:28 +01:00
$error = 0 ;
2012-02-06 17:18:19 +01:00
2019-05-23 15:57:02 +02:00
// check if order line is not in a shipment line before deleting
$sqlCheckShipmentLine = " SELECT " ;
$sqlCheckShipmentLine .= " ed.rowid " ;
2020-01-30 01:48:28 +01:00
$sqlCheckShipmentLine .= " FROM " . MAIN_DB_PREFIX . " expeditiondet ed " ;
$sqlCheckShipmentLine .= " WHERE ed.fk_origin_line = " . $this -> rowid ;
2019-05-23 15:57:02 +02:00
$resqlCheckShipmentLine = $this -> db -> query ( $sqlCheckShipmentLine );
if ( ! $resqlCheckShipmentLine ) {
$error ++ ;
$this -> error = $this -> db -> lasterror ();
$this -> errors [] = $this -> error ;
} else {
$langs -> load ( 'errors' );
$num = $this -> db -> num_rows ( $resqlCheckShipmentLine );
if ( $num > 0 ) {
$error ++ ;
$objCheckShipmentLine = $this -> db -> fetch_object ( $resqlCheckShipmentLine );
2020-01-30 01:48:28 +01:00
$this -> error = $langs -> trans ( 'ErrorRecordAlreadyExists' ) . ' : ' . $langs -> trans ( 'ShipmentLine' ) . ' ' . $objCheckShipmentLine -> rowid ;
2019-05-23 15:57:02 +02:00
$this -> errors [] = $this -> error ;
}
$this -> db -> free ( $resqlCheckShipmentLine );
}
if ( $error ) {
2020-01-30 01:48:28 +01:00
dol_syslog ( __METHOD__ . 'Error ; ' . $this -> error , LOG_ERR );
2019-05-23 15:57:02 +02:00
return - 1 ;
}
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
2014-06-14 12:30:48 +02:00
2018-08-30 09:40:04 +02:00
$sql = 'DELETE FROM ' . MAIN_DB_PREFIX . " commandedet WHERE rowid= " . $this -> rowid ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
dol_syslog ( " OrderLine::delete " , LOG_DEBUG );
2020-01-30 01:48:28 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( $resql )
{
2013-06-10 16:05:41 +02:00
// Remove extrafields
2020-04-23 13:21:39 +02:00
if ( ! $error )
2013-06-10 16:05:41 +02:00
{
2020-01-30 01:48:28 +01:00
$this -> id = $this -> rowid ;
$result = $this -> deleteExtraFields ();
2013-06-10 16:05:41 +02:00
if ( $result < 0 )
{
$error ++ ;
dol_syslog ( get_class ( $this ) . " ::delete error -4 " . $this -> error , LOG_ERR );
}
}
2013-06-16 21:31:21 +02:00
2019-11-13 19:37:08 +01:00
if ( ! $error && ! $notrigger )
2016-09-26 09:34:51 +02:00
{
2018-08-30 09:40:04 +02:00
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'LINEORDER_DELETE' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
if ( ! $error ) {
$this -> db -> commit ();
return 1 ;
}
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2018-08-30 09:40:04 +02:00
{
dol_syslog ( get_class ( $this ) . " ::delete " . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2016-09-26 09:34:51 +02:00
}
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> lasterror ();
2018-08-30 09:40:04 +02:00
return - 1 ;
}
}
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
/**
* Insert line into database
*
* @ param User $user User that modify
* @ param int $notrigger 1 = disable triggers
* @ return int < 0 if KO , > 0 if OK
*/
2019-02-25 00:56:48 +01:00
public function insert ( $user = null , $notrigger = 0 )
2018-08-30 09:40:04 +02:00
{
global $langs , $conf ;
2011-09-12 19:08:02 +02:00
2019-11-13 19:37:08 +01:00
$error = 0 ;
2012-02-06 17:18:19 +01:00
2018-08-30 09:40:04 +02:00
$pa_ht_isemptystring = ( empty ( $this -> pa_ht ) && $this -> pa_ht == '' ); // If true, we can use a default value. If this->pa_ht = '0', we must use '0'.
2015-11-04 22:38:45 +01:00
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::insert rang= " . $this -> rang );
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
// Clean parameters
2019-11-13 19:37:08 +01:00
if ( empty ( $this -> tva_tx )) $this -> tva_tx = 0 ;
if ( empty ( $this -> localtax1_tx )) $this -> localtax1_tx = 0 ;
if ( empty ( $this -> localtax2_tx )) $this -> localtax2_tx = 0 ;
if ( empty ( $this -> localtax1_type )) $this -> localtax1_type = 0 ;
if ( empty ( $this -> localtax2_type )) $this -> localtax2_type = 0 ;
if ( empty ( $this -> total_localtax1 )) $this -> total_localtax1 = 0 ;
if ( empty ( $this -> total_localtax2 )) $this -> total_localtax2 = 0 ;
if ( empty ( $this -> rang )) $this -> rang = 0 ;
if ( empty ( $this -> remise )) $this -> remise = 0 ;
if ( empty ( $this -> remise_percent )) $this -> remise_percent = 0 ;
if ( empty ( $this -> info_bits )) $this -> info_bits = 0 ;
if ( empty ( $this -> special_code )) $this -> special_code = 0 ;
if ( empty ( $this -> fk_parent_line )) $this -> fk_parent_line = 0 ;
if ( empty ( $this -> pa_ht )) $this -> pa_ht = 0 ;
2012-07-20 09:57:50 +02:00
2015-10-26 20:33:42 +01:00
// if buy price not defined, define buyprice as configured in margin admin
2015-11-04 22:38:45 +01:00
if ( $this -> pa_ht == 0 && $pa_ht_isemptystring )
2015-10-26 20:33:42 +01:00
{
if (( $result = $this -> defineBuyPrice ( $this -> subprice , $this -> remise_percent , $this -> fk_product )) < 0 )
{
return $result ;
2020-05-21 15:05:19 +02:00
} else {
2015-10-26 20:33:42 +01:00
$this -> pa_ht = $result ;
}
2012-08-01 17:36:15 +02:00
}
2012-07-20 09:57:50 +02:00
2018-08-30 09:40:04 +02:00
// Check parameters
if ( $this -> product_type < 0 ) return - 1 ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
// Insertion dans base de la ligne
$sql = 'INSERT INTO ' . MAIN_DB_PREFIX . 'commandedet' ;
2020-01-30 01:48:28 +01:00
$sql .= ' (fk_commande, fk_parent_line, label, description, qty, ' ;
$sql .= ' vat_src_code, tva_tx, localtax1_tx, localtax2_tx, localtax1_type, localtax2_type,' ;
$sql .= ' fk_product, product_type, remise_percent, subprice, price, remise, fk_remise_except,' ;
$sql .= ' special_code, rang, fk_product_fournisseur_price, buy_price_ht,' ;
$sql .= ' info_bits, total_ht, total_tva, total_localtax1, total_localtax2, total_ttc, date_start, date_end,' ;
$sql .= ' fk_unit' ;
$sql .= ', fk_multicurrency, multicurrency_code, multicurrency_subprice, multicurrency_total_ht, multicurrency_total_tva, multicurrency_total_ttc' ;
$sql .= ')' ;
$sql .= " VALUES ( " . $this -> fk_commande . " , " ;
$sql .= " " . ( $this -> fk_parent_line > 0 ? " ' " . $this -> db -> escape ( $this -> fk_parent_line ) . " ' " : " null " ) . " , " ;
$sql .= " " . ( ! empty ( $this -> label ) ? " ' " . $this -> db -> escape ( $this -> label ) . " ' " : " null " ) . " , " ;
$sql .= " ' " . $this -> db -> escape ( $this -> desc ) . " ', " ;
$sql .= " ' " . price2num ( $this -> qty ) . " ', " ;
$sql .= " " . ( empty ( $this -> vat_src_code ) ? " '' " : " ' " . $this -> db -> escape ( $this -> vat_src_code ) . " ' " ) . " , " ;
$sql .= " ' " . price2num ( $this -> tva_tx ) . " ', " ;
$sql .= " ' " . price2num ( $this -> localtax1_tx ) . " ', " ;
$sql .= " ' " . price2num ( $this -> localtax2_tx ) . " ', " ;
$sql .= " ' " . $this -> db -> escape ( $this -> localtax1_type ) . " ', " ;
$sql .= " ' " . $this -> db -> escape ( $this -> localtax2_type ) . " ', " ;
$sql .= ' ' . ( ! empty ( $this -> fk_product ) ? $this -> fk_product : " null " ) . ',' ;
$sql .= " ' " . $this -> db -> escape ( $this -> product_type ) . " ', " ;
$sql .= " ' " . price2num ( $this -> remise_percent ) . " ', " ;
$sql .= " " . ( price2num ( $this -> subprice ) !== '' ? price2num ( $this -> subprice ) : " null " ) . " , " ;
$sql .= " " . ( $this -> price != '' ? " ' " . price2num ( $this -> price ) . " ' " : " null " ) . " , " ;
$sql .= " ' " . price2num ( $this -> remise ) . " ', " ;
$sql .= ' ' . ( ! empty ( $this -> fk_remise_except ) ? $this -> fk_remise_except : " null " ) . ',' ;
$sql .= ' ' . $this -> special_code . ',' ;
$sql .= ' ' . $this -> rang . ',' ;
$sql .= ' ' . ( ! empty ( $this -> fk_fournprice ) ? $this -> fk_fournprice : " null " ) . ',' ;
$sql .= ' ' . price2num ( $this -> pa_ht ) . ',' ;
$sql .= " ' " . $this -> db -> escape ( $this -> info_bits ) . " ', " ;
$sql .= " " . price2num ( $this -> total_ht ) . " , " ;
$sql .= " " . price2num ( $this -> total_tva ) . " , " ;
$sql .= " " . price2num ( $this -> total_localtax1 ) . " , " ;
$sql .= " " . price2num ( $this -> total_localtax2 ) . " , " ;
$sql .= " " . price2num ( $this -> total_ttc ) . " , " ;
$sql .= " " . ( ! empty ( $this -> date_start ) ? " ' " . $this -> db -> idate ( $this -> date_start ) . " ' " : " null " ) . ',' ;
$sql .= " " . ( ! empty ( $this -> date_end ) ? " ' " . $this -> db -> idate ( $this -> date_end ) . " ' " : " null " ) . ',' ;
$sql .= ' ' . ( ! $this -> fk_unit ? 'NULL' : $this -> fk_unit );
$sql .= " , " . ( ! empty ( $this -> fk_multicurrency ) ? $this -> fk_multicurrency : 'NULL' );
$sql .= " , ' " . $this -> db -> escape ( $this -> multicurrency_code ) . " ' " ;
$sql .= " , " . $this -> multicurrency_subprice ;
$sql .= " , " . $this -> multicurrency_total_ht ;
$sql .= " , " . $this -> multicurrency_total_tva ;
$sql .= " , " . $this -> multicurrency_total_ttc ;
$sql .= ')' ;
2011-09-12 19:08:02 +02:00
2018-08-30 09:40:04 +02:00
dol_syslog ( get_class ( $this ) . " ::insert " , LOG_DEBUG );
2020-01-30 01:48:28 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( $resql )
{
2020-01-30 01:48:28 +01:00
$this -> id = $this -> db -> last_insert_id ( MAIN_DB_PREFIX . 'commandedet' );
2019-11-12 10:11:30 +01:00
$this -> rowid = $this -> id ;
2011-09-12 19:08:02 +02:00
2020-04-23 13:21:39 +02:00
if ( ! $error )
2013-06-10 16:05:41 +02:00
{
2020-01-30 01:48:28 +01:00
$result = $this -> insertExtraFields ();
2013-06-10 16:05:41 +02:00
if ( $result < 0 )
{
$error ++ ;
}
}
2013-06-16 21:31:21 +02:00
2020-01-30 01:48:28 +01:00
if ( ! $error && ! $notrigger )
2018-08-30 09:40:04 +02:00
{
// Call trigger
2020-01-30 01:48:28 +01:00
$result = $this -> call_trigger ( 'LINEORDER_INSERT' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
}
if ( ! $error ) {
$this -> db -> commit ();
return 1 ;
}
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2018-08-30 09:40:04 +02:00
{
2020-04-02 09:28:56 +02:00
dol_syslog ( get_class ( $this ) . " ::insert " . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2018-08-30 09:40:04 +02:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 2 ;
}
}
/**
* Update the line object into db
*
* @ param User $user User that modify
2011-12-16 12:47:23 +01:00
* @ param int $notrigger 1 = disable triggers
2018-08-30 09:40:04 +02:00
* @ return int < 0 si ko , > 0 si ok
*/
2019-02-25 00:56:48 +01:00
public function update ( User $user , $notrigger = 0 )
2012-07-28 18:32:54 +02:00
{
2019-11-13 19:37:08 +01:00
global $conf , $langs ;
2011-09-12 19:08:02 +02:00
2019-11-13 19:37:08 +01:00
$error = 0 ;
2012-02-06 17:18:19 +01:00
2015-11-04 17:51:15 +01:00
$pa_ht_isemptystring = ( empty ( $this -> pa_ht ) && $this -> pa_ht == '' ); // If true, we can use a default value. If this->pa_ht = '0', we must use '0'.
2015-11-04 22:38:45 +01:00
2012-07-28 18:32:54 +02:00
// Clean parameters
2019-11-13 19:37:08 +01:00
if ( empty ( $this -> tva_tx )) $this -> tva_tx = 0 ;
if ( empty ( $this -> localtax1_tx )) $this -> localtax1_tx = 0 ;
if ( empty ( $this -> localtax2_tx )) $this -> localtax2_tx = 0 ;
if ( empty ( $this -> localtax1_type )) $this -> localtax1_type = 0 ;
if ( empty ( $this -> localtax2_type )) $this -> localtax2_type = 0 ;
if ( empty ( $this -> qty )) $this -> qty = 0 ;
if ( empty ( $this -> total_localtax1 )) $this -> total_localtax1 = 0 ;
if ( empty ( $this -> total_localtax2 )) $this -> total_localtax2 = 0 ;
if ( empty ( $this -> marque_tx )) $this -> marque_tx = 0 ;
if ( empty ( $this -> marge_tx )) $this -> marge_tx = 0 ;
if ( empty ( $this -> remise )) $this -> remise = 0 ;
if ( empty ( $this -> remise_percent )) $this -> remise_percent = 0 ;
if ( empty ( $this -> info_bits )) $this -> info_bits = 0 ;
if ( empty ( $this -> special_code )) $this -> special_code = 0 ;
if ( empty ( $this -> product_type )) $this -> product_type = 0 ;
if ( empty ( $this -> fk_parent_line )) $this -> fk_parent_line = 0 ;
if ( empty ( $this -> pa_ht )) $this -> pa_ht = 0 ;
2012-07-28 18:32:54 +02:00
2015-10-26 20:33:42 +01:00
// if buy price not defined, define buyprice as configured in margin admin
2015-11-04 22:38:45 +01:00
if ( $this -> pa_ht == 0 && $pa_ht_isemptystring )
2015-10-26 20:33:42 +01:00
{
if (( $result = $this -> defineBuyPrice ( $this -> subprice , $this -> remise_percent , $this -> fk_product )) < 0 )
{
return $result ;
2020-05-21 15:05:19 +02:00
} else {
2015-10-26 20:33:42 +01:00
$this -> pa_ht = $result ;
}
2012-07-28 18:32:54 +02:00
}
2012-07-19 10:26:26 +02:00
2012-07-28 18:32:54 +02:00
$this -> db -> begin ();
2011-09-12 19:08:02 +02:00
2012-07-28 18:32:54 +02:00
// Mise a jour ligne en base
$sql = " UPDATE " . MAIN_DB_PREFIX . " commandedet SET " ;
2019-11-13 19:37:08 +01:00
$sql .= " description=' " . $this -> db -> escape ( $this -> desc ) . " ' " ;
$sql .= " , label= " . ( ! empty ( $this -> label ) ? " ' " . $this -> db -> escape ( $this -> label ) . " ' " : " null " );
$sql .= " , vat_src_code= " . ( ! empty ( $this -> vat_src_code ) ? " ' " . $this -> db -> escape ( $this -> vat_src_code ) . " ' " : " '' " );
$sql .= " , tva_tx= " . price2num ( $this -> tva_tx );
$sql .= " , localtax1_tx= " . price2num ( $this -> localtax1_tx );
$sql .= " , localtax2_tx= " . price2num ( $this -> localtax2_tx );
$sql .= " , localtax1_type=' " . $this -> db -> escape ( $this -> localtax1_type ) . " ' " ;
$sql .= " , localtax2_type=' " . $this -> db -> escape ( $this -> localtax2_type ) . " ' " ;
$sql .= " , qty= " . price2num ( $this -> qty );
$sql .= " , subprice= " . price2num ( $this -> subprice ) . " " ;
$sql .= " , remise_percent= " . price2num ( $this -> remise_percent ) . " " ;
$sql .= " , price= " . price2num ( $this -> price ) . " " ; // TODO A virer
$sql .= " , remise= " . price2num ( $this -> remise ) . " " ; // TODO A virer
2012-07-28 18:32:54 +02:00
if ( empty ( $this -> skip_update_total ))
{
2019-11-13 19:37:08 +01:00
$sql .= " , total_ht= " . price2num ( $this -> total_ht ) . " " ;
$sql .= " , total_tva= " . price2num ( $this -> total_tva ) . " " ;
$sql .= " , total_ttc= " . price2num ( $this -> total_ttc ) . " " ;
$sql .= " , total_localtax1= " . price2num ( $this -> total_localtax1 );
$sql .= " , total_localtax2= " . price2num ( $this -> total_localtax2 );
}
$sql .= " , fk_product_fournisseur_price= " . ( ! empty ( $this -> fk_fournprice ) ? $this -> fk_fournprice : " null " );
$sql .= " , buy_price_ht=' " . price2num ( $this -> pa_ht ) . " ' " ;
$sql .= " , info_bits= " . $this -> info_bits ;
$sql .= " , special_code= " . $this -> special_code ;
$sql .= " , date_start= " . ( ! empty ( $this -> date_start ) ? " ' " . $this -> db -> idate ( $this -> date_start ) . " ' " : " null " );
$sql .= " , date_end= " . ( ! empty ( $this -> date_end ) ? " ' " . $this -> db -> idate ( $this -> date_end ) . " ' " : " null " );
$sql .= " , product_type= " . $this -> product_type ;
$sql .= " , fk_parent_line= " . ( ! empty ( $this -> fk_parent_line ) ? $this -> fk_parent_line : " null " );
if ( ! empty ( $this -> rang )) $sql .= " , rang= " . $this -> rang ;
$sql .= " , fk_unit= " . ( ! $this -> fk_unit ? 'NULL' : $this -> fk_unit );
2016-07-08 18:30:50 +02:00
2016-01-23 16:01:55 +01:00
// Multicurrency
2019-11-13 19:37:08 +01:00
$sql .= " , multicurrency_subprice= " . price2num ( $this -> multicurrency_subprice ) . " " ;
$sql .= " , multicurrency_total_ht= " . price2num ( $this -> multicurrency_total_ht ) . " " ;
$sql .= " , multicurrency_total_tva= " . price2num ( $this -> multicurrency_total_tva ) . " " ;
$sql .= " , multicurrency_total_ttc= " . price2num ( $this -> multicurrency_total_ttc ) . " " ;
2016-07-08 18:30:50 +02:00
2019-11-13 19:37:08 +01:00
$sql .= " WHERE rowid = " . $this -> rowid ;
2012-07-28 18:32:54 +02:00
2014-06-12 11:31:53 +02:00
dol_syslog ( get_class ( $this ) . " ::update " , LOG_DEBUG );
2019-11-13 19:37:08 +01:00
$resql = $this -> db -> query ( $sql );
2012-07-28 18:32:54 +02:00
if ( $resql )
{
2020-04-23 13:21:39 +02:00
if ( ! $error )
2013-06-10 16:05:41 +02:00
{
2019-11-13 19:37:08 +01:00
$this -> id = $this -> rowid ;
$result = $this -> insertExtraFields ();
2013-06-10 16:05:41 +02:00
if ( $result < 0 )
{
$error ++ ;
}
}
2013-06-16 21:31:21 +02:00
2019-11-13 19:37:08 +01:00
if ( ! $error && ! $notrigger )
2012-07-28 18:32:54 +02:00
{
2018-08-30 09:40:04 +02:00
// Call trigger
2019-11-13 19:37:08 +01:00
$result = $this -> call_trigger ( 'LINEORDER_UPDATE' , $user );
2018-08-30 09:40:04 +02:00
if ( $result < 0 ) $error ++ ;
// End call triggers
2012-07-28 18:32:54 +02:00
}
2011-09-12 19:08:02 +02:00
2014-06-14 12:30:48 +02:00
if ( ! $error ) {
$this -> db -> commit ();
return 1 ;
}
2019-11-13 19:37:08 +01:00
foreach ( $this -> errors as $errmsg )
2014-06-14 12:30:48 +02:00
{
dol_syslog ( get_class ( $this ) . " ::update " . $errmsg , LOG_ERR );
2019-11-13 19:37:08 +01:00
$this -> error .= ( $this -> error ? ', ' . $errmsg : $errmsg );
2014-06-14 12:30:48 +02:00
}
$this -> db -> rollback ();
2019-11-13 19:37:08 +01:00
return - 1 * $error ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> error ();
2012-07-28 18:32:54 +02:00
$this -> db -> rollback ();
return - 2 ;
}
}
2011-09-12 19:08:02 +02:00
2019-02-25 00:56:48 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2018-08-30 09:40:04 +02:00
/**
2018-09-04 21:35:43 +02:00
* Update DB line fields total_xxx
2018-09-03 17:05:44 +02:00
* Used by migration
2018-08-30 09:40:04 +02:00
*
2018-09-04 21:35:43 +02:00
* @ return int < 0 if KO , > 0 if OK
2018-08-30 09:40:04 +02:00
*/
2019-02-25 00:56:48 +01:00
public function update_total ()
2018-08-30 09:40:04 +02:00
{
2018-09-02 09:27:59 +02:00
// phpcs:enable
2018-08-30 09:40:04 +02:00
$this -> db -> begin ();
// Clean parameters
2019-11-13 19:37:08 +01:00
if ( empty ( $this -> total_localtax1 )) $this -> total_localtax1 = 0 ;
if ( empty ( $this -> total_localtax2 )) $this -> total_localtax2 = 0 ;
2018-08-30 09:40:04 +02:00
// Mise a jour ligne en base
$sql = " UPDATE " . MAIN_DB_PREFIX . " commandedet SET " ;
2019-11-13 19:37:08 +01:00
$sql .= " total_ht=' " . price2num ( $this -> total_ht ) . " ' " ;
$sql .= " ,total_tva=' " . price2num ( $this -> total_tva ) . " ' " ;
$sql .= " ,total_localtax1=' " . price2num ( $this -> total_localtax1 ) . " ' " ;
$sql .= " ,total_localtax2=' " . price2num ( $this -> total_localtax2 ) . " ' " ;
$sql .= " ,total_ttc=' " . price2num ( $this -> total_ttc ) . " ' " ;
$sql .= " WHERE rowid = " . $this -> rowid ;
2018-08-30 09:40:04 +02:00
dol_syslog ( " OrderLine::update_total " , LOG_DEBUG );
2019-11-13 19:37:08 +01:00
$resql = $this -> db -> query ( $sql );
2018-08-30 09:40:04 +02:00
if ( $resql )
{
$this -> db -> commit ();
return 1 ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-13 19:37:08 +01:00
$this -> error = $this -> db -> error ();
2018-08-30 09:40:04 +02:00
$this -> db -> rollback ();
return - 2 ;
}
}
2005-09-15 02:37:03 +02:00
}