2008-08-12 20:20:18 +02:00
< ? php
2013-04-12 16:09:52 +02:00
/* Copyright ( C ) 2003 - 2006 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2015-10-06 16:38:27 +02:00
* Copyright ( C ) 2004 - 2015 Laurent Destailleur < eldy @ users . sourceforge . net >
2014-01-23 20:02:19 +01:00
* Copyright ( C ) 2005 Marc Barilley / Ocebo < marc @ ocebo . com >
2018-10-27 14:43:12 +02:00
* Copyright ( C ) 2005 - 2015 Regis Houssin < regis . houssin @ inodbox . com >
2014-01-23 20:02:19 +01:00
* Copyright ( C ) 2006 Andre Cianfarani < acianfa @ free . fr >
* Copyright ( C ) 2010 - 2013 Juanjo Menent < jmenent @ 2 byte . es >
2018-07-24 18:28:56 +02:00
* Copyright ( C ) 2011 - 2018 Philippe Grand < philippe . grand @ atoo - net . com >
2014-01-23 20:02:19 +01:00
* Copyright ( C ) 2012 - 2013 Christophe Battarel < christophe . battarel @ altairis . fr >
2016-07-23 16:37:21 +02:00
* Copyright ( C ) 2012 - 2016 Marcos García < marcosgdf @ gmail . com >
2015-11-10 19:22:27 +01:00
* Copyright ( C ) 2012 Cedric Salvador < csalvador @ gpcsolutions . fr >
2014-01-23 20:02:19 +01:00
* Copyright ( C ) 2013 Florian Henry < florian . henry @ open - concept . pro >
2015-01-25 01:20:58 +01:00
* Copyright ( C ) 2014 Ferran Marcet < fmarcet @ 2 byte . es >
2015-05-13 17:53:25 +02:00
* Copyright ( C ) 2015 Jean - François Ferry < jfefe @ aternatik . fr >
2018-09-09 09:36:12 +02:00
* Copyright ( C ) 2018 Frédéric France < frederic . france @ netlogic . fr >
2014-01-23 20:02:19 +01:00
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < http :// www . gnu . org / licenses />.
*/
2008-08-12 20:20:18 +02:00
/**
2018-05-01 14:15:11 +02:00
* \file htdocs / commande / card . php
2014-02-23 20:10:05 +01:00
* \ingroup commande
2018-05-01 14:15:11 +02:00
* \brief Page to show customer order
2014-01-23 20:02:19 +01:00
*/
2015-07-04 03:28:52 +02:00
2012-08-22 23:24:21 +02:00
require '../main.inc.php' ;
2014-02-23 20:10:05 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formorder.class.php' ;
2015-09-24 21:05:58 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formmargin.class.php' ;
2014-02-23 20:10:05 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/modules/commande/modules_commande.php' ;
require_once DOL_DOCUMENT_ROOT . '/commande/class/commande.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/comm/action/class/actioncomm.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/order.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php' ;
2012-08-25 03:28:30 +02:00
if ( ! empty ( $conf -> propal -> enabled ))
2016-11-24 17:03:18 +01:00
require_once DOL_DOCUMENT_ROOT . '/comm/propal/class/propal.class.php' ;
2012-07-25 09:09:56 +02:00
if ( ! empty ( $conf -> projet -> enabled )) {
2016-11-24 17:03:18 +01:00
require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php' ;
2014-02-23 20:10:05 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formprojet.class.php' ;
2012-07-25 09:09:56 +02:00
}
2017-06-07 16:44:04 +02:00
2014-02-23 20:10:05 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/class/doleditor.class.php' ;
2009-04-27 22:37:50 +02:00
2017-02-08 12:37:38 +01:00
if ( ! empty ( $conf -> variants -> enabled )) {
require_once DOL_DOCUMENT_ROOT . '/variants/class/ProductCombination.class.php' ;
2016-07-23 16:37:21 +02:00
}
2018-05-26 20:32:23 +02:00
// Load translation files required by the page
2018-03-11 22:28:27 +01:00
$langs -> loadLangs ( array ( 'orders' , 'sendings' , 'companies' , 'bills' , 'propal' , 'deliveries' , 'products' , 'other' ));
2015-02-10 12:22:07 +01:00
if ( ! empty ( $conf -> incoterm -> enabled )) $langs -> load ( 'incoterm' );
2016-10-05 21:49:04 +02:00
if ( ! empty ( $conf -> margin -> enabled )) $langs -> load ( 'margins' );
2017-02-16 01:40:01 +01:00
if ( ! empty ( $conf -> productbatch -> enabled )) $langs -> load ( " productbatch " );
2008-08-12 20:20:18 +02:00
2014-02-23 20:10:05 +01:00
$id = ( GETPOST ( 'id' , 'int' ) ? GETPOST ( 'id' , 'int' ) : GETPOST ( 'orderid' , 'int' ));
$ref = GETPOST ( 'ref' , 'alpha' );
$socid = GETPOST ( 'socid' , 'int' );
$action = GETPOST ( 'action' , 'alpha' );
2016-10-05 21:49:04 +02:00
$cancel = GETPOST ( 'cancel' , 'alpha' );
2014-02-23 20:10:05 +01:00
$confirm = GETPOST ( 'confirm' , 'alpha' );
$lineid = GETPOST ( 'lineid' , 'int' );
2018-05-01 14:15:11 +02:00
$projectid = GETPOST ( 'projectid' , 'int' );
2014-02-23 20:10:05 +01:00
$origin = GETPOST ( 'origin' , 'alpha' );
$originid = ( GETPOST ( 'originid' , 'int' ) ? GETPOST ( 'originid' , 'int' ) : GETPOST ( 'origin_id' , 'int' )); // For backward compatibility
2012-07-25 09:09:56 +02:00
2014-02-23 20:10:05 +01:00
// PDF
$hidedetails = ( GETPOST ( 'hidedetails' , 'int' ) ? GETPOST ( 'hidedetails' , 'int' ) : ( ! empty ( $conf -> global -> MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS ) ? 1 : 0 ));
$hidedesc = ( GETPOST ( 'hidedesc' , 'int' ) ? GETPOST ( 'hidedesc' , 'int' ) : ( ! empty ( $conf -> global -> MAIN_GENERATE_DOCUMENTS_HIDE_DESC ) ? 1 : 0 ));
$hideref = ( GETPOST ( 'hideref' , 'int' ) ? GETPOST ( 'hideref' , 'int' ) : ( ! empty ( $conf -> global -> MAIN_GENERATE_DOCUMENTS_HIDE_REF ) ? 1 : 0 ));
2012-05-21 17:12:57 +02:00
2008-10-02 00:24:31 +02:00
// Security check
2014-02-23 20:10:05 +01:00
if ( ! empty ( $user -> societe_id ))
$socid = $user -> societe_id ;
$result = restrictedArea ( $user , 'commande' , $id );
2008-10-02 00:24:31 +02:00
2012-05-10 19:26:44 +02:00
$object = new Commande ( $db );
2013-04-05 12:43:00 +02:00
$extrafields = new ExtraFields ( $db );
// fetch optionals attributes and labels
2014-02-23 20:10:05 +01:00
$extralabels = $extrafields -> fetch_name_optionals_label ( $object -> table_element );
2012-05-10 19:26:44 +02:00
2012-07-02 19:30:37 +02:00
// Load object
2015-10-01 16:50:18 +02:00
include DOL_DOCUMENT_ROOT . '/core/actions_fetchobject.inc.php' ; // Must be include, not include_once
2012-05-10 19:26:44 +02:00
2017-06-10 12:56:28 +02:00
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
2014-10-06 07:20:58 +02:00
$hookmanager -> initHooks ( array ( 'ordercard' , 'globalcard' ));
2010-08-10 00:39:20 +02:00
2015-07-28 14:13:16 +02:00
$permissionnote = $user -> rights -> commande -> creer ; // Used by the include of actions_setnotes.inc.php
$permissiondellink = $user -> rights -> commande -> creer ; // Used by the include of actions_dellink.inc.php
$permissionedit = $user -> rights -> commande -> creer ; // Used by the include of actions_lineupdown.inc.php
2015-02-28 03:11:15 +01:00
2014-01-11 13:33:30 +01:00
/*
* Actions
*/
2008-08-12 20:20:18 +02:00
2014-02-23 20:10:05 +01:00
$parameters = array ( 'socid' => $socid );
2018-10-27 13:01:01 +02:00
// Note that $action and $object may be modified by some hooks
$reshook = $hookmanager -> executeHooks ( 'doActions' , $parameters , $object , $action );
2014-09-28 03:41:32 +02:00
if ( $reshook < 0 ) setEventMessages ( $hookmanager -> error , $hookmanager -> errors , 'errors' );
2014-01-11 13:33:30 +01:00
2015-01-18 17:13:42 +01:00
if ( empty ( $reshook ))
2009-03-25 22:26:15 +01:00
{
2017-06-07 16:44:04 +02:00
if ( $cancel )
2016-11-12 12:40:06 +01:00
{
2017-09-17 15:38:50 +02:00
if ( ! empty ( $backtopage ))
2016-11-12 12:40:06 +01:00
{
2017-09-17 15:38:50 +02:00
header ( " Location: " . $backtopage );
2016-11-12 12:40:06 +01:00
exit ;
2016-12-11 15:21:06 +01:00
}
2016-12-11 15:37:29 +01:00
$action = '' ;
2016-11-12 12:40:06 +01:00
}
2017-06-07 16:44:04 +02:00
2015-02-28 03:11:15 +01:00
include DOL_DOCUMENT_ROOT . '/core/actions_setnotes.inc.php' ; // Must be include, not include_once
2015-07-28 14:13:16 +02:00
include DOL_DOCUMENT_ROOT . '/core/actions_dellink.inc.php' ; // Must be include, not include_once
2015-02-28 03:11:15 +01:00
include DOL_DOCUMENT_ROOT . '/core/actions_lineupdown.inc.php' ; // Must be include, not include_once
2015-01-17 19:28:27 +01:00
// Action clone object
if ( $action == 'confirm_clone' && $confirm == 'yes' && $user -> rights -> commande -> creer )
2012-07-25 12:20:45 +02:00
{
2015-01-17 19:28:27 +01:00
if ( 1 == 0 && ! GETPOST ( 'clone_content' ) && ! GETPOST ( 'clone_receivers' ))
2012-07-25 12:20:45 +02:00
{
2015-11-10 19:22:27 +01:00
setEventMessages ( $langs -> trans ( " NoCloneOptionsSpecified " ), null , 'errors' );
2015-01-17 19:28:27 +01:00
}
else
{
if ( $object -> id > 0 )
{
// Because createFromClone modifies the object, we must clone it so that we can restore it later
2015-09-24 16:32:48 +02:00
$orig = clone $object ;
2014-06-14 12:30:48 +02:00
2015-01-17 19:28:27 +01:00
$result = $object -> createFromClone ( $socid );
if ( $result > 0 )
{
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . '?id=' . $result );
exit ;
}
else
{
2015-11-10 19:22:27 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-17 19:28:27 +01:00
$object = $orig ;
$action = '' ;
}
}
}
}
// Reopen a closed order
2019-01-27 10:49:34 +01:00
elseif ( $action == 'reopen' && $user -> rights -> commande -> creer )
2015-02-17 19:49:17 +01:00
{
2015-10-06 18:38:43 +02:00
if ( $object -> statut == Commande :: STATUS_CANCELED || $object -> statut == Commande :: STATUS_CLOSED )
2015-02-17 19:49:17 +01:00
{
2015-01-17 19:28:27 +01:00
$result = $object -> set_reopen ( $user );
2012-07-25 12:20:45 +02:00
if ( $result > 0 )
{
2017-10-16 08:47:05 +02:00
setEventMessages ( $langs -> trans ( 'OrderReopened' , $object -> ref ), null );
2012-07-25 12:20:45 +02:00
}
else
{
2015-11-09 18:13:17 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2012-07-25 12:20:45 +02:00
}
}
}
2009-03-25 22:26:15 +01:00
2015-10-06 16:38:27 +02:00
// Remove order
2019-01-27 10:49:34 +01:00
elseif ( $action == 'confirm_delete' && $confirm == 'yes' && $user -> rights -> commande -> supprimer )
2015-02-17 19:49:17 +01:00
{
2015-01-17 19:28:27 +01:00
$result = $object -> delete ( $user );
2015-02-17 19:49:17 +01:00
if ( $result > 0 )
{
2018-02-26 21:16:40 +01:00
header ( 'Location: list.php?restore_lastsearch_values=1' );
2012-07-25 12:20:45 +02:00
exit ;
}
2015-02-17 19:49:17 +01:00
else
{
2015-11-10 19:22:27 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2012-07-25 12:20:45 +02:00
}
}
2010-03-31 22:08:38 +02:00
2015-01-17 19:28:27 +01:00
// Remove a product line
2019-01-27 10:49:34 +01:00
elseif ( $action == 'confirm_deleteline' && $confirm == 'yes' && $user -> rights -> commande -> creer )
2015-02-17 19:49:17 +01:00
{
2016-09-26 09:34:51 +02:00
$result = $object -> deleteline ( $user , $lineid );
2015-02-17 19:49:17 +01:00
if ( $result > 0 )
{
2015-01-17 19:28:27 +01:00
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
2019-01-27 11:55:16 +01:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' ))
$newlang = GETPOST ( 'lang_id' , 'aZ09' );
2015-01-17 19:28:27 +01:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ))
2015-01-18 17:13:42 +01:00
$newlang = $object -> thirdparty -> default_lang ;
2015-01-17 19:28:27 +01:00
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
$ret = $object -> fetch ( $object -> id ); // Reload to get new records
2015-01-18 17:13:42 +01:00
$object -> generateDocument ( $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2015-01-17 19:28:27 +01:00
}
2008-08-12 20:20:18 +02:00
2015-01-17 19:28:27 +01:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
exit ;
2012-07-06 13:43:59 +02:00
}
2015-01-17 19:28:27 +01:00
else
{
2015-11-09 18:13:17 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2012-07-06 13:43:59 +02:00
}
}
2008-08-12 20:20:18 +02:00
2017-01-07 17:45:05 +01:00
// Link to a project
2019-01-27 10:49:34 +01:00
elseif ( $action == 'classin' && $user -> rights -> commande -> creer )
2015-02-17 19:49:17 +01:00
{
2019-01-27 11:55:16 +01:00
$object -> setProject ( GETPOST ( 'projectid' , 'int' ));
2012-12-30 10:49:11 +01:00
}
2013-01-26 10:35:30 +01:00
2015-01-17 19:28:27 +01:00
// Add order
2019-01-27 10:49:34 +01:00
elseif ( $action == 'add' && $user -> rights -> commande -> creer )
2015-02-17 19:49:17 +01:00
{
2015-01-17 19:28:27 +01:00
$datecommande = dol_mktime ( 12 , 0 , 0 , GETPOST ( 'remonth' ), GETPOST ( 'reday' ), GETPOST ( 'reyear' ));
$datelivraison = dol_mktime ( 12 , 0 , 0 , GETPOST ( 'liv_month' ), GETPOST ( 'liv_day' ), GETPOST ( 'liv_year' ));
2013-01-07 00:40:18 +01:00
2015-01-17 19:28:27 +01:00
if ( $datecommande == '' ) {
2015-11-10 19:22:27 +01:00
setEventMessages ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentities ( 'Date' )), null , 'errors' );
2015-01-17 19:28:27 +01:00
$action = 'create' ;
2015-03-06 14:36:22 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2013-01-07 00:40:18 +01:00
2015-01-17 19:28:27 +01:00
if ( $socid < 1 ) {
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Customer " )), null , 'errors' );
2015-01-17 19:28:27 +01:00
$action = 'create' ;
2015-03-06 14:36:22 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2013-01-07 00:40:18 +01:00
2015-01-17 19:28:27 +01:00
if ( ! $error ) {
$object -> socid = $socid ;
$object -> fetch_thirdparty ();
$db -> begin ();
$object -> date_commande = $datecommande ;
2019-01-27 11:55:16 +01:00
$object -> note_private = GETPOST ( 'note_private' , 'none' );
$object -> note_public = GETPOST ( 'note_public' , 'none' );
2015-01-17 19:28:27 +01:00
$object -> source = GETPOST ( 'source_id' );
2019-01-27 11:55:16 +01:00
$object -> fk_project = GETPOST ( 'projectid' , 'int' );
$object -> ref_client = GETPOST ( 'ref_client' , 'alpha' );
2015-01-17 19:28:27 +01:00
$object -> modelpdf = GETPOST ( 'model' );
$object -> cond_reglement_id = GETPOST ( 'cond_reglement_id' );
$object -> mode_reglement_id = GETPOST ( 'mode_reglement_id' );
2017-10-16 08:47:05 +02:00
$object -> fk_account = GETPOST ( 'fk_account' , 'int' );
2015-01-17 19:28:27 +01:00
$object -> availability_id = GETPOST ( 'availability_id' );
$object -> demand_reason_id = GETPOST ( 'demand_reason_id' );
$object -> date_livraison = $datelivraison ;
2017-10-16 08:47:05 +02:00
$object -> shipping_method_id = GETPOST ( 'shipping_method_id' , 'int' );
$object -> warehouse_id = GETPOST ( 'warehouse_id' , 'int' );
2015-01-17 19:28:27 +01:00
$object -> fk_delivery_address = GETPOST ( 'fk_address' );
2015-01-18 17:13:42 +01:00
$object -> contactid = GETPOST ( 'contactid' );
2015-02-10 12:22:07 +01:00
$object -> fk_incoterms = GETPOST ( 'incoterm_id' , 'int' );
$object -> location_incoterms = GETPOST ( 'location_incoterms' , 'alpha' );
2016-01-23 00:38:17 +01:00
$object -> multicurrency_code = GETPOST ( 'multicurrency_code' , 'alpha' );
$object -> multicurrency_tx = GETPOST ( 'originmulticurrency_tx' , 'int' );
2016-01-25 12:33:38 +01:00
// Fill array 'array_options' with data from add form
if ( ! $error )
{
2017-10-16 08:47:05 +02:00
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object );
if ( $ret < 0 ) $error ++ ;
2016-01-25 12:33:38 +01:00
}
2016-08-10 09:47:25 +02:00
2015-01-17 19:28:27 +01:00
// If creation from another object of another module (Example: origin=propal, originid=1)
2015-02-17 19:49:17 +01:00
if ( ! empty ( $origin ) && ! empty ( $originid ))
{
2015-01-17 19:28:27 +01:00
// Parse element/subelement (ex: project_task)
$element = $subelement = $origin ;
if ( preg_match ( '/^([^_]+)_([^_]+)/i' , $origin , $regs )) {
$element = $regs [ 1 ];
$subelement = $regs [ 2 ];
}
2013-01-07 00:40:18 +01:00
2015-01-17 19:28:27 +01:00
// For compatibility
if ( $element == 'order' ) {
$element = $subelement = 'commande' ;
}
if ( $element == 'propal' ) {
$element = 'comm/propal' ;
$subelement = 'propal' ;
}
if ( $element == 'contract' ) {
$element = $subelement = 'contrat' ;
}
2013-04-16 01:13:20 +02:00
2015-01-17 19:28:27 +01:00
$object -> origin = $origin ;
$object -> origin_id = $originid ;
2013-01-07 00:40:18 +01:00
2015-01-17 19:28:27 +01:00
// Possibility to add external linked objects with hooks
$object -> linked_objects [ $object -> origin ] = $object -> origin_id ;
$other_linked_objects = GETPOST ( 'other_linked_objects' , 'array' );
if ( ! empty ( $other_linked_objects )) {
$object -> linked_objects = array_merge ( $object -> linked_objects , $other_linked_objects );
}
2013-01-07 00:40:18 +01:00
2015-01-17 19:28:27 +01:00
if ( ! $error )
{
$object_id = $object -> create ( $user );
2013-01-07 00:40:18 +01:00
2015-01-17 19:28:27 +01:00
if ( $object_id > 0 )
2014-09-04 18:58:33 +02:00
{
2015-01-17 19:28:27 +01:00
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
2013-01-07 00:40:18 +01:00
2015-01-17 19:28:27 +01:00
$classname = ucfirst ( $subelement );
$srcobject = new $classname ( $db );
2013-06-16 21:31:21 +02:00
2015-01-17 19:28:27 +01:00
dol_syslog ( " Try to find source object origin= " . $object -> origin . " originid= " . $object -> origin_id . " to add lines " );
$result = $srcobject -> fetch ( $object -> origin_id );
if ( $result > 0 )
2014-09-04 18:58:33 +02:00
{
2015-01-17 19:28:27 +01:00
$lines = $srcobject -> lines ;
if ( empty ( $lines ) && method_exists ( $srcobject , 'fetch_lines' ))
2013-07-27 14:21:47 +02:00
{
2015-01-17 19:28:27 +01:00
$srcobject -> fetch_lines ();
$lines = $srcobject -> lines ;
2013-07-27 14:21:47 +02:00
}
2013-11-17 23:25:25 +01:00
2015-01-17 19:28:27 +01:00
$fk_parent_line = 0 ;
$num = count ( $lines );
2013-07-26 16:04:09 +02:00
2015-01-17 19:28:27 +01:00
for ( $i = 0 ; $i < $num ; $i ++ )
{
2015-02-17 19:49:17 +01:00
$label = ( ! empty ( $lines [ $i ] -> label ) ? $lines [ $i ] -> label : '' );
2015-12-18 17:11:14 +01:00
$desc = ( ! empty ( $lines [ $i ] -> desc ) ? $lines [ $i ] -> desc : '' );
2015-02-17 19:49:17 +01:00
$product_type = ( ! empty ( $lines [ $i ] -> product_type ) ? $lines [ $i ] -> product_type : 0 );
2015-01-17 19:28:27 +01:00
// Dates
// TODO mutualiser
2015-02-17 19:49:17 +01:00
$date_start = $lines [ $i ] -> date_debut_prevue ;
if ( $lines [ $i ] -> date_debut_reel )
$date_start = $lines [ $i ] -> date_debut_reel ;
if ( $lines [ $i ] -> date_start )
$date_start = $lines [ $i ] -> date_start ;
$date_end = $lines [ $i ] -> date_fin_prevue ;
if ( $lines [ $i ] -> date_fin_reel )
$date_end = $lines [ $i ] -> date_fin_reel ;
if ( $lines [ $i ] -> date_end )
$date_end = $lines [ $i ] -> date_end ;
2015-01-17 19:28:27 +01:00
// Reset fk_parent_line for no child products and special product
2015-02-17 19:49:17 +01:00
if (( $lines [ $i ] -> product_type != 9 && empty ( $lines [ $i ] -> fk_parent_line )) || $lines [ $i ] -> product_type == 9 ) {
2015-01-17 19:28:27 +01:00
$fk_parent_line = 0 ;
}
// Extrafields
2018-05-27 15:04:12 +02:00
if ( empty ( $conf -> global -> MAIN_EXTRAFIELDS_DISABLED ) && method_exists ( $lines [ $i ], 'fetch_optionals' )) // For avoid conflicts if trigger used
2015-01-17 19:28:27 +01:00
{
2015-02-17 19:49:17 +01:00
$lines [ $i ] -> fetch_optionals ( $lines [ $i ] -> rowid );
2015-02-28 04:59:27 +01:00
$array_options = $lines [ $i ] -> array_options ;
2015-01-17 19:28:27 +01:00
}
2017-05-02 21:27:56 +02:00
$tva_tx = $lines [ $i ] -> tva_tx ;
if ( ! empty ( $lines [ $i ] -> vat_src_code ) && ! preg_match ( '/\(/' , $tva_tx )) $tva_tx .= ' (' . $lines [ $i ] -> vat_src_code . ')' ;
2017-06-07 16:44:04 +02:00
2018-05-27 15:04:12 +02:00
$result = $object -> addline (
$desc , $lines [ $i ] -> subprice , $lines [ $i ] -> qty , $tva_tx , $lines [ $i ] -> localtax1_tx , $lines [ $i ] -> localtax2_tx , $lines [ $i ] -> fk_product ,
$lines [ $i ] -> remise_percent , $lines [ $i ] -> info_bits , $lines [ $i ] -> fk_remise_except , 'HT' , 0 , $date_start , $date_end , $product_type ,
$lines [ $i ] -> rang , $lines [ $i ] -> special_code , $fk_parent_line , $lines [ $i ] -> fk_fournprice , $lines [ $i ] -> pa_ht , $label , $array_options ,
$lines [ $i ] -> fk_unit , $object -> origin , $lines [ $i ] -> rowid
);
2015-01-17 19:28:27 +01:00
if ( $result < 0 ) {
2015-03-06 14:36:22 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
break ;
}
// Defined the new fk_parent_line
2015-02-17 19:49:17 +01:00
if ( $result > 0 && $lines [ $i ] -> product_type == 9 ) {
2015-01-17 19:28:27 +01:00
$fk_parent_line = $result ;
}
2013-07-26 16:04:09 +02:00
}
2015-01-17 19:28:27 +01:00
} else {
2015-11-10 19:22:27 +01:00
setEventMessages ( $srcobject -> error , $srcobject -> errors , 'errors' );
2015-03-06 14:36:22 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2016-02-25 16:27:28 +01:00
// Now we create same links to contact than the ones found on origin object
2017-09-11 13:39:03 +02:00
/* Useless , already into the create
2016-02-25 16:27:28 +01:00
if ( ! empty ( $conf -> global -> MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN ))
{
$originforcontact = $object -> origin ;
$originidforcontact = $object -> origin_id ;
if ( $originforcontact == 'shipping' ) // shipment and order share the same contacts. If creating from shipment we take data of order
{
$originforcontact = $srcobject -> origin ;
$originidforcontact = $srcobject -> origin_id ;
}
$sqlcontact = " SELECT code, fk_socpeople FROM " . MAIN_DB_PREFIX . " element_contact as ec, " . MAIN_DB_PREFIX . " c_type_contact as ctc " ;
$sqlcontact .= " WHERE element_id = " . $originidforcontact . " AND ec.fk_c_type_contact = ctc.rowid AND ctc.element = ' " . $originforcontact . " ' " ;
2016-08-10 09:47:25 +02:00
2016-02-25 16:27:28 +01:00
$resqlcontact = $db -> query ( $sqlcontact );
if ( $resqlcontact )
{
while ( $objcontact = $db -> fetch_object ( $resqlcontact ))
{
//print $objcontact->code.'-'.$objcontact->fk_socpeople."\n";
$object -> add_contact ( $objcontact -> fk_socpeople , $objcontact -> code );
}
}
else dol_print_error ( $resqlcontact );
2017-09-11 13:39:03 +02:00
} */
2016-08-10 09:47:25 +02:00
2016-02-25 16:27:28 +01:00
// Hooks
$parameters = array ( 'objFrom' => $srcobject );
2018-10-27 14:50:27 +02:00
// Note that $action and $object may be modified by hook
2018-10-27 13:01:01 +02:00
$reshook = $hookmanager -> executeHooks ( 'createFrom' , $parameters , $object , $action );
if ( $reshook < 0 ) {
2017-10-16 08:47:05 +02:00
$error ++ ;
2018-10-27 13:01:01 +02:00
}
2014-02-23 20:10:05 +01:00
} else {
2015-11-10 19:22:27 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-03-06 14:36:22 +01:00
$error ++ ;
2013-07-26 16:04:09 +02:00
}
2014-02-23 20:10:05 +01:00
} else {
2015-01-17 19:28:27 +01:00
// Required extrafield left blank, error message already defined by setOptionalsFromPost()
$action = 'create' ;
2012-07-25 09:09:56 +02:00
}
2014-02-23 20:10:05 +01:00
} else {
2015-02-26 14:25:30 +01:00
if ( ! $error )
{
2015-01-17 19:28:27 +01:00
$object_id = $object -> create ( $user );
// If some invoice's lines already known
$NBLINES = 8 ;
for ( $i = 1 ; $i <= $NBLINES ; $i ++ ) {
2015-01-18 17:13:42 +01:00
if ( $_POST [ 'idprod' . $i ]) {
2015-01-17 19:28:27 +01:00
$xid = 'idprod' . $i ;
$xqty = 'qty' . $i ;
$xremise = 'remise_percent' . $i ;
2015-01-18 17:13:42 +01:00
$object -> add_product ( $_POST [ $xid ], $_POST [ $xqty ], $_POST [ $xremise ]);
2015-01-17 19:28:27 +01:00
}
2013-07-26 16:04:09 +02:00
}
2012-12-30 10:49:11 +01:00
}
2012-07-25 09:09:56 +02:00
}
2013-01-07 00:40:18 +01:00
2015-01-17 19:28:27 +01:00
// Insert default contacts if defined
2015-02-17 19:49:17 +01:00
if ( $object_id > 0 )
{
if ( GETPOST ( 'contactid' ))
{
2015-01-18 17:13:42 +01:00
$result = $object -> add_contact ( GETPOST ( 'contactid' ), 'CUSTOMER' , 'external' );
2015-01-17 19:28:27 +01:00
if ( $result < 0 ) {
2015-11-10 19:22:27 +01:00
setEventMessages ( $langs -> trans ( " ErrorFailedToAddContact " ), null , 'errors' );
2015-03-06 14:36:22 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2012-12-30 10:49:11 +01:00
}
2015-01-17 19:28:27 +01:00
$id = $object_id ;
$action = '' ;
2012-07-25 09:09:56 +02:00
}
2013-01-07 00:40:18 +01:00
2015-01-17 19:28:27 +01:00
// End of object creation, we show it
2015-02-17 19:49:17 +01:00
if ( $object_id > 0 && ! $error )
{
2015-01-17 19:28:27 +01:00
$db -> commit ();
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object_id );
exit ();
} else {
$db -> rollback ();
$action = 'create' ;
2015-11-10 19:22:27 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-17 19:28:27 +01:00
}
2012-12-30 10:49:11 +01:00
}
2015-01-17 19:28:27 +01:00
}
2013-01-07 00:40:18 +01:00
2019-01-27 10:49:34 +01:00
elseif ( $action == 'classifybilled' && $user -> rights -> commande -> creer )
2015-01-17 19:28:27 +01:00
{
2016-04-09 18:50:22 +02:00
$ret = $object -> classifyBilled ( $user );
2015-01-17 19:28:27 +01:00
if ( $ret < 0 ) {
2015-11-10 19:22:27 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2012-07-25 09:09:56 +02:00
}
}
2019-01-27 10:49:34 +01:00
elseif ( $action == 'classifyunbilled' && $user -> rights -> commande -> creer )
2016-06-06 13:29:37 +02:00
{
2017-10-16 08:47:05 +02:00
$ret = $object -> classifyUnBilled ();
if ( $ret < 0 ) {
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
2016-06-06 13:29:37 +02:00
}
2016-08-10 09:47:25 +02:00
2015-01-17 19:28:27 +01:00
// Positionne ref commande client
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setref_client' && $user -> rights -> commande -> creer ) {
2016-09-19 13:57:50 +02:00
$result = $object -> set_ref_client ( $user , GETPOST ( 'ref_client' ));
if ( $result < 0 )
{
2017-10-16 08:47:05 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2016-09-19 13:57:50 +02:00
}
2015-01-17 19:28:27 +01:00
}
2014-06-14 12:30:48 +02:00
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setremise' && $user -> rights -> commande -> creer ) {
2016-09-19 13:57:50 +02:00
$result = $object -> set_remise ( $user , GETPOST ( 'remise' ));
if ( $result < 0 )
{
2017-10-16 08:47:05 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2016-09-19 13:57:50 +02:00
}
2014-06-14 12:30:48 +02:00
}
2010-09-10 18:25:12 +02:00
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setabsolutediscount' && $user -> rights -> commande -> creer ) {
2015-01-17 19:28:27 +01:00
if ( GETPOST ( 'remise_id' )) {
if ( $object -> id > 0 ) {
$object -> insert_discount ( GETPOST ( 'remise_id' ));
} else {
dol_print_error ( $db , $object -> error );
}
}
}
2008-08-12 20:20:18 +02:00
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setdate' && $user -> rights -> commande -> creer ) {
2015-01-17 19:28:27 +01:00
// print "x ".$_POST['liv_month'].", ".$_POST['liv_day'].", ".$_POST['liv_year'];
$date = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'order_month' ), GETPOST ( 'order_day' ), GETPOST ( 'order_year' ));
2008-08-12 20:20:18 +02:00
2015-01-17 19:28:27 +01:00
$result = $object -> set_date ( $user , $date );
if ( $result < 0 ) {
2015-11-09 18:13:17 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2012-07-25 12:20:45 +02:00
}
}
2014-02-23 20:10:05 +01:00
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setdate_livraison' && $user -> rights -> commande -> creer ) {
2015-01-17 19:28:27 +01:00
// print "x ".$_POST['liv_month'].", ".$_POST['liv_day'].", ".$_POST['liv_year'];
$datelivraison = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'liv_month' ), GETPOST ( 'liv_day' ), GETPOST ( 'liv_year' ));
2012-07-25 12:20:45 +02:00
2015-01-17 19:28:27 +01:00
$result = $object -> set_date_livraison ( $user , $datelivraison );
if ( $result < 0 ) {
2015-11-09 18:13:17 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-17 19:28:27 +01:00
}
2012-07-25 12:20:45 +02:00
}
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setmode' && $user -> rights -> commande -> creer ) {
2015-01-17 19:28:27 +01:00
$result = $object -> setPaymentMethods ( GETPOST ( 'mode_reglement_id' , 'int' ));
if ( $result < 0 )
2016-07-21 17:35:23 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2012-07-25 12:20:45 +02:00
}
2016-08-10 09:47:25 +02:00
2016-01-23 00:38:17 +01:00
// Multicurrency Code
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setmulticurrencycode' && $user -> rights -> commande -> creer ) {
2016-01-23 00:38:17 +01:00
$result = $object -> setMulticurrencyCode ( GETPOST ( 'multicurrency_code' , 'alpha' ));
}
2008-08-12 20:20:18 +02:00
2016-01-23 00:38:17 +01:00
// Multicurrency rate
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setmulticurrencyrate' && $user -> rights -> commande -> creer ) {
2016-08-10 09:47:25 +02:00
$result = $object -> setMulticurrencyRate ( price2num ( GETPOST ( 'multicurrency_tx' )));
2016-01-23 00:38:17 +01:00
}
2016-08-10 09:47:25 +02:00
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setavailability' && $user -> rights -> commande -> creer ) {
2015-01-17 19:28:27 +01:00
$result = $object -> availability ( GETPOST ( 'availability_id' ));
if ( $result < 0 )
2017-10-16 08:47:05 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-17 19:28:27 +01:00
}
2011-04-14 14:39:12 +02:00
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setdemandreason' && $user -> rights -> commande -> creer ) {
2015-01-17 19:28:27 +01:00
$result = $object -> demand_reason ( GETPOST ( 'demand_reason_id' ));
if ( $result < 0 )
2016-07-21 17:35:23 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-17 19:28:27 +01:00
}
2011-04-26 22:59:45 +02:00
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setconditions' && $user -> rights -> commande -> creer ) {
2015-01-17 19:28:27 +01:00
$result = $object -> setPaymentTerms ( GETPOST ( 'cond_reglement_id' , 'int' ));
if ( $result < 0 ) {
dol_print_error ( $db , $object -> error );
} else {
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
// Define output language
$outputlangs = $langs ;
$newlang = GETPOST ( 'lang_id' , 'alpha' );
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ))
2015-01-18 17:13:42 +01:00
$newlang = $object -> thirdparty -> default_lang ;
2015-01-17 19:28:27 +01:00
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2014-02-23 20:10:05 +01:00
2015-01-17 19:28:27 +01:00
$ret = $object -> fetch ( $object -> id ); // Reload to get new records
2015-01-18 17:13:42 +01:00
$object -> generateDocument ( $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-07-25 12:20:45 +02:00
}
}
}
2008-08-12 20:20:18 +02:00
2015-02-10 12:22:07 +01:00
// Set incoterm
elseif ( $action == 'set_incoterms' && ! empty ( $conf -> incoterm -> enabled ))
2017-10-16 08:47:05 +02:00
{
$result = $object -> setIncoterms ( GETPOST ( 'incoterm_id' , 'int' ), GETPOST ( 'location_incoterms' , 'alpha' ));
if ( $result < 0 ) {
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
}
2015-03-18 14:31:37 +01:00
2015-01-18 17:13:42 +01:00
// bank account
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setbankaccount' && $user -> rights -> commande -> creer ) {
2017-10-16 08:47:05 +02:00
$result = $object -> setBankAccount ( GETPOST ( 'fk_account' , 'int' ));
if ( $result < 0 ) {
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
2015-01-18 17:13:42 +01:00
}
2014-07-06 20:49:34 +02:00
2015-01-18 17:13:42 +01:00
// shipping method
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setshippingmethod' && $user -> rights -> commande -> creer ) {
2017-10-16 08:47:05 +02:00
$result = $object -> setShippingMethod ( GETPOST ( 'shipping_method_id' , 'int' ));
if ( $result < 0 ) {
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
2015-01-18 17:13:42 +01:00
}
2014-07-25 17:20:42 +02:00
2017-10-16 08:47:05 +02:00
// warehouse
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setwarehouse' && $user -> rights -> commande -> creer ) {
2017-10-16 08:47:05 +02:00
$result = $object -> setWarehouse ( GETPOST ( 'warehouse_id' , 'int' ));
if ( $result < 0 ) {
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
}
2015-11-15 11:42:47 +01:00
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setremisepercent' && $user -> rights -> commande -> creer ) {
2015-01-17 19:28:27 +01:00
$result = $object -> set_remise ( $user , GETPOST ( 'remise_percent' ));
}
2008-08-12 20:20:18 +02:00
2019-01-27 10:49:34 +01:00
elseif ( $action == 'setremiseabsolue' && $user -> rights -> commande -> creer ) {
2015-01-17 19:28:27 +01:00
$result = $object -> set_remise_absolue ( $user , GETPOST ( 'remise_absolue' ));
}
2008-08-12 20:20:18 +02:00
2015-01-17 19:28:27 +01:00
// Add a new line
2019-01-27 10:49:34 +01:00
elseif ( $action == 'addline' && $user -> rights -> commande -> creer )
2015-05-07 12:10:27 +02:00
{
2015-01-17 19:28:27 +01:00
$langs -> load ( 'errors' );
$error = 0 ;
2012-08-23 07:50:20 +02:00
2015-01-17 19:28:27 +01:00
// Set if we used free entry or predefined product
$predef = '' ;
$product_desc = ( GETPOST ( 'dp_desc' ) ? GETPOST ( 'dp_desc' ) : '' );
$price_ht = GETPOST ( 'price_ht' );
2016-12-11 00:42:52 +01:00
$price_ht_devise = GETPOST ( 'multicurrency_price_ht' );
2016-07-23 16:37:21 +02:00
$prod_entry_mode = GETPOST ( 'prod_entry_mode' );
if ( $prod_entry_mode == 'free' )
2015-01-17 19:28:27 +01:00
{
$idprod = 0 ;
$tva_tx = ( GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : 0 );
}
else
{
$idprod = GETPOST ( 'idprod' , 'int' );
$tva_tx = '' ;
}
2014-05-05 14:30:08 +02:00
2015-01-17 19:28:27 +01:00
$qty = GETPOST ( 'qty' . $predef );
$remise_percent = GETPOST ( 'remise_percent' . $predef );
// Extrafields
$extrafieldsline = new ExtraFields ( $db );
$extralabelsline = $extrafieldsline -> fetch_name_optionals_label ( $object -> table_element_line );
2019-03-11 14:22:04 +01:00
$array_options = $extrafieldsline -> getOptionalsFromPost ( $object -> table_element_line , $predef );
2015-01-17 19:28:27 +01:00
// Unset extrafield
if ( is_array ( $extralabelsline )) {
// Get extra fields
foreach ( $extralabelsline as $key => $value ) {
2015-01-18 17:13:42 +01:00
unset ( $_POST [ " options_ " . $key ]);
2015-01-17 19:28:27 +01:00
}
2013-06-10 16:05:41 +02:00
}
2015-01-17 19:28:27 +01:00
if ( empty ( $idprod ) && ( $price_ht < 0 ) && ( $qty < 0 )) {
2015-11-10 19:22:27 +01:00
setEventMessages ( $langs -> trans ( 'ErrorBothFieldCantBeNegative' , $langs -> transnoentitiesnoconv ( 'UnitPriceHT' ), $langs -> transnoentitiesnoconv ( 'Qty' )), null , 'errors' );
2015-03-06 14:36:22 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2016-07-23 16:37:21 +02:00
if ( $prod_entry_mode == 'free' && empty ( $idprod ) && GETPOST ( 'type' ) < 0 ) {
2015-11-10 19:22:27 +01:00
setEventMessages ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'Type' )), null , 'errors' );
2015-03-06 14:36:22 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2018-09-05 14:55:45 +02:00
if ( $prod_entry_mode == 'free' && empty ( $idprod ) && $price_ht == '' && $price_ht_devise == '' ) // Unit price can be 0 but not ''. Also price can be negative for order.
2015-01-17 19:28:27 +01:00
{
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " UnitPriceHT " )), null , 'errors' );
2015-03-06 14:36:22 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
if ( $qty == '' ) {
2015-11-10 19:22:27 +01:00
setEventMessages ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'Qty' )), null , 'errors' );
2015-03-06 14:36:22 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2016-07-23 16:37:21 +02:00
if ( $prod_entry_mode == 'free' && empty ( $idprod ) && empty ( $product_desc )) {
2015-11-10 19:22:27 +01:00
setEventMessages ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'Description' )), null , 'errors' );
2015-03-06 14:36:22 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2012-07-25 12:20:45 +02:00
2017-02-08 12:37:38 +01:00
if ( ! $error && ! empty ( $conf -> variants -> enabled ) && $prod_entry_mode != 'free' ) {
2016-07-23 16:37:21 +02:00
if ( $combinations = GETPOST ( 'combinations' , 'array' )) {
//Check if there is a product with the given combination
$prodcomb = new ProductCombination ( $db );
if ( $res = $prodcomb -> fetchByProductCombination2ValuePairs ( $idprod , $combinations )) {
$idprod = $res -> fk_product_child ;
2018-07-26 18:05:20 +02:00
}
else
2018-07-24 18:28:56 +02:00
{
setEventMessages ( $langs -> trans ( 'ErrorProductCombinationNotFound' ), null , 'errors' );
2016-07-23 16:37:21 +02:00
$error ++ ;
}
}
}
2015-01-17 19:28:27 +01:00
if ( ! $error && ( $qty >= 0 ) && ( ! empty ( $product_desc ) || ! empty ( $idprod ))) {
// Clean parameters
2015-12-07 03:59:03 +01:00
$date_start = dol_mktime ( GETPOST ( 'date_start' . $predef . 'hour' ), GETPOST ( 'date_start' . $predef . 'min' ), GETPOST ( 'date_start' . $predef . 'sec' ), GETPOST ( 'date_start' . $predef . 'month' ), GETPOST ( 'date_start' . $predef . 'day' ), GETPOST ( 'date_start' . $predef . 'year' ));
$date_end = dol_mktime ( GETPOST ( 'date_end' . $predef . 'hour' ), GETPOST ( 'date_end' . $predef . 'min' ), GETPOST ( 'date_end' . $predef . 'sec' ), GETPOST ( 'date_end' . $predef . 'month' ), GETPOST ( 'date_end' . $predef . 'day' ), GETPOST ( 'date_end' . $predef . 'year' ));
2015-01-17 19:28:27 +01:00
$price_base_type = ( GETPOST ( 'price_base_type' , 'alpha' ) ? GETPOST ( 'price_base_type' , 'alpha' ) : 'HT' );
// Ecrase $pu par celui du produit
// Ecrase $desc par celui du produit
2017-03-04 21:45:19 +01:00
// Ecrase $tva_tx par celui du produit
2015-01-17 19:28:27 +01:00
// Ecrase $base_price_type par celui du produit
if ( ! empty ( $idprod )) {
$prod = new Product ( $db );
$prod -> fetch ( $idprod );
2014-02-26 15:49:29 +01:00
2015-01-17 19:28:27 +01:00
$label = (( GETPOST ( 'product_label' ) && GETPOST ( 'product_label' ) != $prod -> label ) ? GETPOST ( 'product_label' ) : '' );
2014-02-26 15:49:29 +01:00
2015-01-17 19:28:27 +01:00
// Update if prices fields are defined
2017-03-04 21:45:19 +01:00
$tva_tx = get_default_tva ( $mysoc , $object -> thirdparty , $prod -> id );
$tva_npr = get_default_npr ( $mysoc , $object -> thirdparty , $prod -> id );
if ( empty ( $tva_tx )) $tva_npr = 0 ;
2016-03-17 15:56:03 +01:00
2017-03-04 21:45:19 +01:00
$pu_ht = $prod -> price ;
$pu_ttc = $prod -> price_ttc ;
$price_min = $prod -> price_min ;
$price_base_type = $prod -> price_base_type ;
2014-02-26 15:49:29 +01:00
2018-01-09 14:20:47 +01:00
// If price per segment
2017-03-04 21:45:19 +01:00
if ( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES ) && ! empty ( $object -> thirdparty -> price_level ))
{
$pu_ht = $prod -> multiprices [ $object -> thirdparty -> price_level ];
$pu_ttc = $prod -> multiprices_ttc [ $object -> thirdparty -> price_level ];
$price_min = $prod -> multiprices_min [ $object -> thirdparty -> price_level ];
$price_base_type = $prod -> multiprices_base_type [ $object -> thirdparty -> price_level ];
if ( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES_USE_VAT_PER_LEVEL )) // using this option is a bug. kept for backward compatibility
2015-01-17 19:28:27 +01:00
{
2017-03-04 21:45:19 +01:00
if ( isset ( $prod -> multiprices_tva_tx [ $object -> thirdparty -> price_level ])) $tva_tx = $prod -> multiprices_tva_tx [ $object -> thirdparty -> price_level ];
if ( isset ( $prod -> multiprices_recuperableonly [ $object -> thirdparty -> price_level ])) $tva_npr = $prod -> multiprices_recuperableonly [ $object -> thirdparty -> price_level ];
2015-01-17 19:28:27 +01:00
}
2017-03-04 21:45:19 +01:00
}
2018-01-09 14:20:47 +01:00
// If price per customer
2017-03-04 21:45:19 +01:00
elseif ( ! empty ( $conf -> global -> PRODUIT_CUSTOMER_PRICES ))
{
require_once DOL_DOCUMENT_ROOT . '/product/class/productcustomerprice.class.php' ;
2014-02-26 15:49:29 +01:00
2017-03-04 21:45:19 +01:00
$prodcustprice = new Productcustomerprice ( $db );
2014-02-26 15:49:29 +01:00
2017-03-04 21:45:19 +01:00
$filter = array ( 't.fk_product' => $prod -> id , 't.fk_soc' => $object -> thirdparty -> id );
2014-02-26 15:49:29 +01:00
2017-03-04 21:45:19 +01:00
$result = $prodcustprice -> fetch_all ( '' , '' , 0 , 0 , $filter );
if ( $result >= 0 )
{
if ( count ( $prodcustprice -> lines ) > 0 )
2015-01-18 17:13:42 +01:00
{
2017-11-13 14:02:17 +01:00
$pu_ht = price ( $prodcustprice -> lines [ 0 ] -> price );
$pu_ttc = price ( $prodcustprice -> lines [ 0 ] -> price_ttc );
$price_base_type = $prodcustprice -> lines [ 0 ] -> price_base_type ;
$tva_tx = $prodcustprice -> lines [ 0 ] -> tva_tx ;
if ( $prodcustprice -> lines [ 0 ] -> default_vat_code && ! preg_match ( '/\(.*\)/' , $tva_tx )) $tva_tx .= ' (' . $prodcustprice -> lines [ 0 ] -> default_vat_code . ')' ;
$tva_npr = $prodcustprice -> lines [ 0 ] -> recuperableonly ;
if ( empty ( $tva_tx )) $tva_npr = 0 ;
2014-02-23 16:16:47 +01:00
}
}
2017-03-04 21:45:19 +01:00
else
{
setEventMessages ( $prodcustprice -> error , $prodcustprice -> errors , 'errors' );
2014-10-12 02:54:34 +02:00
}
2017-03-04 21:45:19 +01:00
}
2018-01-09 14:20:47 +01:00
// If price per quantity
elseif ( ! empty ( $conf -> global -> PRODUIT_CUSTOMER_PRICES_BY_QTY ))
{
if ( $prod -> prices_by_qty [ 0 ]) // yes, this product has some prices per quantity
{
// Search the correct price into loaded array product_price_by_qty using id of array retrieved into POST['pqp'].
2019-01-27 11:55:16 +01:00
$pqp = GETPOST ( 'pbq' , 'int' );
2018-01-09 14:20:47 +01:00
// Search price into product_price_by_qty from $prod->id
foreach ( $prod -> prices_by_qty_list [ 0 ] as $priceforthequantityarray )
{
if ( $priceforthequantityarray [ 'rowid' ] != $pqp ) continue ;
// We found the price
if ( $priceforthequantityarray [ 'price_base_type' ] == 'HT' )
{
$pu_ht = $priceforthequantityarray [ 'unitprice' ];
}
else
{
$pu_ttc = $priceforthequantityarray [ 'unitprice' ];
}
// Note: the remise_percent or price by qty is used to set data on form, so we will use value from POST.
break ;
}
}
}
// If price per quantity and customer
2018-01-10 13:20:43 +01:00
elseif ( ! empty ( $conf -> global -> PRODUIT_CUSTOMER_PRICES_BY_QTY_MULTIPRICES ))
2018-01-09 14:20:47 +01:00
{
2018-05-23 17:05:08 +02:00
if ( $prod -> prices_by_qty [ $object -> thirdparty -> price_level ]) // yes, this product has some prices per quantity
{
// Search the correct price into loaded array product_price_by_qty using id of array retrieved into POST['pqp'].
2019-01-27 11:55:16 +01:00
$pqp = GETPOST ( 'pbq' , 'int' );
2018-05-23 17:05:08 +02:00
// Search price into product_price_by_qty from $prod->id
foreach ( $prod -> prices_by_qty_list [ $object -> thirdparty -> price_level ] as $priceforthequantityarray )
{
if ( $priceforthequantityarray [ 'rowid' ] != $pqp ) continue ;
// We found the price
if ( $priceforthequantityarray [ 'price_base_type' ] == 'HT' )
{
$pu_ht = $priceforthequantityarray [ 'unitprice' ];
}
else
{
$pu_ttc = $priceforthequantityarray [ 'unitprice' ];
}
// Note: the remise_percent or price by qty is used to set data on form, so we will use value from POST.
break ;
}
}
2018-01-09 14:20:47 +01:00
}
2014-08-05 09:28:58 +02:00
2017-03-04 21:45:19 +01:00
$tmpvat = price2num ( preg_replace ( '/\s*\(.*\)/' , '' , $tva_tx ));
$tmpprodvat = price2num ( preg_replace ( '/\s*\(.*\)/' , '' , $prod -> tva_tx ));
2017-06-07 16:44:04 +02:00
2017-03-04 21:45:19 +01:00
// if price ht is forced (ie: calculated by margin rate and cost price). TODO Why this ?
if ( ! empty ( $price_ht )) {
$pu_ht = price2num ( $price_ht , 'MU' );
$pu_ttc = price2num ( $pu_ht * ( 1 + ( $tmpvat / 100 )), 'MU' );
}
// On reevalue prix selon taux tva car taux tva transaction peut etre different
// de ceux du produit par defaut (par exemple si pays different entre vendeur et acheteur).
elseif ( $tmpvat != $tmpprodvat ) {
if ( $price_base_type != 'HT' ) {
$pu_ht = price2num ( $pu_ttc / ( 1 + ( $tmpvat / 100 )), 'MU' );
} else {
$pu_ttc = price2num ( $pu_ht * ( 1 + ( $tmpvat / 100 )), 'MU' );
2015-01-17 19:28:27 +01:00
}
2017-03-04 21:45:19 +01:00
}
2015-01-17 19:28:27 +01:00
2017-03-04 21:45:19 +01:00
$desc = '' ;
2013-08-12 15:34:09 +02:00
2017-03-04 21:45:19 +01:00
// Define output language
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && ! empty ( $conf -> global -> PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE )) {
$outputlangs = $langs ;
$newlang = '' ;
2019-01-27 11:55:16 +01:00
if ( empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' ))
$newlang = GETPOST ( 'lang_id' , 'aZ09' );
2017-03-04 21:45:19 +01:00
if ( empty ( $newlang ))
$newlang = $object -> thirdparty -> default_lang ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
2012-08-28 15:35:32 +02:00
}
2012-08-25 15:21:34 +02:00
2017-03-04 21:45:19 +01:00
$desc = ( ! empty ( $prod -> multilangs [ $outputlangs -> defaultlang ] [ " description " ])) ? $prod -> multilangs [ $outputlangs -> defaultlang ] [ " description " ] : $prod -> description ;
} else {
$desc = $prod -> description ;
}
2018-11-21 09:57:44 +01:00
$desc = dol_concatdesc ( $desc , $product_desc , '' , ! empty ( $conf -> global -> CHANGE_ORDER_CONCAT_DESCRIPTION ));
2017-03-04 21:45:19 +01:00
// Add custom code and origin country into description
if ( empty ( $conf -> global -> MAIN_PRODUCT_DISABLE_CUSTOMCOUNTRYCODE ) && ( ! empty ( $prod -> customcode ) || ! empty ( $prod -> country_code ))) {
$tmptxt = '(' ;
2017-12-08 10:41:14 +01:00
// Define output language
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && ! empty ( $conf -> global -> PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE )) {
$outputlangs = $langs ;
$newlang = '' ;
2019-01-27 11:55:16 +01:00
if ( empty ( $newlang ) && GETPOST ( 'lang_id' , 'alpha' ))
$newlang = GETPOST ( 'lang_id' , 'alpha' );
2017-12-08 10:41:14 +01:00
if ( empty ( $newlang ))
$newlang = $object -> thirdparty -> default_lang ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
2017-12-08 11:00:23 +01:00
$outputlangs -> load ( 'products' );
2017-12-08 10:41:14 +01:00
}
if ( ! empty ( $prod -> customcode ))
$tmptxt .= $outputlangs -> transnoentitiesnoconv ( " CustomCode " ) . ': ' . $prod -> customcode ;
if ( ! empty ( $prod -> customcode ) && ! empty ( $prod -> country_code ))
$tmptxt .= ' - ' ;
if ( ! empty ( $prod -> country_code ))
$tmptxt .= $outputlangs -> transnoentitiesnoconv ( " CountryOrigin " ) . ': ' . getCountry ( $prod -> country_code , 0 , $db , $outputlangs , 0 );
} else {
if ( ! empty ( $prod -> customcode ))
$tmptxt .= $langs -> transnoentitiesnoconv ( " CustomCode " ) . ': ' . $prod -> customcode ;
if ( ! empty ( $prod -> customcode ) && ! empty ( $prod -> country_code ))
$tmptxt .= ' - ' ;
if ( ! empty ( $prod -> country_code ))
$tmptxt .= $langs -> transnoentitiesnoconv ( " CountryOrigin " ) . ': ' . getCountry ( $prod -> country_code , 0 , $db , $langs , 0 );
}
2017-03-04 21:45:19 +01:00
$tmptxt .= ')' ;
$desc = dol_concatdesc ( $desc , $tmptxt );
}
2012-09-16 20:23:57 +02:00
2015-01-17 19:28:27 +01:00
$type = $prod -> type ;
2015-02-26 14:15:33 +01:00
$fk_unit = $prod -> fk_unit ;
2015-01-17 19:28:27 +01:00
} else {
$pu_ht = price2num ( $price_ht , 'MU' );
$pu_ttc = price2num ( GETPOST ( 'price_ttc' ), 'MU' );
$tva_npr = ( preg_match ( '/\*/' , $tva_tx ) ? 1 : 0 );
$tva_tx = str_replace ( '*' , '' , $tva_tx );
$label = ( GETPOST ( 'product_label' ) ? GETPOST ( 'product_label' ) : '' );
$desc = $product_desc ;
$type = GETPOST ( 'type' );
2015-04-21 15:49:58 +02:00
$fk_unit = GETPOST ( 'units' , 'alpha' );
2016-12-11 00:42:52 +01:00
$pu_ht_devise = price2num ( $price_ht_devise , 'MU' );
2015-01-17 19:28:27 +01:00
}
// Margin
2015-11-04 17:51:15 +01:00
$fournprice = price2num ( GETPOST ( 'fournprice' . $predef ) ? GETPOST ( 'fournprice' . $predef ) : '' );
$buyingprice = price2num ( GETPOST ( 'buying_price' . $predef ) != '' ? GETPOST ( 'buying_price' . $predef ) : '' ); // If buying_price is '0', we muste keep this value
2015-01-17 19:28:27 +01:00
// Local Taxes
2015-01-18 17:13:42 +01:00
$localtax1_tx = get_localtax ( $tva_tx , 1 , $object -> thirdparty );
$localtax2_tx = get_localtax ( $tva_tx , 2 , $object -> thirdparty );
2015-01-17 19:28:27 +01:00
$desc = dol_htmlcleanlastbr ( $desc );
$info_bits = 0 ;
if ( $tva_npr )
$info_bits |= 0x01 ;
2018-05-07 10:04:43 +02:00
if ((( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && empty ( $user -> rights -> produit -> ignore_price_min_advance )) || empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) ) && ( ! empty ( $price_min ) && ( price2num ( $pu_ht ) * ( 1 - price2num ( $remise_percent ) / 100 ) < price2num ( $price_min )))) {
2015-01-17 19:28:27 +01:00
$mesg = $langs -> trans ( " CantBeLessThanMinPrice " , price ( price2num ( $price_min , 'MU' ), 0 , $langs , 0 , 0 , - 1 , $conf -> currency ));
2015-11-10 19:22:27 +01:00
setEventMessages ( $mesg , null , 'errors' );
2015-01-17 19:28:27 +01:00
} else {
// Insert line
2016-12-11 00:42:52 +01:00
$result = $object -> addline ( $desc , $pu_ht , $qty , $tva_tx , $localtax1_tx , $localtax2_tx , $idprod , $remise_percent , $info_bits , 0 , $price_base_type , $pu_ttc , $date_start , $date_end , $type , - 1 , 0 , GETPOST ( 'fk_parent_line' ), $fournprice , $buyingprice , $label , $array_options , $fk_unit , '' , 0 , $pu_ht_devise );
2015-01-17 19:28:27 +01:00
if ( $result > 0 ) {
$ret = $object -> fetch ( $object -> id ); // Reload to get new records
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
// Define output language
$outputlangs = $langs ;
$newlang = GETPOST ( 'lang_id' , 'alpha' );
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && empty ( $newlang ))
2015-01-18 17:13:42 +01:00
$newlang = $object -> thirdparty -> default_lang ;
2015-01-17 19:28:27 +01:00
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2015-01-18 17:13:42 +01:00
$object -> generateDocument ( $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-08-25 15:21:34 +02:00
}
2015-01-18 17:13:42 +01:00
unset ( $_POST [ 'prod_entry_mode' ]);
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
unset ( $_POST [ 'remise_percent' ]);
unset ( $_POST [ 'price_ht' ]);
2016-04-12 14:10:27 +02:00
unset ( $_POST [ 'multicurrency_price_ht' ]);
2015-01-18 17:13:42 +01:00
unset ( $_POST [ 'price_ttc' ]);
unset ( $_POST [ 'tva_tx' ]);
unset ( $_POST [ 'product_ref' ]);
unset ( $_POST [ 'product_label' ]);
unset ( $_POST [ 'product_desc' ]);
unset ( $_POST [ 'fournprice' ]);
unset ( $_POST [ 'buying_price' ]);
unset ( $_POST [ 'np_marginRate' ]);
unset ( $_POST [ 'np_markRate' ]);
unset ( $_POST [ 'dp_desc' ]);
unset ( $_POST [ 'idprod' ]);
2015-02-26 14:15:33 +01:00
unset ( $_POST [ 'units' ]);
2015-01-18 17:13:42 +01:00
2017-10-16 08:47:05 +02:00
unset ( $_POST [ 'date_starthour' ]);
unset ( $_POST [ 'date_startmin' ]);
unset ( $_POST [ 'date_startsec' ]);
unset ( $_POST [ 'date_startday' ]);
unset ( $_POST [ 'date_startmonth' ]);
unset ( $_POST [ 'date_startyear' ]);
unset ( $_POST [ 'date_endhour' ]);
unset ( $_POST [ 'date_endmin' ]);
unset ( $_POST [ 'date_endsec' ]);
unset ( $_POST [ 'date_endday' ]);
unset ( $_POST [ 'date_endmonth' ]);
unset ( $_POST [ 'date_endyear' ]);
2014-02-23 20:10:05 +01:00
} else {
2015-11-10 19:22:27 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2012-08-25 15:21:34 +02:00
}
2015-01-17 19:28:27 +01:00
}
}
}
2012-08-25 15:21:34 +02:00
2015-01-17 19:28:27 +01:00
/*
2015-02-27 18:05:12 +01:00
* Update a line
*/
2019-01-27 10:49:34 +01:00
elseif ( $action == 'updateline' && $user -> rights -> commande -> creer && GETPOST ( 'save' ))
2015-02-27 18:05:12 +01:00
{
2015-01-17 19:28:27 +01:00
// Clean parameters
$date_start = '' ;
$date_end = '' ;
2015-12-07 03:59:03 +01:00
$date_start = dol_mktime ( GETPOST ( 'date_starthour' ), GETPOST ( 'date_startmin' ), GETPOST ( 'date_startsec' ), GETPOST ( 'date_startmonth' ), GETPOST ( 'date_startday' ), GETPOST ( 'date_startyear' ));
$date_end = dol_mktime ( GETPOST ( 'date_endhour' ), GETPOST ( 'date_endmin' ), GETPOST ( 'date_endsec' ), GETPOST ( 'date_endmonth' ), GETPOST ( 'date_endday' ), GETPOST ( 'date_endyear' ));
2019-01-27 11:55:16 +01:00
$description = dol_htmlcleanlastbr ( GETPOST ( 'product_desc' , 'none' ));
2015-01-17 19:28:27 +01:00
$pu_ht = GETPOST ( 'price_ht' );
$vat_rate = ( GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : 0 );
2016-12-11 00:42:52 +01:00
$pu_ht_devise = GETPOST ( 'multicurrency_subprice' );
2015-01-17 19:28:27 +01:00
// Define info_bits
$info_bits = 0 ;
if ( preg_match ( '/\*/' , $vat_rate ))
$info_bits |= 0x01 ;
2012-08-25 15:21:34 +02:00
2015-05-07 12:10:27 +02:00
// Define vat_rate
2015-01-17 19:28:27 +01:00
$vat_rate = str_replace ( '*' , '' , $vat_rate );
2015-05-07 12:10:27 +02:00
$localtax1_rate = get_localtax ( $vat_rate , 1 , $object -> thirdparty , $mysoc );
$localtax2_rate = get_localtax ( $vat_rate , 2 , $object -> thirdparty , $mysoc );
2015-01-17 19:28:27 +01:00
// Add buying price
2015-11-04 17:51:15 +01:00
$fournprice = price2num ( GETPOST ( 'fournprice' ) ? GETPOST ( 'fournprice' ) : '' );
2015-11-04 22:38:45 +01:00
$buyingprice = price2num ( GETPOST ( 'buying_price' ) != '' ? GETPOST ( 'buying_price' ) : '' ); // If buying_price is '0', we muste keep this value
2015-01-17 19:28:27 +01:00
// Extrafields Lines
$extrafieldsline = new ExtraFields ( $db );
$extralabelsline = $extrafieldsline -> fetch_name_optionals_label ( $object -> table_element_line );
2019-03-11 14:22:04 +01:00
$array_options = $extrafieldsline -> getOptionalsFromPost ( $object -> table_element_line );
2015-01-17 19:28:27 +01:00
// Unset extrafield POST Data
if ( is_array ( $extralabelsline )) {
foreach ( $extralabelsline as $key => $value ) {
2015-01-18 17:13:42 +01:00
unset ( $_POST [ " options_ " . $key ]);
2015-01-17 19:28:27 +01:00
}
2014-02-23 20:10:05 +01:00
}
2012-07-25 12:20:45 +02:00
2015-05-07 12:10:27 +02:00
// Define special_code for special lines
$special_code = GETPOST ( 'special_code' );
if ( ! GETPOST ( 'qty' )) $special_code = 3 ;
2015-01-17 19:28:27 +01:00
// Check minimum price
$productid = GETPOST ( 'productid' , 'int' );
if ( ! empty ( $productid )) {
$product = new Product ( $db );
$product -> fetch ( $productid );
2012-08-23 07:50:20 +02:00
2015-01-17 19:28:27 +01:00
$type = $product -> type ;
2012-07-25 12:20:45 +02:00
2015-01-17 19:28:27 +01:00
$price_min = $product -> price_min ;
2018-05-23 17:05:08 +02:00
if (( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES ) || ! empty ( $conf -> global -> PRODUIT_CUSTOMER_PRICES_BY_QTY_MULTIPRICES )) && ! empty ( $object -> thirdparty -> price_level ))
$price_min = $product -> multiprices_min [ $object -> thirdparty -> price_level ];
2012-07-25 12:20:45 +02:00
2015-01-17 19:28:27 +01:00
$label = (( GETPOST ( 'update_label' ) && GETPOST ( 'product_label' )) ? GETPOST ( 'product_label' ) : '' );
2012-07-25 12:20:45 +02:00
2018-05-07 10:04:43 +02:00
if ((( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && empty ( $user -> rights -> produit -> ignore_price_min_advance )) || empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) ) && ( $price_min && ( price2num ( $pu_ht ) * ( 1 - price2num ( GETPOST ( 'remise_percent' )) / 100 ) < price2num ( $price_min )))) {
2015-11-10 19:22:27 +01:00
setEventMessages ( $langs -> trans ( " CantBeLessThanMinPrice " , price ( price2num ( $price_min , 'MU' ), 0 , $langs , 0 , 0 , - 1 , $conf -> currency )), null , 'errors' );
2015-03-06 14:36:22 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2014-02-23 20:10:05 +01:00
} else {
2015-01-17 19:28:27 +01:00
$type = GETPOST ( 'type' );
$label = ( GETPOST ( 'product_label' ) ? GETPOST ( 'product_label' ) : '' );
2013-03-07 18:44:25 +01:00
2015-01-17 19:28:27 +01:00
// Check parameters
if ( GETPOST ( 'type' ) < 0 ) {
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )), null , 'errors' );
2015-03-06 14:36:22 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
}
2014-02-26 15:49:29 +01:00
2015-01-17 19:28:27 +01:00
if ( ! $error ) {
2016-12-15 16:19:54 +01:00
2016-12-15 12:01:46 +01:00
if ( empty ( $user -> rights -> margins -> creer ))
{
foreach ( $object -> lines as & $line )
{
if ( $line -> id == GETPOST ( 'lineid' ))
{
$fournprice = $line -> fk_fournprice ;
$buyingprice = $line -> pa_ht ;
break ;
}
}
}
2019-01-27 11:55:16 +01:00
$result = $object -> updateline ( GETPOST ( 'lineid' ), $description , $pu_ht , GETPOST ( 'qty' ), GETPOST ( 'remise_percent' ), $vat_rate , $localtax1_rate , $localtax2_rate , 'HT' , $info_bits , $date_start , $date_end , $type , GETPOST ( 'fk_parent_line' ), 0 , $fournprice , $buyingprice , $label , $special_code , $array_options , GETPOST ( 'units' ), $pu_ht_devise );
2014-02-26 15:49:29 +01:00
2015-01-17 19:28:27 +01:00
if ( $result >= 0 ) {
2014-02-23 20:10:05 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
2012-08-25 15:21:34 +02:00
// Define output language
$outputlangs = $langs ;
2015-01-17 19:28:27 +01:00
$newlang = '' ;
2019-01-27 11:55:16 +01:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' ))
$newlang = GETPOST ( 'lang_id' , 'aZ09' );
2015-01-17 19:28:27 +01:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ))
2014-08-01 16:17:31 +02:00
$newlang = $object -> thirdparty -> default_lang ;
2014-02-23 20:10:05 +01:00
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
2012-08-25 15:21:34 +02:00
$outputlangs -> setDefaultLang ( $newlang );
}
2015-01-17 19:28:27 +01:00
$ret = $object -> fetch ( $object -> id ); // Reload to get new records
2014-09-16 20:35:31 +02:00
$object -> generateDocument ( $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-08-25 15:21:34 +02:00
}
2014-09-26 13:23:54 +02:00
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
2015-01-18 17:13:42 +01:00
unset ( $_POST [ 'productid' ]);
2014-09-26 13:23:54 +02:00
unset ( $_POST [ 'remise_percent' ]);
unset ( $_POST [ 'price_ht' ]);
2016-04-12 14:10:27 +02:00
unset ( $_POST [ 'multicurrency_price_ht' ]);
2014-09-26 13:23:54 +02:00
unset ( $_POST [ 'price_ttc' ]);
unset ( $_POST [ 'tva_tx' ]);
unset ( $_POST [ 'product_ref' ]);
unset ( $_POST [ 'product_label' ]);
unset ( $_POST [ 'product_desc' ]);
unset ( $_POST [ 'fournprice' ]);
unset ( $_POST [ 'buying_price' ]);
2016-03-04 14:11:06 +01:00
unset ( $_POST [ 'date_starthour' ]);
unset ( $_POST [ 'date_startmin' ]);
unset ( $_POST [ 'date_startsec' ]);
unset ( $_POST [ 'date_startday' ]);
unset ( $_POST [ 'date_startmonth' ]);
unset ( $_POST [ 'date_startyear' ]);
unset ( $_POST [ 'date_endhour' ]);
unset ( $_POST [ 'date_endmin' ]);
unset ( $_POST [ 'date_endsec' ]);
unset ( $_POST [ 'date_endday' ]);
unset ( $_POST [ 'date_endmonth' ]);
unset ( $_POST [ 'date_endyear' ]);
2014-02-23 20:10:05 +01:00
} else {
2015-11-10 19:22:27 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2012-08-25 15:21:34 +02:00
}
2012-07-25 12:20:45 +02:00
}
2019-01-27 23:23:38 +01:00
} elseif ( $action == 'updateline' && $user -> rights -> commande -> creer && GETPOST ( 'cancel' , 'alpha' ) == $langs -> trans ( 'Cancel' )) {
2015-01-17 19:28:27 +01:00
header ( 'Location: ' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id ); // Pour reaffichage de la fiche en cours d'edition
exit ();
2013-06-10 16:05:41 +02:00
}
2019-01-27 10:49:34 +01:00
elseif ( $action == 'confirm_validate' && $confirm == 'yes' &&
2017-10-16 08:47:05 +02:00
(( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> creer ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> order_advance -> validate )))
2015-01-25 21:32:40 +01:00
)
{
2015-01-17 19:28:27 +01:00
$idwarehouse = GETPOST ( 'idwarehouse' );
2012-08-25 03:28:30 +02:00
2017-10-16 08:47:05 +02:00
$qualified_for_stock_change = 0 ;
2015-01-17 19:28:27 +01:00
if ( empty ( $conf -> global -> STOCK_SUPPORTS_SERVICES ))
{
2015-01-18 17:13:42 +01:00
$qualified_for_stock_change = $object -> hasProductsOrServices ( 2 );
2015-01-17 19:28:27 +01:00
}
else
{
2015-01-18 17:13:42 +01:00
$qualified_for_stock_change = $object -> hasProductsOrServices ( 1 );
2014-02-23 20:10:05 +01:00
}
2012-07-25 12:20:45 +02:00
// Check parameters
2015-01-17 19:28:27 +01:00
if ( ! empty ( $conf -> stock -> enabled ) && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER ) && $qualified_for_stock_change )
{
if ( ! $idwarehouse || $idwarehouse == - 1 )
{
$error ++ ;
2019-01-27 11:55:16 +01:00
setEventMessages ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( " Warehouse " )), null , 'errors' );
2015-01-17 19:28:27 +01:00
$action = '' ;
}
2012-07-25 12:20:45 +02:00
}
2014-02-26 15:49:29 +01:00
2015-01-17 19:28:27 +01:00
if ( ! $error ) {
$result = $object -> valid ( $user , $idwarehouse );
2015-01-18 17:13:42 +01:00
if ( $result >= 0 )
{
2012-08-25 15:21:34 +02:00
// Define output language
2015-01-17 19:28:27 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
2015-01-18 17:13:42 +01:00
{
$outputlangs = $langs ;
$newlang = '' ;
2019-01-27 11:55:16 +01:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) $newlang = GETPOST ( 'lang_id' , 'aZ09' );
2015-01-18 17:13:42 +01:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> thirdparty -> default_lang ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$model = $object -> modelpdf ;
$ret = $object -> fetch ( $id ); // Reload to get new records
2012-08-25 15:21:34 +02:00
2015-01-18 17:13:42 +01:00
$object -> generateDocument ( $model , $outputlangs , $hidedetails , $hidedesc , $hideref );
}
2012-07-25 12:20:45 +02:00
}
2015-01-31 00:08:45 +01:00
else
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
2012-07-25 12:20:45 +02:00
}
}
2015-01-17 19:28:27 +01:00
// Go back to draft status
2019-01-27 10:49:34 +01:00
elseif ( $action == 'confirm_modif' && $user -> rights -> commande -> creer ) {
2015-01-17 19:28:27 +01:00
$idwarehouse = GETPOST ( 'idwarehouse' );
2012-07-25 12:20:45 +02:00
2017-10-16 08:47:05 +02:00
$qualified_for_stock_change = 0 ;
2015-01-17 19:28:27 +01:00
if ( empty ( $conf -> global -> STOCK_SUPPORTS_SERVICES ))
2012-07-25 12:20:45 +02:00
{
2015-01-18 17:13:42 +01:00
$qualified_for_stock_change = $object -> hasProductsOrServices ( 2 );
2015-01-17 19:28:27 +01:00
}
else
{
2015-01-18 17:13:42 +01:00
$qualified_for_stock_change = $object -> hasProductsOrServices ( 1 );
2012-07-25 12:20:45 +02:00
}
2015-01-17 19:28:27 +01:00
// Check parameters
if ( ! empty ( $conf -> stock -> enabled ) && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER ) && $qualified_for_stock_change )
2014-10-27 19:37:30 +01:00
{
2015-01-17 19:28:27 +01:00
if ( ! $idwarehouse || $idwarehouse == - 1 )
2014-10-27 19:37:30 +01:00
{
2015-01-17 19:28:27 +01:00
$error ++ ;
2019-01-27 11:55:16 +01:00
setEventMessages ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( " Warehouse " )), null , 'errors' );
2015-01-17 19:28:27 +01:00
$action = '' ;
2014-09-16 20:35:31 +02:00
}
2012-07-25 12:20:45 +02:00
}
2008-08-12 20:20:18 +02:00
2015-01-17 19:28:27 +01:00
if ( ! $error ) {
$result = $object -> set_draft ( $user , $idwarehouse );
2015-01-18 17:13:42 +01:00
if ( $result >= 0 )
{
2015-01-17 19:28:27 +01:00
// Define output language
2015-01-18 17:13:42 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
$outputlangs = $langs ;
$newlang = '' ;
2019-01-27 11:55:16 +01:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) $newlang = GETPOST ( 'lang_id' , 'aZ09' );
2015-01-18 17:13:42 +01:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> thirdparty -> default_lang ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$model = $object -> modelpdf ;
$ret = $object -> fetch ( $id ); // Reload to get new records
2012-07-25 12:20:45 +02:00
2015-01-18 17:13:42 +01:00
$object -> generateDocument ( $model , $outputlangs , $hidedetails , $hidedesc , $hideref );
2015-01-17 19:28:27 +01:00
}
2012-07-25 12:20:45 +02:00
}
}
2014-06-23 11:47:07 +02:00
}
2012-07-25 12:20:45 +02:00
2019-01-27 10:49:34 +01:00
elseif ( $action == 'confirm_shipped' && $confirm == 'yes' && $user -> rights -> commande -> cloturer ) {
2015-01-17 19:28:27 +01:00
$result = $object -> cloture ( $user );
if ( $result < 0 ) {
2015-11-10 19:22:27 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-17 19:28:27 +01:00
}
2014-06-23 11:47:07 +02:00
}
2019-01-27 10:49:34 +01:00
elseif ( $action == 'confirm_cancel' && $confirm == 'yes' &&
2017-10-16 08:47:05 +02:00
(( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> creer ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> order_advance -> validate )))
2015-01-25 21:32:40 +01:00
)
{
2015-01-17 19:28:27 +01:00
$idwarehouse = GETPOST ( 'idwarehouse' );
2017-10-16 08:47:05 +02:00
$qualified_for_stock_change = 0 ;
2015-01-17 19:28:27 +01:00
if ( empty ( $conf -> global -> STOCK_SUPPORTS_SERVICES ))
2012-07-25 12:20:45 +02:00
{
2015-01-18 17:13:42 +01:00
$qualified_for_stock_change = $object -> hasProductsOrServices ( 2 );
2015-01-17 19:28:27 +01:00
}
else
{
2015-01-18 17:13:42 +01:00
$qualified_for_stock_change = $object -> hasProductsOrServices ( 1 );
2012-07-25 12:20:45 +02:00
}
2011-11-14 16:57:26 +01:00
2015-01-17 19:28:27 +01:00
// Check parameters
if ( ! empty ( $conf -> stock -> enabled ) && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER ) && $qualified_for_stock_change )
2014-10-27 19:37:30 +01:00
{
2015-01-17 19:28:27 +01:00
if ( ! $idwarehouse || $idwarehouse == - 1 )
2014-10-27 19:37:30 +01:00
{
2015-01-17 19:28:27 +01:00
$error ++ ;
2019-01-27 11:55:16 +01:00
setEventMessages ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( " Warehouse " )), null , 'errors' );
2015-01-17 19:28:27 +01:00
$action = '' ;
2012-07-25 12:20:45 +02:00
}
}
2011-11-14 16:57:26 +01:00
2015-01-17 19:28:27 +01:00
if ( ! $error ) {
$result = $object -> cancel ( $idwarehouse );
2014-06-23 11:47:07 +02:00
2015-01-17 19:28:27 +01:00
if ( $result < 0 ) {
2015-11-10 19:22:27 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-17 19:28:27 +01:00
}
2012-07-25 12:20:45 +02:00
}
2014-06-14 12:30:48 +02:00
}
2012-07-25 12:20:45 +02:00
2015-02-28 03:11:15 +01:00
if ( $action == 'update_extras' )
{
2018-02-23 16:11:00 +01:00
$object -> oldcopy = dol_clone ( $object );
2015-01-17 19:28:27 +01:00
// Fill array 'array_options' with data from update form
$extralabels = $extrafields -> fetch_name_optionals_label ( $object -> table_element );
2019-01-27 11:55:16 +01:00
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object , GETPOST ( 'attribute' , 'none' ));
2015-02-26 14:25:30 +01:00
if ( $ret < 0 ) $error ++ ;
2008-08-12 20:20:18 +02:00
2015-02-28 03:11:15 +01:00
if ( ! $error )
{
2018-04-10 12:03:01 +02:00
// Actions on extra fields
$result = $object -> insertExtraFields ( 'ORDER_MODIFY' );
if ( $result < 0 )
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-03-06 14:36:22 +01:00
$error ++ ;
2018-04-10 12:03:01 +02:00
}
2015-01-17 19:28:27 +01:00
}
2013-11-17 23:25:25 +01:00
2018-04-10 12:03:01 +02:00
if ( $error ) $action = 'edit_extras' ;
2015-01-17 19:28:27 +01:00
}
2013-03-08 12:00:16 +01:00
2015-12-13 12:10:43 +01:00
if ( $action == 'set_thirdparty' && $user -> rights -> commande -> creer )
{
$object -> fetch ( $id );
2016-09-12 20:16:39 +02:00
$object -> setValueFrom ( 'fk_soc' , $socid , '' , '' , 'date' , '' , $user , 'ORDER_MODIFY' );
2015-12-13 12:10:43 +01:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $id );
exit ();
}
2018-10-25 21:39:22 +02:00
// add lines from objectlinked
if ( $action == 'import_lines_from_object'
&& $user -> rights -> commande -> creer
&& $object -> statut == Commande :: STATUS_DRAFT
)
{
$fromElement = GETPOST ( 'fromelement' );
$fromElementid = GETPOST ( 'fromelementid' );
$importLines = GETPOST ( 'line_checkbox' );
2019-01-17 19:27:26 +01:00
2018-10-25 21:39:22 +02:00
if ( ! empty ( $importLines ) && is_array ( $importLines ) && ! empty ( $fromElement ) && ctype_alpha ( $fromElement ) && ! empty ( $fromElementid ))
{
if ( $fromElement == 'commande' )
{
dol_include_once ( '/' . $fromElement . '/class/' . $fromElement . '.class.php' );
$lineClassName = 'OrderLine' ;
}
elseif ( $fromElement == 'propal' )
{
dol_include_once ( '/comm/' . $fromElement . '/class/' . $fromElement . '.class.php' );
$lineClassName = 'PropaleLigne' ;
}
$nextRang = count ( $object -> lines ) + 1 ;
$importCount = 0 ;
$error = 0 ;
foreach ( $importLines as $lineId )
{
$lineId = intval ( $lineId );
$originLine = new $lineClassName ( $db );
2019-02-10 10:45:49 +01:00
if ( intval ( $fromElementid ) > 0 && $originLine -> fetch ( $lineId ) > 0 )
2018-10-25 21:39:22 +02:00
{
$originLine -> fetch_optionals ( $lineId );
$desc = $originLine -> desc ;
$pu_ht = $originLine -> subprice ;
$qty = $originLine -> qty ;
$txtva = $originLine -> tva_tx ;
$txlocaltax1 = $originLine -> localtax1_tx ;
$txlocaltax2 = $originLine -> localtax2_tx ;
$fk_product = $originLine -> fk_product ;
$remise_percent = $originLine -> remise_percent ;
$date_start = $originLine -> date_start ;
$date_end = $originLine -> date_end ;
$ventil = 0 ;
$info_bits = $originLine -> info_bits ;
$fk_remise_except = $originLine -> fk_remise_except ;
$price_base_type = 'HT' ;
$pu_ttc = 0 ;
$type = $originLine -> product_type ;
$rang = $nextRang ++ ;
$special_code = $originLine -> special_code ;
$origin = $originLine -> element ;
$origin_id = $originLine -> id ;
$fk_parent_line = 0 ;
$fk_fournprice = $originLine -> fk_fournprice ;
$pa_ht = $originLine -> pa_ht ;
$label = $originLine -> label ;
$array_options = $originLine -> array_options ;
$situation_percent = 100 ;
$fk_prev_id = '' ;
$fk_unit = $originLine -> fk_unit ;
$pu_ht_devise = $originLine -> multicurrency_subprice ;
2019-01-17 19:27:26 +01:00
2019-01-27 11:55:16 +01:00
$res = $object -> addline ( $desc , $pu_ht , $qty , $txtva , $txlocaltax1 , $txlocaltax2 , $fk_product , $remise_percent , $info_bits , $fk_remise_except , $price_base_type , $pu_ttc , $date_start , $date_end , $type , $rang , $special_code , $fk_parent_line , $fk_fournprice , $pa_ht , $label , $array_options , $fk_unit , $origin , $origin_id , $pu_ht_devise );
2019-01-17 19:27:26 +01:00
2018-10-25 21:39:22 +02:00
if ( $res > 0 ){
$importCount ++ ;
} else {
$error ++ ;
}
}
else {
$error ++ ;
}
}
2019-01-17 19:27:26 +01:00
2018-10-25 21:39:22 +02:00
if ( $error )
{
2019-01-27 11:55:16 +01:00
setEventMessages ( $langs -> trans ( 'ErrorsOnXLines' , $error ), null , 'errors' );
2018-10-25 21:39:22 +02:00
}
}
}
2019-01-17 19:27:26 +01:00
2017-09-17 15:38:50 +02:00
// Actions when printing a doc from card
include DOL_DOCUMENT_ROOT . '/core/actions_printing.inc.php' ;
2014-12-04 13:20:56 +01:00
2017-09-22 17:48:38 +02:00
// Actions to build doc
$upload_dir = $conf -> commande -> dir_output ;
$permissioncreate = $user -> rights -> commande -> creer ;
include DOL_DOCUMENT_ROOT . '/core/actions_builddoc.inc.php' ;
2015-01-18 17:13:42 +01:00
// Actions to send emails
$trigger_name = 'ORDER_SENTBYMAIL' ;
$paramname = 'id' ;
2017-09-17 15:38:50 +02:00
$autocopy = 'MAIN_MAIL_AUTOCOPY_ORDER_TO' ; // used to know the automatic BCC to add
2016-10-03 00:38:28 +02:00
$trackid = 'ord' . $object -> id ;
2015-01-18 17:13:42 +01:00
include DOL_DOCUMENT_ROOT . '/core/actions_sendmails.inc.php' ;
2012-03-17 16:05:58 +01:00
2008-08-12 20:20:18 +02:00
2015-11-04 22:38:45 +01:00
if ( ! $error && ! empty ( $conf -> global -> MAIN_DISABLE_CONTACTS_TAB ) && $user -> rights -> commande -> creer )
2015-09-16 22:04:03 +02:00
{
2015-11-04 22:38:45 +01:00
if ( $action == 'addcontact' )
2015-09-16 22:04:03 +02:00
{
2015-01-17 19:28:27 +01:00
if ( $object -> id > 0 ) {
$contactid = ( GETPOST ( 'userid' ) ? GETPOST ( 'userid' ) : GETPOST ( 'contactid' ));
$result = $object -> add_contact ( $contactid , GETPOST ( 'type' ), GETPOST ( 'source' ));
}
2008-11-16 02:54:33 +01:00
2015-01-17 19:28:27 +01:00
if ( $result >= 0 ) {
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
exit ();
2014-02-23 20:10:05 +01:00
} else {
2015-01-17 19:28:27 +01:00
if ( $object -> error == 'DB_ERROR_RECORD_ALREADY_EXISTS' ) {
$langs -> load ( " errors " );
2015-11-10 19:22:27 +01:00
setEventMessages ( $langs -> trans ( " ErrorThisContactIsAlreadyDefinedAsThisType " ), null , 'errors' );
2015-01-17 19:28:27 +01:00
} else {
2015-11-10 19:22:27 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-17 19:28:27 +01:00
}
2012-07-25 12:20:45 +02:00
}
}
2008-08-12 20:20:18 +02:00
2015-01-17 19:28:27 +01:00
// bascule du statut d'un contact
2019-01-27 10:49:34 +01:00
elseif ( $action == 'swapstatut' )
2015-09-16 22:04:03 +02:00
{
2015-01-17 19:28:27 +01:00
if ( $object -> id > 0 ) {
$result = $object -> swapContactStatus ( GETPOST ( 'ligne' ));
} else {
dol_print_error ( $db );
}
2012-07-25 12:20:45 +02:00
}
2008-11-16 02:54:33 +01:00
2015-01-17 19:28:27 +01:00
// Efface un contact
2019-01-27 10:49:34 +01:00
elseif ( $action == 'deletecontact' )
2015-09-16 22:04:03 +02:00
{
2015-01-17 19:28:27 +01:00
$result = $object -> delete_contact ( $lineid );
2008-08-12 20:20:18 +02:00
2015-01-17 19:28:27 +01:00
if ( $result >= 0 ) {
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
exit ();
} else {
dol_print_error ( $db );
}
2013-04-05 12:43:00 +02:00
}
}
}
2011-03-02 11:33:24 +01:00
2015-01-18 17:13:42 +01:00
2013-04-05 12:43:00 +02:00
/*
* View
2013-11-17 23:25:25 +01:00
*/
2012-07-25 12:20:45 +02:00
2014-02-23 20:10:05 +01:00
llxHeader ( '' , $langs -> trans ( 'Order' ), 'EN:Customers_Orders|FR:Commandes_Clients|ES:Pedidos de clientes' );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$form = new Form ( $db );
$formfile = new FormFile ( $db );
$formorder = new FormOrder ( $db );
2015-09-24 21:05:58 +02:00
$formmargin = new FormMargin ( $db );
2015-06-03 11:55:39 +02:00
if ( ! empty ( $conf -> projet -> enabled )) { $formproject = new FormProjets ( $db ); }
2012-07-28 09:57:04 +02:00
2017-05-19 16:32:23 +02:00
// Mode creation
2015-02-16 20:14:16 +01:00
if ( $action == 'create' && $user -> rights -> commande -> creer )
{
2019-01-27 11:55:16 +01:00
print load_fiche_titre ( $langs -> trans ( 'CreateOrder' ), '' , 'title_commercial.png' );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$soc = new Societe ( $db );
2014-02-23 20:10:05 +01:00
if ( $socid > 0 )
$res = $soc -> fetch ( $socid );
2012-07-25 12:20:45 +02:00
2015-11-07 13:21:03 +01:00
$remise_absolue = 0 ;
2016-03-11 18:08:27 +01:00
2016-01-23 00:38:17 +01:00
$currency_code = $conf -> currency ;
2016-08-10 09:47:25 +02:00
2014-02-23 20:10:05 +01:00
if ( ! empty ( $origin ) && ! empty ( $originid )) {
2013-04-05 12:43:00 +02:00
// Parse element/subelement (ex: project_task)
$element = $subelement = $origin ;
2014-02-23 20:10:05 +01:00
if ( preg_match ( '/^([^_]+)_([^_]+)/i' , $origin , $regs )) {
$element = $regs [ 1 ];
$subelement = $regs [ 2 ];
}
2012-07-25 12:20:45 +02:00
2014-02-23 20:10:05 +01:00
if ( $element == 'project' ) {
$projectid = $originid ;
2016-03-11 18:08:27 +01:00
2015-11-13 11:43:29 +01:00
if ( ! $cond_reglement_id ) {
$cond_reglement_id = $soc -> cond_reglement_id ;
}
if ( ! $mode_reglement_id ) {
$mode_reglement_id = $soc -> mode_reglement_id ;
}
if ( ! $remise_percent ) {
$remise_percent = $soc -> remise_percent ;
}
if ( ! $dateorder ) {
// Do not set 0 here (0 for a date is 1970)
2015-11-13 11:44:55 +01:00
$dateorder = ( empty ( $dateinvoice ) ? ( empty ( $conf -> global -> MAIN_AUTOFILL_DATE_ODER ) ? - 1 : '' ) : $dateorder );
}
2014-02-23 20:10:05 +01:00
} else {
2013-04-05 12:43:00 +02:00
// For compatibility
2014-02-23 20:10:05 +01:00
if ( $element == 'order' || $element == 'commande' ) {
2013-04-05 12:43:00 +02:00
$element = $subelement = 'commande' ;
}
2014-02-23 20:10:05 +01:00
if ( $element == 'propal' ) {
$element = 'comm/propal' ;
$subelement = 'propal' ;
2013-04-05 12:43:00 +02:00
}
if ( $element == 'contract' ) {
$element = $subelement = 'contrat' ;
}
2012-07-25 12:20:45 +02:00
2014-02-23 20:10:05 +01:00
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$classname = ucfirst ( $subelement );
$objectsrc = new $classname ( $db );
$objectsrc -> fetch ( $originid );
2014-02-23 20:10:05 +01:00
if ( empty ( $objectsrc -> lines ) && method_exists ( $objectsrc , 'fetch_lines' ))
$objectsrc -> fetch_lines ();
2013-04-05 12:43:00 +02:00
$objectsrc -> fetch_thirdparty ();
2013-11-17 23:25:25 +01:00
2014-02-23 20:10:05 +01:00
// Replicate extrafields
2013-08-30 14:38:04 +02:00
$objectsrc -> fetch_optionals ( $originid );
2014-02-23 20:10:05 +01:00
$object -> array_options = $objectsrc -> array_options ;
2012-07-25 12:20:45 +02:00
2014-02-23 20:10:05 +01:00
$projectid = ( ! empty ( $objectsrc -> fk_project ) ? $objectsrc -> fk_project : '' );
$ref_client = ( ! empty ( $objectsrc -> ref_client ) ? $objectsrc -> ref_client : '' );
2012-07-25 12:20:45 +02:00
2016-04-22 09:18:09 +02:00
$soc = $objectsrc -> thirdparty ;
2018-03-09 09:37:23 +01:00
$cond_reglement_id = ( ! empty ( $objectsrc -> cond_reglement_id ) ? $objectsrc -> cond_reglement_id : ( ! empty ( $soc -> cond_reglement_id ) ? $soc -> cond_reglement_id : 0 )); // TODO maybe add default value option
2013-04-05 12:43:00 +02:00
$mode_reglement_id = ( ! empty ( $objectsrc -> mode_reglement_id ) ? $objectsrc -> mode_reglement_id : ( ! empty ( $soc -> mode_reglement_id ) ? $soc -> mode_reglement_id : 0 ));
2017-10-16 08:47:05 +02:00
$fk_account = ( ! empty ( $objectsrc -> fk_account ) ? $objectsrc -> fk_account : ( ! empty ( $soc -> fk_account ) ? $soc -> fk_account : 0 ));
2013-04-05 12:43:00 +02:00
$availability_id = ( ! empty ( $objectsrc -> availability_id ) ? $objectsrc -> availability_id : ( ! empty ( $soc -> availability_id ) ? $soc -> availability_id : 0 ));
2017-10-16 08:47:05 +02:00
$shipping_method_id = ( ! empty ( $objectsrc -> shipping_method_id ) ? $objectsrc -> shipping_method_id : ( ! empty ( $soc -> shipping_method_id ) ? $soc -> shipping_method_id : 0 ));
$warehouse_id = ( ! empty ( $objectsrc -> warehouse_id ) ? $objectsrc -> warehouse_id : ( ! empty ( $soc -> warehouse_id ) ? $soc -> warehouse_id : 0 ));
2013-04-05 12:43:00 +02:00
$demand_reason_id = ( ! empty ( $objectsrc -> demand_reason_id ) ? $objectsrc -> demand_reason_id : ( ! empty ( $soc -> demand_reason_id ) ? $soc -> demand_reason_id : 0 ));
$remise_percent = ( ! empty ( $objectsrc -> remise_percent ) ? $objectsrc -> remise_percent : ( ! empty ( $soc -> remise_percent ) ? $soc -> remise_percent : 0 ));
$remise_absolue = ( ! empty ( $objectsrc -> remise_absolue ) ? $objectsrc -> remise_absolue : ( ! empty ( $soc -> remise_absolue ) ? $soc -> remise_absolue : 0 ));
2015-04-01 10:54:24 +02:00
$dateorder = empty ( $conf -> global -> MAIN_AUTOFILL_DATE_ORDER ) ? - 1 : '' ;
2012-07-25 12:20:45 +02:00
2014-02-23 20:10:05 +01:00
$datedelivery = ( ! empty ( $objectsrc -> date_livraison ) ? $objectsrc -> date_livraison : '' );
2012-07-25 12:20:45 +02:00
2016-01-23 00:38:17 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
if ( ! empty ( $objectsrc -> multicurrency_code )) $currency_code = $objectsrc -> multicurrency_code ;
2016-08-10 09:47:25 +02:00
if ( ! empty ( $conf -> global -> MULTICURRENCY_USE_ORIGIN_TX ) && ! empty ( $objectsrc -> multicurrency_tx )) $currency_tx = $objectsrc -> multicurrency_tx ;
2016-01-23 00:38:17 +01:00
}
2015-09-22 13:26:46 +02:00
$note_private = $object -> getDefaultCreateValueFor ( 'note_private' , ( ! empty ( $objectsrc -> note_private ) ? $objectsrc -> note_private : null ));
$note_public = $object -> getDefaultCreateValueFor ( 'note_public' , ( ! empty ( $objectsrc -> note_public ) ? $objectsrc -> note_public : null ));
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Object source contacts list
2014-02-23 20:10:05 +01:00
$srccontactslist = $objectsrc -> liste_contact ( - 1 , 'external' , 1 );
}
2013-04-05 12:43:00 +02:00
}
else
{
$cond_reglement_id = $soc -> cond_reglement_id ;
$mode_reglement_id = $soc -> mode_reglement_id ;
2017-10-16 08:47:05 +02:00
$fk_account = $soc -> fk_account ;
2013-04-05 12:43:00 +02:00
$availability_id = $soc -> availability_id ;
2017-10-16 08:47:05 +02:00
$shipping_method_id = $soc -> shipping_method_id ;
$warehouse_id = $soc -> warehouse_id ;
2013-04-05 12:43:00 +02:00
$demand_reason_id = $soc -> demand_reason_id ;
$remise_percent = $soc -> remise_percent ;
$remise_absolue = 0 ;
2015-04-01 10:54:24 +02:00
$dateorder = empty ( $conf -> global -> MAIN_AUTOFILL_DATE_ORDER ) ? - 1 : '' ;
2016-08-10 09:47:25 +02:00
2016-01-23 00:38:17 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled ) && ! empty ( $soc -> multicurrency_code )) $currency_code = $soc -> multicurrency_code ;
2015-09-22 13:26:46 +02:00
$note_private = $object -> getDefaultCreateValueFor ( 'note_private' );
$note_public = $object -> getDefaultCreateValueFor ( 'note_public' );
2013-04-05 12:43:00 +02:00
}
2013-01-26 10:35:30 +01:00
2014-05-12 12:10:52 +02:00
print '<form name="crea_commande" action="' . $_SERVER [ " PHP_SELF " ] . '" method="POST">' ;
2014-02-23 20:10:05 +01:00
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
2013-04-05 12:43:00 +02:00
print '<input type="hidden" name="action" value="add">' ;
2014-02-23 20:10:05 +01:00
print '<input type="hidden" name="socid" value="' . $soc -> id . '">' . " \n " ;
print '<input type="hidden" name="remise_percent" value="' . $soc -> remise_percent . '">' ;
print '<input type="hidden" name="origin" value="' . $origin . '">' ;
print '<input type="hidden" name="originid" value="' . $originid . '">' ;
2016-01-23 00:38:17 +01:00
if ( ! empty ( $currency_tx )) print '<input type="hidden" name="originmulticurrency_tx" value="' . $currency_tx . '">' ;
2012-07-25 12:20:45 +02:00
2015-05-13 17:53:25 +02:00
dol_fiche_head ( '' );
2015-05-19 00:01:30 +02:00
2013-04-05 12:43:00 +02:00
print '<table class="border" width="100%">' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Reference
2017-06-07 16:44:04 +02:00
print '<tr><td class="titlefieldcreate fieldrequired">' . $langs -> trans ( 'Ref' ) . '</td><td>' . $langs -> trans ( " Draft " ) . '</td></tr>' ;
2013-04-05 12:43:00 +02:00
// Reference client
2017-06-07 16:44:04 +02:00
print '<tr><td>' . $langs -> trans ( 'RefCustomer' ) . '</td><td>' ;
2015-11-06 16:14:00 +01:00
if ( ! empty ( $conf -> global -> MAIN_USE_PROPAL_REFCLIENT_FOR_ORDER ) && ! empty ( $origin ) && ! empty ( $originid ))
2014-05-14 09:46:49 +02:00
print '<input type="text" name="ref_client" value="' . $ref_client . '"></td>' ;
else
2015-11-06 16:14:00 +01:00
print '<input type="text" name="ref_client" value="' . GETPOST ( 'ref_client' ) . '"></td>' ;
2013-04-05 12:43:00 +02:00
print '</tr>' ;
2017-08-28 18:37:16 +02:00
// Thirdparty
2013-04-05 12:43:00 +02:00
print '<tr>' ;
2014-02-23 20:10:05 +01:00
print '<td class="fieldrequired">' . $langs -> trans ( 'Customer' ) . '</td>' ;
if ( $socid > 0 ) {
2017-06-07 16:44:04 +02:00
print '<td>' ;
2013-04-05 12:43:00 +02:00
print $soc -> getNomUrl ( 1 );
2014-02-23 20:10:05 +01:00
print '<input type="hidden" name="socid" value="' . $soc -> id . '">' ;
2013-04-05 12:43:00 +02:00
print '</td>' ;
2014-02-23 20:10:05 +01:00
} else {
2017-06-07 16:44:04 +02:00
print '<td>' ;
2017-09-15 11:02:34 +02:00
print $form -> select_company ( '' , 'socid' , '(s.client = 1 OR s.client = 3)' , 'SelectThirdParty' , 0 , 0 , null , 0 , 'minwidth300' );
2015-11-06 16:14:00 +01:00
// reload page to retrieve customer informations
2015-11-11 15:32:42 +01:00
if ( ! empty ( $conf -> global -> RELOAD_PAGE_ON_CUSTOMER_CHANGE ))
{
print ' < script type = " text/javascript " >
2016-03-17 15:56:03 +01:00
$ ( document ) . ready ( function () {
2015-11-11 15:32:42 +01:00
$ ( " #socid " ) . change ( function () {
var socid = $ ( this ) . val ();
// reload page
window . location . href = " '. $_SERVER["PHP_SELF"] .'?action=create&socid= " + socid + " &ref_client= " + $ ( " input[name=ref_client] " ) . val ();
});
2015-11-06 16:14:00 +01:00
});
2015-11-11 15:32:42 +01:00
</ script > ' ;
}
2019-02-26 19:37:32 +01:00
print ' <a href="' . DOL_URL_ROOT . '/societe/card.php?action=create&client=3&fournisseur=0&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?action=create' ) . '">' . $langs -> trans ( " AddThirdParty " ) . ' <span class="fa fa-plus-circle valignmiddle"></span></a>' ;
2013-04-05 12:43:00 +02:00
print '</td>' ;
}
2014-02-23 20:10:05 +01:00
print '</tr>' . " \n " ;
2012-07-25 12:20:45 +02:00
2017-05-19 16:32:23 +02:00
// Contact of order
2014-02-23 20:10:05 +01:00
if ( $socid > 0 ) {
2017-06-07 16:44:04 +02:00
print " <tr><td> " . $langs -> trans ( " DefaultContact " ) . '</td><td>' ;
2014-09-18 18:46:00 +02:00
$form -> select_contacts ( $soc -> id , $setcontact , 'contactid' , 1 , $srccontactslist );
2012-07-25 12:20:45 +02:00
print '</td></tr>' ;
2013-04-05 12:43:00 +02:00
// Ligne info remises tiers
2017-06-07 16:44:04 +02:00
print '<tr><td>' . $langs -> trans ( 'Discounts' ) . '</td><td>' ;
2018-03-02 16:48:25 +01:00
2014-02-23 20:10:05 +01:00
$absolute_discount = $soc -> getAvailableDiscounts ();
2018-03-02 16:48:25 +01:00
$thirdparty = $soc ;
$discount_type = 0 ;
$backtopage = urlencode ( $_SERVER [ " PHP_SELF " ] . '?socid=' . $thirdparty -> id . '&action=' . $action . '&origin=' . GETPOST ( 'origin' ) . '&originid=' . GETPOST ( 'originid' ));
include DOL_DOCUMENT_ROOT . '/core/tpl/object_discounts.tpl.php' ;
2013-04-05 12:43:00 +02:00
print '</td></tr>' ;
}
// Date
2017-06-07 16:44:04 +02:00
print '<tr><td class="fieldrequired">' . $langs -> trans ( 'Date' ) . '</td><td>' ;
2018-09-09 09:36:12 +02:00
print $form -> selectDate ( '' , 're' , '' , '' , '' , " crea_commande " , 1 , 1 ); // Always autofill date with current date
2013-04-05 12:43:00 +02:00
print '</td></tr>' ;
2016-02-25 02:05:28 +01:00
// Delivery date planed
2017-06-07 16:44:04 +02:00
print " <tr><td> " . $langs -> trans ( " DateDeliveryPlanned " ) . '</td><td>' ;
2013-04-05 12:43:00 +02:00
if ( empty ( $datedelivery ))
{
if ( ! empty ( $conf -> global -> DATE_LIVRAISON_WEEK_DELAY )) $datedelivery = time () + (( 7 * $conf -> global -> DATE_LIVRAISON_WEEK_DELAY ) * 24 * 60 * 60 );
2015-04-01 10:54:24 +02:00
else $datedelivery = empty ( $conf -> global -> MAIN_AUTOFILL_DATE_DELIVERY ) ? - 1 : '' ;
2013-04-05 12:43:00 +02:00
}
2018-09-09 09:36:12 +02:00
print $form -> selectDate ( $datedelivery , 'liv_' , '' , '' , '' , " crea_commande " , 1 , 1 );
2013-04-05 12:43:00 +02:00
print " </td></tr> " ;
// Conditions de reglement
2017-06-07 16:44:04 +02:00
print '<tr><td class="nowrap">' . $langs -> trans ( 'PaymentConditionsShort' ) . '</td><td>' ;
2014-02-23 20:10:05 +01:00
$form -> select_conditions_paiements ( $cond_reglement_id , 'cond_reglement_id' , - 1 , 1 );
2013-04-05 12:43:00 +02:00
print '</td></tr>' ;
// Mode de reglement
2017-06-07 16:44:04 +02:00
print '<tr><td>' . $langs -> trans ( 'PaymentMode' ) . '</td><td>' ;
2014-02-23 20:10:05 +01:00
$form -> select_types_paiements ( $mode_reglement_id , 'mode_reglement_id' );
2013-04-05 12:43:00 +02:00
print '</td></tr>' ;
2017-10-16 08:47:05 +02:00
// Bank Account
2014-11-28 00:34:03 +01:00
if ( ! empty ( $conf -> global -> BANK_ASK_PAYMENT_BANK_DURING_ORDER ) && ! empty ( $conf -> banque -> enabled ))
{
2017-06-07 16:44:04 +02:00
print '<tr><td>' . $langs -> trans ( 'BankAccount' ) . '</td><td>' ;
2017-10-16 08:47:05 +02:00
$form -> select_comptes ( $fk_account , 'fk_account' , 0 , '' , 1 );
print '</td></tr>' ;
2014-11-28 00:34:03 +01:00
}
2015-01-06 00:33:28 +01:00
2013-04-05 12:43:00 +02:00
// Delivery delay
2017-06-07 16:44:04 +02:00
print '<tr class="fielddeliverydelay"><td>' . $langs -> trans ( 'AvailabilityPeriod' ) . '</td><td>' ;
2014-04-02 14:53:42 +02:00
$form -> selectAvailabilityDelay ( $availability_id , 'availability_id' , '' , 1 );
2013-04-05 12:43:00 +02:00
print '</td></tr>' ;
2017-10-16 08:47:05 +02:00
// Shipping Method
if ( ! empty ( $conf -> expedition -> enabled )) {
print '<tr><td>' . $langs -> trans ( 'SendingMethod' ) . '</td><td>' ;
print $form -> selectShippingMethod ( $shipping_method_id , 'shipping_method_id' , '' , 1 );
print '</td></tr>' ;
}
// Warehouse
if ( ! empty ( $conf -> expedition -> enabled ) && ! empty ( $conf -> global -> WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER )) {
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
$formproduct = new FormProduct ( $db );
print '<tr><td>' . $langs -> trans ( 'Warehouse' ) . '</td><td>' ;
print $formproduct -> selectWarehouses ( $warehouse_id , 'warehouse_id' , '' , 1 );
print '</td></tr>' ;
}
2015-11-15 11:42:47 +01:00
2013-04-05 12:43:00 +02:00
// What trigger creation
2017-12-20 21:14:22 +01:00
print '<tr><td>' . $langs -> trans ( 'Channel' ) . '</td><td>' ;
2014-04-02 14:53:42 +02:00
$form -> selectInputReason ( $demand_reason_id , 'demand_reason_id' , '' , 1 );
2013-04-05 12:43:00 +02:00
print '</td></tr>' ;
2015-10-03 18:48:51 +02:00
// TODO How record was recorded OrderMode (llx_c_input_method)
2015-11-04 22:38:45 +01:00
2013-04-05 12:43:00 +02:00
// Project
2017-12-12 10:37:51 +01:00
if ( ! empty ( $conf -> projet -> enabled ))
2015-01-30 16:33:39 +01:00
{
2015-06-03 11:55:39 +02:00
$langs -> load ( " projects " );
print '<tr>' ;
2017-06-07 16:44:04 +02:00
print '<td>' . $langs -> trans ( " Project " ) . '</td><td>' ;
2017-12-20 21:14:22 +01:00
$numprojet = $formproject -> select_projects (( $soc -> id > 0 ? $soc -> id : - 1 ), $projectid , 'projectid' , 0 , 0 , 1 , 0 , 0 , 0 , 0 , '' , 0 , 0 );
2019-02-26 19:37:32 +01:00
print ' <a href="' . DOL_URL_ROOT . '/projet/card.php?socid=' . $soc -> id . '&action=create&status=1&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?action=create&socid=' . $soc -> id ) . '">' . $langs -> trans ( " AddProject " ) . ' <span class="fa fa-plus-circle valignmiddle"></span></a>' ;
2015-06-03 11:55:39 +02:00
print '</td>' ;
print '</tr>' ;
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2015-02-10 12:22:07 +01:00
// Incoterms
if ( ! empty ( $conf -> incoterm -> enabled ))
{
print '<tr>' ;
2016-03-25 15:24:57 +01:00
print '<td><label for="incoterm_id">' . $form -> textwithpicto ( $langs -> trans ( " IncotermLabel " ), $objectsrc -> libelle_incoterms , 1 ) . '</label></td>' ;
2017-10-16 08:47:05 +02:00
print '<td class="maxwidthonsmartphone">' ;
$incoterm_id = GETPOST ( 'incoterm_id' );
$incoterm_location = GETPOST ( 'location_incoterms' );
if ( empty ( $incoterm_id ))
{
$incoterm_id = ( ! empty ( $objectsrc -> fk_incoterms ) ? $objectsrc -> fk_incoterms : $soc -> fk_incoterms );
$incoterm_location = ( ! empty ( $objectsrc -> location_incoterms ) ? $objectsrc -> location_incoterms : $soc -> location_incoterms );
}
print $form -> select_incoterms ( $incoterm_id , $incoterm_location );
2015-02-10 12:22:07 +01:00
print '</td></tr>' ;
}
2013-04-05 12:43:00 +02:00
// Other attributes
2017-06-07 16:44:04 +02:00
$parameters = array ( 'objectsrc' => $objectsrc , 'socid' => $socid );
2018-10-27 13:01:01 +02:00
// Note that $action and $object may be modified by hook
$reshook = $hookmanager -> executeHooks ( 'formObjectOptions' , $parameters , $object , $action );
2017-10-16 08:47:05 +02:00
print $hookmanager -> resPrint ;
2018-04-13 13:28:48 +02:00
if ( empty ( $reshook )) {
2014-02-23 20:10:05 +01:00
print $object -> showOptionals ( $extrafields , 'edit' );
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Template to use by default
2016-12-06 15:03:39 +01:00
print '<tr><td>' . $langs -> trans ( 'DefaultModel' ) . '</td>' ;
2017-06-07 16:44:04 +02:00
print '<td>' ;
2014-02-23 20:10:05 +01:00
include_once DOL_DOCUMENT_ROOT . '/core/modules/commande/modules_commande.php' ;
$liste = ModelePDFCommandes :: liste_modeles ( $db );
2016-03-25 15:34:37 +01:00
print $form -> selectarray ( 'model' , $liste , $conf -> global -> COMMANDE_ADDON_PDF );
2013-04-05 12:43:00 +02:00
print " </td></tr> " ;
2016-01-23 00:38:17 +01:00
// Multicurrency
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
print '<tr>' ;
2018-10-27 11:06:45 +02:00
print '<td>' . $form -> editfieldkey ( " Currency " , 'multicurrency_code' , '' , $object , 0 ) . '</td>' ;
2017-10-16 08:47:05 +02:00
print '<td class="maxwidthonsmartphone">' ;
print $form -> selectMultiCurrency ( $currency_code , 'multicurrency_code' );
2016-01-23 00:38:17 +01:00
print '</td></tr>' ;
}
2015-06-03 11:55:39 +02:00
// Note public
2013-04-05 12:43:00 +02:00
print '<tr>' ;
2017-05-18 03:12:29 +02:00
print '<td class="tdtop">' . $langs -> trans ( 'NotePublic' ) . '</td>' ;
2017-06-07 16:44:04 +02:00
print '<td>' ;
2012-07-25 12:20:45 +02:00
2015-06-03 11:55:39 +02:00
$doleditor = new DolEditor ( 'note_public' , $note_public , '' , 80 , 'dolibarr_notes' , 'In' , 0 , false , true , ROWS_3 , '90%' );
2013-04-05 12:43:00 +02:00
print $doleditor -> Create ( 1 );
2014-02-23 20:10:05 +01:00
// print '<textarea name="note_public" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_public.'</textarea>';
2013-04-05 12:43:00 +02:00
print '</td></tr>' ;
2012-07-25 12:20:45 +02:00
2015-06-03 11:55:39 +02:00
// Note private
2014-02-27 10:37:23 +01:00
if ( empty ( $user -> societe_id )) {
2012-07-25 12:20:45 +02:00
print '<tr>' ;
2017-05-18 03:12:29 +02:00
print '<td class="tdtop">' . $langs -> trans ( 'NotePrivate' ) . '</td>' ;
2017-06-07 16:44:04 +02:00
print '<td>' ;
2012-07-28 09:57:04 +02:00
2015-06-03 11:55:39 +02:00
$doleditor = new DolEditor ( 'note_private' , $note_private , '' , 80 , 'dolibarr_notes' , 'In' , 0 , false , true , ROWS_3 , '90%' );
2012-07-25 12:20:45 +02:00
print $doleditor -> Create ( 1 );
2014-02-23 20:10:05 +01:00
// print '<textarea name="note" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_private.'</textarea>';
2012-07-25 12:20:45 +02:00
print '</td></tr>' ;
2013-04-05 12:43:00 +02:00
}
2015-06-03 11:55:39 +02:00
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc ))
{
2013-04-05 12:43:00 +02:00
// TODO for compatibility
2014-02-23 20:10:05 +01:00
if ( $origin == 'contrat' ) {
2013-04-05 12:43:00 +02:00
// Calcul contrat->price (HT), contrat->total (TTC), contrat->tva
2014-02-23 20:10:05 +01:00
$objectsrc -> remise_absolue = $remise_absolue ;
$objectsrc -> remise_percent = $remise_percent ;
2013-04-05 12:43:00 +02:00
$objectsrc -> update_price ( 1 );
}
2012-07-25 12:20:45 +02:00
2014-02-23 20:10:05 +01:00
print " \n <!-- " . $classname . " info --> " ;
print " \n " ;
print '<input type="hidden" name="amount" value="' . $objectsrc -> total_ht . '">' . " \n " ;
print '<input type="hidden" name="total" value="' . $objectsrc -> total_ttc . '">' . " \n " ;
print '<input type="hidden" name="tva" value="' . $objectsrc -> total_tva . '">' . " \n " ;
print '<input type="hidden" name="origin" value="' . $objectsrc -> element . '">' ;
print '<input type="hidden" name="originid" value="' . $objectsrc -> id . '">' ;
2014-02-26 15:49:29 +01:00
2015-04-04 17:28:24 +02:00
switch ( $classname ) {
case 'Propal' :
$newclassname = 'CommercialProposal' ;
break ;
case 'Commande' :
$newclassname = 'Order' ;
break ;
case 'Expedition' :
$newclassname = 'Sending' ;
break ;
case 'Contrat' :
$newclassname = 'Contract' ;
break ;
default :
$newclassname = $classname ;
}
2016-03-11 18:08:27 +01:00
2017-06-07 16:44:04 +02:00
print '<tr><td>' . $langs -> trans ( $newclassname ) . '</td><td>' . $objectsrc -> getNomUrl ( 1 ) . '</td></tr>' ;
2017-10-17 10:44:18 +02:00
// Amount
2019-03-13 14:10:36 +01:00
print '<tr><td>' . $langs -> trans ( 'AmountHT' ) . '</td><td>' . price ( $objectsrc -> total_ht ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'AmountVAT' ) . '</td><td>' . price ( $objectsrc -> total_tva ) . " </td></tr> " ;
2014-07-04 16:48:42 +02:00
if ( $mysoc -> localtax1_assuj == " 1 " || $objectsrc -> total_localtax1 != 0 ) // Localtax1 RE
2014-02-23 20:10:05 +01:00
{
2017-06-07 16:44:04 +02:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ) . '</td><td>' . price ( $objectsrc -> total_localtax1 ) . " </td></tr> " ;
2014-02-23 20:10:05 +01:00
}
2012-07-28 09:57:04 +02:00
2014-07-04 16:48:42 +02:00
if ( $mysoc -> localtax2_assuj == " 1 " || $objectsrc -> total_localtax2 != 0 ) // Localtax2 IRPF
2014-02-23 20:10:05 +01:00
{
2017-06-07 16:44:04 +02:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ) . '</td><td>' . price ( $objectsrc -> total_localtax2 ) . " </td></tr> " ;
2014-02-23 20:10:05 +01:00
}
2012-07-25 12:20:45 +02:00
2019-03-13 14:10:36 +01:00
print '<tr><td>' . $langs -> trans ( 'AmountTTC' ) . '</td><td>' . price ( $objectsrc -> total_ttc ) . " </td></tr> " ;
2016-08-10 09:47:25 +02:00
2016-01-23 00:38:17 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
2019-03-13 14:10:36 +01:00
print '<tr><td>' . $langs -> trans ( 'MulticurrencyAmountHT' ) . '</td><td>' . price ( $objectsrc -> multicurrency_total_ht ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'MulticurrencyAmountVAT' ) . '</td><td>' . price ( $objectsrc -> multicurrency_total_tva ) . " </td></tr> " ;
print '<tr><td>' . $langs -> trans ( 'MulticurrencyAmountTTC' ) . '</td><td>' . price ( $objectsrc -> multicurrency_total_ttc ) . " </td></tr> " ;
2016-01-23 00:38:17 +01:00
}
2015-06-03 11:55:39 +02:00
}
2011-03-02 11:33:24 +01:00
2013-04-05 12:43:00 +02:00
print '</table>' ;
2012-07-25 12:20:45 +02:00
2015-05-13 17:53:25 +02:00
dol_fiche_end ();
2015-05-19 00:01:30 +02:00
2013-04-05 12:43:00 +02:00
// Button "Create Draft"
2016-04-01 16:15:07 +02:00
print '<div class="center">' ;
print '<input type="submit" class="button" name="bouton" value="' . $langs -> trans ( 'CreateDraft' ) . '">' ;
print ' ' ;
2017-10-03 14:57:38 +02:00
print '<input type="button" class="button" name="cancel" value="' . $langs -> trans ( " Cancel " ) . '" onclick="javascript:history.go(-1)">' ;
2016-04-01 16:15:07 +02:00
print '</div>' ;
2016-08-10 09:47:25 +02:00
2013-04-05 12:43:00 +02:00
print '</form>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Show origin lines
2014-02-23 20:10:05 +01:00
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc )) {
$title = $langs -> trans ( 'ProductsAndServices' );
2015-09-24 18:27:13 +02:00
print load_fiche_titre ( $title );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
print '<table class="noborder" width="100%">' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$objectsrc -> printOriginLinesList ();
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
print '</table>' ;
}
2014-02-23 20:10:05 +01:00
} else {
2017-05-19 16:32:23 +02:00
// Mode view
2014-02-23 20:10:05 +01:00
$now = dol_now ();
2012-07-25 12:20:45 +02:00
2014-02-23 20:10:05 +01:00
if ( $object -> id > 0 ) {
$product_static = new Product ( $db );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$soc = new Societe ( $db );
$soc -> fetch ( $object -> socid );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$author = new User ( $db );
$author -> fetch ( $object -> user_author_id );
2012-07-25 12:20:45 +02:00
2018-02-21 14:48:25 +01:00
$res = $object -> fetch_optionals ();
2014-09-26 13:23:54 +02:00
2013-04-05 12:43:00 +02:00
$head = commande_prepare_head ( $object );
2017-03-27 00:48:50 +02:00
dol_fiche_head ( $head , 'order' , $langs -> trans ( " CustomerOrder " ), - 1 , 'order' );
2012-07-25 12:20:45 +02:00
2014-02-23 20:10:05 +01:00
$formconfirm = '' ;
2012-07-25 12:20:45 +02:00
2016-10-05 21:49:04 +02:00
// Confirmation to delete
2014-02-23 20:10:05 +01:00
if ( $action == 'delete' ) {
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'DeleteOrder' ), $langs -> trans ( 'ConfirmDeleteOrder' ), 'confirm_delete' , '' , 0 , 1 );
2013-04-05 12:43:00 +02:00
}
2016-10-05 21:49:04 +02:00
// Confirmation of validation
2015-02-17 19:49:17 +01:00
if ( $action == 'validate' )
{
2013-04-05 12:43:00 +02:00
// on verifie si l'objet est en numerotation provisoire
$ref = substr ( $object -> ref , 1 , 4 );
2014-02-23 20:10:05 +01:00
if ( $ref == 'PROV' ) {
2013-04-05 12:43:00 +02:00
$numref = $object -> getNextNumRef ( $soc );
2014-02-23 20:10:05 +01:00
} else {
2013-04-05 12:43:00 +02:00
$numref = $object -> ref ;
2012-07-25 12:20:45 +02:00
}
2014-02-23 20:10:05 +01:00
$text = $langs -> trans ( 'ConfirmValidateOrder' , $numref );
2015-02-17 19:49:17 +01:00
if ( ! empty ( $conf -> notification -> enabled ))
{
2014-02-23 20:10:05 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/class/notify.class.php' ;
$notify = new Notify ( $db );
$text .= '<br>' ;
2015-03-18 21:44:57 +01:00
$text .= $notify -> confirmMessage ( 'ORDER_VALIDATE' , $object -> socid , $object );
2013-04-05 12:43:00 +02:00
}
2014-06-23 11:47:07 +02:00
2014-06-25 20:22:25 +02:00
$qualified_for_stock_change = 0 ;
2014-06-23 11:47:07 +02:00
if ( empty ( $conf -> global -> STOCK_SUPPORTS_SERVICES ))
{
$qualified_for_stock_change = $object -> hasProductsOrServices ( 2 );
}
else
{
$qualified_for_stock_change = $object -> hasProductsOrServices ( 1 );
}
2013-04-05 12:43:00 +02:00
$formquestion = array ();
2014-06-23 11:47:07 +02:00
if ( ! empty ( $conf -> stock -> enabled ) && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER ) && $qualified_for_stock_change )
2013-04-05 12:43:00 +02:00
{
$langs -> load ( " stocks " );
2014-02-23 20:10:05 +01:00
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
$formproduct = new FormProduct ( $db );
2018-06-28 12:05:02 +02:00
$forcecombo = 0 ;
if ( $conf -> browser -> name == 'ie' ) $forcecombo = 1 ; // There is a bug in IE10 that make combo inside popup crazy
2014-02-23 20:10:05 +01:00
$formquestion = array (
2018-06-28 12:05:02 +02:00
// 'text' => $langs->trans("ConfirmClone"),
// array('type' => 'checkbox', 'name' => 'clone_content', 'label' => $langs->trans("CloneMainAttributes"), 'value' => 1),
// array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans("PuttingPricesUpToDate"), 'value' => 1),
2019-01-27 11:55:16 +01:00
array ( 'type' => 'other' , 'name' => 'idwarehouse' , 'label' => $langs -> trans ( " SelectWarehouseForStockDecrease " ), 'value' => $formproduct -> selectWarehouses ( GETPOST ( 'idwarehouse' , 'int' ) ? GETPOST ( 'idwarehouse' , 'int' ) : 'ifone' , 'idwarehouse' , '' , 1 , 0 , 0 , '' , 0 , $forcecombo ))
2018-06-28 12:05:02 +02:00
);
2012-07-25 12:20:45 +02:00
}
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ValidateOrder' ), $text , 'confirm_validate' , $formquestion , 0 , 1 , 220 );
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Confirm back to draft status
if ( $action == 'modif' )
{
2014-06-23 11:47:07 +02:00
$qualified_for_stock_change = 0 ;
if ( empty ( $conf -> global -> STOCK_SUPPORTS_SERVICES ))
{
$qualified_for_stock_change = $object -> hasProductsOrServices ( 2 );
}
else
{
$qualified_for_stock_change = $object -> hasProductsOrServices ( 1 );
}
2019-01-27 11:55:16 +01:00
$text = $langs -> trans ( 'ConfirmUnvalidateOrder' , $object -> ref );
2013-04-05 12:43:00 +02:00
$formquestion = array ();
2014-06-23 11:47:07 +02:00
if ( ! empty ( $conf -> stock -> enabled ) && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER ) && $qualified_for_stock_change )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
$langs -> load ( " stocks " );
2014-02-23 20:10:05 +01:00
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
$formproduct = new FormProduct ( $db );
2018-06-28 12:05:02 +02:00
$forcecombo = 0 ;
if ( $conf -> browser -> name == 'ie' ) $forcecombo = 1 ; // There is a bug in IE10 that make combo inside popup crazy
2014-02-23 20:10:05 +01:00
$formquestion = array (
2018-06-28 12:05:02 +02:00
// 'text' => $langs->trans("ConfirmClone"),
// array('type' => 'checkbox', 'name' => 'clone_content', 'label' => $langs->trans("CloneMainAttributes"), 'value' => 1),
// array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans("PuttingPricesUpToDate"), 'value' => 1),
array ( 'type' => 'other' , 'name' => 'idwarehouse' , 'label' => $langs -> trans ( " SelectWarehouseForStockIncrease " ), 'value' => $formproduct -> selectWarehouses ( GETPOST ( 'idwarehouse' ) ? GETPOST ( 'idwarehouse' ) : 'ifone' , 'idwarehouse' , '' , 1 , 0 , 0 , '' , 0 , $forcecombo ))
);
2012-07-25 12:20:45 +02:00
}
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'UnvalidateOrder' ), $text , 'confirm_modif' , $formquestion , " yes " , 1 , 220 );
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
* Confirmation de la cloture
*/
2014-02-23 20:10:05 +01:00
if ( $action == 'shipped' ) {
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'CloseOrder' ), $langs -> trans ( 'ConfirmCloseOrder' ), 'confirm_shipped' , '' , 0 , 1 );
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
* Confirmation de l ' annulation
2014-06-23 11:47:07 +02:00
*/
2013-04-05 12:43:00 +02:00
if ( $action == 'cancel' )
{
2014-06-23 11:47:07 +02:00
$qualified_for_stock_change = 0 ;
if ( empty ( $conf -> global -> STOCK_SUPPORTS_SERVICES ))
{
$qualified_for_stock_change = $object -> hasProductsOrServices ( 2 );
}
else
{
$qualified_for_stock_change = $object -> hasProductsOrServices ( 1 );
}
2019-01-27 11:55:16 +01:00
$text = $langs -> trans ( 'ConfirmCancelOrder' , $object -> ref );
2013-04-05 12:43:00 +02:00
$formquestion = array ();
2014-06-23 11:47:07 +02:00
if ( ! empty ( $conf -> stock -> enabled ) && ! empty ( $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER ) && $qualified_for_stock_change )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
$langs -> load ( " stocks " );
2014-02-23 20:10:05 +01:00
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
$formproduct = new FormProduct ( $db );
2018-06-28 12:05:02 +02:00
$forcecombo = 0 ;
if ( $conf -> browser -> name == 'ie' ) $forcecombo = 1 ; // There is a bug in IE10 that make combo inside popup crazy
2014-02-23 20:10:05 +01:00
$formquestion = array (
2018-06-28 12:05:02 +02:00
// 'text' => $langs->trans("ConfirmClone"),
// array('type' => 'checkbox', 'name' => 'clone_content', 'label' => $langs->trans("CloneMainAttributes"), 'value' => 1),
// array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans("PuttingPricesUpToDate"), 'value' => 1),
array ( 'type' => 'other' , 'name' => 'idwarehouse' , 'label' => $langs -> trans ( " SelectWarehouseForStockIncrease " ), 'value' => $formproduct -> selectWarehouses ( GETPOST ( 'idwarehouse' ) ? GETPOST ( 'idwarehouse' ) : 'ifone' , 'idwarehouse' , '' , 1 , 0 , 0 , '' , 0 , $forcecombo ))
);
2012-07-25 12:20:45 +02:00
}
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'Cancel' ), $text , 'confirm_cancel' , $formquestion , 0 , 1 );
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2015-02-28 04:59:27 +01:00
// Confirmation to delete line
2013-04-05 12:43:00 +02:00
if ( $action == 'ask_deleteline' )
{
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&lineid=' . $lineid , $langs -> trans ( 'DeleteProductLine' ), $langs -> trans ( 'ConfirmDeleteProductLine' ), 'confirm_deleteline' , '' , 0 , 1 );
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Clone confirmation
2014-02-23 20:10:05 +01:00
if ( $action == 'clone' ) {
2013-04-05 12:43:00 +02:00
// Create an array for form
2014-02-23 20:10:05 +01:00
$formquestion = array (
// 'text' => $langs->trans("ConfirmClone"),
// array('type' => 'checkbox', 'name' => 'clone_content', 'label' => $langs->trans("CloneMainAttributes"), 'value' =>
// 1),
// array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans("PuttingPricesUpToDate"), 'value'
// => 1),
array ( 'type' => 'other' , 'name' => 'socid' , 'label' => $langs -> trans ( " SelectThirdParty " ), 'value' => $form -> select_company ( GETPOST ( 'socid' , 'int' ), 'socid' , '(s.client=1 OR s.client=3)' )));
2019-03-12 19:44:59 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ToClone' ), $langs -> trans ( 'ConfirmCloneOrder' , $object -> ref ), 'confirm_clone' , $formquestion , 'yes' , 1 );
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2018-08-30 11:27:48 +02:00
// Call Hook formConfirm
$parameters = array ( 'lineid' => $lineid );
2018-10-27 13:01:01 +02:00
// Note that $action and $object may be modified by hook
$reshook = $hookmanager -> executeHooks ( 'formConfirm' , $parameters , $object , $action );
2018-08-30 11:27:48 +02:00
if ( empty ( $reshook )) $formconfirm .= $hookmanager -> resPrint ;
elseif ( $reshook > 0 ) $formconfirm = $hookmanager -> resPrint ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Print form confirm
print $formconfirm ;
2012-07-25 12:20:45 +02:00
2016-09-19 10:43:30 +02:00
// Order card
2016-09-26 09:34:51 +02:00
2017-07-01 14:18:09 +02:00
$linkback = '<a href="' . DOL_URL_ROOT . '/commande/list.php?restore_lastsearch_values=1' . ( ! empty ( $socid ) ? '&socid=' . $socid : '' ) . '">' . $langs -> trans ( " BackToList " ) . '</a>' ;
2016-09-26 09:34:51 +02:00
2012-07-25 12:20:45 +02:00
2016-09-19 10:43:30 +02:00
$morehtmlref = '<div class="refidno">' ;
// Ref customer
2016-09-19 13:57:50 +02:00
$morehtmlref .= $form -> editfieldkey ( " RefCustomer " , 'ref_client' , $object -> ref_client , $object , $user -> rights -> commande -> creer , 'string' , '' , 0 , 1 );
$morehtmlref .= $form -> editfieldval ( " RefCustomer " , 'ref_client' , $object -> ref_client , $object , $user -> rights -> commande -> creer , 'string' , '' , null , null , '' , 1 );
2017-10-16 08:47:05 +02:00
// Thirdparty
$morehtmlref .= '<br>' . $langs -> trans ( 'ThirdParty' ) . ' : ' . $soc -> getNomUrl ( 1 );
2018-09-16 12:27:56 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_OTHER_LINK ) && $object -> thirdparty -> id > 0 ) $morehtmlref .= ' (<a href="' . DOL_URL_ROOT . '/commande/list.php?socid=' . $object -> thirdparty -> id . '&search_societe=' . urlencode ( $object -> thirdparty -> name ) . '">' . $langs -> trans ( " OtherOrders " ) . '</a>)' ;
2017-10-16 08:47:05 +02:00
// Project
if ( ! empty ( $conf -> projet -> enabled ))
{
$langs -> load ( " projects " );
$morehtmlref .= '<br>' . $langs -> trans ( 'Project' ) . ' ' ;
if ( $user -> rights -> commande -> creer )
{
if ( $action != 'classify' )
$morehtmlref .= '<a href="' . $_SERVER [ 'PHP_SELF' ] . '?action=classify&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetProject' )) . '</a> : ' ;
2018-03-22 10:23:25 +01:00
if ( $action == 'classify' ) {
//$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
$morehtmlref .= '<form method="post" action="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '">' ;
$morehtmlref .= '<input type="hidden" name="action" value="classin">' ;
$morehtmlref .= '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
$morehtmlref .= $formproject -> select_projects ( $object -> socid , $object -> fk_project , 'projectid' , $maxlength , 0 , 1 , 0 , 1 , 0 , 0 , '' , 1 );
$morehtmlref .= '<input type="submit" class="button valignmiddle" value="' . $langs -> trans ( " Modify " ) . '">' ;
$morehtmlref .= '</form>' ;
} else {
$morehtmlref .= $form -> form_project ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> socid , $object -> fk_project , 'none' , 0 , 0 , 0 , 1 );
}
2017-10-16 08:47:05 +02:00
} else {
if ( ! empty ( $object -> fk_project )) {
$proj = new Project ( $db );
$proj -> fetch ( $object -> fk_project );
$morehtmlref .= '<a href="' . DOL_URL_ROOT . '/projet/card.php?id=' . $object -> fk_project . '" title="' . $langs -> trans ( 'ShowProject' ) . '">' ;
$morehtmlref .= $proj -> ref ;
$morehtmlref .= '</a>' ;
} else {
$morehtmlref .= '' ;
}
}
}
$morehtmlref .= '</div>' ;
dol_banner_tab ( $object , 'ref' , $linkback , 1 , 'ref' , 'ref' , $morehtmlref );
print '<div class="fichecenter">' ;
print '<div class="fichehalfleft">' ;
print '<div class="underbanner clearboth"></div>' ;
2019-01-17 19:27:26 +01:00
print '<table class="border tableforfield" width="100%">' ;
2016-09-26 09:34:51 +02:00
2016-04-01 18:44:23 +02:00
if ( $soc -> outstanding_limit )
{
2017-10-16 08:47:05 +02:00
// Outstanding Bill
print '<tr><td class="titlefield">' ;
print $langs -> trans ( 'OutstandingBill' );
print '</td><td>' ;
print price ( $soc -> get_OutstandingBill ()) . ' / ' ;
print price ( $soc -> outstanding_limit , 0 , '' , 1 , - 1 , - 1 , $conf -> currency );
print '</td>' ;
print '</tr>' ;
2016-04-01 18:44:23 +02:00
}
2016-08-10 09:47:25 +02:00
2016-04-01 18:44:23 +02:00
// Relative and absolute discounts
2014-02-23 20:10:05 +01:00
if ( ! empty ( $conf -> global -> FACTURE_DEPOSITS_ARE_JUST_PAYMENTS )) {
2018-02-16 11:23:59 +01:00
$filterabsolutediscount = " fk_facture_source IS NULL " ; // If we want deposit to be substracted to payments only and not to total of final invoice
2014-02-23 20:10:05 +01:00
$filtercreditnote = " fk_facture_source IS NOT NULL " ; // If we want deposit to be substracted to payments only and not to total of final invoice
} else {
2018-02-20 12:26:29 +01:00
$filterabsolutediscount = " fk_facture_source IS NULL OR (description LIKE '(DEPOSIT)%' AND description NOT LIKE '(EXCESS RECEIVED)%') " ;
$filtercreditnote = " fk_facture_source IS NOT NULL AND (description NOT LIKE '(DEPOSIT)%' OR description LIKE '(EXCESS RECEIVED)%') " ;
2014-02-23 20:10:05 +01:00
}
2012-07-25 12:20:45 +02:00
2014-05-12 12:10:52 +02:00
$addrelativediscount = '<a href="' . DOL_URL_ROOT . '/comm/remise.php?id=' . $soc -> id . '&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ]) . '?facid=' . $object -> id . '">' . $langs -> trans ( " EditRelativeDiscounts " ) . '</a>' ;
$addabsolutediscount = '<a href="' . DOL_URL_ROOT . '/comm/remx.php?id=' . $soc -> id . '&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ]) . '?facid=' . $object -> id . '">' . $langs -> trans ( " EditGlobalDiscounts " ) . '</a>' ;
2017-03-20 20:58:43 +01:00
$addcreditnote = '<a href="' . DOL_URL_ROOT . '/compta/facture/card.php?action=create&socid=' . $soc -> id . '&type=2&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ]) . '?facid=' . $object -> id . '">' . $langs -> trans ( " AddCreditNote " ) . '</a>' ;
2013-04-05 12:43:00 +02:00
2016-09-26 00:10:29 +02:00
print '<tr><td class="titlefield">' . $langs -> trans ( 'Discounts' ) . '</td><td>' ;
2018-03-02 16:48:25 +01:00
2018-02-16 11:23:59 +01:00
$absolute_discount = $soc -> getAvailableDiscounts ( '' , $filterabsolutediscount );
$absolute_creditnote = $soc -> getAvailableDiscounts ( '' , $filtercreditnote );
2014-02-23 20:10:05 +01:00
$absolute_discount = price2num ( $absolute_discount , 'MT' );
$absolute_creditnote = price2num ( $absolute_creditnote , 'MT' );
2018-03-02 16:48:25 +01:00
$thirdparty = $soc ;
$discount_type = 0 ;
$backtopage = urlencode ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
include DOL_DOCUMENT_ROOT . '/core/tpl/object_discounts.tpl.php' ;
2013-04-05 12:43:00 +02:00
print '</td></tr>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Date
print '<tr><td>' ;
2018-10-27 11:06:45 +02:00
$editenable = $user -> rights -> commande -> creer && $object -> statut == Commande :: STATUS_DRAFT ;
print $form -> editfieldkey ( " Date " , 'date' , '' , $object , $editenable );
2016-09-19 10:43:30 +02:00
print '</td><td>' ;
2014-02-23 20:10:05 +01:00
if ( $action == 'editdate' ) {
2014-05-12 12:10:52 +02:00
print '<form name="setdate" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
2014-02-23 20:10:05 +01:00
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
2013-04-05 12:43:00 +02:00
print '<input type="hidden" name="action" value="setdate">' ;
2018-09-09 09:36:12 +02:00
print $form -> selectDate ( $object -> date , 'order_' , '' , '' , '' , " setdate " );
2014-02-23 20:10:05 +01:00
print '<input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
2013-04-05 12:43:00 +02:00
print '</form>' ;
2014-02-23 20:10:05 +01:00
} else {
2017-03-16 10:36:17 +01:00
print $object -> date ? dol_print_date ( $object -> date , 'day' ) : ' ' ;
2017-07-15 12:04:59 +02:00
if ( $object -> hasDelay () && ! empty ( $object -> date_livraison )) {
2017-10-16 08:47:05 +02:00
print ' ' . img_picto ( $langs -> trans ( " Late " ) . ' : ' . $object -> showDelay (), " warning " );
2016-03-10 10:50:54 +01:00
}
2013-04-05 12:43:00 +02:00
}
print '</td>' ;
print '</tr>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Delivery date planed
2016-09-19 10:43:30 +02:00
print '<tr><td>' ;
2018-10-27 13:01:01 +02:00
$editenable = $user -> rights -> commande -> creer ;
2018-10-27 11:06:45 +02:00
print $form -> editfieldkey ( " DateDeliveryPlanned " , 'date_livraison' , '' , $object , $editenable );
2016-09-19 10:43:30 +02:00
print '</td><td>' ;
2014-02-23 20:10:05 +01:00
if ( $action == 'editdate_livraison' ) {
2014-05-12 12:10:52 +02:00
print '<form name="setdate_livraison" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
2014-02-23 20:10:05 +01:00
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
2013-04-05 12:43:00 +02:00
print '<input type="hidden" name="action" value="setdate_livraison">' ;
2018-09-09 09:36:12 +02:00
print $form -> selectDate ( $object -> date_livraison ? $object -> date_livraison : - 1 , 'liv_' , '' , '' , '' , " setdate_livraison " );
2014-02-23 20:10:05 +01:00
print '<input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
2013-04-05 12:43:00 +02:00
print '</form>' ;
2014-02-23 20:10:05 +01:00
} else {
print $object -> date_livraison ? dol_print_date ( $object -> date_livraison , 'daytext' ) : ' ' ;
2016-03-10 10:50:54 +01:00
if ( $object -> hasDelay () && ! empty ( $object -> date_livraison )) {
2017-10-16 08:47:05 +02:00
print ' ' . img_picto ( $langs -> trans ( " Late " ) . ' : ' . $object -> showDelay (), " warning " );
2016-03-10 10:50:54 +01:00
}
2013-04-05 12:43:00 +02:00
}
print '</td>' ;
print '</tr>' ;
2012-07-25 12:20:45 +02:00
2017-10-16 08:47:05 +02:00
// Shipping Method
if ( ! empty ( $conf -> expedition -> enabled )) {
2018-10-27 11:06:45 +02:00
print '<tr><td>' ;
$editenable = $user -> rights -> commande -> creer ;
print $form -> editfieldkey ( " SendingMethod " , 'shippingmethod' , '' , $object , $editenable );
2017-10-16 08:47:05 +02:00
print '</td><td>' ;
if ( $action == 'editshippingmethod' ) {
$form -> formSelectShippingMethod ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> shipping_method_id , 'shipping_method_id' , 1 );
} else {
$form -> formSelectShippingMethod ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> shipping_method_id , 'none' );
}
print '</td>' ;
print '</tr>' ;
}
// Warehouse
if ( ! empty ( $conf -> expedition -> enabled ) && ! empty ( $conf -> global -> WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER )) {
2018-10-27 11:06:45 +02:00
$langs -> load ( 'stocks' );
2017-10-16 08:47:05 +02:00
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
$formproduct = new FormProduct ( $db );
print '<tr><td>' ;
2018-10-27 11:06:45 +02:00
$editenable = $user -> rights -> commande -> creer ;
print $form -> editfieldkey ( " Warehouse " , 'warehouse' , '' , $object , $editenable );
2017-10-16 08:47:05 +02:00
print '</td><td>' ;
if ( $action == 'editwarehouse' ) {
$formproduct -> formSelectWarehouses ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> warehouse_id , 'warehouse_id' , 1 );
} else {
$formproduct -> formSelectWarehouses ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> warehouse_id , 'none' );
}
print '</td>' ;
print '</tr>' ;
}
2015-11-15 11:42:47 +01:00
2013-04-05 12:43:00 +02:00
// Terms of payment
2016-09-19 10:43:30 +02:00
print '<tr><td>' ;
2018-10-27 11:06:45 +02:00
$editenable = $user -> rights -> commande -> creer ;
print $form -> editfieldkey ( " PaymentConditionsShort " , 'conditions' , '' , $object , $editenable );
2016-09-19 10:43:30 +02:00
print '</td><td>' ;
2014-02-23 20:10:05 +01:00
if ( $action == 'editconditions' ) {
2014-05-12 12:10:52 +02:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'cond_reglement_id' , 1 );
2014-02-23 20:10:05 +01:00
} else {
2014-05-12 12:10:52 +02:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'none' , 1 );
2013-04-05 12:43:00 +02:00
}
print '</td>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
print '</tr>' ;
// Mode of payment
2016-09-19 10:43:30 +02:00
print '<tr><td>' ;
2018-10-27 11:06:45 +02:00
$editenable = $user -> rights -> commande -> creer ;
print $form -> editfieldkey ( " PaymentMode " , 'mode' , '' , $object , $editenable );
2016-09-19 10:43:30 +02:00
print '</td><td>' ;
2014-02-23 20:10:05 +01:00
if ( $action == 'editmode' ) {
2018-12-29 07:54:30 +01:00
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> mode_reglement_id , 'mode_reglement_id' , 'CRDT' , 1 , 1 );
2014-02-23 20:10:05 +01:00
} else {
2014-05-12 12:10:52 +02:00
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> mode_reglement_id , 'none' );
2013-04-05 12:43:00 +02:00
}
print '</td></tr>' ;
2016-01-23 16:01:55 +01:00
// Multicurrency
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
// Multicurrency code
print '<tr>' ;
2016-09-19 10:43:30 +02:00
print '<td>' ;
2018-10-27 11:06:45 +02:00
$editenable = $user -> rights -> commande -> creer && $object -> statut == Commande :: STATUS_DRAFT ;
print $form -> editfieldkey ( " Currency " , 'multicurrencycode' , '' , $object , $editenable );
2016-09-19 10:43:30 +02:00
print '</td><td>' ;
2016-01-23 16:01:55 +01:00
if ( $action == 'editmulticurrencycode' ) {
$form -> form_multicurrency_code ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_code , 'multicurrency_code' );
} else {
$form -> form_multicurrency_code ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_code , 'none' );
}
print '</td></tr>' ;
2016-08-10 09:47:25 +02:00
2016-01-23 16:01:55 +01:00
// Multicurrency rate
print '<tr>' ;
2016-09-19 10:43:30 +02:00
print '<td>' ;
2018-10-27 11:06:45 +02:00
$editenable = $user -> rights -> commande -> creer && $object -> multicurrency_code && $object -> multicurrency_code != $conf -> currency && $object -> statut == Commande :: STATUS_DRAFT ;
print $form -> editfieldkey ( " CurrencyRate " , 'multicurrencyrate' , '' , $object , $editenable );
2016-09-19 10:43:30 +02:00
print '</td><td>' ;
2016-12-11 01:04:58 +01:00
if ( $action == 'editmulticurrencyrate' || $action == 'actualizemulticurrencyrate' ) {
2017-10-16 08:47:05 +02:00
if ( $action == 'actualizemulticurrencyrate' ) {
list ( $object -> fk_multicurrency , $object -> multicurrency_tx ) = MultiCurrency :: getIdAndTxFromCode ( $object -> db , $object -> multicurrency_code );
}
2016-04-12 14:10:27 +02:00
$form -> form_multicurrency_rate ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_tx , 'multicurrency_tx' , $object -> multicurrency_code );
2016-01-23 16:01:55 +01:00
} else {
2016-04-12 14:10:27 +02:00
$form -> form_multicurrency_rate ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_tx , 'none' , $object -> multicurrency_code );
2017-03-23 12:23:32 +01:00
if ( $object -> statut == $object :: STATUS_DRAFT && $object -> multicurrency_code && $object -> multicurrency_code != $conf -> currency ) {
2016-12-11 01:04:58 +01:00
print '<div class="inline-block"> ' ;
print '<a href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=actualizemulticurrencyrate">' . $langs -> trans ( " ActualizeCurrency " ) . '</a>' ;
print '</div>' ;
}
2016-01-23 16:01:55 +01:00
}
print '</td></tr>' ;
}
2016-02-25 02:05:28 +01:00
// Delivery delay
2018-10-27 11:06:45 +02:00
print '<tr class="fielddeliverydelay"><td>' ;
$editenable = $user -> rights -> commande -> creer ;
print $form -> editfieldkey ( " AvailabilityPeriod " , 'availability' , '' , $object , $editenable );
2016-09-19 10:43:30 +02:00
print '</td><td>' ;
2014-02-23 20:10:05 +01:00
if ( $action == 'editavailability' ) {
2014-05-12 12:10:52 +02:00
$form -> form_availability ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> availability_id , 'availability_id' , 1 );
2014-02-23 20:10:05 +01:00
} else {
2014-05-12 12:10:52 +02:00
$form -> form_availability ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> availability_id , 'none' , 1 );
2013-04-05 12:43:00 +02:00
}
print '</td></tr>' ;
2016-11-23 12:29:42 +01:00
// Source reason (why we have an ordrer)
2018-10-27 11:06:45 +02:00
print '<tr><td>' ;
$editenable = $user -> rights -> commande -> creer ;
print $form -> editfieldkey ( " Channel " , 'demandreason' , '' , $object , $editenable );
2016-09-19 10:43:30 +02:00
print '</td><td>' ;
2014-02-23 20:10:05 +01:00
if ( $action == 'editdemandreason' ) {
2014-05-12 12:10:52 +02:00
$form -> formInputReason ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> demand_reason_id , 'demand_reason_id' , 1 );
2014-02-23 20:10:05 +01:00
} else {
2014-05-12 12:10:52 +02:00
$form -> formInputReason ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> demand_reason_id , 'none' );
2013-04-05 12:43:00 +02:00
}
print '</td></tr>' ;
2016-11-23 12:29:42 +01:00
// TODO Order mode (how we receive order). Not yet implemented
/*
2018-10-27 11:06:45 +02:00
print '<tr><td>' ;
$editenable = $user -> rights -> commande -> creer ;
print $form -> editfieldkey ( " SourceMode " , 'inputmode' , '' , $object , $editenable );
2016-11-23 12:29:42 +01:00
print '</td><td>' ;
if ( $action == 'editinputmode' ) {
$form -> formInputMode ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> source , 'input_mode_id' , 1 );
} else {
$form -> formInputMode ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> source , 'none' );
}
print '</td></tr>' ;
*/
2017-06-07 16:44:04 +02:00
2016-04-01 18:44:23 +02:00
$tmparray = $object -> getTotalWeightVolume ();
$totalWeight = $tmparray [ 'weight' ];
$totalVolume = $tmparray [ 'volume' ];
2018-10-27 11:06:45 +02:00
if ( $totalWeight ) {
2017-10-16 08:47:05 +02:00
print '<tr><td>' . $langs -> trans ( " CalculatedWeight " ) . '</td>' ;
print '<td>' ;
print showDimensionInBestUnit ( $totalWeight , 0 , " weight " , $langs , isset ( $conf -> global -> MAIN_WEIGHT_DEFAULT_ROUND ) ? $conf -> global -> MAIN_WEIGHT_DEFAULT_ROUND :- 1 , isset ( $conf -> global -> MAIN_WEIGHT_DEFAULT_UNIT ) ? $conf -> global -> MAIN_WEIGHT_DEFAULT_UNIT : 'no' );
print '</td></tr>' ;
2017-12-28 16:20:08 +01:00
}
2018-10-27 11:06:45 +02:00
if ( $totalVolume ) {
2017-10-16 08:47:05 +02:00
print '<tr><td>' . $langs -> trans ( " CalculatedVolume " ) . '</td>' ;
print '<td>' ;
print showDimensionInBestUnit ( $totalVolume , 0 , " volume " , $langs , isset ( $conf -> global -> MAIN_VOLUME_DEFAULT_ROUND ) ? $conf -> global -> MAIN_VOLUME_DEFAULT_ROUND :- 1 , isset ( $conf -> global -> MAIN_VOLUME_DEFAULT_UNIT ) ? $conf -> global -> MAIN_VOLUME_DEFAULT_UNIT : 'no' );
print '</td></tr>' ;
2016-08-10 09:47:25 +02:00
}
2017-10-16 08:47:05 +02:00
// TODO How record was recorded OrderMode (llx_c_input_method)
2015-11-04 22:38:45 +01:00
2015-02-10 12:22:07 +01:00
// Incoterms
2018-10-27 11:06:45 +02:00
if ( ! empty ( $conf -> incoterm -> enabled )) {
2015-02-10 12:22:07 +01:00
print '<tr><td>' ;
2018-10-27 11:06:45 +02:00
$editenable = $user -> rights -> commande -> creer ;
print $form -> editfieldkey ( " IncotermLabel " , 'incoterm' , '' , $object , $editenable );
2017-10-16 08:47:05 +02:00
print '</td>' ;
print '<td>' ;
2015-02-10 12:22:07 +01:00
if ( $action != 'editincoterm' )
{
2016-03-25 15:24:57 +01:00
print $form -> textwithpicto ( $object -> display_incoterms (), $object -> libelle_incoterms , 1 );
2015-02-10 12:22:07 +01:00
}
2015-03-18 14:31:37 +01:00
else
2015-02-10 12:22:07 +01:00
{
print $form -> select_incoterms (( ! empty ( $object -> fk_incoterms ) ? $object -> fk_incoterms : '' ), ( ! empty ( $object -> location_incoterms ) ? $object -> location_incoterms : '' ), $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id );
}
2017-10-16 08:47:05 +02:00
print '</td></tr>' ;
2015-02-10 12:22:07 +01:00
}
2015-03-18 14:31:37 +01:00
2017-10-16 08:47:05 +02:00
// Bank Account
2018-10-27 11:06:45 +02:00
if ( ! empty ( $conf -> global -> BANK_ASK_PAYMENT_BANK_DURING_ORDER ) && ! empty ( $conf -> banque -> enabled )) {
print '<tr><td>' ;
$editenable = $user -> rights -> commande -> creer ;
print $form -> editfieldkey ( " BankAccount " , 'bankaccount' , '' , $object , $editenable );
2017-10-16 08:47:05 +02:00
print '</td><td>' ;
if ( $action == 'editbankaccount' ) {
$form -> formSelectAccount ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> fk_account , 'fk_account' , 1 );
} else {
$form -> formSelectAccount ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> fk_account , 'none' );
}
print '</td>' ;
print '</tr>' ;
2014-11-28 00:34:03 +01:00
}
2015-01-06 00:33:28 +01:00
2016-09-19 10:43:30 +02:00
// Other attributes
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php' ;
print '</table>' ;
2016-09-26 09:34:51 +02:00
2016-09-19 10:43:30 +02:00
print '</div>' ;
print '<div class="fichehalfright">' ;
print '<div class="ficheaddleft">' ;
print '<div class="underbanner clearboth"></div>' ;
2016-09-26 09:34:51 +02:00
2019-01-17 19:27:26 +01:00
print '<table class="border tableforfield centpercent">' ;
2016-09-26 09:34:51 +02:00
2016-10-24 03:23:40 +02:00
if ( ! empty ( $conf -> multicurrency -> enabled ) && ( $object -> multicurrency_code != $conf -> currency ))
{
2017-10-16 08:47:05 +02:00
// Multicurrency Amount HT
2018-10-27 13:48:30 +02:00
print '<tr><td class="titlefieldmiddle">' . $form -> editfieldkey ( 'MulticurrencyAmountHT' , 'multicurrency_total_ht' , '' , $object , 0 ) . '</td>' ;
2017-10-16 08:47:05 +02:00
print '<td class="nowrap">' . price ( $object -> multicurrency_total_ht , '' , $langs , 0 , - 1 , - 1 , ( ! empty ( $object -> multicurrency_code ) ? $object -> multicurrency_code : $conf -> currency )) . '</td>' ;
print '</tr>' ;
2017-06-07 16:44:04 +02:00
2017-10-16 08:47:05 +02:00
// Multicurrency Amount VAT
2018-10-27 13:48:30 +02:00
print '<tr><td>' . $form -> editfieldkey ( 'MulticurrencyAmountVAT' , 'multicurrency_total_tva' , '' , $object , 0 ) . '</td>' ;
2017-10-16 08:47:05 +02:00
print '<td class="nowrap">' . price ( $object -> multicurrency_total_tva , '' , $langs , 0 , - 1 , - 1 , ( ! empty ( $object -> multicurrency_code ) ? $object -> multicurrency_code : $conf -> currency )) . '</td>' ;
print '</tr>' ;
2017-06-07 16:44:04 +02:00
2017-10-16 08:47:05 +02:00
// Multicurrency Amount TTC
2018-10-27 13:48:30 +02:00
print '<tr><td>' . $form -> editfieldkey ( 'MulticurrencyAmountTTC' , 'multicurrency_total_ttc' , '' , $object , 0 ) . '</td>' ;
2017-10-16 08:47:05 +02:00
print '<td class="nowrap">' . price ( $object -> multicurrency_total_ttc , '' , $langs , 0 , - 1 , - 1 , ( ! empty ( $object -> multicurrency_code ) ? $object -> multicurrency_code : $conf -> currency )) . '</td>' ;
print '</tr>' ;
2016-10-24 03:23:40 +02:00
}
2017-06-07 16:44:04 +02:00
2014-07-06 20:49:34 +02:00
// Total HT
2018-01-20 20:11:30 +01:00
$alert = '' ;
2018-09-06 17:37:02 +02:00
if ( ! empty ( $conf -> global -> ORDER_MANAGE_MIN_AMOUNT ) && $object -> total_ht < $object -> thirdparty -> order_min_amount ) {
2018-01-20 20:11:30 +01:00
$alert = ' ' . img_warning ( $langs -> trans ( 'OrderMinAmount' ) . ': ' . price ( $object -> thirdparty -> order_min_amount ));
}
2016-10-24 03:23:40 +02:00
print '<tr><td class="titlefieldmiddle">' . $langs -> trans ( 'AmountHT' ) . '</td>' ;
2018-01-20 20:11:30 +01:00
print '<td>' . price ( $object -> total_ht , 1 , '' , 1 , - 1 , - 1 , $conf -> currency ) . $alert . '</td>' ;
2012-07-25 12:20:45 +02:00
2015-03-18 21:44:57 +01:00
// Total VAT
print '<tr><td>' . $langs -> trans ( 'AmountVAT' ) . '</td><td>' . price ( $object -> total_tva , 1 , '' , 1 , - 1 , - 1 , $conf -> currency ) . '</td></tr>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Amount Local Taxes
2014-07-04 16:48:42 +02:00
if ( $mysoc -> localtax1_assuj == " 1 " || $object -> total_localtax1 != 0 ) // Localtax1
2013-04-05 12:43:00 +02:00
{
2014-02-23 20:10:05 +01:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ) . '</td>' ;
2015-03-18 21:44:57 +01:00
print '<td>' . price ( $object -> total_localtax1 , 1 , '' , 1 , - 1 , - 1 , $conf -> currency ) . '</td></tr>' ;
2013-04-05 12:43:00 +02:00
}
2014-07-04 16:48:42 +02:00
if ( $mysoc -> localtax2_assuj == " 1 " || $object -> total_localtax2 != 0 ) // Localtax2 IRPF
2013-04-05 12:43:00 +02:00
{
2014-02-23 20:10:05 +01:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ) . '</td>' ;
2015-03-18 21:44:57 +01:00
print '<td>' . price ( $object -> total_localtax2 , 1 , '' , 1 , - 1 , - 1 , $conf -> currency ) . '</td></tr>' ;
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Total TTC
2015-03-18 21:44:57 +01:00
print '<tr><td>' . $langs -> trans ( 'AmountTTC' ) . '</td><td>' . price ( $object -> total_ttc , 1 , '' , 1 , - 1 , - 1 , $conf -> currency ) . '</td></tr>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Statut
2016-09-19 10:43:30 +02:00
//print '<tr><td>' . $langs->trans('Status') . '</td><td>' . $object->getLibStatut(4) . '</td></tr>';
2016-09-26 09:34:51 +02:00
2016-09-19 10:43:30 +02:00
print '</table>' ;
2016-09-26 09:34:51 +02:00
2016-09-19 10:43:30 +02:00
// Margin Infos
if ( ! empty ( $conf -> margin -> enabled )) {
2017-10-16 08:47:05 +02:00
$formmargin -> displayMarginInfos ( $object );
2016-09-19 10:43:30 +02:00
}
2016-09-26 09:34:51 +02:00
2012-07-25 12:20:45 +02:00
2016-09-19 10:43:30 +02:00
print '</div>' ;
print '</div>' ;
print '</div>' ;
2016-09-26 09:34:51 +02:00
2016-09-19 10:43:30 +02:00
print '<div class="clearboth"></div><br>' ;
2012-07-25 12:20:45 +02:00
2014-02-23 20:10:05 +01:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_CONTACTS_TAB )) {
2013-04-05 12:43:00 +02:00
$blocname = 'contacts' ;
$title = $langs -> trans ( 'ContactsAddresses' );
2014-02-23 20:10:05 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/bloc_showhide.tpl.php' ;
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2014-02-23 20:10:05 +01:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_NOTES_TAB )) {
2013-04-05 12:43:00 +02:00
$blocname = 'notes' ;
$title = $langs -> trans ( 'Notes' );
2014-02-23 20:10:05 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/bloc_showhide.tpl.php' ;
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
* Lines
2013-11-17 23:25:25 +01:00
*/
2013-04-05 12:43:00 +02:00
$result = $object -> getLinesArray ();
2012-07-25 12:20:45 +02:00
2018-10-27 11:06:45 +02:00
print '<form name="addproduct" id="addproduct" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . (( $action != 'editline' ) ? '#addline' : '#line_' . GETPOST ( 'lineid' )) . ' " method= " POST " >
2014-02-23 20:10:05 +01:00
< input type = " hidden " name = " token " value = " ' . $_SESSION ['newtoken'] . ' " >
2015-02-27 18:05:12 +01:00
< input type = " hidden " name = " action " value = " ' . (( $action != 'editline') ? 'addline' : 'updateline') . ' " >
2013-11-17 23:25:25 +01:00
< input type = " hidden " name = " mode " value = " " >
2018-10-27 11:06:45 +02:00
< input type = " hidden " name = " id " value = " ' . $object->id . ' " > ' ;
2013-11-17 23:25:25 +01:00
2015-03-15 11:48:57 +01:00
if ( ! empty ( $conf -> use_javascript_ajax ) && $object -> statut == Commande :: STATUS_DRAFT ) {
2014-02-23 20:10:05 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/ajaxrow.tpl.php' ;
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2017-10-16 08:47:05 +02:00
print '<div class="div-table-responsive-no-min">' ;
2013-11-17 23:25:25 +01:00
print '<table id="tablelines" class="noborder noshadow" width="100%">' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Show object lines
if ( ! empty ( $object -> lines ))
2014-02-23 20:10:05 +01:00
$ret = $object -> printObjectLines ( $action , $mysoc , $soc , $lineid , 1 );
2012-07-25 12:20:45 +02:00
2013-11-17 23:25:25 +01:00
$numlines = count ( $object -> lines );
2013-04-05 12:43:00 +02:00
/*
* Form to add new line
2013-11-17 23:25:25 +01:00
*/
2018-02-21 17:06:40 +01:00
if ( $object -> statut == Commande :: STATUS_DRAFT && $user -> rights -> commande -> creer && $action != 'selectlines' )
2014-05-05 14:30:08 +02:00
{
if ( $action != 'editline' )
{
// Add free products/services
$object -> formAddObjectLine ( 1 , $mysoc , $soc );
2013-04-05 12:43:00 +02:00
2014-02-23 20:10:05 +01:00
$parameters = array ();
2018-10-27 13:01:01 +02:00
// Note that $action and $object may be modified by hook
$reshook = $hookmanager -> executeHooks ( 'formAddObjectLine' , $parameters , $object , $action );
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
}
print '</table>' ;
2017-10-16 08:47:05 +02:00
print '</div>' ;
2013-11-17 23:25:25 +01:00
print " </form> \n " ;
dol_fiche_end ();
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
2017-05-19 16:32:23 +02:00
* Buttons for actions
*/
2014-02-23 20:10:05 +01:00
if ( $action != 'presend' && $action != 'editline' ) {
2014-01-24 11:15:25 +01:00
print '<div class="tabsAction">' ;
2013-04-05 12:43:00 +02:00
2014-02-23 20:10:05 +01:00
$parameters = array ();
2018-10-27 13:01:01 +02:00
// Note that $action and $object may be modified by hook
$reshook = $hookmanager -> executeHooks ( 'addMoreActionsButtons' , $parameters , $object , $action );
2014-02-23 20:10:05 +01:00
if ( empty ( $reshook )) {
2015-11-29 16:33:50 +01:00
// Send
if ( $object -> statut > Commande :: STATUS_DRAFT ) {
if (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) || $user -> rights -> commande -> order_advance -> send )) {
2018-03-11 21:34:38 +01:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=presend&mode=init#formmailbeforetitle">' . $langs -> trans ( 'SendMail' ) . '</a></div>' ;
2015-11-29 16:33:50 +01:00
} else
2018-11-13 21:40:17 +01:00
print '<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#">' . $langs -> trans ( 'SendMail' ) . '</a></div>' ;
2015-11-29 16:33:50 +01:00
}
2017-10-16 08:47:05 +02:00
// Valid
2015-03-15 11:48:57 +01:00
if ( $object -> statut == Commande :: STATUS_DRAFT && $object -> total_ttc >= 0 && $numlines > 0 &&
2017-10-16 08:47:05 +02:00
(( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> creer ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> order_advance -> validate )))
2015-01-25 21:32:40 +01:00
)
{
2014-05-12 12:10:52 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=validate">' . $langs -> trans ( 'Validate' ) . '</a></div>' ;
2013-04-05 12:43:00 +02:00
}
// Edit
2015-03-15 11:48:57 +01:00
if ( $object -> statut == Commande :: STATUS_VALIDATED && $user -> rights -> commande -> creer ) {
2014-09-18 21:18:25 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="card.php?id=' . $object -> id . '&action=modif">' . $langs -> trans ( 'Modify' ) . '</a></div>' ;
2013-04-05 12:43:00 +02:00
}
2013-09-26 14:06:15 +02:00
// Create event
2018-10-27 11:06:45 +02:00
/* if ( $conf -> agenda -> enabled && ! empty ( $conf -> global -> MAIN_ADD_EVENT_ON_ELEMENT_CARD ))
2013-08-27 15:51:06 +02:00
{
2018-10-27 11:06:45 +02:00
// Add hidden condition because this is not a
// "workflow" action so should appears somewhere else on
// page.
2014-09-18 21:18:25 +02:00
print '<a class="butAction" href="' . DOL_URL_ROOT . '/comm/action/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( " AddAction " ) . '</a>' ;
2017-12-07 00:28:43 +01:00
} */
2016-03-17 15:56:03 +01:00
2015-11-29 16:33:50 +01:00
// Create intervention
if ( $conf -> ficheinter -> enabled ) {
$langs -> load ( " interventions " );
if ( $object -> statut > Commande :: STATUS_DRAFT && $object -> statut < Commande :: STATUS_CLOSED && $object -> getNbOfServicesLines () > 0 ) {
if ( $user -> rights -> ficheinter -> creer ) {
print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/fichinter/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( 'AddIntervention' ) . '</a></div>' ;
} else {
2018-11-13 21:40:17 +01:00
print '<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " NotAllowed " )) . '">' . $langs -> trans ( 'AddIntervention' ) . '</a></div>' ;
2015-11-29 16:33:50 +01:00
}
}
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2015-11-29 16:33:50 +01:00
// Create contract
2017-10-09 18:54:15 +02:00
if ( $conf -> contrat -> enabled && ( $object -> statut == Commande :: STATUS_VALIDATED || $object -> statut == Commande :: STATUS_SHIPMENTONPROCESS || $object -> statut == Commande :: STATUS_CLOSED )) {
2017-10-16 08:47:05 +02:00
$langs -> load ( " contracts " );
2016-03-17 15:56:03 +01:00
2017-10-16 08:47:05 +02:00
if ( $user -> rights -> contrat -> creer ) {
print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/contrat/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( 'AddContract' ) . '</a></div>' ;
}
2015-11-29 16:33:50 +01:00
}
2016-03-17 15:56:03 +01:00
2013-04-05 12:43:00 +02:00
// Ship
2014-02-23 20:10:05 +01:00
$numshipping = 0 ;
if ( ! empty ( $conf -> expedition -> enabled )) {
2013-04-05 12:43:00 +02:00
$numshipping = $object -> nb_expedition ();
2012-07-25 12:20:45 +02:00
2017-09-18 14:11:21 +02:00
if ( $object -> statut > Commande :: STATUS_DRAFT && $object -> statut < Commande :: STATUS_CLOSED && ( $object -> getNbOfProductsLines () > 0 || ! empty ( $conf -> global -> STOCK_SUPPORTS_SERVICES ))) {
2014-02-23 20:10:05 +01:00
if (( $conf -> expedition_bon -> enabled && $user -> rights -> expedition -> creer ) || ( $conf -> livraison_bon -> enabled && $user -> rights -> expedition -> livraison -> creer )) {
if ( $user -> rights -> expedition -> creer ) {
2016-11-14 14:34:15 +01:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/expedition/shipment.php?id=' . $object -> id . '">' . $langs -> trans ( 'CreateShipment' ) . '</a></div>' ;
2014-02-23 20:10:05 +01:00
} else {
2018-11-13 21:40:17 +01:00
print '<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " NotAllowed " )) . '">' . $langs -> trans ( 'CreateShipment' ) . '</a></div>' ;
2012-07-25 12:20:45 +02:00
}
2014-02-23 20:10:05 +01:00
} else {
2013-04-05 12:43:00 +02:00
$langs -> load ( " errors " );
2018-11-13 21:40:17 +01:00
print '<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " ErrorModuleSetupNotComplete " )) . '">' . $langs -> trans ( 'CreateShipment' ) . '</a></div>' ;
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Reopen a closed order
2015-04-01 16:33:39 +02:00
if (( $object -> statut == Commande :: STATUS_CLOSED || $object -> statut == Commande :: STATUS_CANCELED ) && $user -> rights -> commande -> creer ) {
2014-05-12 12:10:52 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '&action=reopen">' . $langs -> trans ( 'ReOpen' ) . '</a></div>' ;
2013-04-05 12:43:00 +02:00
}
2014-02-26 15:49:29 +01:00
2015-11-29 16:33:50 +01:00
// Set to shipped
2017-10-09 18:54:15 +02:00
if (( $object -> statut == Commande :: STATUS_VALIDATED || $object -> statut == Commande :: STATUS_SHIPMENTONPROCESS ) && $user -> rights -> commande -> cloturer ) {
2015-11-29 16:33:50 +01:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=shipped">' . $langs -> trans ( 'ClassifyShipped' ) . '</a></div>' ;
2014-01-28 15:26:20 +01:00
}
2013-04-05 12:43:00 +02:00
// Create bill and Classify billed
2014-02-10 01:30:48 +01:00
// Note: Even if module invoice is not enabled, we should be able to use button "Classified billed"
2015-03-15 11:48:57 +01:00
if ( $object -> statut > Commande :: STATUS_DRAFT && ! $object -> billed ) {
2014-02-23 20:10:05 +01:00
if ( ! empty ( $conf -> facture -> enabled ) && $user -> rights -> facture -> creer && empty ( $conf -> global -> WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER )) {
2017-03-20 20:58:43 +01:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/compta/facture/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( " CreateBill " ) . '</a></div>' ;
2012-07-25 12:20:45 +02:00
}
2015-11-29 16:33:50 +01:00
if ( $user -> rights -> commande -> creer && $object -> statut >= Commande :: STATUS_VALIDATED && empty ( $conf -> global -> WORKFLOW_DISABLE_CLASSIFY_BILLED_FROM_ORDER ) && empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT )) {
2014-05-12 12:10:52 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=classifybilled">' . $langs -> trans ( " ClassifyBilled " ) . '</a></div>' ;
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
}
2016-06-06 13:29:37 +02:00
if ( $object -> statut > Commande :: STATUS_DRAFT && $object -> billed ) {
2017-10-16 08:47:05 +02:00
if ( $user -> rights -> commande -> creer && $object -> statut >= Commande :: STATUS_VALIDATED && empty ( $conf -> global -> WORKFLOW_DISABLE_CLASSIFY_BILLED_FROM_ORDER ) && empty ( $conf -> global -> WORKFLOW_BILL_ON_SHIPMENT )) {
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=classifyunbilled">' . $langs -> trans ( " ClassifyUnBilled " ) . '</a></div>' ;
}
2016-06-06 13:29:37 +02:00
}
2013-04-05 12:43:00 +02:00
// Clone
2014-02-23 20:10:05 +01:00
if ( $user -> rights -> commande -> creer ) {
2014-05-12 12:10:52 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '&socid=' . $object -> socid . '&action=clone&object=order">' . $langs -> trans ( " ToClone " ) . '</a></div>' ;
2013-04-05 12:43:00 +02:00
}
// Cancel order
2015-03-30 02:36:46 +02:00
if ( $object -> statut == Commande :: STATUS_VALIDATED &&
2017-10-16 08:47:05 +02:00
(( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> cloturer ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> commande -> order_advance -> annuler )))
2015-03-18 14:31:37 +01:00
)
2015-03-09 21:20:56 +01:00
{
2014-05-12 12:10:52 +02:00
print '<div class="inline-block divButAction"><a class="butActionDelete" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=cancel">' . $langs -> trans ( 'Cancel' ) . '</a></div>' ;
2013-04-05 12:43:00 +02:00
}
// Delete order
2014-02-23 20:10:05 +01:00
if ( $user -> rights -> commande -> supprimer ) {
if ( $numshipping == 0 ) {
2014-05-12 12:10:52 +02:00
print '<div class="inline-block divButAction"><a class="butActionDelete" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=delete">' . $langs -> trans ( 'Delete' ) . '</a></div>' ;
2014-02-23 20:10:05 +01:00
} else {
2018-11-13 21:40:17 +01:00
print '<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#" title="' . $langs -> trans ( " ShippingExist " ) . '">' . $langs -> trans ( " Delete " ) . '</a></div>' ;
2012-07-25 12:20:45 +02:00
}
}
}
2014-01-24 11:15:25 +01:00
print '</div>' ;
2013-04-05 12:43:00 +02:00
}
2016-03-17 15:56:03 +01:00
// Select mail models is same action as presend
if ( GETPOST ( 'modelselected' )) {
$action = 'presend' ;
}
2014-04-30 13:50:25 +02:00
if ( $action != 'presend' )
{
2013-04-16 01:13:20 +02:00
print '<div class="fichecenter"><div class="fichehalfleft">' ;
2017-02-03 20:11:06 +01:00
print '<a name="builddoc"></a>' ; // ancre
2016-04-23 17:35:33 +02:00
// Documents
2013-04-05 12:43:00 +02:00
$comref = dol_sanitizeFileName ( $object -> ref );
2014-02-23 20:10:05 +01:00
$relativepath = $comref . '/' . $comref . '.pdf' ;
2013-04-05 12:43:00 +02:00
$filedir = $conf -> commande -> dir_output . '/' . $comref ;
2014-05-12 12:10:52 +02:00
$urlsource = $_SERVER [ " PHP_SELF " ] . " ?id= " . $object -> id ;
2017-10-18 17:21:30 +02:00
$genallowed = $user -> rights -> commande -> lire ;
$delallowed = $user -> rights -> commande -> creer ;
2016-10-24 11:27:39 +02:00
print $formfile -> showdocuments ( 'commande' , $comref , $filedir , $urlsource , $genallowed , $delallowed , $object -> modelpdf , 1 , 0 , 0 , 28 , 0 , '' , '' , '' , $soc -> default_lang );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
2015-06-06 15:57:59 +02:00
// Show links to link elements
2016-08-04 11:57:37 +02:00
$linktoelem = $form -> showLinkToObjectBlock ( $object , null , array ( 'order' ));
2019-01-17 19:27:26 +01:00
2018-10-25 21:39:22 +02:00
$compatibleImportElementsList = false ;
if ( $user -> rights -> commande -> creer
&& $object -> statut == Commande :: STATUS_DRAFT )
{
$compatibleImportElementsList = array ( 'commande' , 'propal' ); // import from linked elements
}
2019-01-27 11:55:16 +01:00
$somethingshown = $form -> showLinkedObjectBlock ( $object , $linktoelem , $compatibleImportElementsList );
2016-09-26 09:34:51 +02:00
2018-01-08 13:21:04 +01:00
// Show online payment link
2018-05-05 22:20:33 +02:00
$useonlinepayment = ( ! empty ( $conf -> paypal -> enabled ) || ! empty ( $conf -> stripe -> enabled ) || ! empty ( $conf -> paybox -> enabled ));
if ( ! empty ( $conf -> global -> ORDER_HIDE_ONLINE_PAYMENT_ON_ORDER )) $useonlinepayment = 0 ;
2017-11-04 17:11:58 +01:00
if ( $object -> statut != Commande :: STATUS_DRAFT && $useonlinepayment )
{
print '<br><!-- Link to pay -->' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/payments.lib.php' ;
print showOnlinePaymentUrl ( 'order' , $object -> ref ) . '<br>' ;
}
2018-01-08 13:21:04 +01:00
// Show direct download link
2017-11-04 17:11:58 +01:00
if ( $object -> statut != Commande :: STATUS_DRAFT && ! empty ( $conf -> global -> ORDER_ALLOW_EXTERNAL_DOWNLOAD ))
{
print '<br><!-- Link to download main doc -->' . " \n " ;
print showDirectDownloadLink ( $object ) . '<br>' ;
}
2015-06-06 15:57:59 +02:00
2013-04-16 01:13:20 +02:00
print '</div><div class="fichehalfright"><div class="ficheaddleft">' ;
2013-04-05 12:43:00 +02:00
// List of actions on element
2014-02-23 20:10:05 +01:00
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php' ;
$formactions = new FormActions ( $db );
2017-09-13 14:18:36 +02:00
$somethingshown = $formactions -> showactions ( $object , 'order' , $socid , 1 );
2013-04-05 12:43:00 +02:00
2013-04-20 05:11:25 +02:00
print '</div></div></div>' ;
2013-04-05 12:43:00 +02:00
}
2017-09-17 15:38:50 +02:00
// Presend form
$modelmail = 'order_send' ;
$defaulttopic = 'SendOrderRef' ;
$diroutput = $conf -> commande -> dir_output ;
$trackid = 'ord' . $object -> id ;
2013-04-05 12:43:00 +02:00
2017-09-17 15:38:50 +02:00
include DOL_DOCUMENT_ROOT . '/core/tpl/card_presend.tpl.php' ;
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
}
2008-08-12 20:20:18 +02:00
2018-07-29 19:16:28 +02:00
// End of page
2012-08-22 17:42:40 +02:00
llxFooter ();
$db -> close ();