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 >
2013-01-22 21:36:30 +01:00
* Copyright ( C ) 2005 - 2013 Regis Houssin < regis . houssin @ capnetworks . com >
2006-02-12 09:54:15 +01:00
* Copyright ( C ) 2006 Andre Cianfarani < acianfa @ free . fr >
2013-09-10 11:04:36 +02:00
* Copyright ( C ) 2010 - 2013 Juanjo Menent < jmenent @ 2 byte . es >
2011-05-21 09:12:21 +02:00
* Copyright ( C ) 2011 Jean Heimburger < jean @ tiaris . info >
2012-07-19 10:26:26 +02:00
* Copyright ( C ) 2012 Christophe Battarel < christophe . battarel @ altairis . fr >
2013-09-10 11:04:36 +02:00
* Copyright ( C ) 2013 Florian Henry < florian . henry @ open - concept . pro >
2005-09-15 02:37:03 +02:00
*
* This program is free software ; you can redistribute it and / or modify
2011-05-04 15:36:38 +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
2011-08-01 00:21:57 +02:00
* along with this program . If not , see < http :// 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
*/
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/commonorder.class.php' ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/product/class/product.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/margin/lib/margins.lib.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
{
2011-09-20 19:19:46 +02:00
public $element = 'commande' ;
public $table_element = 'commande' ;
public $table_element_line = 'commandedet' ;
public $class_element_line = 'OrderLine' ;
public $fk_element = 'fk_commande' ;
protected $ismultientitymanaged = 1 ; // 0=No test on entity, 1=Test with field entity, 2=Test with link by societe
2011-09-12 19:08:02 +02:00
2011-09-20 19:19:46 +02:00
var $id ;
2011-09-12 19:08:02 +02:00
var $socid ; // Id client
var $client ; // Objet societe client (a charger par fetch_client)
var $ref ;
var $ref_client ;
var $ref_ext ;
var $ref_int ;
var $contactid ;
var $fk_project ;
var $statut ; // -1=Canceled, 0=Draft, 1=Validated, (2=Accepted/On process not managed for customer orders), 3=Closed (Sent/Received, billed or not)
var $facturee ; // Facturee ou non
var $brouillon ;
var $cond_reglement_id ;
var $cond_reglement_code ;
var $mode_reglement_id ;
var $mode_reglement_code ;
var $availability_id ;
var $availability_code ;
var $demand_reason_id ;
var $demand_reason_code ;
var $fk_delivery_address ;
2013-02-15 19:18:26 +01:00
var $address ;
2011-09-12 19:08:02 +02:00
var $date ; // Date commande
var $date_commande ; // Date commande (deprecated)
var $date_livraison ; // Date livraison souhaitee
var $fk_remise_except ;
var $remise_percent ;
var $total_ht ; // Total net of tax
var $total_ttc ; // Total with tax
var $total_tva ; // Total VAT
var $total_localtax1 ; // Total Local tax 1
var $total_localtax2 ; // Total Local tax 2
var $remise_absolue ;
var $modelpdf ;
var $info_bits ;
var $rang ;
var $special_code ;
var $source ; // Origin of order
2012-03-16 09:39:32 +01:00
var $note ; // deprecated
var $note_private ;
var $note_public ;
2012-03-16 14:32:37 +01:00
var $extraparams = array ();
2011-09-12 19:08:02 +02:00
var $origin ;
var $origin_id ;
2012-02-21 18:16:24 +01:00
var $linked_objects = array ();
2011-09-12 19:08:02 +02:00
var $user_author_id ;
var $lines = array ();
// Pour board
var $nbtodo ;
var $nbtodolate ;
/**
* Constructor
*
2011-12-05 18:36:54 +01:00
* @ param DoliDB $db Database handler
2011-09-12 19:08:02 +02:00
*/
2012-04-14 15:04:46 +02:00
function __construct ( $db )
2011-09-12 19:08:02 +02:00
{
2011-12-05 18:36:54 +01:00
$this -> db = $db ;
2011-09-12 19:08:02 +02:00
$this -> remise = 0 ;
$this -> remise_percent = 0 ;
$this -> products = array ();
}
2012-02-06 17:18:19 +01: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
*/
2011-09-12 19:08:02 +02:00
function getNextNumRef ( $soc )
{
global $db , $langs , $conf ;
$langs -> load ( " order " );
if ( ! empty ( $conf -> global -> COMMANDE_ADDON ))
{
2013-07-07 03:26:51 +02:00
$mybool = false ;
2011-09-12 19:08:02 +02:00
2013-07-07 03:26:51 +02:00
$file = $conf -> global -> COMMANDE_ADDON . " .php " ;
2011-09-12 19:08:02 +02:00
$classname = $conf -> global -> COMMANDE_ADDON ;
2013-07-07 13:17:48 +02:00
// Include file with class
foreach ( $conf -> file -> dol_document_root as $dirroot )
{
$dir = $dirroot . " /core/modules/commande/ " ;
// Load file with numbering class (if found)
$mybool |=@ include_once $dir . $file ;
}
if ( ! $mybool )
{
dol_print_error ( '' , " Failed to include file " . $file );
return '' ;
2013-07-07 03:26:51 +02:00
}
$obj = new $classname ();
$numref = " " ;
$numref = $obj -> getNextValue ( $soc , $this );
if ( $numref != " " )
2011-09-12 19:08:02 +02:00
{
2013-07-07 03:26:51 +02:00
return $numref ;
2011-09-12 19:08:02 +02:00
}
else
2013-07-07 03:26:51 +02:00
{
dol_print_error ( $db , get_class ( $this ) . " ::getNextNumRef " . $obj -> error );
return " " ;
2011-09-12 19:08:02 +02:00
}
}
else
{
print $langs -> trans ( " Error " ) . " " . $langs -> trans ( " Error_COMMANDE_ADDON_NotDefined " );
return " " ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Validate order
2011-11-07 15:04:02 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param User $user User making status change
* @ param int $idwarehouse Id of warehouse to use for stock decrease
* @ return int <= 0 if OK , > 0 if KO
2011-09-12 19:08:02 +02:00
*/
2011-11-07 15:04:02 +01:00
function valid ( $user , $idwarehouse = 0 )
2011-09-12 19:08:02 +02:00
{
global $conf , $langs ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2011-09-12 19:08:02 +02:00
$error = 0 ;
// Protection
if ( $this -> statut == 1 )
{
2011-11-07 15:04:02 +01:00
dol_syslog ( get_class ( $this ) . " ::valid no draft status " , LOG_WARNING );
2011-09-12 19:08:02 +02:00
return 0 ;
}
if ( ! $user -> rights -> commande -> valider )
{
$this -> error = 'Permission denied' ;
2011-11-07 15:04:02 +01:00
dol_syslog ( get_class ( $this ) . " ::valid " . $this -> error , LOG_ERR );
2011-09-12 19:08:02 +02:00
return - 1 ;
}
$now = dol_now ();
$this -> db -> begin ();
// Definition du nom de module de numerotation de commande
$soc = new Societe ( $this -> db );
$soc -> fetch ( $this -> socid );
// Class of company linked to order
$result = $soc -> set_as_client ();
// Define new ref
if ( ! $error && ( preg_match ( '/^[\(]?PROV/i' , $this -> ref )))
{
$num = $this -> getNextNumRef ( $soc );
}
else
{
$num = $this -> ref ;
}
// Validate
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande " ;
2011-11-07 15:04:02 +01:00
$sql .= " SET ref = ' " . $num . " ', " ;
$sql .= " fk_statut = 1, " ;
$sql .= " date_valid=' " . $this -> db -> idate ( $now ) . " ', " ;
$sql .= " fk_user_valid = " . $user -> id ;
2011-09-12 19:08:02 +02:00
$sql .= " WHERE rowid = " . $this -> id ;
2011-11-09 14:31:43 +01:00
dol_syslog ( get_class ( $this ) . " ::valid() sql= " . $sql );
2011-09-12 19:08:02 +02:00
$resql = $this -> db -> query ( $sql );
if ( ! $resql )
{
2011-11-07 15:04:02 +01:00
dol_syslog ( get_class ( $this ) . " ::valid Echec update - 10 - sql= " . $sql , LOG_ERR );
2011-09-12 19:08:02 +02:00
dol_print_error ( $this -> db );
$error ++ ;
}
if ( ! $error )
{
// If stock is incremented on validate order, we must increment it
2012-09-15 11:21:22 +02:00
if ( $result >= 0 && ! empty ( $conf -> stock -> enabled ) && $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER == 1 )
2011-09-12 19:08:02 +02:00
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/product/stock/class/mouvementstock.class.php' ;
2011-09-12 19:08:02 +02:00
$langs -> load ( " agenda " );
// Loop on each line
2011-11-08 00:03:19 +01:00
$cpt = count ( $this -> lines );
for ( $i = 0 ; $i < $cpt ; $i ++ )
2011-09-12 19:08:02 +02:00
{
if ( $this -> lines [ $i ] -> fk_product > 0 )
{
$mouvP = new MouvementStock ( $this -> db );
// We decrement stock of product (and sub-products)
2011-11-08 00:03:19 +01:00
$result = $mouvP -> livraison ( $user , $this -> lines [ $i ] -> fk_product , $idwarehouse , $this -> lines [ $i ] -> qty , $this -> lines [ $i ] -> subprice , $langs -> trans ( " OrderValidatedInDolibarr " , $num ));
2011-09-12 19:08:02 +02:00
if ( $result < 0 ) { $error ++ ; }
}
}
}
}
if ( ! $error )
{
$this -> oldref = '' ;
// Rename directory if dir was a temporary ref
if ( preg_match ( '/^[\(]?PROV/i' , $this -> ref ))
{
// On renomme repertoire ($this->ref = ancienne ref, $numfa = nouvelle ref)
2013-11-02 17:50:24 +01:00
// in order not to lose the attachments
2011-09-12 19:08:02 +02:00
$comref = dol_sanitizeFileName ( $this -> ref );
$snum = dol_sanitizeFileName ( $num );
$dirsource = $conf -> commande -> dir_output . '/' . $comref ;
$dirdest = $conf -> commande -> dir_output . '/' . $snum ;
if ( file_exists ( $dirsource ))
{
2011-11-07 15:04:02 +01:00
dol_syslog ( get_class ( $this ) . " ::valid() rename dir " . $dirsource . " into " . $dirdest );
2011-09-12 19:08:02 +02:00
if ( @ rename ( $dirsource , $dirdest ))
{
$this -> oldref = $comref ;
dol_syslog ( " Rename ok " );
// Suppression ancien fichier PDF dans nouveau rep
2012-08-07 14:24:54 +02:00
dol_delete_file ( $conf -> commande -> dir_output . '/' . $snum . '/' . $comref . '*.*' );
2011-09-12 19:08:02 +02:00
}
}
}
}
// Set new ref and current status
if ( ! $error )
{
$this -> ref = $num ;
$this -> statut = 1 ;
}
if ( ! $error )
{
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2011-09-12 19:08:02 +02:00
$interface = new Interfaces ( $this -> db );
$result = $interface -> run_triggers ( 'ORDER_VALIDATE' , $this , $user , $langs , $conf );
if ( $result < 0 ) { $error ++ ; $this -> errors = $interface -> errors ; }
// Fin appel triggers
}
if ( ! $error )
{
$this -> db -> commit ();
return 1 ;
}
else
{
$this -> db -> rollback ();
$this -> error = $this -> db -> lasterror ();
return - 1 ;
}
}
/**
2011-11-14 15:46:44 +01:00
* Set draft status
*
2011-11-14 16:23:59 +01:00
* @ param User $user Object user that modify
* @ param int $idwarehouse Id warehouse to use for stock change .
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
2011-11-14 16:23:59 +01:00
function set_draft ( $user , $idwarehouse =- 1 )
2011-09-12 19:08:02 +02:00
{
global $conf , $langs ;
$error = 0 ;
// Protection
if ( $this -> statut <= 0 )
{
return 0 ;
}
if ( ! $user -> rights -> commande -> valider )
{
$this -> error = 'Permission denied' ;
return - 1 ;
}
$this -> db -> begin ();
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande " ;
$sql .= " SET fk_statut = 0 " ;
$sql .= " WHERE rowid = " . $this -> id ;
2011-11-14 15:46:44 +01:00
dol_syslog ( get_class ( $this ) . " ::set_draft sql= " . $sql , LOG_DEBUG );
2011-09-12 19:08:02 +02:00
if ( $this -> db -> query ( $sql ))
{
// If stock is decremented on validate order, we must reincrement it
2012-09-15 11:21:22 +02:00
if ( ! empty ( $conf -> stock -> enabled ) && $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER == 1 )
2011-09-12 19:08:02 +02:00
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/product/stock/class/mouvementstock.class.php' ;
2011-09-12 19:08:02 +02:00
$langs -> load ( " agenda " );
2011-09-17 21:49:50 +02:00
$num = count ( $this -> lines );
for ( $i = 0 ; $i < $num ; $i ++ )
2011-09-12 19:08:02 +02:00
{
if ( $this -> lines [ $i ] -> fk_product > 0 )
{
$mouvP = new MouvementStock ( $this -> db );
// We increment stock of product (and sub-products)
2011-11-14 15:46:44 +01:00
$result = $mouvP -> reception ( $user , $this -> lines [ $i ] -> fk_product , $idwarehouse , $this -> lines [ $i ] -> qty , $this -> lines [ $i ] -> subprice , $langs -> trans ( " OrderBackToDraftInDolibarr " , $this -> ref ));
2011-09-12 19:08:02 +02:00
if ( $result < 0 ) { $error ++ ; }
}
}
if ( ! $error )
{
$this -> statut = 0 ;
$this -> db -> commit ();
return $result ;
}
else
{
$this -> error = $mouvP -> error ;
$this -> db -> rollback ();
return $result ;
}
}
$this -> statut = 0 ;
$this -> db -> commit ();
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
$this -> db -> rollback ();
dol_syslog ( $this -> error , LOG_ERR );
return - 1 ;
}
}
/**
2011-12-16 12:47:23 +01: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
2011-09-12 19:08:02 +02:00
*/
function set_reopen ( $user )
{
global $conf , $langs ;
$error = 0 ;
if ( $this -> statut != 3 )
{
return 0 ;
}
$this -> db -> begin ();
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande' ;
$sql .= ' SET fk_statut=1, facture=0' ;
$sql .= ' WHERE rowid = ' . $this -> id ;
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::set_reopen sql= " . $sql );
2011-09-12 19:08:02 +02:00
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2011-09-12 19:08:02 +02:00
$interface = new Interfaces ( $this -> db );
2012-12-30 12:24:53 +01:00
$result = $interface -> run_triggers ( 'ORDER_REOPEN' , $this , $user , $langs , $conf );
2011-09-12 19:08:02 +02:00
if ( $result < 0 ) { $error ++ ; $this -> errors = $interface -> errors ; }
// Fin appel triggers
}
else
{
$error ++ ;
$this -> error = $this -> db -> error ();
dol_print_error ( $this -> db );
}
if ( ! $error )
{
2012-07-08 12:18:29 +02:00
$this -> statut = 1 ;
$this -> billed = 0 ;
$this -> facturee = 0 ; // deprecated
2011-09-12 19:08:02 +02:00
$this -> db -> commit ();
return 1 ;
}
else
{
$this -> db -> rollback ();
return - 1 ;
}
}
/**
2011-12-05 18:36:54 +01:00
* Close order
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param User $user Objet user that close
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
function cloture ( $user )
{
global $conf , $langs ;
$error = 0 ;
if ( $user -> rights -> commande -> valider )
{
$this -> db -> begin ();
$now = dol_now ();
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande' ;
$sql .= ' SET fk_statut = 3,' ;
$sql .= ' fk_user_cloture = ' . $user -> id . ',' ;
$sql .= ' date_cloture = ' . $this -> db -> idate ( $now );
$sql .= ' WHERE rowid = ' . $this -> id . ' AND fk_statut > 0' ;
if ( $this -> db -> query ( $sql ))
{
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2011-09-12 19:08:02 +02:00
$interface = new Interfaces ( $this -> db );
$result = $interface -> run_triggers ( 'ORDER_CLOSE' , $this , $user , $langs , $conf );
if ( $result < 0 ) { $error ++ ; $this -> errors = $interface -> errors ; }
// Fin appel triggers
if ( ! $error )
{
2012-07-08 12:18:29 +02:00
$this -> statut = 3 ;
2011-09-12 19:08:02 +02:00
$this -> db -> commit ();
return 1 ;
}
else
{
$this -> db -> rollback ();
return - 1 ;
}
}
else
{
$this -> error = $this -> db -> lasterror ();
dol_syslog ( $this -> error , LOG_ERR );
$this -> db -> rollback ();
return - 1 ;
}
}
}
/**
2011-12-05 18:36:54 +01:00
* Cancel an order
* If stock is decremented on order validation , we must reincrement it
2012-02-06 17:18:19 +01:00
*
2011-12-05 18:36:54 +01:00
* @ param int $idwarehouse Id warehouse to use for stock change .
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
2012-07-06 13:43:59 +02:00
function cancel ( $idwarehouse =- 1 )
{
global $conf , $user , $langs ;
$error = 0 ;
$this -> db -> begin ();
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande " ;
$sql .= " SET fk_statut = -1 " ;
$sql .= " WHERE rowid = " . $this -> id ;
$sql .= " AND fk_statut = 1 " ;
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::cancel sql= " . $sql , LOG_DEBUG );
2012-07-06 13:43:59 +02:00
if ( $this -> db -> query ( $sql ))
{
// If stock is decremented on validate order, we must reincrement it
2012-09-15 11:21:22 +02:00
if ( ! 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 " );
$num = count ( $this -> lines );
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)
$result = $mouvP -> reception ( $user , $this -> lines [ $i ] -> fk_product , $idwarehouse , $this -> lines [ $i ] -> qty , $this -> lines [ $i ] -> subprice , $langs -> trans ( " OrderCanceledInDolibarr " , $this -> ref ));
if ( $result < 0 ) {
$error ++ ;
}
}
}
}
if ( ! $error )
{
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2012-07-06 13:43:59 +02:00
$interface = new Interfaces ( $this -> db );
$result = $interface -> run_triggers ( 'ORDER_CANCEL' , $this , $user , $langs , $conf );
if ( $result < 0 ) {
$error ++ ; $this -> errors = $interface -> errors ;
}
// Fin appel triggers
}
if ( ! $error )
{
$this -> statut =- 1 ;
$this -> db -> commit ();
return 1 ;
}
else
{
$this -> error = $mouvP -> error ;
$this -> db -> rollback ();
return - 1 ;
}
}
else
{
$this -> error = $this -> db -> error ();
$this -> db -> rollback ();
dol_syslog ( $this -> error , LOG_ERR );
return - 1 ;
}
}
2011-09-12 19:08:02 +02:00
/**
2011-12-16 12:47:23 +01:00
* Create order
* Note that this -> ref can be set or empty . If empty , we will use " (PROV) "
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param User $user Objet user that make creation
2012-03-18 19:23:01 +01:00
* @ param int $notrigger Disable all triggers
2011-12-16 12:47:23 +01:00
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
function create ( $user , $notrigger = 0 )
{
2013-04-05 12:43:00 +02:00
global $conf , $langs , $mysoc , $hookmanager ;
2011-09-12 19:08:02 +02:00
$error = 0 ;
// Clean parameters
$this -> brouillon = 1 ; // On positionne en mode brouillon la commande
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::create user= " . $user -> id );
2011-09-12 19:08:02 +02:00
// Check parameters
$soc = new Societe ( $this -> db );
$result = $soc -> fetch ( $this -> socid );
if ( $result < 0 )
{
$this -> error = " Failed to fetch company " ;
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::create " . $this -> error , LOG_ERR );
2011-09-12 19:08:02 +02:00
return - 2 ;
}
if ( ! empty ( $conf -> global -> COMMANDE_REQUIRE_SOURCE ) && $this -> source < 0 )
{
$this -> error = $langs -> trans ( " ErrorFieldRequired " , $langs -> trans ( " Source " ));
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::create " . $this -> error , LOG_ERR );
2011-09-12 19:08:02 +02:00
return - 1 ;
}
// $date_commande is deprecated
$date = ( $this -> date_commande ? $this -> date_commande : $this -> date );
2012-05-01 15:08:54 +02:00
2012-03-23 18:19:50 +01:00
$now = dol_now ();
2011-09-12 19:08:02 +02:00
$this -> db -> begin ();
$sql = " INSERT INTO " . MAIN_DB_PREFIX . " commande ( " ;
2013-04-09 17:18:07 +02:00
$sql .= " ref, fk_soc, date_creation, fk_user_author, fk_projet, date_commande, source, note_private, note_public, ref_client, ref_int " ;
2013-02-15 19:18:26 +01:00
$sql .= " , model_pdf, fk_cond_reglement, fk_mode_reglement, fk_availability, fk_input_reason, date_livraison, fk_delivery_address " ;
2011-09-12 19:08:02 +02:00
$sql .= " , remise_absolue, remise_percent " ;
$sql .= " , entity " ;
$sql .= " ) " ;
2013-07-10 10:30:33 +02:00
$sql .= " VALUES ('(PROV)', " . $this -> socid . " , ' " . $this -> db -> idate ( $now ) . " ', " . $user -> id ;
2012-03-04 10:13:52 +01:00
$sql .= " , " . ( $this -> fk_project ? $this -> fk_project : " null " );
2013-07-10 10:35:10 +02:00
$sql .= " , ' " . $this -> db -> idate ( $date ) . " ' " ;
2011-09-12 19:08:02 +02:00
$sql .= " , " . ( $this -> source >= 0 && $this -> source != '' ? $this -> source : 'null' );
2013-04-09 17:18:07 +02:00
$sql .= " , ' " . $this -> db -> escape ( $this -> note_private ) . " ' " ;
2011-09-12 19:08:02 +02:00
$sql .= " , ' " . $this -> db -> escape ( $this -> note_public ) . " ' " ;
$sql .= " , ' " . $this -> db -> escape ( $this -> ref_client ) . " ' " ;
$sql .= " , " . ( $this -> ref_int ? " ' " . $this -> db -> escape ( $this -> ref_int ) . " ' " : " null " );
$sql .= " , ' " . $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 -> 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 -> remise_absolue > 0 ? $this -> remise_absolue : 'NULL' );
$sql .= " , ' " . $this -> remise_percent . " ' " ;
$sql .= " , " . $conf -> entity ;
$sql .= " ) " ;
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::create sql= " . $sql );
2011-09-12 19:08:02 +02:00
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
$this -> id = $this -> db -> last_insert_id ( MAIN_DB_PREFIX . 'commande' );
if ( $this -> id )
{
$fk_parent_line = 0 ;
2011-09-17 21:49:50 +02:00
$num = count ( $this -> lines );
2011-09-12 19:08:02 +02:00
/*
* Insertion du detail des produits dans la base
*/
for ( $i = 0 ; $i < $num ; $i ++ )
{
// Reset fk_parent_line for no child products and special product
if (( $this -> lines [ $i ] -> product_type != 9 && empty ( $this -> lines [ $i ] -> fk_parent_line )) || $this -> lines [ $i ] -> product_type == 9 ) {
$fk_parent_line = 0 ;
}
$result = $this -> addline (
2012-03-18 19:23:01 +01:00
$this -> lines [ $i ] -> desc ,
$this -> lines [ $i ] -> subprice ,
$this -> lines [ $i ] -> qty ,
$this -> lines [ $i ] -> tva_tx ,
$this -> lines [ $i ] -> localtax1_tx ,
$this -> lines [ $i ] -> localtax2_tx ,
$this -> lines [ $i ] -> fk_product ,
$this -> lines [ $i ] -> remise_percent ,
$this -> lines [ $i ] -> info_bits ,
$this -> lines [ $i ] -> fk_remise_except ,
2012-05-09 02:39:30 +02:00
'HT' ,
2012-03-18 19:23:01 +01:00
0 ,
$this -> lines [ $i ] -> date_start ,
$this -> lines [ $i ] -> date_end ,
$this -> lines [ $i ] -> product_type ,
$this -> lines [ $i ] -> rang ,
$this -> lines [ $i ] -> special_code ,
2012-07-19 10:26:26 +02:00
$fk_parent_line ,
2012-07-23 10:46:09 +02:00
$this -> lines [ $i ] -> fk_fournprice ,
2012-08-23 07:50:20 +02:00
$this -> lines [ $i ] -> pa_ht ,
$this -> lines [ $i ] -> label
2011-09-12 19:08:02 +02:00
);
if ( $result < 0 )
{
$this -> error = $this -> db -> lasterror ();
dol_print_error ( $this -> db );
$this -> db -> rollback ();
return - 1 ;
}
// Defined the new fk_parent_line
if ( $result > 0 && $this -> lines [ $i ] -> product_type == 9 ) {
$fk_parent_line = $result ;
}
}
// Mise a jour ref
$sql = 'UPDATE ' . MAIN_DB_PREFIX . " commande SET ref='(PROV " . $this -> id . " )' WHERE rowid= " . $this -> id ;
if ( $this -> db -> query ( $sql ))
{
if ( $this -> id )
{
$this -> ref = " (PROV " . $this -> id . " ) " ;
2012-03-18 19:23:01 +01:00
2012-02-21 18:16:24 +01:00
// Add object linked
if ( is_array ( $this -> linked_objects ) && ! empty ( $this -> linked_objects ))
2011-09-12 19:08:02 +02:00
{
2012-02-21 18:16:24 +01:00
foreach ( $this -> linked_objects as $origin => $origin_id )
{
$ret = $this -> add_object_linked ( $origin , $origin_id );
if ( ! $ret )
{
dol_print_error ( $this -> db );
$error ++ ;
}
2012-03-18 19:23:01 +01:00
2012-02-21 18:16:24 +01:00
// TODO mutualiser
if ( $origin == 'propal' && $origin_id )
{
// On recupere les differents contact interne et externe
$prop = new Propal ( $this -> db , $this -> socid , $origin_id );
2012-03-18 19:23:01 +01:00
2012-02-21 18:16:24 +01:00
// On recupere le commercial suivi propale
$this -> userid = $prop -> getIdcontact ( 'internal' , 'SALESREPFOLL' );
2012-03-18 19:23:01 +01:00
2012-02-21 18:16:24 +01:00
if ( $this -> userid )
{
//On passe le commercial suivi propale en commercial suivi commande
$this -> add_contact ( $this -> userid [ 0 ], 'SALESREPFOLL' , 'internal' );
}
2012-03-18 19:23:01 +01:00
2012-02-21 18:16:24 +01:00
// On recupere le contact client suivi propale
$this -> contactid = $prop -> getIdcontact ( 'external' , 'CUSTOMER' );
2012-03-18 19:23:01 +01:00
2012-02-21 18:16:24 +01:00
if ( $this -> contactid )
{
//On passe le contact client suivi propale en contact client suivi commande
$this -> add_contact ( $this -> contactid [ 0 ], 'CUSTOMER' , 'external' );
}
}
}
2011-09-12 19:08:02 +02:00
}
}
2013-04-27 15:08:35 +02:00
2013-04-05 12:43:00 +02:00
if ( ! $error )
{
// Actions on extra fields (by external module or standard code)
// FIXME le hook fait double emploi avec le trigger !!
$hookmanager -> initHooks ( array ( 'orderdao' ));
$parameters = array ( 'socid' => $this -> id );
$reshook = $hookmanager -> executeHooks ( 'insertExtraFields' , $parameters , $this , $action ); // Note that $action and $object may have been modified by some hooks
if ( empty ( $reshook ))
{
if ( empty ( $conf -> global -> MAIN_EXTRAFIELDS_DISABLED )) // For avoid conflicts if trigger used
{
$result = $this -> insertExtraFields ();
if ( $result < 0 )
{
$error ++ ;
}
}
}
else if ( $reshook < 0 ) $error ++ ;
}
2011-09-12 19:08:02 +02:00
if ( ! $notrigger )
{
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2011-09-12 19:08:02 +02:00
$interface = new Interfaces ( $this -> db );
$result = $interface -> run_triggers ( 'ORDER_CREATE' , $this , $user , $langs , $conf );
if ( $result < 0 ) { $error ++ ; $this -> errors = $interface -> errors ; }
// Fin appel triggers
}
$this -> db -> commit ();
return $this -> id ;
}
else
{
$this -> db -> rollback ();
return - 1 ;
}
}
}
else
{
dol_print_error ( $this -> db );
$this -> db -> rollback ();
return - 1 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Load an object from its id and create a new one in database
2011-09-12 19:08:02 +02:00
*
2011-12-16 12:47:23 +01:00
* @ param int $socid Id of thirdparty
* @ return int New id of clone
2011-09-12 19:08:02 +02:00
*/
2013-01-26 10:35:30 +01:00
function createFromClone ( $socid = 0 )
2011-09-12 19:08:02 +02:00
{
2013-01-26 10:35:30 +01:00
global $conf , $user , $langs , $hookmanager ;
2011-09-12 19:08:02 +02:00
$error = 0 ;
$this -> db -> begin ();
// Load source object
2011-12-12 14:04:03 +01:00
$objFrom = dol_clone ( $this );
2011-09-12 19:08:02 +02:00
// Change socid if needed
2011-12-12 14:04:03 +01:00
if ( ! empty ( $socid ) && $socid != $this -> socid )
2011-09-12 19:08:02 +02:00
{
$objsoc = new Societe ( $this -> db );
if ( $objsoc -> fetch ( $socid ) > 0 )
{
2011-12-12 14:04:03 +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 = '' ;
$this -> fk_delivery_address = '' ;
2011-09-12 19:08:02 +02:00
}
// TODO Change product price if multi-prices
}
2011-12-12 14:04:03 +01:00
$this -> id = 0 ;
$this -> statut = 0 ;
2011-09-12 19:08:02 +02:00
// Clear fields
2011-12-12 14:04:03 +01:00
$this -> user_author_id = $user -> id ;
$this -> user_valid = '' ;
$this -> date_creation = '' ;
$this -> date_validation = '' ;
$this -> ref_client = '' ;
2011-09-12 19:08:02 +02:00
// Create clone
2011-12-12 14:04:03 +01:00
$result = $this -> create ( $user );
if ( $result < 0 ) $error ++ ;
2011-09-12 19:08:02 +02:00
if ( ! $error )
{
// Hook of thirdparty module
if ( is_object ( $hookmanager ))
{
$parameters = array ( 'objFrom' => $objFrom );
2011-11-22 14:00:03 +01:00
$action = '' ;
2012-02-06 17:18:19 +01:00
$reshook = $hookmanager -> executeHooks ( 'createFrom' , $parameters , $this , $action ); // Note that $action and $object may have been modified by some hooks
2011-09-12 19:08:02 +02:00
if ( $reshook < 0 ) $error ++ ;
}
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2011-09-12 19:08:02 +02:00
$interface = new Interfaces ( $this -> db );
2011-12-12 14:04:03 +01:00
$result = $interface -> run_triggers ( 'ORDER_CLONE' , $this , $user , $langs , $conf );
2011-09-12 19:08:02 +02:00
if ( $result < 0 ) { $error ++ ; $this -> errors = $interface -> errors ; }
// Fin appel triggers
}
// End
if ( ! $error )
{
$this -> db -> commit ();
2011-12-12 14:04:03 +01:00
return $this -> id ;
2011-09-12 19:08:02 +02:00
}
else
{
$this -> db -> rollback ();
return - 1 ;
}
}
/**
* Load an object from a proposal and create a new order into database
*
* @ param Object $object Object source
* @ return int < 0 if KO , 0 if nothing done , 1 if OK
*/
2011-10-14 18:51:20 +02:00
function createFromProposal ( $object )
2011-09-12 19:08:02 +02:00
{
2013-01-25 19:12:54 +01:00
global $conf , $user , $langs , $hookmanager ;
2011-09-12 19:08:02 +02:00
$error = 0 ;
// Signed proposal
if ( $object -> statut == 2 )
{
$this -> date_commande = dol_now ();
$this -> source = 0 ;
2011-09-17 21:49:50 +02:00
$num = count ( $object -> lines );
for ( $i = 0 ; $i < $num ; $i ++ )
2011-09-12 19:08:02 +02:00
{
$line = new OrderLine ( $this -> db );
$line -> libelle = $object -> lines [ $i ] -> libelle ;
2012-08-23 07:50:20 +02:00
$line -> label = $object -> lines [ $i ] -> label ;
2011-09-12 19:08:02 +02:00
$line -> desc = $object -> lines [ $i ] -> desc ;
$line -> price = $object -> lines [ $i ] -> price ;
$line -> subprice = $object -> lines [ $i ] -> subprice ;
$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 ;
2013-04-27 15:08:35 +02:00
2013-04-15 15:55:10 +02:00
$line -> date_start = $object -> lines [ $i ] -> date_start ;
$line -> date_end = $object -> lines [ $i ] -> date_end ;
2011-09-12 19:08:02 +02:00
2013-03-22 17:10:17 +01:00
$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 ];
2011-09-12 19:08:02 +02:00
$this -> lines [ $i ] = $line ;
}
$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 -> availability_id = $object -> availability_id ;
$this -> demand_reason_id = $object -> demand_reason_id ;
$this -> date_livraison = $object -> date_livraison ;
$this -> fk_delivery_address = $object -> fk_delivery_address ;
$this -> contact_id = $object -> contactid ;
$this -> ref_client = $object -> ref_client ;
2013-04-09 17:18:07 +02:00
$this -> note_private = $object -> note_private ;
2011-09-12 19:08:02 +02:00
$this -> note_public = $object -> note_public ;
2012-03-15 07:23:49 +01:00
$this -> origin = $object -> element ;
2012-07-02 19:30:37 +02:00
$this -> origin_id = $object -> id ;
// Possibility to add external linked objects with hooks
$this -> linked_objects [ $this -> origin ] = $this -> origin_id ;
if ( is_array ( $object -> other_linked_objects ) && ! empty ( $object -> other_linked_objects ))
{
$this -> linked_objects = array_merge ( $this -> linked_objects , $object -> other_linked_objects );
2012-03-15 07:23:49 +01:00
}
2011-09-12 19:08:02 +02:00
$ret = $this -> create ( $user );
if ( $ret > 0 )
{
2011-10-14 18:51:20 +02:00
// Actions hooked (by external module)
2012-03-02 14:51:16 +01:00
$hookmanager -> initHooks ( array ( 'orderdao' ));
2011-10-14 18:51:20 +02:00
$parameters = array ( 'objFrom' => $object );
2011-11-22 14:00:03 +01:00
$action = '' ;
2012-02-06 17:18:19 +01:00
$reshook = $hookmanager -> executeHooks ( 'createFrom' , $parameters , $this , $action ); // Note that $action and $object may have been modified by some hooks
2011-10-14 18:51:20 +02:00
if ( $reshook < 0 ) $error ++ ;
2011-09-12 19:08:02 +02:00
if ( ! $error )
{
// Ne pas passer par la commande provisoire
if ( $conf -> global -> COMMANDE_VALID_AFTER_CLOSE_PROPAL == 1 )
{
$this -> fetch ( $ret );
$this -> valid ( $user );
}
2013-07-10 13:32:42 +02:00
return $ret ;
2011-09-12 19:08:02 +02:00
}
else return - 1 ;
}
else return - 1 ;
}
else return 0 ;
}
/**
2011-12-16 12:47:23 +01:00
* Add an order line into database ( linked to product / service or not )
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param string $desc Description of line
* @ param double $pu_ht Unit price ( without tax )
* @ param double $qty Quantite
* @ param double $txtva Taux de tva force , sinon - 1
* @ param double $txlocaltax1 Local tax 1 rate
* @ param double $txlocaltax2 Local tax 2 rate
* @ param int $fk_product Id du produit / service predefini
* @ param double $remise_percent Pourcentage de remise de la ligne
* @ param int $info_bits Bits de type de lignes
* @ param int $fk_remise_except Id remise
* @ param string $price_base_type HT or TTC
* @ param double $pu_ttc Prix unitaire TTC
* @ param timestamp $date_start Start date of the line - Added by Matelli ( See http :// matelli . fr / showcases / patchs - dolibarr / add - dates - in - order - lines . html )
* @ param timestamp $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 )
* @ param int $rang Position of line
2013-01-22 21:36:30 +01:00
* @ param int $special_code Special code ( also used by externals modules ! )
2012-03-18 19:23:01 +01:00
* @ param int $fk_parent_line Parent line
2012-07-23 10:46:09 +02:00
* @ param int $fk_fournprice Id supplier price
* @ param int $pa_ht Buying price ( without tax )
2012-09-18 17:41:59 +02:00
* @ param string $label Label
2013-06-10 16:05:41 +02:00
* @ param array $array_option extrafields array
2011-12-16 12:47:23 +01:00
* @ return int > 0 if OK , < 0 if KO
*
* @ see add_product
*
* 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 )
2011-09-12 19:08:02 +02:00
*/
2013-07-10 17:29:54 +02:00
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_option = 0 )
2011-09-12 19:08:02 +02:00
{
2013-09-10 18:32:03 +02:00
global $mysoc ;
2013-07-10 17:29:54 +02:00
$commandeid = $this -> id ;
2012-08-05 21:30:40 +02:00
dol_syslog ( get_class ( $this ) . " ::addline commandeid= $commandeid , desc= $desc , pu_ht= $pu_ht , qty= $qty , txtva= $txtva , fk_product= $fk_product , remise_percent= $remise_percent , info_bits= $info_bits , fk_remise_except= $fk_remise_except , price_base_type= $price_base_type , pu_ttc= $pu_ttc , date_start= $date_start , date_end= $date_end , type= $type " , LOG_DEBUG );
2011-09-12 19:08:02 +02:00
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/lib/price.lib.php' ;
2011-09-12 19:08:02 +02:00
// Clean parameters
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 ;
$remise_percent = price2num ( $remise_percent );
$qty = price2num ( $qty );
$pu_ht = price2num ( $pu_ht );
$pu_ttc = price2num ( $pu_ttc );
2012-07-28 18:32:54 +02:00
$pa_ht = price2num ( $pa_ht );
2011-09-12 19:08:02 +02:00
$txtva = price2num ( $txtva );
$txlocaltax1 = price2num ( $txlocaltax1 );
$txlocaltax2 = price2num ( $txlocaltax2 );
if ( $price_base_type == 'HT' )
{
$pu = $pu_ht ;
}
else
{
$pu = $pu_ttc ;
}
2012-08-23 07:50:20 +02:00
$label = trim ( $label );
2011-09-12 19:08:02 +02:00
$desc = trim ( $desc );
// Check parameters
if ( $type < 0 ) return - 1 ;
if ( $this -> statut == 0 )
{
$this -> db -> begin ();
// 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.
2013-09-10 18:32:03 +02:00
$localtaxes_type = getLocalTaxesFromRate ( $txtva , 0 , $mysoc );
$tabprice = calcul_price_total ( $qty , $pu , $remise_percent , $txtva , $txlocaltax1 , $txlocaltax2 , 0 , $price_base_type , $info_bits , $type , '' , $localtaxes_type );
2011-09-12 19:08:02 +02:00
$total_ht = $tabprice [ 0 ];
$total_tva = $tabprice [ 1 ];
$total_ttc = $tabprice [ 2 ];
$total_localtax1 = $tabprice [ 9 ];
$total_localtax2 = $tabprice [ 10 ];
// Rang to use
$rangtouse = $rang ;
if ( $rangtouse == - 1 )
{
$rangmax = $this -> line_max ( $fk_parent_line );
$rangtouse = $rangmax + 1 ;
}
// 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
$this -> line = new OrderLine ( $this -> db );
$this -> line -> fk_commande = $commandeid ;
2012-08-23 07:50:20 +02:00
$this -> line -> label = $label ;
2011-09-12 19:08:02 +02:00
$this -> line -> desc = $desc ;
$this -> line -> qty = $qty ;
$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 ];
2011-09-12 19:08:02 +02:00
$this -> line -> fk_product = $fk_product ;
$this -> line -> fk_remise_except = $fk_remise_except ;
$this -> line -> remise_percent = $remise_percent ;
$this -> line -> subprice = $pu_ht ;
$this -> line -> rang = $rangtouse ;
$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 -> product_type = $type ;
$this -> line -> special_code = $special_code ;
$this -> line -> fk_parent_line = $fk_parent_line ;
$this -> line -> date_start = $date_start ;
$this -> line -> date_end = $date_end ;
2012-07-28 18:32:54 +02:00
// infos marge
$this -> line -> fk_fournprice = $fk_fournprice ;
$this -> line -> pa_ht = $pa_ht ;
2012-07-19 10:26:26 +02:00
2011-09-12 19:08:02 +02:00
// TODO Ne plus utiliser
$this -> line -> price = $price ;
$this -> line -> remise = $remise ;
2013-06-10 16:05:41 +02:00
if ( is_array ( $array_option ) && count ( $array_option ) > 0 ) {
$this -> line -> array_options = $array_option ;
}
2011-09-12 19:08:02 +02:00
$result = $this -> line -> insert ();
if ( $result > 0 )
{
// Reorder if child line
if ( ! empty ( $fk_parent_line )) $this -> line_order ( true , 'DESC' );
// Mise a jour informations denormalisees au niveau de la commande meme
$this -> id = $commandeid ; // TODO A virer
$result = $this -> update_price ( 1 );
if ( $result > 0 )
{
$this -> db -> commit ();
return $this -> line -> rowid ;
}
else
{
$this -> db -> rollback ();
return - 1 ;
}
}
else
{
$this -> error = $this -> line -> error ;
2012-08-05 21:30:40 +02:00
dol_syslog ( get_class ( $this ) . " ::addline error= " . $this -> error , LOG_ERR );
2011-09-12 19:08:02 +02:00
$this -> db -> rollback ();
return - 2 ;
}
}
}
/**
2011-12-16 12:47:23 +01:00
* Add line into array
* $this -> client must be loaded
*
* @ param int $idproduct Product Id
* @ param double $qty Quantity
* @ param double $remise_percent Product discount relative
* @ param timestamp $date_start Start date of the line - Added by Matelli ( See http :// matelli . fr / showcases / patchs - dolibarr / add - dates - in - order - lines . html )
* @ param timestamp $date_end End date of the line - Added by Matelli ( See http :// matelli . fr / showcases / patchs - dolibarr / add - dates - in - order - lines . html )
* @ return void
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* TODO Remplacer les appels a cette fonction par generation objet Ligne
* insere dans tableau $this -> products
2011-09-12 19:08:02 +02:00
*/
function add_product ( $idproduct , $qty , $remise_percent = 0 , $date_start = '' , $date_end = '' )
{
global $conf , $mysoc ;
if ( ! $qty ) $qty = 1 ;
if ( $idproduct > 0 )
{
$prod = new Product ( $this -> db );
$prod -> fetch ( $idproduct );
$tva_tx = get_default_tva ( $mysoc , $this -> client , $prod -> id );
$localtax1_tx = get_localtax ( $tva_tx , 1 , $this -> client );
$localtax2_tx = get_localtax ( $tva_tx , 2 , $this -> client );
// multiprix
if ( $conf -> global -> PRODUIT_MULTIPRICES && $this -> client -> price_level )
$price = $prod -> multiprices [ $this -> client -> price_level ];
else
$price = $prod -> price ;
$line = new OrderLine ( $this -> db );
$line -> fk_product = $idproduct ;
$line -> desc = $prod -> description ;
$line -> qty = $qty ;
$line -> subprice = $price ;
$line -> remise_percent = $remise_percent ;
$line -> tva_tx = $tva_tx ;
$line -> localtax1_tx = $localtax1_tx ;
$line -> localtax2_tx = $localtax2_tx ;
$line -> ref = $prod -> ref ;
$line -> libelle = $prod -> libelle ;
$line -> product_desc = $prod -> description ;
// Added by Matelli (See http://matelli.fr/showcases/patchs-dolibarr/add-dates-in-order-lines.html)
// Save the start and end date of the line in the object
if ( $date_start ) { $line -> date_start = $date_start ; }
if ( $date_end ) { $line -> date_end = $date_end ; }
$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_each_prod ();
2011-09-17 21:49:50 +02:00
if ( count ( $prods_arbo ) > 0 )
2011-09-12 19:08:02 +02:00
{
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 ]);
}
}
}
**/
}
}
/**
* Get object and lines from database
2011-12-16 12:47:23 +01:00
*
* @ param int $id Id of object to load
* @ param string $ref Ref of object
* @ param string $ref_ext External reference of object
* @ param string $ref_int Internal reference of other object
2012-02-08 16:41:06 +01:00
* @ return int > 0 if OK , < 0 if KO , 0 if not found
2011-09-12 19:08:02 +02:00
*/
function fetch ( $id , $ref = '' , $ref_ext = '' , $ref_int = '' )
{
global $conf ;
// Check parameters
if ( empty ( $id ) && empty ( $ref ) && empty ( $ref_ext ) && empty ( $ref_int )) return - 1 ;
$sql = 'SELECT c.rowid, c.date_creation, c.ref, c.fk_soc, c.fk_user_author, c.fk_statut' ;
2012-07-22 16:53:02 +02: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' ;
2011-09-12 19:08:02 +02:00
$sql .= ', c.date_commande' ;
$sql .= ', c.date_livraison' ;
2012-07-08 12:18:29 +02:00
$sql .= ', c.fk_projet, c.remise_percent, c.remise, c.remise_absolue, c.source, c.facture as billed' ;
2013-04-09 17:18:07 +02:00
$sql .= ', c.note_private, c.note_public, c.ref_client, c.ref_ext, c.ref_int, c.model_pdf, c.fk_delivery_address, c.extraparams' ;
2011-09-12 19:08:02 +02:00
$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' ;
$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)' ;
2012-07-22 16:53:02 +02:00
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'c_input_reason as dr ON (c.fk_input_reason = ca.rowid)' ;
2011-09-12 19:08:02 +02:00
$sql .= " WHERE c.entity = " . $conf -> entity ;
if ( $id ) $sql .= " AND c.rowid= " . $id ;
if ( $ref ) $sql .= " AND c.ref=' " . $this -> db -> escape ( $ref ) . " ' " ;
if ( $ref_ext ) $sql .= " AND c.ref_ext=' " . $this -> db -> escape ( $ref_ext ) . " ' " ;
if ( $ref_int ) $sql .= " AND c.ref_int=' " . $this -> db -> escape ( $ref_int ) . " ' " ;
2012-02-08 16:41:06 +01:00
dol_syslog ( get_class ( $this ) . " ::fetch sql= " . $sql , LOG_DEBUG );
2011-09-20 15:32:16 +02:00
$result = $this -> db -> query ( $sql );
2011-09-12 19:08:02 +02:00
if ( $result )
{
$obj = $this -> db -> fetch_object ( $result );
if ( $obj )
{
2012-07-08 12:18:29 +02:00
$this -> id = $obj -> rowid ;
$this -> ref = $obj -> ref ;
$this -> ref_client = $obj -> ref_client ;
$this -> ref_ext = $obj -> ref_ext ;
$this -> ref_int = $obj -> ref_int ;
$this -> socid = $obj -> fk_soc ;
$this -> statut = $obj -> fk_statut ;
$this -> user_author_id = $obj -> fk_user_author ;
$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 ;
$this -> date = $this -> db -> jdate ( $obj -> date_commande );
$this -> date_commande = $this -> db -> jdate ( $obj -> date_commande );
$this -> remise = $obj -> remise ;
$this -> remise_percent = $obj -> remise_percent ;
$this -> remise_absolue = $obj -> remise_absolue ;
$this -> source = $obj -> source ;
$this -> facturee = $obj -> billed ; // deprecated
$this -> billed = $obj -> billed ;
$this -> note = $obj -> note_private ; // deprecated
$this -> note_private = $obj -> note_private ;
$this -> note_public = $obj -> note_public ;
$this -> fk_project = $obj -> fk_projet ;
$this -> modelpdf = $obj -> model_pdf ;
$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 ;
$this -> cond_reglement_doc = $obj -> cond_reglement_libelle_doc ;
$this -> availability_id = $obj -> fk_availability ;
$this -> availability_code = $obj -> availability_code ;
2012-07-22 16:53:02 +02:00
$this -> demand_reason_id = $obj -> fk_input_reason ;
2012-07-08 12:18:29 +02:00
$this -> demand_reason_code = $obj -> demand_reason_code ;
$this -> date_livraison = $this -> db -> jdate ( $obj -> date_livraison );
2013-02-15 19:18:26 +01:00
$this -> fk_delivery_address = $obj -> fk_delivery_address ;
2012-07-08 12:18:29 +02:00
$this -> extraparams = ( array ) json_decode ( $obj -> extraparams , true );
$this -> lines = array ();
2011-09-12 19:08:02 +02:00
if ( $this -> statut == 0 ) $this -> brouillon = 1 ;
2013-06-16 21:31:21 +02:00
2013-04-26 16:51:01 +02:00
// Retreive all extrafield for invoice
// fetch optionals attributes and labels
2013-06-16 21:31:21 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php' ;
2013-04-26 16:51:01 +02:00
$extrafields = new ExtraFields ( $this -> db );
$extralabels = $extrafields -> fetch_name_optionals_label ( $this -> table_element , true );
2013-06-16 21:31:21 +02:00
$this -> fetch_optionals ( $this -> id , $extralabels );
2011-09-12 19:08:02 +02:00
$this -> db -> free ();
/*
2012-02-08 16:41:06 +01:00
* Lines
2011-09-12 19:08:02 +02:00
*/
$result = $this -> fetch_lines ();
if ( $result < 0 )
{
return - 3 ;
}
return 1 ;
}
else
{
2011-12-05 18:36:54 +01:00
$this -> error = 'Order with id ' . $id . ' not found sql=' . $sql ;
2012-02-08 16:41:06 +01:00
dol_syslog ( get_class ( $this ) . '::fetch ' . $this -> error );
return 0 ;
2011-09-12 19:08:02 +02:00
}
}
else
{
2012-02-08 16:41:06 +01:00
dol_syslog ( get_class ( $this ) . '::fetch Error rowid=' . $id , LOG_ERR );
2011-09-12 19:08:02 +02:00
$this -> error = $this -> db -> error ();
return - 1 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Adding line of fixed discount in the order in DB
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param int $idremise Id de la remise fixe
* @ return int > 0 si ok , < 0 si ko
2011-09-12 19:08:02 +02:00
*/
function insert_discount ( $idremise )
{
global $langs ;
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/lib/price.lib.php' ;
include_once DOL_DOCUMENT_ROOT . '/core/class/discount.class.php' ;
2011-09-12 19:08:02 +02:00
$this -> db -> begin ();
$remise = new DiscountAbsolute ( $this -> db );
$result = $remise -> fetch ( $idremise );
if ( $result > 0 )
{
if ( $remise -> fk_facture ) // Protection against multiple submission
{
$this -> error = $langs -> trans ( " ErrorDiscountAlreadyUsed " );
$this -> db -> rollback ();
return - 5 ;
}
$line = new OrderLine ( $this -> db );
$line -> fk_commande = $this -> id ;
$line -> fk_remise_except = $remise -> id ;
$line -> desc = $remise -> description ; // Description ligne
$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 ;
$line -> total_ht = - $remise -> amount_ht ;
$line -> total_tva = - $remise -> amount_tva ;
$line -> total_ttc = - $remise -> amount_ttc ;
$result = $line -> insert ();
if ( $result > 0 )
{
$result = $this -> update_price ( 1 );
if ( $result > 0 )
{
$this -> db -> commit ();
return 1 ;
}
else
{
$this -> db -> rollback ();
return - 1 ;
}
}
else
{
$this -> error = $line -> error ;
$this -> db -> rollback ();
return - 2 ;
}
}
else
{
$this -> db -> rollback ();
return - 2 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Load array lines
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param int $only_product Return only physical products
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
function fetch_lines ( $only_product = 0 )
{
$this -> lines = array ();
2012-08-23 07:50:20 +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.tva_tx,' ;
2012-07-19 10:26:26 +02:00
$sql .= ' l.localtax1_tx, l.localtax2_tx, 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,' ;
2011-09-12 19:08:02 +02:00
$sql .= ' l.total_ht, l.total_ttc, l.total_tva, l.total_localtax1, l.total_localtax2, l.date_start, l.date_end,' ;
$sql .= ' p.ref as product_ref, p.description as product_desc, p.fk_product_type, p.label as product_label' ;
$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 ;
if ( $only_product ) $sql .= ' AND p.fk_product_type = 0' ;
$sql .= ' ORDER BY l.rang' ;
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::fetch_lines sql= " . $sql , LOG_DEBUG );
2011-09-12 19:08:02 +02:00
$result = $this -> db -> query ( $sql );
if ( $result )
{
$num = $this -> db -> num_rows ( $result );
$i = 0 ;
while ( $i < $num )
{
$objp = $this -> db -> fetch_object ( $result );
$line = new OrderLine ( $this -> db );
$line -> rowid = $objp -> rowid ; // \deprecated
$line -> id = $objp -> rowid ;
$line -> fk_commande = $objp -> fk_commande ;
$line -> commande_id = $objp -> fk_commande ; // \deprecated
2012-08-23 07:50:20 +02:00
$line -> label = $objp -> custom_label ;
2011-09-12 19:08:02 +02:00
$line -> desc = $objp -> description ; // Description ligne
$line -> product_type = $objp -> product_type ;
$line -> qty = $objp -> qty ;
$line -> tva_tx = $objp -> tva_tx ;
$line -> localtax1_tx = $objp -> localtax1_tx ;
$line -> localtax2_tx = $objp -> localtax2_tx ;
$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 ;
2012-08-23 07:50:20 +02: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 ];
$line -> marge_tx = $marginInfos [ 1 ];
$line -> marque_tx = $marginInfos [ 2 ];
2011-09-12 19:08:02 +02:00
$line -> rang = $objp -> rang ;
$line -> info_bits = $objp -> info_bits ;
$line -> special_code = $objp -> special_code ;
$line -> fk_parent_line = $objp -> fk_parent_line ;
$line -> ref = $objp -> product_ref ; // TODO deprecated
$line -> product_ref = $objp -> product_ref ;
$line -> libelle = $objp -> product_label ; // TODO deprecated
$line -> product_label = $objp -> product_label ;
$line -> product_desc = $objp -> product_desc ; // Description produit
$line -> fk_product_type = $objp -> fk_product_type ; // Produit ou service
$line -> date_start = $this -> db -> jdate ( $objp -> date_start );
$line -> date_end = $this -> db -> jdate ( $objp -> date_end );
$this -> lines [ $i ] = $line ;
$i ++ ;
}
$this -> db -> free ( $result );
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
dol_syslog ( 'Commande::fetch_lines: Error ' . $this -> error , LOG_ERR );
return - 3 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Return number of line with type product .
*
* @ return int < 0 if KO , Nbr of product lines if OK
2011-09-12 19:08:02 +02:00
*/
function getNbOfProductsLines ()
{
$nb = 0 ;
foreach ( $this -> lines as $line )
{
2012-10-25 11:26:36 +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
*/
function getNbOfServicesLines ()
{
$nb = 0 ;
foreach ( $this -> lines as $line )
{
if ( $line -> product_type == 1 ) $nb ++ ;
2011-09-12 19:08:02 +02:00
}
return $nb ;
}
/**
2011-12-16 12:47:23 +01:00
* Load array this -> expeditions of nb of products sent by line in order
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param int $filtre_statut Filter on status
* @ return int < 0 if KO , Nb of lines found if OK
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* TODO deprecated , move to Shipping class
2011-09-12 19:08:02 +02:00
*/
function loadExpeditions ( $filtre_statut =- 1 )
{
$num = 0 ;
$this -> expeditions = array ();
$sql = 'SELECT cd.rowid, cd.fk_product,' ;
$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 ;
2013-09-10 11:04:36 +02:00
if ( $filtre_statut >= 0 ) $sql .= ' AND e.fk_statut >= ' . $filtre_statut ;
2011-09-12 19:08:02 +02:00
$sql .= ' GROUP BY cd.rowid, cd.fk_product' ;
//print $sql;
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::loadExpeditions sql= " . $sql , LOG_DEBUG );
2011-09-12 19:08:02 +02:00
$result = $this -> db -> query ( $sql );
if ( $result )
{
$num = $this -> db -> num_rows ( $result );
$i = 0 ;
while ( $i < $num )
{
$obj = $this -> db -> fetch_object ( $result );
$this -> expeditions [ $obj -> rowid ] = $obj -> qty ;
$i ++ ;
}
$this -> db -> free ();
return $num ;
}
else
{
$this -> error = $this -> db -> lasterror ();
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::loadExpeditions " . $this -> error , LOG_ERR );
2011-09-12 19:08:02 +02:00
return - 1 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Returns a array with expeditions lines number
2012-02-06 17:18:19 +01:00
*
2012-03-18 19:23:01 +01:00
* @ return int Nb of shipments
*
2011-09-12 19:08:02 +02:00
* TODO deprecated , move to Shipping class
*/
function nb_expedition ()
{
$sql = 'SELECT count(*)' ;
$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' " ;
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
$row = $this -> db -> fetch_row ( $resql );
return $row [ 0 ];
}
else dol_print_error ( $this -> db );
}
/**
2011-12-16 12:47:23 +01:00
* Return a array with sendings by line
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param int $filtre_statut Filtre sur statut
* @ return int 0 si OK , < 0 si KO
*
* TODO deprecated , move to Shipping class
2011-09-12 19:08:02 +02:00
*/
function livraison_array ( $filtre_statut =- 1 )
{
$delivery = new Livraison ( $this -> db );
$deliveryArray = $delivery -> livraison_array ( $filtre_statut );
return $deliveryArray ;
}
/**
2011-12-16 12:47:23 +01:00
* Return a array with the pending stock by product
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param int $filtre_statut Filtre sur statut
* @ return int 0 si OK , < 0 si KO
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* TODO FONCTION NON FINIE A FINIR
2011-09-12 19:08:02 +02:00
*/
function stock_array ( $filtre_statut =- 1 )
{
$this -> stocks = array ();
// Tableau des id de produit de la commande
2011-11-22 14:00:03 +01:00
$array_of_product = array ();
2012-02-06 17:18:19 +01:00
2011-09-12 19:08:02 +02:00
// Recherche total en stock pour chaque produit
2012-02-11 10:18:09 +01:00
// TODO $array_of_product est défini vide juste au dessus !!
2011-09-17 21:49:50 +02:00
if ( count ( $array_of_product ))
2011-09-12 19:08:02 +02:00
{
$sql = " SELECT fk_product, sum(ps.reel) as total " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " product_stock as ps " ;
2012-02-11 10:18:09 +01:00
$sql .= " WHERE ps.fk_product IN ( " . join ( ',' , $array_of_product ) . " ) " ;
2011-09-12 19:08:02 +02:00
$sql .= ' GROUP BY fk_product ' ;
$result = $this -> db -> query ( $sql );
if ( $result )
{
$num = $this -> db -> num_rows ( $result );
$i = 0 ;
while ( $i < $num )
{
$obj = $this -> db -> fetch_object ( $result );
$this -> stocks [ $obj -> fk_product ] = $obj -> total ;
$i ++ ;
}
$this -> db -> free ();
}
}
return 0 ;
}
/**
* Delete an order line
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param int $lineid Id of line to delete
* @ return int > 0 if OK , 0 if nothing to do , < 0 if KO
2011-09-12 19:08:02 +02:00
*/
function deleteline ( $lineid )
{
global $user ;
if ( $this -> statut == 0 )
{
$this -> db -> begin ();
$sql = " SELECT fk_product, qty " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " commandedet " ;
$sql .= " WHERE rowid = " . $lineid ;
$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 () > 0 )
{
$result = $this -> update_price ( 1 );
if ( $result > 0 )
{
$this -> db -> commit ();
return 1 ;
}
else
{
$this -> db -> rollback ();
$this -> error = $this -> db -> lasterror ();
return - 1 ;
}
}
else
{
$this -> db -> rollback ();
$this -> error = $this -> db -> lasterror ();
return - 1 ;
}
}
else
{
$this -> db -> rollback ();
return 0 ;
}
}
else
{
$this -> db -> rollback ();
$this -> error = $this -> db -> lasterror ();
return - 1 ;
}
}
else
{
return - 1 ;
}
}
/**
* Applique une remise relative
*
* @ param User $user User qui positionne la remise
* @ param float $remise Discount ( percent )
* @ return int < 0 if KO , > 0 if OK
*/
function set_remise ( $user , $remise )
{
$remise = trim ( $remise ) ? trim ( $remise ) : 0 ;
if ( $user -> rights -> commande -> creer )
{
$remise = price2num ( $remise );
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande' ;
$sql .= ' SET remise_percent = ' . $remise ;
$sql .= ' WHERE rowid = ' . $this -> id . ' AND fk_statut = 0 ;' ;
if ( $this -> db -> query ( $sql ))
{
$this -> remise_percent = $remise ;
$this -> update_price ( 1 );
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
return - 1 ;
}
}
}
/**
* Applique une remise absolue
*
* @ param User $user User qui positionne la remise
* @ param float $remise Discount
* @ return int < 0 if KO , > 0 if OK
*/
function set_remise_absolue ( $user , $remise )
{
$remise = trim ( $remise ) ? trim ( $remise ) : 0 ;
if ( $user -> rights -> commande -> creer )
{
$remise = price2num ( $remise );
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande' ;
$sql .= ' SET remise_absolue = ' . $remise ;
$sql .= ' WHERE rowid = ' . $this -> id . ' AND fk_statut = 0 ;' ;
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::set_remise_absolue sql= $sql " );
2011-09-12 19:08:02 +02:00
if ( $this -> db -> query ( $sql ))
{
$this -> remise_absolue = $remise ;
$this -> update_price ( 1 );
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
return - 1 ;
}
}
}
/**
2011-12-16 12:47:23 +01:00
* Set the order date
2011-09-12 19:08:02 +02:00
*
2011-12-16 12:47:23 +01:00
* @ param User $user Object user making change
* @ param timestamp $date Date
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
function set_date ( $user , $date )
{
if ( $user -> rights -> commande -> creer )
{
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande " ;
$sql .= " SET date_commande = " . ( $date ? $this -> db -> idate ( $date ) : 'null' );
$sql .= " WHERE rowid = " . $this -> id . " AND fk_statut = 0 " ;
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::set_date sql= $sql " , LOG_DEBUG );
2011-09-12 19:08:02 +02:00
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
$this -> date = $date ;
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::set_date " . $this -> error , LOG_ERR );
2011-09-12 19:08:02 +02:00
return - 1 ;
}
}
else
{
return - 2 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Set the planned delivery date
2011-09-12 19:08:02 +02:00
*
2011-12-16 12:47:23 +01:00
* @ param User $user Objet utilisateur qui modifie
* @ param timestamp $date_livraison Date de livraison
* @ return int < 0 si ko , > 0 si ok
2011-09-12 19:08:02 +02:00
*/
function set_date_livraison ( $user , $date_livraison )
{
if ( $user -> rights -> commande -> creer )
{
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande " ;
$sql .= " SET date_livraison = " . ( $date_livraison ? " ' " . $this -> db -> idate ( $date_livraison ) . " ' " : 'null' );
$sql .= " WHERE rowid = " . $this -> id ;
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::set_date_livraison sql= " . $sql , LOG_DEBUG );
2011-09-12 19:08:02 +02:00
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
$this -> date_livraison = $date_livraison ;
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::set_date_livraison " . $this -> error , LOG_ERR );
2011-09-12 19:08:02 +02:00
return - 1 ;
}
}
else
{
return - 2 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Set availability
2011-09-12 19:08:02 +02:00
*
2011-12-16 12:47:23 +01:00
* @ param User $user Object user making change
* @ param int $id If of availability delay
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
function set_availability ( $user , $id )
{
if ( $user -> rights -> commande -> creer )
{
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande " ;
$sql .= " SET fk_availability = ' " . $id . " ' " ;
$sql .= " WHERE rowid = " . $this -> id ;
if ( $this -> db -> query ( $sql ))
{
$this -> fk_availability = $id ;
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::set_availability Erreur SQL " );
2011-09-12 19:08:02 +02:00
return - 1 ;
}
}
}
/**
2011-12-16 12:47:23 +01:00
* Set source of demand
2011-09-12 19:08:02 +02:00
*
2011-12-16 12:47:23 +01:00
* @ param User $user Object user making change
* @ param int $id Id of source
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
function set_demand_reason ( $user , $id )
{
if ( $user -> rights -> commande -> creer )
{
$sql = " UPDATE " . MAIN_DB_PREFIX . " commande " ;
2012-07-22 16:53:02 +02:00
$sql .= " SET fk_input_reason = ' " . $id . " ' " ;
2011-09-12 19:08:02 +02:00
$sql .= " WHERE rowid = " . $this -> id ;
if ( $this -> db -> query ( $sql ))
{
2012-07-22 16:53:02 +02:00
$this -> fk_input_reason = $id ;
2011-09-12 19:08:02 +02:00
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
2013-04-08 14:57:06 +02:00
dol_syslog ( get_class ( $this ) . " ::set_demand_reason Erreur SQL " );
2011-09-12 19:08:02 +02:00
return - 1 ;
}
}
}
/**
* Return list of orders ( eventuelly filtered on a user ) into an array
*
2013-04-27 15:08:35 +02:00
* @ 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
2011-12-16 12:47:23 +01:00
* @ return int - 1 if KO , array with result if OK
2011-09-12 19:08:02 +02:00
*/
2013-04-27 15:08:35 +02:00
function liste_array ( $shortlist = 0 , $draft = 0 , $excluser = '' , $socid = 0 , $limit = 0 , $offset = 0 , $sortfield = 'c.date_commande' , $sortorder = 'DESC' )
2011-09-12 19:08:02 +02:00
{
2013-04-27 15:08:35 +02:00
global $conf , $user ;
2011-09-12 19:08:02 +02:00
$ga = array ();
2013-04-27 15:08:35 +02:00
$sql = " SELECT s.rowid, s.nom as name, s.client, " ;
$sql .= " c.rowid as cid, c.ref " ;
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " , sc.fk_soc, sc.fk_user " ;
2011-09-12 19:08:02 +02:00
$sql .= " FROM " . MAIN_DB_PREFIX . " societe as s, " . MAIN_DB_PREFIX . " commande as c " ;
2013-04-27 15:08:35 +02:00
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " , " . MAIN_DB_PREFIX . " societe_commerciaux as sc " ;
2011-09-12 19:08:02 +02:00
$sql .= " WHERE c.entity = " . $conf -> entity ;
$sql .= " AND c.fk_soc = s.rowid " ;
2013-04-27 15:08:35 +02:00
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) //restriction
{
$sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . $user -> id ;
}
if ( $socid ) $sql .= " AND s.rowid = " . $socid ;
if ( $draft ) $sql .= " AND c.fk_statut = 0 " ;
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
$result = $this -> db -> query ( $sql );
if ( $result )
{
$numc = $this -> db -> num_rows ( $result );
if ( $numc )
{
$i = 0 ;
while ( $i < $numc )
{
$obj = $this -> db -> fetch_object ( $result );
2013-06-05 16:24:32 +02:00
if ( $shortlist == 1 )
{
$ga [ $obj -> cid ] = $obj -> ref ;
}
else if ( $shortlist == 2 )
{
$ga [ $obj -> cid ] = $obj -> ref . ' (' . $obj -> name . ')' ;
}
else
{
$ga [ $i ][ 'id' ] = $obj -> cid ;
$ga [ $i ][ 'ref' ] = $obj -> ref ;
$ga [ $i ][ 'name' ] = $obj -> name ;
2013-04-27 15:08:35 +02:00
}
2011-09-12 19:08:02 +02:00
$i ++ ;
}
}
return $ga ;
}
else
{
dol_print_error ( $this -> db );
return - 1 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Change le delai de livraison
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param int $availability_id Id du nouveau mode
* @ return int > 0 if OK , < 0 if KO
2011-09-12 19:08:02 +02:00
*/
function availability ( $availability_id )
{
dol_syslog ( 'Commande::availability(' . $availability_id . ')' );
if ( $this -> statut >= 0 )
{
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande' ;
$sql .= ' SET fk_availability = ' . $availability_id ;
$sql .= ' WHERE rowid=' . $this -> id ;
if ( $this -> db -> query ( $sql ) )
{
$this -> availability_id = $availability_id ;
return 1 ;
}
else
{
dol_syslog ( 'Commande::availability Erreur ' . $sql . ' - ' . $this -> db -> error (), LOG_ERR );
$this -> error = $this -> db -> lasterror ();
return - 1 ;
}
}
else
{
dol_syslog ( 'Commande::availability, etat facture incompatible' , LOG_ERR );
$this -> error = 'Etat commande incompatible ' . $this -> statut ;
return - 2 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Change la source de la demande
*
* @ param int $demand_reason_id Id of new demand
* @ return int > 0 if ok , < 0 if ko
2011-09-12 19:08:02 +02:00
*/
function demand_reason ( $demand_reason_id )
{
dol_syslog ( 'Commande::demand_reason(' . $demand_reason_id . ')' );
if ( $this -> statut >= 0 )
{
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande' ;
2012-07-22 16:53:02 +02:00
$sql .= ' SET fk_input_reason = ' . $demand_reason_id ;
2011-09-12 19:08:02 +02:00
$sql .= ' WHERE rowid=' . $this -> id ;
if ( $this -> db -> query ( $sql ) )
{
$this -> demand_reason_id = $demand_reason_id ;
return 1 ;
}
else
{
dol_syslog ( 'Commande::demand_reason Erreur ' . $sql . ' - ' . $this -> db -> error (), LOG_ERR );
$this -> error = $this -> db -> lasterror ();
return - 1 ;
}
}
else
{
dol_syslog ( 'Commande::demand_reason, etat facture incompatible' , LOG_ERR );
$this -> error = 'Etat commande incompatible ' . $this -> statut ;
return - 2 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Set customer ref
2012-03-18 19:23:01 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param User $user User that make change
* @ param string $ref_client Customer ref
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
function set_ref_client ( $user , $ref_client )
{
if ( $user -> rights -> commande -> creer )
{
2012-07-08 12:18:29 +02:00
dol_syslog ( get_class ( $this ) . '::set_ref_client this->id=' . $this -> id . ', ref_client=' . $ref_client );
2011-09-12 19:08:02 +02:00
$sql = 'UPDATE ' . MAIN_DB_PREFIX . 'commande SET' ;
$sql .= ' ref_client = ' . ( empty ( $ref_client ) ? 'NULL' : '\'' . $this -> db -> escape ( $ref_client ) . '\'' );
$sql .= ' WHERE rowid = ' . $this -> id ;
if ( $this -> db -> query ( $sql ) )
{
$this -> ref_client = $ref_client ;
return 1 ;
}
else
{
$this -> error = $this -> db -> lasterror ();
2012-07-08 12:18:29 +02:00
dol_syslog ( get_class ( $this ) . '::set_ref_client Erreur ' . $this -> error . ' - ' . $sql , LOG_ERR );
2011-09-12 19:08:02 +02:00
return - 2 ;
}
}
else
{
return - 1 ;
}
}
2012-07-08 12:18:29 +02:00
/**
* Classify the order as invoiced
*
* @ return int < 0 if ko , > 0 if ok
*/
function classifyBilled ()
{
2012-07-08 13:19:13 +02:00
global $conf , $user , $langs ;
$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' ;
2012-07-08 13:19:13 +02:00
$sql .= ' WHERE rowid = ' . $this -> id . ' AND fk_statut > 0' ;
dol_syslog ( get_class ( $this ) . " ::classifyBilled sql= " . $sql , LOG_DEBUG );
2012-07-08 12:18:29 +02:00
if ( $this -> db -> query ( $sql ))
{
2012-07-08 13:19:13 +02:00
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2012-07-08 13:19:13 +02:00
$interface = new Interfaces ( $this -> db );
$result = $interface -> run_triggers ( 'ORDER_CLASSIFY_BILLED' , $this , $user , $langs , $conf );
if ( $result < 0 ) {
$error ++ ; $this -> errors = $interface -> errors ;
2012-07-08 12:18:29 +02:00
}
2012-07-08 13:19:13 +02:00
// Fin appel triggers
2011-09-12 19:08:02 +02:00
2012-07-08 13:19:13 +02:00
if ( ! $error )
{
$this -> facturee = 1 ; // deprecated
$this -> billed = 1 ;
2012-07-08 12:18:29 +02:00
2012-07-08 13:19:13 +02:00
$this -> db -> commit ();
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
dol_syslog ( get_class ( $this ) . " ::classifyBilled " . $this -> error , LOG_ERR );
$this -> db -> rollback ();
return - 2 ;
}
2012-07-08 12:18:29 +02:00
}
else
{
2012-07-08 13:19:13 +02:00
$this -> error = $this -> db -> error ();
dol_syslog ( get_class ( $this ) . " ::classifyBilled Error " . $this -> error , LOG_ERR );
$this -> db -> rollback ();
2012-07-08 12:18:29 +02:00
return - 1 ;
}
}
/**
* Classify the order as invoiced
*
* @ return int < 0 if ko , > 0 if ok
2013-09-16 11:50:53 +02:00
* @ deprecated
2012-07-08 12:18:29 +02:00
*/
function classer_facturee ()
{
return $this -> classifyBilled ();
}
2011-09-12 19:08:02 +02:00
/**
* Update a line in database
*
2011-12-16 12:47:23 +01:00
* @ param int $rowid Id of line to update
* @ param string $desc Description de la ligne
* @ param double $pu Prix unitaire
* @ param double $qty Quantity
* @ param double $remise_percent Pourcentage de remise de la ligne
2012-03-20 12:46:57 +01:00
* @ param double $txtva Taux TVA
2011-12-16 12:47:23 +01:00
* @ param double $txlocaltax1 Local tax 1 rate
* @ param double $txlocaltax2 Local tax 2 rate
* @ param string $price_base_type HT or TTC
* @ param int $info_bits Miscellaneous informations on line
* @ param timestamp $date_start Start date of the line
* @ param timestamp $date_end End date of the line
* @ param int $type Type of line ( 0 = product , 1 = service )
2012-10-13 13:03:39 +02:00
* @ 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
2012-09-18 17:41:59 +02:00
* @ param string $label Label
2013-01-22 21:36:30 +01:00
* @ param int $special_code Special code ( also used by externals modules ! )
2013-06-10 16:05:41 +02:00
* @ param array $array_option extrafields array
2011-12-16 12:47:23 +01:00
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
2013-06-10 16:05:41 +02:00
function updateline ( $rowid , $desc , $pu , $qty , $remise_percent , $txtva , $txlocaltax1 = 0 , $txlocaltax2 = 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_option = 0 )
2011-09-12 19:08:02 +02:00
{
2013-09-10 18:32:03 +02:00
global $conf , $mysoc ;
2011-09-12 19:08:02 +02:00
2012-05-09 02:39:30 +02:00
dol_syslog ( get_class ( $this ) . " ::updateline $rowid , $desc , $pu , $qty , $remise_percent , $txtva , $txlocaltax1 , $txlocaltax2 , $price_base_type , $info_bits , $date_start , $date_end , $type " );
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/lib/price.lib.php' ;
2011-09-12 19:08:02 +02:00
2012-08-23 07:50:20 +02:00
if ( ! empty ( $this -> brouillon ))
2011-09-12 19:08:02 +02:00
{
$this -> db -> begin ();
// Clean parameters
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 )) $remise = 0 ;
if ( empty ( $remise_percent )) $remise_percent = 0 ;
2013-01-22 21:36:30 +01:00
if ( empty ( $special_code ) || $special_code == 3 ) $special_code = 0 ;
2011-09-12 19:08:02 +02:00
$remise_percent = price2num ( $remise_percent );
$qty = price2num ( $qty );
$pu = price2num ( $pu );
2012-08-23 07:50:20 +02:00
$pa_ht = price2num ( $pa_ht );
2011-09-12 19:08:02 +02:00
$txtva = price2num ( $txtva );
2011-12-05 18:36:54 +01:00
$txlocaltax1 = price2num ( $txlocaltax1 );
$txlocaltax2 = price2num ( $txlocaltax2 );
2011-09-12 19:08:02 +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.
2013-09-10 18:32:03 +02:00
$localtaxes_type = getLocalTaxesFromRate ( $txtva , 0 , $mysoc );
2013-09-11 09:56:20 +02:00
$tabprice = calcul_price_total ( $qty , $pu , $remise_percent , $txtva , $txlocaltax1 , $txlocaltax2 , 0 , $price_base_type , $info_bits , $type , '' , $localtaxes_type );
2011-09-12 19:08:02 +02:00
$total_ht = $tabprice [ 0 ];
$total_tva = $tabprice [ 1 ];
$total_ttc = $tabprice [ 2 ];
$total_localtax1 = $tabprice [ 9 ];
$total_localtax2 = $tabprice [ 10 ];
// Anciens indicateurs: $price, $subprice, $remise (a ne plus utiliser)
$price = $pu ;
$subprice = $pu ;
$remise = 0 ;
if ( $remise_percent > 0 )
{
$remise = round (( $pu * $remise_percent / 100 ), 2 );
$price = ( $pu - $remise );
}
// Update line
$this -> line = new OrderLine ( $this -> db );
// Stock previous line records
$staticline = new OrderLine ( $this -> db );
$staticline -> fetch ( $rowid );
$this -> line -> oldline = $staticline ;
2011-10-14 18:51:20 +02:00
2011-10-05 18:10:06 +02:00
// Reorder if fk_parent_line change
if ( ! empty ( $fk_parent_line ) && ! empty ( $staticline -> fk_parent_line ) && $fk_parent_line != $staticline -> fk_parent_line )
{
$rangmax = $this -> line_max ( $fk_parent_line );
$this -> line -> rang = $rangmax + 1 ;
}
2011-09-12 19:08:02 +02:00
$this -> line -> rowid = $rowid ;
2012-08-23 07:50:20 +02:00
$this -> line -> label = $label ;
2011-09-12 19:08:02 +02:00
$this -> line -> desc = $desc ;
$this -> line -> qty = $qty ;
$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 ];
2011-09-12 19:08:02 +02:00
$this -> line -> remise_percent = $remise_percent ;
$this -> line -> subprice = $subprice ;
$this -> line -> info_bits = $info_bits ;
2013-01-22 21:36:30 +01:00
$this -> line -> special_code = $special_code ;
2011-09-12 19:08:02 +02:00
$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 -> date_start = $date_start ;
$this -> line -> date_end = $date_end ;
$this -> line -> product_type = $type ;
$this -> line -> fk_parent_line = $fk_parent_line ;
$this -> line -> skip_update_total = $skip_update_total ;
2012-08-23 07:50:20 +02:00
// infos marge
$this -> line -> fk_fournprice = $fk_fournprice ;
$this -> line -> pa_ht = $pa_ht ;
2012-07-20 09:57:50 +02:00
2011-09-12 19:08:02 +02:00
// TODO deprecated
$this -> line -> price = $price ;
$this -> line -> remise = $remise ;
2013-06-10 16:05:41 +02:00
if ( is_array ( $array_option ) && count ( $array_option ) > 0 ) {
$this -> line -> array_options = $array_option ;
}
2011-09-12 19:08:02 +02:00
$result = $this -> line -> update ();
if ( $result > 0 )
{
2011-10-05 18:10:06 +02:00
// Reorder if child line
if ( ! empty ( $fk_parent_line )) $this -> line_order ( true , 'DESC' );
2011-10-14 18:51:20 +02:00
2011-09-12 19:08:02 +02:00
// Mise a jour info denormalisees
$this -> update_price ( 1 );
$this -> db -> commit ();
return $result ;
}
else
{
2012-07-29 14:15:29 +02:00
$this -> error = $this -> db -> lasterror ();
$this -> errors = array ( $this -> db -> lasterror ());
2011-09-12 19:08:02 +02:00
$this -> db -> rollback ();
2012-05-09 02:39:30 +02:00
dol_syslog ( get_class ( $this ) . " ::updateline Error= " . $this -> error , LOG_ERR );
2011-09-12 19:08:02 +02:00
return - 1 ;
}
}
else
{
2012-05-09 02:39:30 +02:00
$this -> error = get_class ( $this ) . " ::updateline Order status makes operation forbidden " ;
2012-07-29 14:15:29 +02:00
$this -> errors = array ( 'OrderStatusMakeOperationForbidden' );
2011-09-12 19:08:02 +02:00
return - 2 ;
}
}
/**
* Delete the customer order
2011-12-05 18:36:54 +01:00
*
* @ param User $user User object
2012-02-13 18:27:42 +01:00
* @ param int $notrigger 1 = Does not execute triggers , 0 = execuete triggers
2011-12-05 18:36:54 +01:00
* @ return int <= 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
2012-02-13 18:27:42 +01:00
function delete ( $user , $notrigger = 0 )
2011-09-12 19:08:02 +02:00
{
global $conf , $langs ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2011-09-12 19:08:02 +02:00
2011-12-05 18:36:54 +01:00
$error = 0 ;
2011-09-12 19:08:02 +02:00
$this -> db -> begin ();
2012-03-18 19:23:01 +01:00
2012-02-15 15:16:33 +01:00
if ( ! $error && ! $notrigger )
2011-09-12 19:08:02 +02:00
{
2012-02-15 15:16:33 +01:00
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2012-02-15 15:16:33 +01:00
$interface = new Interfaces ( $this -> db );
$result = $interface -> run_triggers ( 'ORDER_DELETE' , $this , $user , $langs , $conf );
if ( $result < 0 ) {
$error ++ ; $this -> errors = $interface -> errors ;
}
// Fin appel triggers
2011-09-12 19:08:02 +02:00
}
2012-03-18 19:23:01 +01:00
2012-02-15 15:16:33 +01:00
if ( ! $error )
2011-09-12 19:08:02 +02:00
{
2012-02-15 15:16:33 +01:00
// Delete order details
$sql = 'DELETE FROM ' . MAIN_DB_PREFIX . " commandedet WHERE fk_commande = " . $this -> id ;
2012-05-09 02:39:30 +02:00
dol_syslog ( get_class ( $this ) . " ::delete sql= " . $sql );
2012-02-15 15:16:33 +01:00
if ( ! $this -> db -> query ( $sql ) )
{
dol_syslog ( get_class ( $this ) . " ::delete error " , LOG_ERR );
$error ++ ;
}
2012-03-18 19:23:01 +01:00
2012-02-15 15:16:33 +01:00
// Delete order
$sql = 'DELETE FROM ' . MAIN_DB_PREFIX . " commande WHERE rowid = " . $this -> id ;
dol_syslog ( get_class ( $this ) . " ::delete sql= " . $sql , LOG_DEBUG );
if ( ! $this -> db -> query ( $sql ) )
{
dol_syslog ( get_class ( $this ) . " ::delete error " , LOG_ERR );
$error ++ ;
}
2012-03-18 19:23:01 +01:00
2012-02-15 15:16:33 +01:00
// Delete linked object
$res = $this -> deleteObjectLinked ();
if ( $res < 0 ) $error ++ ;
2012-03-18 19:23:01 +01:00
2012-02-15 15:16:33 +01:00
// Delete linked contacts
$res = $this -> delete_linked_contact ();
if ( $res < 0 ) $error ++ ;
2013-06-16 21:31:21 +02:00
2013-04-26 17:20:21 +02:00
// Remove extrafields
if (( ! $error ) && ( empty ( $conf -> global -> MAIN_EXTRAFIELDS_DISABLED ))) // For avoid conflicts if trigger used
{
$result = $this -> deleteExtraFields ();
if ( $result < 0 )
{
$error ++ ;
dol_syslog ( get_class ( $this ) . " ::delete error -4 " . $this -> error , LOG_ERR );
}
}
2012-03-18 19:23:01 +01:00
2012-02-15 15:16:33 +01:00
// On efface le repertoire de pdf provisoire
$comref = dol_sanitizeFileName ( $this -> ref );
if ( $conf -> commande -> dir_output )
{
$dir = $conf -> commande -> dir_output . " / " . $comref ;
$file = $conf -> commande -> dir_output . " / " . $comref . " / " . $comref . " .pdf " ;
if ( file_exists ( $file )) // We must delete all files before deleting directory
{
dol_delete_preview ( $this );
2012-03-18 19:23:01 +01:00
2012-05-29 23:00:12 +02:00
if ( ! dol_delete_file ( $file , 0 , 0 , 0 , $this )) // For triggers
2012-02-15 15:16:33 +01:00
{
$this -> db -> rollback ();
return 0 ;
}
}
if ( file_exists ( $dir ))
{
2012-06-11 21:45:59 +02:00
if ( ! dol_delete_dir_recursive ( $dir ))
2012-02-15 15:16:33 +01:00
{
$this -> error = $langs -> trans ( " ErrorCanNotDeleteDir " , $dir );
$this -> db -> rollback ();
return 0 ;
}
}
}
2013-06-16 21:31:21 +02:00
2012-02-13 18:27:42 +01:00
}
2012-03-18 19:23:01 +01:00
2012-02-13 18:27:42 +01:00
if ( ! $error )
{
dol_syslog ( get_class ( $this ) . " ::delete $this->id by $user->id " , LOG_DEBUG );
$this -> db -> commit ();
return 1 ;
2011-09-12 19:08:02 +02:00
}
else
{
2012-02-13 18:27:42 +01:00
$this -> error = $this -> db -> lasterror ();
dol_syslog ( get_class ( $this ) . " ::delete " . $this -> error , LOG_ERR );
2011-09-12 19:08:02 +02:00
$this -> db -> rollback ();
return - 1 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Load indicators for dashboard ( this -> nbtodo and this -> nbtodolate )
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* @ param User $user Object user
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
function load_board ( $user )
{
global $conf , $user ;
2012-03-23 18:19:50 +01:00
$now = dol_now ();
2011-09-12 19:08:02 +02:00
$this -> nbtodo = $this -> nbtodolate = 0 ;
$clause = " WHERE " ;
$sql = " SELECT c.rowid, c.date_creation as datec, c.fk_statut " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " commande as c " ;
if ( ! $user -> rights -> societe -> client -> voir && ! $user -> societe_id )
{
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " societe_commerciaux as sc ON c.fk_soc = sc.fk_soc " ;
$sql .= " WHERE sc.fk_user = " . $user -> id ;
$clause = " AND " ;
}
$sql .= $clause . " c.entity = " . $conf -> entity ;
2012-05-03 22:58:12 +02:00
//$sql.= " AND c.fk_statut IN (1,2,3) AND c.facture = 0";
$sql .= " AND ((c.fk_statut IN (1,2)) OR (c.fk_statut = 3 AND c.facture = 0)) " ; // If status is 2 and facture=1, it must be selected
2011-09-12 19:08:02 +02:00
if ( $user -> societe_id ) $sql .= " AND c.fk_soc = " . $user -> societe_id ;
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
while ( $obj = $this -> db -> fetch_object ( $resql ))
{
$this -> nbtodo ++ ;
if ( $obj -> fk_statut != 3 && $this -> db -> jdate ( $obj -> datec ) < ( $now - $conf -> commande -> client -> warning_delay )) $this -> nbtodolate ++ ;
}
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
return - 1 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Return source label of order
*
* @ return string Label
2011-09-12 19:08:02 +02:00
*/
function getLabelSource ()
{
global $langs ;
$label = $langs -> trans ( 'OrderSource' . $this -> source );
if ( $label == 'OrderSource' ) return '' ;
return $label ;
}
/**
2011-12-16 12:47:23 +01:00
* Return status label of Order
*
* @ param int $mode 0 = libelle long , 1 = libelle court , 2 = Picto + Libelle court , 3 = Picto , 4 = Picto + Libelle long , 5 = Libelle court + Picto
* @ return string Libelle
2011-09-12 19:08:02 +02:00
*/
function getLibStatut ( $mode )
{
return $this -> LibStatut ( $this -> statut , $this -> facturee , $mode );
}
/**
2011-12-16 12:47:23 +01:00
* Return label of status
*
* @ param int $statut Id statut
* @ param int $facturee if invoiced
* @ param int $mode 0 = libelle long , 1 = libelle court , 2 = Picto + Libelle court , 3 = Picto , 4 = Picto + Libelle long , 5 = Libelle court + Picto
* @ return string Label of status
2011-09-12 19:08:02 +02:00
*/
function LibStatut ( $statut , $facturee , $mode )
{
global $langs ;
//print 'x'.$statut.'-'.$facturee;
if ( $mode == 0 )
{
if ( $statut ==- 1 ) return $langs -> trans ( 'StatusOrderCanceled' );
if ( $statut == 0 ) return $langs -> trans ( 'StatusOrderDraft' );
if ( $statut == 1 ) return $langs -> trans ( 'StatusOrderValidated' );
if ( $statut == 2 ) return $langs -> trans ( 'StatusOrderSentShort' );
2012-07-17 15:28:34 +02:00
if ( $statut == 3 && ( ! $facturee && empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) return $langs -> trans ( 'StatusOrderToBill' );
if ( $statut == 3 && ( $facturee || ! empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) return $langs -> trans ( 'StatusOrderProcessed' );
2011-09-12 19:08:02 +02:00
}
2012-03-18 19:23:01 +01:00
elseif ( $mode == 1 )
2011-09-12 19:08:02 +02:00
{
if ( $statut ==- 1 ) return $langs -> trans ( 'StatusOrderCanceledShort' );
if ( $statut == 0 ) return $langs -> trans ( 'StatusOrderDraftShort' );
if ( $statut == 1 ) return $langs -> trans ( 'StatusOrderValidatedShort' );
if ( $statut == 2 ) return $langs -> trans ( 'StatusOrderSentShort' );
2012-07-17 15:28:34 +02:00
if ( $statut == 3 && ( ! $facturee && empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) return $langs -> trans ( 'StatusOrderToBillShort' );
if ( $statut == 3 && ( $facturee || ! empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) return $langs -> trans ( 'StatusOrderProcessed' );
2011-09-12 19:08:02 +02:00
}
2012-03-18 19:23:01 +01:00
elseif ( $mode == 2 )
2011-09-12 19:08:02 +02:00
{
if ( $statut ==- 1 ) return img_picto ( $langs -> trans ( 'StatusOrderCanceled' ), 'statut5' ) . ' ' . $langs -> trans ( 'StatusOrderCanceledShort' );
if ( $statut == 0 ) return img_picto ( $langs -> trans ( 'StatusOrderDraft' ), 'statut0' ) . ' ' . $langs -> trans ( 'StatusOrderDraftShort' );
if ( $statut == 1 ) return img_picto ( $langs -> trans ( 'StatusOrderValidated' ), 'statut1' ) . ' ' . $langs -> trans ( 'StatusOrderValidatedShort' );
2012-05-01 15:08:54 +02:00
if ( $statut == 2 ) return img_picto ( $langs -> trans ( 'StatusOrderSent' ), 'statut3' ) . ' ' . $langs -> trans ( 'StatusOrderSentShort' );
2012-07-17 15:28:34 +02:00
if ( $statut == 3 && ( ! $facturee && empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) return img_picto ( $langs -> trans ( 'StatusOrderToBill' ), 'statut7' ) . ' ' . $langs -> trans ( 'StatusOrderToBillShort' );
if ( $statut == 3 && ( $facturee || ! empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) return img_picto ( $langs -> trans ( 'StatusOrderProcessed' ), 'statut6' ) . ' ' . $langs -> trans ( 'StatusOrderProcessedShort' );
2011-09-12 19:08:02 +02:00
}
2012-03-18 19:23:01 +01:00
elseif ( $mode == 3 )
2011-09-12 19:08:02 +02:00
{
if ( $statut ==- 1 ) return img_picto ( $langs -> trans ( 'StatusOrderCanceled' ), 'statut5' );
if ( $statut == 0 ) return img_picto ( $langs -> trans ( 'StatusOrderDraft' ), 'statut0' );
if ( $statut == 1 ) return img_picto ( $langs -> trans ( 'StatusOrderValidated' ), 'statut1' );
if ( $statut == 2 ) return img_picto ( $langs -> trans ( 'StatusOrderSentShort' ), 'statut3' );
2012-07-17 15:28:34 +02:00
if ( $statut == 3 && ( ! $facturee && empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) return img_picto ( $langs -> trans ( 'StatusOrderToBill' ), 'statut7' );
if ( $statut == 3 && ( $facturee || ! empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) return img_picto ( $langs -> trans ( 'StatusOrderProcessed' ), 'statut6' );
2011-09-12 19:08:02 +02:00
}
2012-03-18 19:23:01 +01:00
elseif ( $mode == 4 )
2011-09-12 19:08:02 +02:00
{
if ( $statut ==- 1 ) return img_picto ( $langs -> trans ( 'StatusOrderCanceled' ), 'statut5' ) . ' ' . $langs -> trans ( 'StatusOrderCanceled' );
if ( $statut == 0 ) return img_picto ( $langs -> trans ( 'StatusOrderDraft' ), 'statut0' ) . ' ' . $langs -> trans ( 'StatusOrderDraft' );
if ( $statut == 1 ) return img_picto ( $langs -> trans ( 'StatusOrderValidated' ), 'statut1' ) . ' ' . $langs -> trans ( 'StatusOrderValidated' );
2012-05-01 15:08:54 +02:00
if ( $statut == 2 ) return img_picto ( $langs -> trans ( 'StatusOrderSentShort' ), 'statut3' ) . ' ' . $langs -> trans ( 'StatusOrderSent' );
2012-07-17 15:28:34 +02:00
if ( $statut == 3 && ( ! $facturee && empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) return img_picto ( $langs -> trans ( 'StatusOrderToBill' ), 'statut7' ) . ' ' . $langs -> trans ( 'StatusOrderToBill' );
if ( $statut == 3 && ( $facturee || ! empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) return img_picto ( $langs -> trans ( 'StatusOrderProcessed' ), 'statut6' ) . ' ' . $langs -> trans ( 'StatusOrderProcessed' );
2011-09-12 19:08:02 +02:00
}
2012-03-18 19:23:01 +01:00
elseif ( $mode == 5 )
2011-09-12 19:08:02 +02:00
{
2013-04-25 20:27:45 +02:00
if ( $statut ==- 1 ) return '<span class="hideonsmartphone">' . $langs -> trans ( 'StatusOrderCanceledShort' ) . ' </span>' . img_picto ( $langs -> trans ( 'StatusOrderCanceled' ), 'statut5' );
if ( $statut == 0 ) return '<span class="hideonsmartphone">' . $langs -> trans ( 'StatusOrderDraftShort' ) . ' </span>' . img_picto ( $langs -> trans ( 'StatusOrderDraft' ), 'statut0' );
if ( $statut == 1 ) return '<span class="hideonsmartphone">' . $langs -> trans ( 'StatusOrderValidatedShort' ) . ' </span>' . img_picto ( $langs -> trans ( 'StatusOrderValidated' ), 'statut1' );
if ( $statut == 2 ) return '<span class="hideonsmartphone">' . $langs -> trans ( 'StatusOrderSentShort' ) . ' </span>' . img_picto ( $langs -> trans ( 'StatusOrderSent' ), 'statut3' );
if ( $statut == 3 && ( ! $facturee && empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) return '<span class="hideonsmartphone">' . $langs -> trans ( 'StatusOrderToBillShort' ) . ' </span>' . img_picto ( $langs -> trans ( 'StatusOrderToBill' ), 'statut7' );
if ( $statut == 3 && ( $facturee || ! empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT ))) return '<span class="hideonsmartphone">' . $langs -> trans ( 'StatusOrderProcessedShort' ) . ' </span>' . img_picto ( $langs -> trans ( 'StatusOrderProcessed' ), 'statut6' );
2011-09-12 19:08:02 +02:00
}
}
/**
2011-12-16 12:47:23 +01:00
* Return clicable link of object ( with eventually picto )
*
* @ param int $withpicto Add picto into link
2012-10-03 11:43:39 +02:00
* @ param int $option Where point the link ( 0 => main card , 1 , 2 => shipment )
2011-12-16 12:47:23 +01:00
* @ param int $max Max length to show
* @ param int $short Use short labels
2012-10-03 11:43:39 +02:00
* @ return string String with URL
2011-09-12 19:08:02 +02:00
*/
function getNomUrl ( $withpicto = 0 , $option = 0 , $max = 0 , $short = 0 )
{
global $conf , $langs ;
$result = '' ;
2012-09-15 11:21:22 +02:00
if ( ! empty ( $conf -> expedition -> enabled ) && ( $option == 1 || $option == 2 )) $url = DOL_URL_ROOT . '/expedition/shipment.php?id=' . $this -> id ;
2011-09-12 19:08:02 +02:00
else $url = DOL_URL_ROOT . '/commande/fiche.php?id=' . $this -> id ;
if ( $short ) return $url ;
$linkstart = '<a href="' . $url . '">' ;
$linkend = '</a>' ;
$picto = 'order' ;
$label = $langs -> trans ( " ShowOrder " ) . ': ' . $this -> ref ;
if ( $withpicto ) $result .= ( $linkstart . img_object ( $label , $picto ) . $linkend );
if ( $withpicto && $withpicto != 2 ) $result .= ' ' ;
$result .= $linkstart . $this -> ref . $linkend ;
return $result ;
}
/**
2011-12-16 12:47:23 +01:00
* Charge les informations d 'ordre info dans l' objet commande
*
2012-03-18 19:23:01 +01:00
* @ param int $id Id of order
* @ return void
2011-09-12 19:08:02 +02:00
*/
function info ( $id )
{
$sql = 'SELECT c.rowid, date_creation as datec, tms as datem,' ;
$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 );
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 );
$this -> user_creation = $cuser ;
}
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 );
$this -> user_cloture = $cluser ;
}
$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 );
}
else
{
dol_print_error ( $this -> db );
}
}
/**
2011-09-20 19:19:46 +02:00
* 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
2011-09-12 19:08:02 +02:00
*/
function initAsSpecimen ()
{
global $user , $langs , $conf ;
dol_syslog ( get_class ( $this ) . " ::initAsSpecimen " );
// Charge tableau des produits prodids
$prodids = array ();
$sql = " SELECT rowid " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " product " ;
2012-02-11 10:18:09 +01:00
$sql .= " WHERE entity IN ( " . getEntity ( 'product' , 1 ) . " ) " ;
2011-09-12 19:08:02 +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
$this -> id = 0 ;
$this -> ref = 'SPECIMEN' ;
$this -> specimen = 1 ;
$this -> socid = 1 ;
$this -> date = time ();
$this -> date_lim_reglement = $this -> date + 3600 * 24 * 30 ;
$this -> cond_reglement_code = 'RECEP' ;
$this -> mode_reglement_code = 'CHQ' ;
$this -> availability_code = 'DSP' ;
$this -> demand_reason_code = 'SRC_00' ;
$this -> note_public = 'This is a comment (public)' ;
2013-04-09 17:18:07 +02:00
$this -> note_private = 'This is a comment (private)' ;
2011-09-12 19:08:02 +02:00
// Lines
$nbp = 5 ;
$xnbp = 0 ;
while ( $xnbp < $nbp )
{
$line = new OrderLine ( $this -> db );
$line -> desc = $langs -> trans ( " Description " ) . " " . $xnbp ;
$line -> qty = 1 ;
$line -> subprice = 100 ;
$line -> price = 100 ;
$line -> tva_tx = 19.6 ;
if ( $xnbp == 2 )
{
$line -> total_ht = 50 ;
$line -> total_ttc = 59.8 ;
$line -> total_tva = 9.8 ;
$line -> remise_percent = 50 ;
}
else
{
$line -> total_ht = 100 ;
$line -> total_ttc = 119.6 ;
$line -> total_tva = 19.6 ;
2012-09-19 12:49:58 +02:00
$line -> remise_percent = 0 ;
2011-09-12 19:08:02 +02:00
}
$prodid = rand ( 1 , $num_prods );
$line -> fk_product = $prodids [ $prodid ];
$this -> lines [ $xnbp ] = $line ;
$this -> total_ht += $line -> total_ht ;
$this -> total_tva += $line -> total_tva ;
$this -> total_ttc += $line -> total_ttc ;
$xnbp ++ ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Charge indicateurs this -> nb de tableau de bord
2011-09-12 19:08:02 +02:00
*
2011-12-16 12:47:23 +01:00
* @ return int < 0 si ko , > 0 si ok
2011-09-12 19:08:02 +02:00
*/
function load_state_board ()
{
global $conf , $user ;
$this -> nb = array ();
$clause = " WHERE " ;
$sql = " SELECT count(co.rowid) as nb " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " commande as co " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " societe as s ON co.fk_soc = s.rowid " ;
if ( ! $user -> rights -> societe -> client -> voir && ! $user -> societe_id )
{
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " societe_commerciaux as sc ON s.rowid = sc.fk_soc " ;
$sql .= " WHERE sc.fk_user = " . $user -> id ;
$clause = " AND " ;
}
$sql .= " " . $clause . " co.entity = " . $conf -> entity ;
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
while ( $obj = $this -> db -> fetch_object ( $resql ))
{
$this -> nb [ " orders " ] = $obj -> nb ;
}
2013-06-16 21:31:21 +02:00
$this -> db -> free ( $resql );
2011-09-12 19:08:02 +02:00
return 1 ;
}
else
{
dol_print_error ( $this -> db );
$this -> error = $this -> db -> error ();
return - 1 ;
}
}
2013-04-27 15:08:35 +02:00
2013-04-05 12:43:00 +02:00
/**
2013-05-19 18:47:14 +02:00
* Update value of extrafields on order
2013-04-05 12:43:00 +02:00
*
* @ param User $user Object user that modify
* @ return int < 0 if ko , > 0 if ok
*/
function update_extrafields ( $user )
{
// Actions on extra fields (by external module or standard code)
// FIXME le hook fait double emploi avec le trigger !!
$hookmanager -> initHooks ( array ( 'orderdao' ));
$parameters = array ( 'id' => $this -> id );
$reshook = $hookmanager -> executeHooks ( 'insertExtraFields' , $parameters , $this , $action ); // Note that $action and $object may have been modified by some hooks
if ( empty ( $reshook ))
{
if ( empty ( $conf -> global -> MAIN_EXTRAFIELDS_DISABLED )) // For avoid conflicts if trigger used
{
$result = $this -> insertExtraFields ();
if ( $result < 0 )
{
$error ++ ;
}
}
}
else if ( $reshook < 0 ) $error ++ ;
2013-04-27 15:08:35 +02:00
2013-04-05 12:43:00 +02:00
if ( ! $error )
{
return 1 ;
}
else
{
return - 1 ;
}
2013-04-27 15:08:35 +02:00
2013-04-05 12:43:00 +02:00
}
2011-09-12 19:08:02 +02:00
/**
* Return an array of order lines
2012-02-06 17:18:19 +01:00
*
2011-12-16 12:47:23 +01:00
* @ return array Lines of order
2011-09-12 19:08:02 +02:00
*/
function getLinesArray ()
{
$lines = array ();
2012-08-23 07:50:20 +02:00
$sql = 'SELECT l.rowid, l.fk_product, l.product_type, l.label as custom_label, l.description, l.price, l.qty, l.tva_tx, ' ;
2012-08-05 21:30:40 +02:00
$sql .= ' l.fk_remise_except, l.remise_percent, l.subprice, l.info_bits, l.rang, l.special_code, l.fk_parent_line,' ;
2012-07-19 10:26:26 +02:00
$sql .= ' l.total_ht, l.total_tva, l.total_ttc, l.fk_product_fournisseur_price as fk_fournprice, l.buy_price_ht as pa_ht, l.localtax1_tx, l.localtax2_tx,' ;
2012-08-01 17:36:15 +02:00
$sql .= ' l.date_start, l.date_end,' ;
2011-09-12 19:08:02 +02:00
$sql .= ' p.label as product_label, p.ref, p.fk_product_type, p.rowid as prodid, ' ;
2012-10-04 16:26:33 +02:00
$sql .= ' p.description as product_desc, p.stock as stock_reel' ;
2011-09-12 19:08:02 +02:00
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'commandedet as l' ;
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'product as p ON l.fk_product=p.rowid' ;
$sql .= ' WHERE l.fk_commande = ' . $this -> id ;
$sql .= ' ORDER BY l.rang ASC, l.rowid' ;
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
$num = $this -> db -> num_rows ( $resql );
$i = 0 ;
while ( $i < $num )
{
$obj = $this -> db -> fetch_object ( $resql );
2013-06-10 16:05:41 +02:00
$this -> lines [ $i ] = new OrderLine ( $this -> db );
2011-09-12 19:08:02 +02:00
$this -> lines [ $i ] -> id = $obj -> rowid ;
2012-08-23 07:50:20 +02:00
$this -> lines [ $i ] -> label = $obj -> custom_label ;
2011-09-12 19:08:02 +02:00
$this -> lines [ $i ] -> description = $obj -> description ;
$this -> lines [ $i ] -> fk_product = $obj -> fk_product ;
$this -> lines [ $i ] -> ref = $obj -> ref ;
$this -> lines [ $i ] -> product_label = $obj -> product_label ;
$this -> lines [ $i ] -> product_desc = $obj -> product_desc ;
$this -> lines [ $i ] -> fk_product_type = $obj -> fk_product_type ;
$this -> lines [ $i ] -> product_type = $obj -> product_type ;
$this -> lines [ $i ] -> qty = $obj -> qty ;
$this -> lines [ $i ] -> subprice = $obj -> subprice ;
$this -> lines [ $i ] -> fk_remise_except = $obj -> fk_remise_except ;
$this -> lines [ $i ] -> remise_percent = $obj -> remise_percent ;
$this -> lines [ $i ] -> tva_tx = $obj -> tva_tx ;
$this -> lines [ $i ] -> info_bits = $obj -> info_bits ;
$this -> lines [ $i ] -> total_ht = $obj -> total_ht ;
$this -> lines [ $i ] -> total_tva = $obj -> total_tva ;
$this -> lines [ $i ] -> total_ttc = $obj -> total_ttc ;
2012-08-01 17:36:15 +02:00
$this -> lines [ $i ] -> fk_parent_line = $obj -> fk_parent_line ;
2011-09-12 19:08:02 +02:00
$this -> lines [ $i ] -> special_code = $obj -> special_code ;
2012-10-04 16:26:33 +02:00
$this -> lines [ $i ] -> stock = $obj -> stock_reel ;
2011-09-12 19:08:02 +02:00
$this -> lines [ $i ] -> rang = $obj -> rang ;
$this -> lines [ $i ] -> date_start = $this -> db -> jdate ( $obj -> date_start );
$this -> lines [ $i ] -> date_end = $this -> db -> jdate ( $obj -> date_end );
2012-08-01 17:36:15 +02:00
$this -> lines [ $i ] -> fk_fournprice = $obj -> fk_fournprice ;
$marginInfos = getMarginInfos ( $obj -> subprice , $obj -> remise_percent , $obj -> tva_tx , $obj -> localtax1_tx , $obj -> localtax2_tx , $this -> lines [ $i ] -> fk_fournprice , $obj -> pa_ht );
$this -> lines [ $i ] -> pa_ht = $marginInfos [ 0 ];
$this -> lines [ $i ] -> marge_tx = $marginInfos [ 1 ];
2012-08-23 07:50:20 +02:00
$this -> lines [ $i ] -> marque_tx = $marginInfos [ 2 ];
2011-09-12 19:08:02 +02:00
$i ++ ;
}
$this -> db -> free ( $resql );
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
dol_syslog ( " Error sql= $sql , error= " . $this -> error , LOG_ERR );
return - 1 ;
}
}
2007-05-05 00:37:06 +02:00
2005-09-15 02:37:03 +02:00
}
/**
2010-01-30 08:45:57 +01:00
* \class OrderLine
2006-12-12 18:05:40 +01:00
* \brief Classe de gestion des lignes de commande
*/
2013-06-10 16:05:41 +02:00
class OrderLine extends CommonOrderLine
2005-09-15 02:37:03 +02:00
{
2011-09-12 19:08:02 +02:00
var $db ;
var $error ;
2013-06-10 16:05:41 +02:00
public $element = 'commandedet' ;
public $table_element = 'commandedet' ;
2011-09-12 19:08:02 +02:00
var $oldline ;
// From llx_commandedet
var $rowid ;
var $fk_parent_line ;
var $fk_facture ;
2012-08-23 07:50:20 +02:00
var $label ;
2011-09-12 19:08:02 +02:00
var $desc ; // Description ligne
var $fk_product ; // Id produit predefini
var $product_type = 0 ; // Type 0 = product, 1 = Service
var $qty ; // Quantity (example 2)
var $tva_tx ; // VAT Rate for product/service (example 19.6)
var $localtax1_tx ; // Local tax 1
var $localtax2_tx ; // Local tax 2
2013-09-10 18:32:03 +02:00
var $localtax1_type ; // Local tax 1 type
var $localtax2_type ; // Local tax 2 type
2011-09-12 19:08:02 +02:00
var $subprice ; // U.P. HT (example 100)
var $remise_percent ; // % for line discount (example 20%)
2012-09-19 12:49:58 +02:00
var $fk_remise_except ;
2011-09-12 19:08:02 +02:00
var $rang = 0 ;
2012-07-28 18:32:54 +02:00
var $fk_fournprice ;
var $pa_ht ;
2011-09-12 19:08:02 +02:00
var $marge_tx ;
var $marque_tx ;
var $info_bits = 0 ; // Bit 0: 0 si TVA normal - 1 si TVA NPR
2012-09-19 12:49:58 +02:00
// Bit 1: 0 ligne normale - 1 si ligne de remise fixe
var $special_code = 0 ;
2011-09-12 19:08:02 +02:00
var $total_ht ; // Total HT de la ligne toute quantite et incluant la remise ligne
var $total_tva ; // Total TVA de la ligne toute quantite et incluant la remise ligne
var $total_localtax1 ; // Total local tax 1 for the line
var $total_localtax2 ; // Total local tax 2 for the line
var $total_ttc ; // Total TTC de la ligne toute quantite et incluant la remise ligne
// Ne plus utiliser
var $remise ;
var $price ;
// From llx_product
2012-08-23 07:50:20 +02:00
var $ref ; // deprecated
var $libelle ; // deprecated
var $product_ref ;
var $product_label ; // Label produit
2011-09-12 19:08:02 +02:00
var $product_desc ; // Description produit
// Added by Matelli (See http://matelli.fr/showcases/patchs-dolibarr/add-dates-in-order-lines.html)
// Start and end date of the line
var $date_start ;
var $date_end ;
var $skip_update_total ; // Skip update price total for special lines
/**
* Constructor
*
2012-07-30 18:43:49 +02:00
* @ param DoliDB $db handler d ' acces base de donnee
2011-09-12 19:08:02 +02:00
*/
2012-07-30 18:43:49 +02:00
function __construct ( $db )
2011-09-12 19:08:02 +02:00
{
2012-07-30 18:43:49 +02:00
$this -> db = $db ;
2011-09-12 19:08:02 +02:00
}
/**
* Load line order
*
2012-03-18 19:23:01 +01:00
* @ param int $rowid Id line order
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
function fetch ( $rowid )
{
2012-08-23 07:50:20 +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,' ;
2011-09-12 19:08:02 +02:00
$sql .= ' cd.remise, cd.remise_percent, cd.fk_remise_except, cd.subprice,' ;
2012-07-19 10:26:26 +02:00
$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,' ;
2011-09-12 19:08:02 +02:00
$sql .= ' p.ref as product_ref, p.label as product_libelle, p.description as product_desc,' ;
$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 ;
$result = $this -> db -> query ( $sql );
if ( $result )
{
$objp = $this -> db -> fetch_object ( $result );
$this -> rowid = $objp -> rowid ;
$this -> fk_commande = $objp -> fk_commande ;
$this -> fk_parent_line = $objp -> fk_parent_line ;
2012-08-23 07:50:20 +02:00
$this -> label = $objp -> custom_label ;
2011-09-12 19:08:02 +02:00
$this -> desc = $objp -> description ;
$this -> qty = $objp -> qty ;
$this -> price = $objp -> price ;
$this -> subprice = $objp -> subprice ;
$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 ;
$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 ;
2012-08-23 07:50:20 +02:00
$this -> fk_fournprice = $objp -> fk_fournprice ;
$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 ];
2011-09-12 19:08:02 +02:00
$this -> special_code = $objp -> special_code ;
$this -> rang = $objp -> rang ;
$this -> ref = $objp -> product_ref ; // deprecated
$this -> product_ref = $objp -> product_ref ;
$this -> libelle = $objp -> product_libelle ; // deprecated
$this -> product_label = $objp -> product_libelle ;
$this -> product_desc = $objp -> product_desc ;
$this -> date_start = $this -> db -> jdate ( $objp -> date_start );
$this -> date_end = $this -> db -> jdate ( $objp -> date_end );
$this -> db -> free ( $result );
}
else
{
dol_print_error ( $this -> db );
}
}
/**
* Delete line in database
*
* @ return int < 0 si ko , > 0 si ok
*/
function delete ()
{
global $conf , $user , $langs ;
2011-12-05 18:36:54 +01:00
$error = 0 ;
2012-02-06 17:18:19 +01:00
2011-09-12 19:08:02 +02:00
$sql = 'DELETE FROM ' . MAIN_DB_PREFIX . " commandedet WHERE rowid=' " . $this -> rowid . " '; " ;
dol_syslog ( " OrderLine::delete sql= " . $sql );
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
2013-06-10 16:05:41 +02:00
// Remove extrafields
if (( ! $error ) && ( empty ( $conf -> global -> MAIN_EXTRAFIELDS_DISABLED ))) // For avoid conflicts if trigger used
{
$this -> id = $this -> rowid ;
$result = $this -> deleteExtraFields ();
if ( $result < 0 )
{
$error ++ ;
dol_syslog ( get_class ( $this ) . " ::delete error -4 " . $this -> error , LOG_ERR );
}
}
2013-06-16 21:31:21 +02:00
2011-09-12 19:08:02 +02:00
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2011-09-12 19:08:02 +02:00
$interface = new Interfaces ( $this -> db );
$result = $interface -> run_triggers ( 'LINEORDER_DELETE' , $this , $user , $langs , $conf );
if ( $result < 0 ) { $error ++ ; $this -> errors = $interface -> errors ; }
// Fin appel triggers
return 1 ;
}
else
{
$this -> error = $this -> db -> lasterror ();
dol_syslog ( " OrderLine::delete " . $this -> error , LOG_ERR );
return - 1 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Insert line into database
2011-09-12 19:08:02 +02:00
*
2011-12-16 12:47:23 +01:00
* @ param int $notrigger 1 = disable triggers
* @ return int < 0 if KO , > 0 if OK
2011-09-12 19:08:02 +02:00
*/
function insert ( $notrigger = 0 )
{
global $langs , $conf , $user ;
2011-12-05 18:36:54 +01:00
$error = 0 ;
2012-02-06 17:18:19 +01:00
2011-09-12 19:08:02 +02:00
dol_syslog ( " OrderLine::insert rang= " . $this -> rang );
// Clean parameters
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 ;
2013-09-10 18:32:03 +02:00
if ( empty ( $this -> localtax1_type )) $this -> localtax1_type = 0 ;
if ( empty ( $this -> localtax2_type )) $this -> localtax2_type = 0 ;
2011-09-12 19:08:02 +02:00
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 ;
2012-08-01 17:36:15 +02:00
if ( empty ( $this -> pa_ht )) $this -> pa_ht = 0 ;
2012-07-20 09:57:50 +02:00
2012-08-28 10:13:58 +02:00
// si prix d'achat non renseigne et utilise pour calcul des marges alors prix achat = prix vente
2012-08-01 17:36:15 +02:00
if ( $this -> pa_ht == 0 ) {
2012-08-28 10:13:58 +02:00
if ( $this -> subprice > 0 && ( isset ( $conf -> global -> ForceBuyingPriceIfNull ) && $conf -> global -> ForceBuyingPriceIfNull == 1 ))
2012-08-01 17:36:15 +02:00
$this -> pa_ht = $this -> subprice * ( 1 - $this -> remise_percent / 100 );
}
2012-07-20 09:57:50 +02:00
2011-09-12 19:08:02 +02:00
// Check parameters
if ( $this -> product_type < 0 ) return - 1 ;
$this -> db -> begin ();
// Insertion dans base de la ligne
$sql = 'INSERT INTO ' . MAIN_DB_PREFIX . 'commandedet' ;
2013-09-10 18:32:03 +02:00
$sql .= ' (fk_commande, fk_parent_line, label, description, qty, ' ;
$sql .= ' tva_tx, localtax1_tx, localtax2_tx, localtax1_type, localtax2_type,' ;
2011-09-12 19:08:02 +02:00
$sql .= ' fk_product, product_type, remise_percent, subprice, price, remise, fk_remise_except,' ;
2012-07-19 10:26:26 +02:00
$sql .= ' special_code, rang, fk_product_fournisseur_price, buy_price_ht,' ;
2011-09-12 19:08:02 +02:00
$sql .= ' info_bits, total_ht, total_tva, total_localtax1, total_localtax2, total_ttc, date_start, date_end)' ;
$sql .= " VALUES ( " . $this -> fk_commande . " , " ;
$sql .= " " . ( $this -> fk_parent_line > 0 ? " ' " . $this -> fk_parent_line . " ' " : " null " ) . " , " ;
2012-08-23 07:50:20 +02:00
$sql .= " " . ( ! empty ( $this -> label ) ? " ' " . $this -> db -> escape ( $this -> label ) . " ' " : " null " ) . " , " ;
2011-09-12 19:08:02 +02:00
$sql .= " ' " . $this -> db -> escape ( $this -> desc ) . " ', " ;
$sql .= " ' " . price2num ( $this -> qty ) . " ', " ;
$sql .= " ' " . price2num ( $this -> tva_tx ) . " ', " ;
$sql .= " ' " . price2num ( $this -> localtax1_tx ) . " ', " ;
$sql .= " ' " . price2num ( $this -> localtax2_tx ) . " ', " ;
2013-09-10 18:32:03 +02:00
$sql .= " ' " . $this -> localtax1_type . " ', " ;
$sql .= " ' " . $this -> localtax2_type . " ', " ;
2012-08-01 17:36:15 +02:00
$sql .= ' ' . ( ! empty ( $this -> fk_product ) ? $this -> fk_product : " null " ) . ',' ;
2011-09-12 19:08:02 +02:00
$sql .= " ' " . $this -> product_type . " ', " ;
$sql .= " ' " . price2num ( $this -> remise_percent ) . " ', " ;
$sql .= " " . ( $this -> subprice != '' ? " ' " . price2num ( $this -> subprice ) . " ' " : " null " ) . " , " ;
$sql .= " " . ( $this -> price != '' ? " ' " . price2num ( $this -> price ) . " ' " : " null " ) . " , " ;
$sql .= " ' " . price2num ( $this -> remise ) . " ', " ;
2012-08-01 17:36:15 +02:00
$sql .= ' ' . ( ! empty ( $this -> fk_remise_except ) ? $this -> fk_remise_except : " null " ) . ',' ;
2011-09-12 19:08:02 +02:00
$sql .= ' ' . $this -> special_code . ',' ;
$sql .= ' ' . $this -> rang . ',' ;
2012-08-01 17:36:15 +02:00
$sql .= ' ' . ( ! empty ( $this -> fk_fournprice ) ? $this -> fk_fournprice : " null " ) . ',' ;
$sql .= ' ' . price2num ( $this -> pa_ht ) . ',' ;
2011-09-12 19:08:02 +02:00
$sql .= " ' " . $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 ) . " ', " ;
2012-08-01 17:36:15 +02:00
$sql .= " " . ( ! empty ( $this -> date_start ) ? " ' " . $this -> db -> idate ( $this -> date_start ) . " ' " : " null " ) . ',' ;
$sql .= " " . ( ! empty ( $this -> date_end ) ? " ' " . $this -> db -> idate ( $this -> date_end ) . " ' " : " null " );
2011-09-12 19:08:02 +02:00
$sql .= ')' ;
2012-08-01 17:36:15 +02:00
dol_syslog ( get_class ( $this ) . " ::insert sql= " . $sql , LOG_DEBUG );
2011-09-12 19:08:02 +02:00
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
$this -> rowid = $this -> db -> last_insert_id ( MAIN_DB_PREFIX . 'commandedet' );
2013-06-10 16:05:41 +02:00
if ( empty ( $conf -> global -> MAIN_EXTRAFIELDS_DISABLED )) // For avoid conflicts if trigger used
{
$this -> id = $this -> rowid ;
$result = $this -> insertExtraFields ();
if ( $result < 0 )
{
$error ++ ;
}
}
2013-06-16 21:31:21 +02:00
2011-09-12 19:08:02 +02:00
if ( ! $notrigger )
{
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2011-09-12 19:08:02 +02:00
$interface = new Interfaces ( $this -> db );
$result = $interface -> run_triggers ( 'LINEORDER_INSERT' , $this , $user , $langs , $conf );
if ( $result < 0 ) { $error ++ ; $this -> errors = $interface -> errors ; }
// Fin appel triggers
}
$this -> db -> commit ();
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
2012-08-01 17:36:15 +02:00
dol_syslog ( get_class ( $this ) . " ::insert Error " . $this -> error , LOG_ERR );
2011-09-12 19:08:02 +02:00
$this -> db -> rollback ();
return - 2 ;
}
}
/**
2011-12-16 12:47:23 +01:00
* Update the line object into db
2011-09-12 19:08:02 +02:00
*
2011-12-16 12:47:23 +01:00
* @ param int $notrigger 1 = disable triggers
* @ return int < 0 si ko , > 0 si ok
2011-09-12 19:08:02 +02:00
*/
2012-07-28 18:32:54 +02:00
function update ( $notrigger = 0 )
{
global $conf , $langs , $user ;
2011-09-12 19:08:02 +02:00
2011-12-05 18:36:54 +01:00
$error = 0 ;
2012-02-06 17:18:19 +01:00
2012-07-28 18:32:54 +02:00
// Clean parameters
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 ;
2013-09-10 18:32:03 +02:00
if ( empty ( $this -> localtax1_type )) $this -> localtax1_type = 0 ;
if ( empty ( $this -> localtax2_type )) $this -> localtax2_type = 0 ;
2012-07-28 18:32:54 +02:00
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 ;
2012-10-12 22:18:31 +02:00
if ( empty ( $this -> special_code )) $this -> special_code = 0 ;
2012-07-28 18:32:54 +02:00
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-08-28 10:13:58 +02:00
// si prix d'achat non renseigné et utilisé pour calcul des marges alors prix achat = prix vente
2012-07-28 18:32:54 +02:00
if ( $this -> pa_ht == 0 ) {
2012-08-28 10:13:58 +02:00
if ( $this -> subprice > 0 && ( isset ( $conf -> global -> ForceBuyingPriceIfNull ) && $conf -> global -> ForceBuyingPriceIfNull == 1 ))
2012-07-28 18:32:54 +02:00
$this -> pa_ht = $this -> subprice * ( 1 - $this -> remise_percent / 100 );
}
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 " ;
$sql .= " description=' " . $this -> db -> escape ( $this -> desc ) . " ' " ;
2012-08-23 13:45:51 +02:00
$sql .= " , label= " . ( ! empty ( $this -> label ) ? " ' " . $this -> db -> escape ( $this -> label ) . " ' " : " null " );
2012-07-28 18:32:54 +02:00
$sql .= " , tva_tx= " . price2num ( $this -> tva_tx );
$sql .= " , localtax1_tx= " . price2num ( $this -> localtax1_tx );
$sql .= " , localtax2_tx= " . price2num ( $this -> localtax2_tx );
2013-09-10 18:32:03 +02:00
$sql .= " , localtax1_type=' " . $this -> localtax1_type . " ' " ;
$sql .= " , localtax2_type=' " . $this -> localtax2_type . " ' " ;
2012-07-28 18:32:54 +02:00
$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
if ( empty ( $this -> skip_update_total ))
{
$sql .= " , total_ht= " . price2num ( $this -> total_ht ) . " " ;
$sql .= " , total_tva= " . price2num ( $this -> total_tva ) . " " ;
$sql .= " , total_ttc= " . price2num ( $this -> total_ttc ) . " " ;
2012-09-15 09:02:20 +02:00
$sql .= " , total_localtax1= " . price2num ( $this -> total_localtax1 );
2012-09-12 19:07:23 +02:00
$sql .= " , total_localtax2= " . price2num ( $this -> total_localtax2 );
2012-07-28 18:32:54 +02:00
}
$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 ;
2012-10-12 22:18:31 +02:00
$sql .= " , special_code= " . $this -> special_code ;
2012-08-01 17:36:15 +02:00
$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 " );
2012-07-28 18:32:54 +02:00
$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 .= " WHERE rowid = " . $this -> rowid ;
dol_syslog ( get_class ( $this ) . " ::update sql= " . $sql , LOG_DEBUG );
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
2013-06-10 16:05:41 +02:00
if ( empty ( $conf -> global -> MAIN_EXTRAFIELDS_DISABLED )) // For avoid conflicts if trigger used
{
$this -> id = $this -> rowid ;
$result = $this -> insertExtraFields ();
if ( $result < 0 )
{
$error ++ ;
}
}
2013-06-16 21:31:21 +02:00
2012-07-28 18:32:54 +02:00
if ( ! $notrigger )
{
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2012-07-28 18:32:54 +02:00
$interface = new Interfaces ( $this -> db );
$result = $interface -> run_triggers ( 'LINEORDER_UPDATE' , $this , $user , $langs , $conf );
if ( $result < 0 ) { $error ++ ; $this -> errors = $interface -> errors ; }
// Fin appel triggers
}
2011-09-12 19:08:02 +02:00
2012-07-28 18:32:54 +02:00
$this -> db -> commit ();
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
dol_syslog ( get_class ( $this ) . " ::update Error " . $this -> error , LOG_ERR );
$this -> db -> rollback ();
return - 2 ;
}
}
2011-09-12 19:08:02 +02:00
/**
2011-12-16 12:47:23 +01:00
* Update totals of order into database
2011-09-12 19:08:02 +02:00
*
2011-12-16 12:47:23 +01:00
* @ return int < 0 if ko , > 0 if ok
2011-09-12 19:08:02 +02:00
*/
function update_total ()
{
$this -> db -> begin ();
// Clean parameters
if ( empty ( $this -> total_localtax1 )) $this -> total_localtax1 = 0 ;
if ( empty ( $this -> total_localtax2 )) $this -> total_localtax2 = 0 ;
// Mise a jour ligne en base
$sql = " UPDATE " . MAIN_DB_PREFIX . " commandedet SET " ;
$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 ;
dol_syslog ( " OrderLine::update_total sql= $sql " );
$resql = $this -> db -> query ( $sql );
if ( $resql )
{
$this -> db -> commit ();
return 1 ;
}
else
{
$this -> error = $this -> db -> error ();
dol_syslog ( " OrderLine::update_total Error " . $this -> error , LOG_ERR );
$this -> db -> rollback ();
return - 2 ;
}
}
2005-09-15 02:37:03 +02:00
}
2006-02-03 17:42:39 +01:00
?>