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 >
* Copyright ( C ) 2004 - 2013 Laurent Destailleur < eldy @ users . sourceforge . net >
2013-05-10 15:39:54 +02:00
* Copyright ( C ) 2005 Marc Barilley / Ocebo < marc @ ocebo . com >
* Copyright ( C ) 2005 - 2013 Regis Houssin < regis . houssin @ capnetworks . com >
* Copyright ( C ) 2006 Andre Cianfarani < acianfa @ free . fr >
* Copyright ( C ) 2010 - 2013 Juanjo Menent < jmenent @ 2 byte . es >
* Copyright ( C ) 2011 Philippe Grand < philippe . grand @ atoo - net . com >
* Copyright ( C ) 2012 Christophe Battarel < christophe . battarel @ altairis . fr >
* Copyright ( C ) 2012 Marcos García < marcosgdf @ gmail . com >
* Copyright ( C ) 2013 Florian Henry < florian . henry @ open - concept . pro >
*
* 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
/**
* \file htdocs / commande / fiche . php
2013-05-10 15:39:54 +02:00
* \ingroup commande
* \brief Page to show customer order
*/
2008-08-12 20:20:18 +02:00
2012-08-22 23:24:21 +02:00
require '../main.inc.php' ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formorder.class.php' ;
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' ;
2013-04-05 12:43:00 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php' ;
2012-08-25 03:28:30 +02:00
if ( ! empty ( $conf -> propal -> enabled ))
require DOL_DOCUMENT_ROOT . '/comm/propal/class/propal.class.php' ;
2012-07-25 09:09:56 +02:00
if ( ! empty ( $conf -> projet -> enabled )) {
2012-08-25 03:28:30 +02:00
require DOL_DOCUMENT_ROOT . '/projet/class/project.class.php' ;
2013-06-14 22:33:01 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formprojet.class.php' ;
2012-07-25 09:09:56 +02:00
}
2013-04-09 17:18:07 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/doleditor.class.php' ;
2009-04-27 22:37:50 +02:00
2008-08-12 20:20:18 +02:00
$langs -> load ( 'orders' );
$langs -> load ( 'sendings' );
$langs -> load ( 'companies' );
$langs -> load ( 'bills' );
$langs -> load ( 'propal' );
$langs -> load ( 'deliveries' );
$langs -> load ( 'products' );
2012-07-20 09:57:50 +02:00
if ( ! empty ( $conf -> margin -> enabled ))
2012-07-25 12:20:45 +02:00
$langs -> load ( 'margins' );
2008-08-12 20:20:18 +02:00
2012-07-25 09:09:56 +02:00
$id = ( GETPOST ( 'id' , 'int' ) ? GETPOST ( 'id' , 'int' ) : GETPOST ( 'orderid' , 'int' ));
$ref = GETPOST ( 'ref' , 'alpha' );
$socid = GETPOST ( 'socid' , 'int' );
$action = GETPOST ( 'action' , 'alpha' );
$confirm = GETPOST ( 'confirm' , 'alpha' );
$lineid = GETPOST ( 'lineid' , 'int' );
$origin = GETPOST ( 'origin' , 'alpha' );
2012-08-25 03:28:30 +02:00
$originid = ( GETPOST ( 'originid' , 'int' ) ? GETPOST ( 'originid' , 'int' ) : GETPOST ( 'origin_id' , 'int' )); // For backward compatibility
2012-07-25 09:09:56 +02:00
2011-06-30 00:29:50 +02:00
$mesg = GETPOST ( 'mesg' );
2012-07-02 19:30:37 +02:00
//PDF
2012-05-21 18:44:09 +02:00
$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
2012-07-25 09:09:56 +02: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
2013-04-26 10:29:14 +02: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
if ( $id > 0 || ! empty ( $ref ))
{
$ret = $object -> fetch ( $id , $ref );
2012-07-06 13:43:59 +02:00
$ret = $object -> fetch_thirdparty ();
2012-05-10 19:26:44 +02:00
}
2011-08-10 19:40:42 +02:00
// Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
2012-03-02 14:51:16 +01:00
$hookmanager -> initHooks ( array ( 'ordercard' ));
2010-08-10 00:39:20 +02:00
2008-08-12 20:20:18 +02:00
/******************************************************************************/
/* Actions */
/******************************************************************************/
2011-08-11 00:47:33 +02:00
$parameters = array ( 'socid' => $socid );
$reshook = $hookmanager -> executeHooks ( 'doActions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by some hooks
2010-08-10 00:39:20 +02:00
2009-03-25 22:26:15 +01:00
// Action clone object
2012-07-06 13:43:59 +02:00
if ( $action == 'confirm_clone' && $confirm == 'yes' && $user -> rights -> commande -> creer )
2009-03-25 22:26:15 +01:00
{
2012-07-25 12:20:45 +02:00
if ( 1 == 0 && ! GETPOST ( 'clone_content' ) && ! GETPOST ( 'clone_receivers' ))
{
$mesg = '<div class="error">' . $langs -> trans ( " NoCloneOptionsSpecified " ) . '</div>' ;
}
else
{
if ( $object -> id > 0 )
{
2013-01-26 10:35:30 +01:00
$result = $object -> createFromClone ( $socid );
2012-07-25 12:20:45 +02:00
if ( $result > 0 )
{
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . '?id=' . $result );
exit ;
}
else
{
$mesg = '<div class="error">' . $object -> error . '</div>' ;
$action = '' ;
}
}
}
2009-03-25 22:26:15 +01:00
}
2010-03-31 22:08:38 +02:00
// Reopen a closed order
2012-03-16 09:39:32 +01:00
else if ( $action == 'reopen' && $user -> rights -> commande -> creer )
2010-03-31 22:08:38 +02:00
{
2012-07-25 12:20:45 +02:00
if ( $object -> statut == 3 )
{
$result = $object -> set_reopen ( $user );
if ( $result > 0 )
{
2012-08-31 05:58:38 +02:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
2012-07-25 12:20:45 +02:00
exit ;
}
else
{
$mesg = '<div class="error">' . $object -> error . '</div>' ;
}
}
2010-03-31 22:08:38 +02:00
}
2008-08-12 20:20:18 +02:00
// Suppression de la commande
2012-07-06 13:43:59 +02:00
else if ( $action == 'confirm_delete' && $confirm == 'yes' && $user -> rights -> commande -> supprimer )
2008-08-12 20:20:18 +02:00
{
2012-07-06 13:43:59 +02:00
$result = $object -> delete ( $user );
if ( $result > 0 )
{
2012-08-31 05:58:38 +02:00
header ( 'Location: index.php' );
2012-07-06 13:43:59 +02:00
exit ;
}
else
{
$mesg = '<div class="error">' . $object -> error . '</div>' ;
}
2008-08-12 20:20:18 +02:00
}
2010-08-10 23:01:21 +02:00
// Remove a product line
2012-07-06 13:43:59 +02:00
else if ( $action == 'confirm_deleteline' && $confirm == 'yes' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-06 13:43:59 +02:00
$result = $object -> deleteline ( $lineid );
if ( $result > 0 )
{
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
2012-07-25 09:09:56 +02:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' )) $newlang = GETPOST ( 'lang_id' );
2012-07-06 13:43:59 +02:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
2012-07-25 09:09:56 +02:00
$ret = $object -> fetch ( $object -> id ); // Reload to get new records
2013-01-26 10:35:30 +01:00
commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-07-06 13:43:59 +02:00
}
2011-03-02 11:33:24 +01:00
2012-08-31 05:58:38 +02:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
2012-07-06 13:43:59 +02:00
exit ;
}
else
{
$mesg = '<div class="error">' . $object -> error . '</div>' ;
}
2008-08-12 20:20:18 +02:00
}
// Categorisation dans projet
2012-07-06 13:43:59 +02:00
else if ( $action == 'classin' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$object -> setProject ( GETPOST ( 'projectid' ));
2008-08-12 20:20:18 +02:00
}
2010-02-20 19:43:33 +01:00
// Add order
2012-03-16 09:39:32 +01:00
else if ( $action == 'add' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 09:09:56 +02: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' ));
2012-12-30 10:49:11 +01:00
if ( $datecommande == '' )
2012-07-25 09:09:56 +02:00
{
2012-12-30 10:49:11 +01:00
$mesg = '<div class="error">' . $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentities ( 'Date' )) . '</div>' ;
$action = 'create' ;
$error ++ ;
}
2013-01-26 10:35:30 +01:00
2013-01-19 10:45:57 +01:00
if ( $socid < 1 )
{
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Customer " )), 'errors' );
$action = 'create' ;
$error ++ ;
}
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
if ( ! $error )
{
$object -> socid = $socid ;
$object -> fetch_thirdparty ();
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
$db -> begin ();
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
$object -> date_commande = $datecommande ;
2013-04-09 17:18:07 +02:00
$object -> note_private = GETPOST ( 'note_private' );
2012-12-30 10:49:11 +01:00
$object -> note_public = GETPOST ( 'note_public' );
$object -> source = GETPOST ( 'source_id' );
$object -> fk_project = GETPOST ( 'projectid' );
$object -> ref_client = GETPOST ( 'ref_client' );
$object -> modelpdf = GETPOST ( 'model' );
$object -> cond_reglement_id = GETPOST ( 'cond_reglement_id' );
$object -> mode_reglement_id = GETPOST ( 'mode_reglement_id' );
$object -> availability_id = GETPOST ( 'availability_id' );
$object -> demand_reason_id = GETPOST ( 'demand_reason_id' );
$object -> date_livraison = $datelivraison ;
$object -> fk_delivery_address = GETPOST ( 'fk_address' );
$object -> contactid = GETPOST ( 'contactidp' );
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
// If creation from another object of another module (Example: origin=propal, originid=1)
if ( ! empty ( $origin ) && ! empty ( $originid ))
2012-07-25 09:09:56 +02:00
{
2012-12-30 10:49:11 +01:00
// Parse element/subelement (ex: project_task)
$element = $subelement = $origin ;
if ( preg_match ( '/^([^_]+)_([^_]+)/i' , $origin , $regs ))
2012-07-25 09:09:56 +02:00
{
2012-12-30 10:49:11 +01:00
$element = $regs [ 1 ];
$subelement = $regs [ 2 ];
}
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +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-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
$object -> origin = $origin ;
$object -> origin_id = $originid ;
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +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-04-16 01:13:20 +02:00
2013-04-05 12:43:00 +02:00
// Fill array 'array_options' with data from add form
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object );
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
$object_id = $object -> create ( $user );
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
if ( $object_id > 0 )
{
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
$classname = ucfirst ( $subelement );
$srcobject = new $classname ( $db );
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +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 )
2012-07-25 09:09:56 +02:00
{
2012-12-30 10:49:11 +01:00
$lines = $srcobject -> lines ;
if ( empty ( $lines ) && method_exists ( $srcobject , 'fetch_lines' )) $lines = $srcobject -> fetch_lines ();
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
$fk_parent_line = 0 ;
$num = count ( $lines );
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
for ( $i = 0 ; $i < $num ; $i ++ )
2012-07-25 09:09:56 +02:00
{
2012-12-30 10:49:11 +01:00
$label = ( ! empty ( $lines [ $i ] -> label ) ? $lines [ $i ] -> label : '' );
$desc = ( ! empty ( $lines [ $i ] -> desc ) ? $lines [ $i ] -> desc : $lines [ $i ] -> libelle );
$product_type = ( ! empty ( $lines [ $i ] -> product_type ) ? $lines [ $i ] -> product_type : 0 );
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
// Dates
// TODO mutualiser
$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 ;
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
// Reset fk_parent_line for no child products and special product
if (( $lines [ $i ] -> product_type != 9 && empty ( $lines [ $i ] -> fk_parent_line )) || $lines [ $i ] -> product_type == 9 ) {
$fk_parent_line = 0 ;
}
2013-01-07 00:40:18 +01:00
2013-06-10 16:05:41 +02:00
//Extrafields
2013-06-27 08:09:28 +02:00
if ( empty ( $conf -> global -> MAIN_EXTRAFIELDS_DISABLED ) && method_exists ( $lines [ $i ], 'fetch_optionals' ) ) // For avoid conflicts if trigger used
2013-06-10 16:05:41 +02:00
{
$lines [ $i ] -> fetch_optionals ( $lines [ $i ] -> rowid );
$array_option = $lines [ $i ] -> array_options ;
}
2013-06-16 21:31:21 +02:00
2012-12-30 10:49:11 +01:00
$result = $object -> addline (
$desc ,
$lines [ $i ] -> subprice ,
$lines [ $i ] -> qty ,
$lines [ $i ] -> 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 ,
2013-04-15 15:55:10 +02:00
$date_start ,
$date_end ,
2012-12-30 10:49:11 +01:00
$product_type ,
$lines [ $i ] -> rang ,
$lines [ $i ] -> special_code ,
$fk_parent_line ,
$lines [ $i ] -> fk_fournprice ,
$lines [ $i ] -> pa_ht ,
2013-06-10 16:05:41 +02:00
$label ,
$array_option
2012-12-30 10:49:11 +01:00
);
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
if ( $result < 0 )
{
$error ++ ;
break ;
}
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
// Defined the new fk_parent_line
if ( $result > 0 && $lines [ $i ] -> product_type == 9 ) {
$fk_parent_line = $result ;
}
2012-07-25 09:09:56 +02:00
}
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
// Hooks
$parameters = array ( 'objFrom' => $srcobject );
$reshook = $hookmanager -> executeHooks ( 'createFrom' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
if ( $reshook < 0 ) $error ++ ;
}
else
{
$mesg = $srcobject -> error ;
$error ++ ;
2012-07-25 09:09:56 +02:00
}
}
else
{
2012-12-30 10:49:11 +01:00
$mesg = $object -> error ;
2012-07-25 09:09:56 +02:00
$error ++ ;
}
}
else
{
2013-04-05 12:43:00 +02:00
// Fill array 'array_options' with data from add form
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object );
2013-04-16 01:13:20 +02:00
2012-12-30 10:49:11 +01:00
$object_id = $object -> create ( $user );
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
// If some invoice's lines already known
$NBLINES = 8 ;
for ( $i = 1 ; $i <= $NBLINES ; $i ++ )
2012-07-25 09:09:56 +02:00
{
2012-12-30 10:49:11 +01:00
if ( $_POST [ 'idprod' . $i ])
{
$xid = 'idprod' . $i ;
$xqty = 'qty' . $i ;
$xremise = 'remise_percent' . $i ;
$object -> add_product ( $_POST [ $xid ], $_POST [ $xqty ], $_POST [ $xremise ]);
}
2012-07-25 09:09:56 +02:00
}
}
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
// Insert default contacts if defined
if ( $object_id > 0 )
2012-07-25 09:09:56 +02:00
{
2012-12-30 10:49:11 +01:00
if ( GETPOST ( 'contactidp' ))
2012-07-25 09:09:56 +02:00
{
2012-12-30 10:49:11 +01:00
$result = $object -> add_contact ( GETPOST ( 'contactidp' ), 'CUSTOMER' , 'external' );
if ( $result < 0 )
{
$mesg = '<div class="error">' . $langs -> trans ( " ErrorFailedToAddContact " ) . '</div>' ;
$error ++ ;
}
2012-07-25 09:09:56 +02:00
}
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
$id = $object_id ;
$action = '' ;
}
2013-01-07 00:40:18 +01:00
2012-12-30 10:49:11 +01:00
// End of object creation, we show it
if ( $object_id > 0 && ! $error )
{
$db -> commit ();
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object_id );
exit ;
}
else
{
$db -> rollback ();
$action = 'create' ;
if ( ! $mesg ) $mesg = '<div class="error">' . $object -> error . '</div>' ;
2012-07-25 09:09:56 +02:00
}
}
2008-08-12 20:20:18 +02:00
}
2012-07-06 13:43:59 +02:00
else if ( $action == 'classifybilled' && $user -> rights -> commande -> creer )
2010-09-10 18:25:12 +02:00
{
2012-07-25 12:20:45 +02:00
$ret = $object -> classifyBilled ();
2010-09-10 18:25:12 +02:00
}
2008-08-12 20:20:18 +02:00
// Positionne ref commande client
2012-03-16 09:39:32 +01:00
else if ( $action == 'set_ref_client' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$object -> set_ref_client ( $user , GETPOST ( 'ref_client' ));
2008-08-12 20:20:18 +02:00
}
2012-03-16 09:39:32 +01:00
else if ( $action == 'setremise' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$object -> set_remise ( $user , GETPOST ( 'remise' ));
2008-08-12 20:20:18 +02:00
}
2012-03-16 09:39:32 +01:00
else if ( $action == 'setabsolutediscount' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02: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
}
2012-03-16 09:39:32 +01:00
else if ( $action == 'setdate' && $user -> rights -> commande -> creer )
2009-12-04 20:02:55 +01:00
{
2012-07-25 12:20:45 +02: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' ));
$result = $object -> set_date ( $user , $date );
if ( $result < 0 )
{
$mesg = '<div class="error">' . $object -> error . '</div>' ;
}
2009-12-04 20:02:55 +01:00
}
2012-03-16 09:39:32 +01:00
else if ( $action == 'setdate_livraison' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02: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' ));
$result = $object -> set_date_livraison ( $user , $datelivraison );
if ( $result < 0 )
{
$mesg = '<div class="error">' . $object -> error . '</div>' ;
}
2008-08-12 20:20:18 +02:00
}
2012-03-16 09:39:32 +01:00
else if ( $action == 'setmode' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$result = $object -> setPaymentMethods ( GETPOST ( 'mode_reglement_id' , 'int' ));
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
2008-08-12 20:20:18 +02:00
}
2012-03-16 09:39:32 +01:00
else if ( $action == 'setavailability' && $user -> rights -> commande -> creer )
2011-04-14 14:39:12 +02:00
{
2012-07-25 12:20:45 +02:00
$result = $object -> availability ( GETPOST ( 'availability_id' ));
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
2011-04-14 14:39:12 +02:00
}
2012-03-16 09:39:32 +01:00
else if ( $action == 'setdemandreason' && $user -> rights -> commande -> creer )
2011-04-26 22:59:45 +02:00
{
2012-07-25 12:20:45 +02:00
$result = $object -> demand_reason ( GETPOST ( 'demand_reason_id' ));
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
2011-04-26 22:59:45 +02:00
}
2012-03-16 09:39:32 +01:00
else if ( $action == 'setconditions' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$result = $object -> setPaymentTerms ( GETPOST ( 'cond_reglement_id' , 'int' ));
if ( $result < 0 )
{
dol_print_error ( $db , $object -> error );
}
else
2012-05-29 23:50:13 +02:00
{
2012-04-11 10:03:57 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
2012-07-25 12:20:45 +02:00
{
// Define output language
$outputlangs = $langs ;
$newlang = GETPOST ( 'lang_id' , 'alpha' );
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $object -> id ); // Reload to get new records
2013-01-26 10:35:30 +01:00
commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-07-25 12:20:45 +02:00
}
}
2008-08-12 20:20:18 +02:00
}
2012-03-16 10:55:29 +01:00
else if ( $action == 'setremisepercent' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$result = $object -> set_remise ( $user , GETPOST ( 'remise_percent' ));
2008-08-12 20:20:18 +02:00
}
2012-03-16 10:55:29 +01:00
else if ( $action == 'setremiseabsolue' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$result = $object -> set_remise_absolue ( $user , GETPOST ( 'remise_absolue' ));
2008-08-12 20:20:18 +02:00
}
2012-07-02 19:30:37 +02:00
else if ( $action == 'setnote_public' && $user -> rights -> commande -> creer )
{
2013-04-10 10:58:38 +02:00
$result = $object -> update_note ( dol_html_entity_decode ( GETPOST ( 'note_public' ), ENT_QUOTES ), '_public' );
2012-07-02 19:30:37 +02:00
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
}
2013-04-09 17:18:07 +02:00
else if ( $action == 'setnote_private' && $user -> rights -> commande -> creer )
2012-07-02 19:30:37 +02:00
{
2013-04-20 06:05:27 +02:00
$result = $object -> update_note ( dol_html_entity_decode ( GETPOST ( 'note_private' ), ENT_QUOTES ), '_private' );
2012-07-02 19:30:37 +02:00
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
2012-03-16 09:39:32 +01:00
}
2008-08-12 20:20:18 +02:00
/*
* Ajout d ' une ligne produit dans la commande
2012-07-25 12:20:45 +02:00
*/
2012-03-16 09:39:32 +01:00
else if ( $action == 'addline' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-08-15 15:52:51 +02:00
$langs -> load ( 'errors' );
2012-08-16 13:10:14 +02:00
$error = false ;
2012-08-23 07:50:20 +02:00
$idprod = GETPOST ( 'idprod' , 'int' );
2012-08-27 19:11:44 +02:00
$product_desc = ( GETPOST ( 'product_desc' ) ? GETPOST ( 'product_desc' ) : ( GETPOST ( 'np_desc' ) ? GETPOST ( 'np_desc' ) : ( GETPOST ( 'dp_desc' ) ? GETPOST ( 'dp_desc' ) : '' )));
$price_ht = GETPOST ( 'price_ht' );
2013-01-09 10:40:36 +01:00
$tva_tx = ( GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : 0 );
2012-08-23 07:50:20 +02:00
2013-06-10 16:05:41 +02:00
//Extrafields
$extrafieldsline = new ExtraFields ( $db );
$extralabelsline = $extrafieldsline -> fetch_name_optionals_label ( $object -> table_element_line );
$array_option = $extrafieldsline -> getOptionalsFromPost ( $extralabelsline );
//Unset extrafield
if ( is_array ( $extralabelsline ))
{
// Get extra fields
foreach ( $extralabelsline as $key => $value )
{
unset ( $_POST [ " options_ " . $key ]);
}
}
2012-08-31 08:51:08 +02:00
if (( empty ( $idprod ) || GETPOST ( 'usenewaddlineform' )) && ( $price_ht < 0 ) && ( GETPOST ( 'qty' ) < 0 ))
2013-04-05 12:43:00 +02:00
{
setEventMessage ( $langs -> trans ( 'ErrorBothFieldCantBeNegative' , $langs -> transnoentitiesnoconv ( 'UnitPriceHT' ), $langs -> transnoentitiesnoconv ( 'Qty' )), 'errors' );
$error = true ;
}
2012-08-23 07:50:20 +02:00
if ( empty ( $idprod ) && GETPOST ( 'type' ) < 0 )
2012-07-25 12:20:45 +02:00
{
2012-08-16 13:10:14 +02:00
setEventMessage ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'Type' )), 'errors' );
2013-04-05 12:43:00 +02:00
$error = true ;
2012-07-25 12:20:45 +02:00
}
2012-08-31 08:51:08 +02:00
if (( empty ( $idprod ) || GETPOST ( 'usenewaddlineform' )) && ( ! ( $price_ht >= 0 ) || $price_ht == '' )) // Unit price can be 0 but not ''
2012-08-27 19:11:44 +02:00
{
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " UnitPriceHT " )), 'errors' );
$error ++ ;
2012-07-25 12:20:45 +02:00
}
2012-08-15 15:52:51 +02:00
if ( ! GETPOST ( 'qty' ) && GETPOST ( 'qty' ) == '' )
2013-04-05 12:43:00 +02:00
{
setEventMessage ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'Qty' )), 'errors' );
$error = true ;
}
if ( empty ( $idprod ) && empty ( $product_desc ))
{
setEventMessage ( $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( 'Description' )), 'errors' );
$error = true ;
}
2012-07-25 12:20:45 +02:00
2012-08-27 19:11:44 +02:00
if ( ! $error && ( GETPOST ( 'qty' ) >= 0 ) && ( ! empty ( $product_desc ) || ! empty ( $idprod )))
2012-07-25 12:20:45 +02:00
{
// Clean parameters
2012-08-27 19:11:44 +02:00
$predef = (( ! empty ( $idprod ) && $conf -> global -> MAIN_FEATURES_LEVEL < 2 ) ? '_predef' : '' );
$date_start = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'date_start' . $predef . 'month' ), GETPOST ( 'date_start' . $predef . 'day' ), GETPOST ( 'date_start' . $predef . 'year' ));
$date_end = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'date_end' . $predef . 'month' ), GETPOST ( 'date_end' . $predef . 'day' ), GETPOST ( 'date_end' . $predef . 'year' ));
2012-08-28 15:35:32 +02:00
$price_base_type = ( GETPOST ( 'price_base_type' , 'alpha' ) ? GETPOST ( 'price_base_type' , 'alpha' ) : 'HT' );
2012-07-25 12:20:45 +02:00
// Ecrase $pu par celui du produit
// Ecrase $desc par celui du produit
// Ecrase $txtva par celui du produit
// Ecrase $base_price_type par celui du produit
2012-08-23 07:50:20 +02:00
if ( ! empty ( $idprod ))
2012-07-25 12:20:45 +02:00
{
$prod = new Product ( $db );
2012-08-23 07:50:20 +02:00
$prod -> fetch ( $idprod );
2012-07-25 12:20:45 +02:00
2012-08-29 17:40:13 +02:00
$label = (( GETPOST ( 'product_label' ) && GETPOST ( 'product_label' ) != $prod -> label ) ? GETPOST ( 'product_label' ) : '' );
2012-08-28 15:35:32 +02:00
// Update if prices fields are defined
2012-08-31 09:25:27 +02:00
if ( GETPOST ( 'usenewaddlineform' ))
2012-07-25 12:20:45 +02:00
{
2012-08-29 17:40:13 +02:00
$pu_ht = price2num ( $price_ht , 'MU' );
2012-08-28 15:35:32 +02:00
$pu_ttc = price2num ( GETPOST ( 'price_ttc' ), 'MU' );
2012-08-31 09:25:27 +02:00
$tva_npr = ( preg_match ( '/\*/' , $tva_tx ) ? 1 : 0 );
$tva_tx = str_replace ( '*' , '' , $tva_tx );
$desc = $product_desc ;
2012-07-25 12:20:45 +02:00
}
else
{
2012-08-28 15:35:32 +02:00
$tva_tx = get_default_tva ( $mysoc , $object -> client , $prod -> id );
$tva_npr = get_default_npr ( $mysoc , $object -> client , $prod -> id );
2012-07-25 12:20:45 +02:00
2012-08-28 15:35:32 +02:00
// multiprix
if ( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES ) && ! empty ( $object -> client -> price_level ))
2012-08-25 15:21:34 +02:00
{
2012-08-28 15:35:32 +02:00
$pu_ht = $prod -> multiprices [ $object -> client -> price_level ];
$pu_ttc = $prod -> multiprices_ttc [ $object -> client -> price_level ];
$price_min = $prod -> multiprices_min [ $object -> client -> price_level ];
$price_base_type = $prod -> multiprices_base_type [ $object -> client -> price_level ];
2012-08-25 15:21:34 +02:00
}
2012-08-28 15:35:32 +02:00
else
2012-08-25 15:21:34 +02:00
{
2012-08-28 15:35:32 +02:00
$pu_ht = $prod -> price ;
$pu_ttc = $prod -> price_ttc ;
$price_min = $prod -> price_min ;
$price_base_type = $prod -> price_base_type ;
2012-08-25 15:21:34 +02:00
}
2012-08-23 07:50:20 +02:00
2012-08-28 15:35:32 +02:00
// 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).
if ( $tva_tx != $prod -> tva_tx )
2012-07-25 12:20:45 +02:00
{
2012-08-28 15:35:32 +02:00
if ( $price_base_type != 'HT' )
{
$pu_ht = price2num ( $pu_ttc / ( 1 + ( $tva_tx / 100 )), 'MU' );
}
else
{
$pu_ttc = price2num ( $pu_ht * ( 1 + ( $tva_tx / 100 )), 'MU' );
}
2012-07-25 12:20:45 +02:00
}
2012-08-25 15:21:34 +02:00
2012-09-16 20:23:57 +02:00
$desc = '' ;
2012-08-25 15:21:34 +02:00
// Define output language
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && ! empty ( $conf -> global -> PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE ))
{
$outputlangs = $langs ;
$newlang = '' ;
if ( empty ( $newlang ) && GETPOST ( 'lang_id' )) $newlang = GETPOST ( 'lang_id' );
if ( empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$desc = ( ! empty ( $prod -> multilangs [ $outputlangs -> defaultlang ][ " description " ])) ? $prod -> multilangs [ $outputlangs -> defaultlang ][ " description " ] : $prod -> description ;
}
else
{
$desc = $prod -> description ;
}
2013-04-05 12:43:00 +02:00
$desc = dol_concatdesc ( $desc , $product_desc );
// Add custom code and origin country into description
if ( empty ( $conf -> global -> MAIN_PRODUCT_DISABLE_CUSTOMCOUNTRYCODE ) && ( ! empty ( $prod -> customcode ) || ! empty ( $prod -> country_code )))
{
$tmptxt = '(' ;
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 );
$tmptxt .= ')' ;
$desc = dol_concatdesc ( $desc , $tmptxt );
}
2012-08-25 15:21:34 +02:00
}
2012-07-25 12:20:45 +02:00
$type = $prod -> type ;
}
else
{
2012-08-31 09:25:27 +02:00
$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' );
2012-07-25 12:20:45 +02:00
}
2012-08-23 07:50:20 +02:00
// Margin
2012-08-31 09:25:27 +02:00
$fournprice = ( GETPOST ( 'fournprice' ) ? GETPOST ( 'fournprice' ) : '' );
$buyingprice = ( GETPOST ( 'buying_price' ) ? GETPOST ( 'buying_price' ) : '' );
2012-08-23 07:50:20 +02:00
2012-07-25 12:20:45 +02:00
// Local Taxes
$localtax1_tx = get_localtax ( $tva_tx , 1 , $object -> client );
$localtax2_tx = get_localtax ( $tva_tx , 2 , $object -> client );
$desc = dol_htmlcleanlastbr ( $desc );
$info_bits = 0 ;
if ( $tva_npr ) $info_bits |= 0x01 ;
2012-08-25 15:21:34 +02:00
if ( ! empty ( $price_min ) && ( price2num ( $pu_ht ) * ( 1 - price2num ( GETPOST ( 'remise_percent' )) / 100 ) < price2num ( $price_min )))
{
2013-06-17 11:58:55 +02:00
$mesg = $langs -> trans ( " CantBeLessThanMinPrice " , price ( price2num ( $price_min , 'MU' ), 0 , $langs , 0 , 0 , - 1 , $conf -> currency ));
2012-08-25 15:21:34 +02:00
setEventMessage ( $mesg , 'errors' );
}
else
{
// Insert line
$result = $object -> addline (
2013-04-05 12:43:00 +02:00
$desc ,
$pu_ht ,
GETPOST ( 'qty' ),
$tva_tx ,
$localtax1_tx ,
$localtax2_tx ,
$idprod ,
GETPOST ( 'remise_percent' ),
$info_bits ,
0 ,
$price_base_type ,
$pu_ttc ,
$date_start ,
$date_end ,
$type ,
- 1 ,
0 ,
GETPOST ( 'fk_parent_line' ),
$fournprice ,
$buyingprice ,
2013-06-10 16:05:41 +02:00
$label ,
$array_option
2012-08-25 15:21:34 +02:00
);
if ( $result > 0 )
{
2013-03-07 18:44:25 +01:00
$ret = $object -> fetch ( $object -> id ); // Reload to get new records
2012-08-25 15:21:34 +02:00
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 )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2013-01-26 10:35:30 +01:00
commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-08-25 15:21:34 +02:00
}
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
unset ( $_POST [ 'idprod' ]);
unset ( $_POST [ 'remise_percent' ]);
2012-08-23 07:50:20 +02:00
unset ( $_POST [ 'price_ht' ]);
unset ( $_POST [ 'price_ttc' ]);
unset ( $_POST [ 'tva_tx' ]);
unset ( $_POST [ 'product_ref' ]);
unset ( $_POST [ 'product_label' ]);
unset ( $_POST [ 'product_desc' ]);
unset ( $_POST [ 'fournprice' ]);
2012-08-25 15:21:34 +02:00
unset ( $_POST [ 'buying_price' ]);
2012-08-27 19:11:44 +02:00
// old method
unset ( $_POST [ 'np_desc' ]);
unset ( $_POST [ 'dp_desc' ]);
2012-08-25 15:21:34 +02:00
}
else
{
setEventMessage ( $object -> error , 'errors' );
}
2012-07-25 12:20:45 +02:00
}
}
2008-08-12 20:20:18 +02:00
}
/*
* Mise a jour d ' une ligne dans la commande
2012-07-25 12:20:45 +02:00
*/
2012-07-25 09:09:56 +02:00
else if ( $action == 'updateligne' && $user -> rights -> commande -> creer && GETPOST ( 'save' ) == $langs -> trans ( 'Save' ))
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
// Clean parameters
$date_start = '' ;
$date_end = '' ;
2012-08-23 13:45:51 +02:00
$date_start = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'date_startmonth' ), GETPOST ( 'date_startday' ), GETPOST ( 'date_startyear' ));
$date_end = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'date_endmonth' ), GETPOST ( 'date_endday' ), GETPOST ( 'date_endyear' ));
$description = dol_htmlcleanlastbr ( GETPOST ( 'product_desc' ));
$pu_ht = GETPOST ( 'price_ht' );
2013-01-09 10:40:36 +01:00
$vat_rate = ( GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : 0 );
2012-07-25 12:20:45 +02:00
// Define info_bits
$info_bits = 0 ;
2013-01-09 10:40:36 +01:00
if ( preg_match ( '/\*/' , $vat_rate )) $info_bits |= 0x01 ;
2012-07-25 12:20:45 +02:00
// Define vat_rate
$vat_rate = str_replace ( '*' , '' , $vat_rate );
$localtax1_rate = get_localtax ( $vat_rate , 1 , $object -> client );
$localtax2_rate = get_localtax ( $vat_rate , 2 , $object -> client );
2012-08-23 13:45:51 +02:00
// Add buying price
$fournprice = ( GETPOST ( 'fournprice' ) ? GETPOST ( 'fournprice' ) : '' );
$buyingprice = ( GETPOST ( 'buying_price' ) ? GETPOST ( 'buying_price' ) : '' );
2012-07-25 12:20:45 +02:00
2013-06-10 16:05:41 +02:00
//Extrafields Lines
$extrafieldsline = new ExtraFields ( $db );
$extralabelsline = $extrafieldsline -> fetch_name_optionals_label ( $object -> table_element_line );
$array_option = $extrafieldsline -> getOptionalsFromPost ( $extralabelsline );
//Unset extrafield POST Data
if ( is_array ( $extralabelsline ))
{
foreach ( $extralabelsline as $key => $value )
{
unset ( $_POST [ " options_ " . $key ]);
}
}
2012-07-25 12:20:45 +02:00
// Check minimum price
2012-08-25 03:28:30 +02:00
$productid = GETPOST ( 'productid' , 'int' );
if ( ! empty ( $productid ))
2012-07-25 12:20:45 +02:00
{
$product = new Product ( $db );
$product -> fetch ( $productid );
2012-08-25 03:28:30 +02:00
2012-07-25 12:20:45 +02:00
$type = $product -> type ;
2012-08-25 03:28:30 +02:00
2012-07-25 12:20:45 +02:00
$price_min = $product -> price_min ;
2012-08-25 03:28:30 +02:00
if ( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES ) && ! empty ( $object -> client -> price_level ))
2012-08-23 13:45:51 +02:00
$price_min = $product -> multiprices_min [ $object -> client -> price_level ];
$label = (( GETPOST ( 'update_label' ) && GETPOST ( 'product_label' )) ? GETPOST ( 'product_label' ) : '' );
2012-07-25 12:20:45 +02:00
2012-08-25 03:28:30 +02:00
if ( $price_min && ( price2num ( $pu_ht ) * ( 1 - price2num ( GETPOST ( 'remise_percent' )) / 100 ) < price2num ( $price_min )))
2012-07-25 12:20:45 +02:00
{
2013-06-17 11:58:55 +02:00
setEventMessage ( $langs -> trans ( " CantBeLessThanMinPrice " , price ( price2num ( $price_min , 'MU' ), 0 , $langs , 0 , 0 , - 1 , $conf -> currency )), 'errors' );
2012-07-25 12:20:45 +02:00
$error ++ ;
}
}
else
{
2012-08-23 13:45:51 +02:00
$type = GETPOST ( 'type' );
$label = ( GETPOST ( 'product_label' ) ? GETPOST ( 'product_label' ) : '' );
2012-07-25 12:20:45 +02:00
// Check parameters
if ( GETPOST ( 'type' ) < 0 ) {
2012-08-25 03:28:30 +02:00
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )), 'errors' );
2012-07-25 12:20:45 +02:00
$error ++ ;
}
}
if ( ! $error )
{
$result = $object -> updateline (
2013-04-05 12:43:00 +02:00
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 ,
2013-06-10 16:05:41 +02:00
$label ,
0 ,
$array_option
2012-07-25 12:20:45 +02:00
);
if ( $result >= 0 )
{
2012-08-25 15:21:34 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
2012-07-25 12:20:45 +02:00
{
2012-08-25 15:21:34 +02:00
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' )) $newlang = GETPOST ( 'lang_id' );
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $object -> id ); // Reload to get new records
2013-01-26 10:35:30 +01:00
commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-07-25 12:20:45 +02:00
}
2012-08-23 13:45:51 +02:00
2012-08-25 15:21:34 +02:00
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
unset ( $_POST [ 'productid' ]);
unset ( $_POST [ 'remise_percent' ]);
unset ( $_POST [ 'price_ht' ]);
unset ( $_POST [ 'price_ttc' ]);
unset ( $_POST [ 'tva_tx' ]);
unset ( $_POST [ 'product_ref' ]);
unset ( $_POST [ 'product_label' ]);
unset ( $_POST [ 'product_desc' ]);
unset ( $_POST [ 'fournprice' ]);
2012-08-23 13:45:51 +02:00
unset ( $_POST [ 'buying_price' ]);
2012-07-25 12:20:45 +02:00
}
else
{
2012-08-23 13:45:51 +02:00
setEventMessage ( $object -> error , 'errors' );
2012-07-25 12:20:45 +02:00
}
}
2008-08-12 20:20:18 +02:00
}
2012-07-25 09:09:56 +02:00
else if ( $action == 'updateligne' && $user -> rights -> commande -> creer && GETPOST ( 'cancel' ) == $langs -> trans ( 'Cancel' ))
2008-08-12 20:20:18 +02:00
{
2012-08-31 05:58:38 +02:00
header ( 'Location: ' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id ); // Pour reaffichage de la fiche en cours d'edition
2012-07-25 12:20:45 +02:00
exit ;
2008-08-12 20:20:18 +02:00
}
2012-03-16 09:39:32 +01:00
else if ( $action == 'confirm_validate' && $confirm == 'yes' && $user -> rights -> commande -> valider )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$idwarehouse = GETPOST ( 'idwarehouse' );
// Check parameters
if ( ! empty ( $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER ) && $object -> hasProductsOrServices ( 1 ))
{
if ( ! $idwarehouse || $idwarehouse == - 1 )
{
$error ++ ;
$mesgs [] = '<div class="error">' . $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( " Warehouse " )) . '</div>' ;
$action = '' ;
}
}
if ( ! $error )
{
$result = $object -> valid ( $user , $idwarehouse );
if ( $result >= 0 )
{
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && ! empty ( $_REQUEST [ 'lang_id' ])) $newlang = $_REQUEST [ 'lang_id' ];
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2013-01-26 10:35:30 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-07-25 12:20:45 +02:00
}
}
2008-08-12 20:20:18 +02:00
}
2011-11-14 16:57:26 +01:00
// Go back to draft status
2012-03-16 09:39:32 +01:00
else if ( $action == 'confirm_modif' && $user -> rights -> commande -> creer )
2011-11-14 16:57:26 +01:00
{
2012-07-25 12:20:45 +02:00
$idwarehouse = GETPOST ( 'idwarehouse' );
// Check parameters
if ( ! empty ( $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER ) && $object -> hasProductsOrServices ( 1 ))
{
if ( ! $idwarehouse || $idwarehouse == - 1 )
{
$error ++ ;
$mesgs [] = '<div class="error">' . $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( " Warehouse " )) . '</div>' ;
$action = '' ;
}
}
2011-11-14 16:57:26 +01:00
if ( ! $error )
{
2012-07-25 12:20:45 +02:00
$result = $object -> set_draft ( $user , $idwarehouse );
if ( $result >= 0 )
{
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && ! empty ( $_REQUEST [ 'lang_id' ])) $newlang = $_REQUEST [ 'lang_id' ];
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
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
2013-01-26 10:35:30 +01:00
commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-07-25 12:20:45 +02:00
}
}
2011-11-14 16:57:26 +01:00
}
}
2012-07-17 15:28:34 +02:00
else if ( $action == 'confirm_shipped' && $confirm == 'yes' && $user -> rights -> commande -> cloturer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$result = $object -> cloture ( $user );
if ( $result < 0 ) $mesgs = $object -> errors ;
2008-08-12 20:20:18 +02:00
}
2012-03-16 09:39:32 +01:00
else if ( $action == 'confirm_cancel' && $confirm == 'yes' && $user -> rights -> commande -> valider )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$idwarehouse = GETPOST ( 'idwarehouse' );
// Check parameters
if ( ! empty ( $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER ) && $object -> hasProductsOrServices ( 1 ))
{
if ( ! $idwarehouse || $idwarehouse == - 1 )
{
$error ++ ;
$mesgs [] = '<div class="error">' . $langs -> trans ( 'ErrorFieldRequired' , $langs -> transnoentitiesnoconv ( " Warehouse " )) . '</div>' ;
$action = '' ;
}
}
2011-12-29 18:07:41 +01:00
if ( ! $error )
{
2012-07-25 12:20:45 +02:00
$result = $object -> cancel ( $idwarehouse );
2011-12-29 18:07:41 +01:00
}
2008-08-12 20:20:18 +02:00
}
/*
* Ordonnancement des lignes
2012-07-25 12:20:45 +02:00
*/
2008-08-12 20:20:18 +02:00
2012-03-16 09:39:32 +01:00
else if ( $action == 'up' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$object -> line_up ( GETPOST ( 'rowid' ));
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && ! empty ( $_REQUEST [ 'lang_id' ])) $newlang = $_REQUEST [ 'lang_id' ];
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2013-01-26 10:35:30 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-07-25 12:20:45 +02:00
2012-08-31 05:58:38 +02:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '#' . GETPOST ( 'rowid' ));
2012-07-25 12:20:45 +02:00
exit ;
2008-08-12 20:20:18 +02:00
}
2012-03-16 09:39:32 +01:00
else if ( $action == 'down' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$object -> line_down ( GETPOST ( 'rowid' ));
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && ! empty ( $_REQUEST [ 'lang_id' ])) $newlang = $_REQUEST [ 'lang_id' ];
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2013-01-26 10:35:30 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-07-25 12:20:45 +02:00
2012-08-31 05:58:38 +02:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '#' . GETPOST ( 'rowid' ));
2012-07-25 12:20:45 +02:00
exit ;
2008-08-12 20:20:18 +02:00
}
2012-03-16 09:39:32 +01:00
else if ( $action == 'builddoc' ) // In get or post
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
/*
* Generate order document
* define into / core / modules / commande / modules_commande . php
*/
// Sauvegarde le dernier modele choisi pour generer un document
if ( $_REQUEST [ 'model' ])
{
$object -> setDocModel ( $user , $_REQUEST [ 'model' ]);
}
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && ! empty ( $_REQUEST [ 'lang_id' ])) $newlang = $_REQUEST [ 'lang_id' ];
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2013-01-26 10:35:30 +01:00
$result = commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-09-07 10:30:02 +02:00
2012-07-25 12:20:45 +02:00
if ( $result <= 0 )
{
dol_print_error ( $db , $result );
exit ;
}
else
{
2012-08-31 05:58:38 +02:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . ( empty ( $conf -> global -> MAIN_JUMP_TAG ) ? '' : '#builddoc' ));
2012-07-25 12:20:45 +02:00
exit ;
}
2008-08-12 20:20:18 +02:00
}
2010-05-12 13:29:21 +02:00
// Remove file in doc form
2012-03-16 09:39:32 +01:00
else if ( $action == 'remove_file' )
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
if ( $object -> id > 0 )
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2012-07-25 12:20:45 +02:00
$langs -> load ( " other " );
$upload_dir = $conf -> commande -> dir_output ;
$file = $upload_dir . '/' . GETPOST ( 'file' );
2012-07-29 16:11:52 +02:00
$ret = dol_delete_file ( $file , 0 , 0 , 0 , $object );
if ( $ret ) setEventMessage ( $langs -> trans ( " FileWasRemoved " , GETPOST ( 'urlfile' )));
else setEventMessage ( $langs -> trans ( " ErrorFailToDeleteFile " , GETPOST ( 'urlfile' )), 'errors' );
2012-07-29 15:47:24 +02:00
$action = '' ;
2012-07-25 12:20:45 +02:00
}
2008-08-12 20:20:18 +02:00
}
2013-03-08 12:00:16 +01:00
// Print file
2013-03-26 10:23:00 +01:00
else if ( $action == 'print_file' AND $user -> rights -> printipp -> read )
2013-03-08 12:00:16 +01:00
{
2013-04-05 12:43:00 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/dolprintipp.class.php' ;
$printer = new dolPrintIPP ( $db , $conf -> global -> PRINTIPP_HOST , $conf -> global -> PRINTIPP_PORT , $user -> login , $conf -> global -> PRINTIPP_USER , $conf -> global -> PRINTIPP_PASSWORD );
2013-04-20 05:11:25 +02:00
$printer -> print_file ( GETPOST ( 'file' , 'alpha' ), GETPOST ( 'printer' , 'alpha' ));
2013-03-26 10:23:00 +01:00
setEventMessage ( $langs -> trans ( " FileWasSentToPrinter " , GETPOST ( 'file' )));
$action = '' ;
2013-04-05 12:43:00 +02:00
}
else if ( $action == 'update_extras' )
{
// Fill array 'array_options' with data from update form
2013-04-26 10:29:14 +02:00
$extralabels = $extrafields -> fetch_name_optionals_label ( $object -> table_element );
2013-04-05 12:43:00 +02:00
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object );
// Actions on extra fields (by external module or standard code)
// FIXME le hook fait double emploi avec le trigger !!
$hookmanager -> initHooks ( array ( 'orderdao' ));
$parameters = array ( 'id' => $object -> id );
$reshook = $hookmanager -> executeHooks ( 'insertExtraFields' , $parameters , $object , $action ); // Note that $action and $object may have been modified by some hooks
if ( empty ( $reshook ))
{
if ( empty ( $conf -> global -> MAIN_EXTRAFIELDS_DISABLED )) // For avoid conflicts if trigger used
{
$result = $object -> insertExtraFields ();
if ( $result < 0 )
{
$error ++ ;
}
}
}
else if ( $reshook < 0 ) $error ++ ;
2013-03-08 12:00:16 +01:00
}
2008-08-12 20:20:18 +02:00
/*
2010-01-13 11:30:33 +01:00
* Add file in email form
2012-07-25 12:20:45 +02:00
*/
2012-07-23 20:52:55 +02:00
if ( GETPOST ( 'addfile' ))
2008-08-12 20:20:18 +02:00
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2010-05-01 16:28:48 +02:00
2012-07-25 12:20:45 +02:00
// Set tmp user directory TODO Use a dedicated directory for temp mails files
$vardir = $conf -> user -> dir_output . " / " . $user -> id ;
$upload_dir_tmp = $vardir . '/temp' ;
2008-08-12 20:20:18 +02:00
2012-07-29 12:54:19 +02:00
dol_add_file_process ( $upload_dir_tmp , 0 , 0 );
2012-07-25 12:20:45 +02:00
$action = 'presend' ;
2008-08-12 20:20:18 +02:00
}
2010-01-13 11:30:33 +01:00
/*
* Remove file in email form
2012-07-25 12:20:45 +02:00
*/
2012-07-25 09:09:56 +02:00
if ( GETPOST ( 'removedfile' ))
2010-01-13 11:30:33 +01:00
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2010-05-12 13:29:21 +02:00
2012-07-25 12:20:45 +02:00
// Set tmp user directory
$vardir = $conf -> user -> dir_output . " / " . $user -> id ;
$upload_dir_tmp = $vardir . '/temp' ;
2010-01-13 11:30:33 +01:00
2011-12-22 09:07:02 +01:00
// TODO Delete only files that was uploaded from email form
2012-07-29 12:54:19 +02:00
dol_remove_file_process ( GETPOST ( 'removedfile' ), 0 );
2012-07-25 12:20:45 +02:00
$action = 'presend' ;
2010-01-13 11:30:33 +01:00
}
2008-08-12 20:20:18 +02:00
/*
* Send mail
2012-07-25 12:20:45 +02:00
*/
2012-07-25 09:09:56 +02:00
if ( $action == 'send' && ! GETPOST ( 'addfile' ) && ! GETPOST ( 'removedfile' ) && ! GETPOST ( 'cancel' ))
2008-08-12 20:20:18 +02:00
{
2012-07-25 12:20:45 +02:00
$langs -> load ( 'mails' );
2008-08-12 20:20:18 +02:00
2012-07-25 12:20:45 +02:00
if ( $object -> id > 0 )
2012-07-02 19:30:37 +02:00
{
2012-07-25 12:20:45 +02:00
// $ref = dol_sanitizeFileName($object->ref);
// $file = $conf->commande->dir_output . '/' . $ref . '/' . $ref . '.pdf';
2012-07-02 19:30:37 +02:00
2012-07-25 12:20:45 +02:00
// if (is_readable($file))
2013-04-05 12:43:00 +02:00
// {
2012-07-25 12:20:45 +02:00
if ( GETPOST ( 'sendto' ))
2012-07-02 19:30:37 +02:00
{
2012-07-25 12:20:45 +02:00
// Le destinataire a ete fourni via le champ libre
$sendto = GETPOST ( 'sendto' );
$sendtoid = 0 ;
2012-07-02 19:30:37 +02:00
}
2012-07-25 12:20:45 +02:00
elseif ( GETPOST ( 'receiver' ) != '-1' )
2012-07-02 19:30:37 +02:00
{
2012-07-25 12:20:45 +02:00
// Recipient was provided from combo list
if ( GETPOST ( 'receiver' ) == 'thirdparty' ) // Id of third party
2012-07-02 19:30:37 +02:00
{
2012-07-25 12:20:45 +02:00
$sendto = $object -> client -> email ;
$sendtoid = 0 ;
2012-07-02 19:30:37 +02:00
}
2012-07-25 12:20:45 +02:00
else // Id du contact
2012-07-02 19:30:37 +02:00
{
2012-07-25 12:20:45 +02:00
$sendto = $object -> client -> contact_get_property ( GETPOST ( 'receiver' ), 'email' );
$sendtoid = GETPOST ( 'receiver' );
2012-07-02 19:30:37 +02:00
}
}
2012-07-25 12:20:45 +02:00
if ( dol_strlen ( $sendto ))
2012-03-18 14:06:55 +01:00
{
2012-07-25 12:20:45 +02:00
$langs -> load ( " commercial " );
2012-07-02 19:30:37 +02:00
2012-07-25 12:20:45 +02:00
$from = GETPOST ( 'fromname' ) . ' <' . GETPOST ( 'frommail' ) . '>' ;
$replyto = GETPOST ( 'replytoname' ) . ' <' . GETPOST ( 'replytomail' ) . '>' ;
$message = GETPOST ( 'message' );
$sendtocc = GETPOST ( 'sendtocc' );
$deliveryreceipt = GETPOST ( 'deliveryreceipt' );
2012-07-02 19:30:37 +02:00
2012-07-25 12:20:45 +02:00
if ( $action == 'send' )
{
if ( dol_strlen ( GETPOST ( 'subject' ))) $subject = GETPOST ( 'subject' );
else $subject = $langs -> transnoentities ( 'Order' ) . ' ' . $object -> ref ;
$actiontypecode = 'AC_COM' ;
$actionmsg = $langs -> transnoentities ( 'MailSentBy' ) . ' ' . $from . ' ' . $langs -> transnoentities ( 'To' ) . ' ' . $sendto . " . \n " ;
if ( $message )
{
$actionmsg .= $langs -> transnoentities ( 'MailTopic' ) . " : " . $subject . " \n " ;
$actionmsg .= $langs -> transnoentities ( 'TextUsedInTheMessageBody' ) . " : \n " ;
$actionmsg .= $message ;
}
$actionmsg2 = $langs -> transnoentities ( 'Action' . $actiontypecode );
}
2012-03-17 16:05:58 +01:00
2012-07-25 12:20:45 +02:00
// Create form object
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formmail.class.php' ;
2012-07-25 12:20:45 +02:00
$formmail = new FormMail ( $db );
2008-08-12 20:20:18 +02:00
2012-07-25 12:20:45 +02:00
$attachedfiles = $formmail -> get_attached_files ();
$filepath = $attachedfiles [ 'paths' ];
$filename = $attachedfiles [ 'names' ];
$mimetype = $attachedfiles [ 'mimes' ];
// Send mail
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/CMailFile.class.php' ;
2013-03-23 14:39:23 +01:00
$mailfile = new CMailFile ( $subject , $sendto , $from , $message , $filepath , $mimetype , $filename , $sendtocc , '' , $deliveryreceipt , - 1 );
2012-07-25 12:20:45 +02:00
if ( $mailfile -> error )
{
$mesg = '<div class="error">' . $mailfile -> error . '</div>' ;
}
else
{
$result = $mailfile -> sendfile ();
if ( $result )
{
$mesg = $langs -> trans ( 'MailSuccessfulySent' , $mailfile -> getValidAddress ( $from , 2 ), $mailfile -> getValidAddress ( $sendto , 2 )); // Must not contains "
$error = 0 ;
// Initialisation donnees
$object -> sendtoid = $sendtoid ;
$object -> actiontypecode = $actiontypecode ;
$object -> actionmsg = $actionmsg ;
$object -> actionmsg2 = $actionmsg2 ;
$object -> fk_element = $object -> id ;
$object -> elementtype = $object -> element ;
// Appel des triggers
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
2012-07-25 12:20:45 +02:00
$interface = new Interfaces ( $db );
$result = $interface -> run_triggers ( 'ORDER_SENTBYMAIL' , $object , $user , $langs , $conf );
if ( $result < 0 ) {
$error ++ ; $this -> errors = $interface -> errors ;
}
// Fin appel triggers
if ( $error )
{
dol_print_error ( $db );
}
else
{
// Redirect here
// This avoid sending mail twice if going out and then back to page
2012-08-31 05:58:38 +02:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&mesg=' . urlencode ( $mesg ));
2012-07-25 12:20:45 +02:00
exit ;
}
}
else
{
$langs -> load ( " other " );
$mesg = '<div class="error">' ;
if ( $mailfile -> error )
{
$mesg .= $langs -> trans ( 'ErrorFailedToSendMail' , $from , $sendto );
$mesg .= '<br>' . $mailfile -> error ;
}
else
{
$mesg .= 'No mail sent. Feature is disabled by option MAIN_DISABLE_ALL_MAILS' ;
}
$mesg .= '</div>' ;
}
}
/* }
else
{
$langs -> load ( " other " );
$mesg = '<div class="error">' . $langs -> trans ( 'ErrorMailRecipientIsEmpty' ) . ' !</div>' ;
$action = 'presend' ;
dol_syslog ( 'Recipient email is empty' );
} */
2012-07-02 19:30:37 +02:00
}
else
{
2012-07-25 12:20:45 +02:00
$langs -> load ( " errors " );
$mesg = '<div class="error">' . $langs -> trans ( 'ErrorCantReadFile' , $file ) . '</div>' ;
dol_syslog ( 'Failed to read file: ' . $file );
2012-07-02 19:30:37 +02:00
}
}
2013-04-05 12:43:00 +02:00
else
{
$langs -> load ( " other " );
$mesg = '<div class="error">' . $langs -> trans ( 'ErrorFailedToReadEntity' , $langs -> trans ( " Order " )) . '</div>' ;
dol_syslog ( $langs -> trans ( 'ErrorFailedToReadEntity' , $langs -> trans ( " Order " )));
}
}
2012-07-02 19:30:37 +02:00
2013-04-05 12:43:00 +02:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_CONTACTS_TAB ) && $user -> rights -> commande -> creer )
{
if ( $action == 'addcontact' )
2012-07-02 19:30:37 +02:00
{
2013-04-05 12:43:00 +02:00
if ( $object -> id > 0 )
2012-07-02 19:30:37 +02:00
{
2013-04-05 12:43:00 +02:00
$contactid = ( GETPOST ( 'userid' ) ? GETPOST ( 'userid' ) : GETPOST ( 'contactid' ));
$result = $object -> add_contact ( $contactid , GETPOST ( 'type' ), GETPOST ( 'source' ));
2012-07-25 12:20:45 +02:00
}
2008-11-16 02:54:33 +01:00
2013-04-05 12:43:00 +02:00
if ( $result >= 0 )
{
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
exit ;
}
else
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
if ( $object -> error == 'DB_ERROR_RECORD_ALREADY_EXISTS' )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
$langs -> load ( " errors " );
$mesg = '<div class="error">' . $langs -> trans ( " ErrorThisContactIsAlreadyDefinedAsThisType " ) . '</div>' ;
2012-07-25 12:20:45 +02:00
}
else
{
2013-04-05 12:43:00 +02:00
$mesg = '<div class="error">' . $object -> error . '</div>' ;
2012-07-25 12:20:45 +02:00
}
}
2013-04-05 12:43:00 +02:00
}
2008-08-12 20:20:18 +02:00
2013-04-05 12:43:00 +02:00
// bascule du statut d'un contact
else if ( $action == 'swapstatut' )
{
if ( $object -> id > 0 )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
$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
2013-04-05 12:43:00 +02:00
// Efface un contact
else if ( $action == 'deletecontact' )
{
$result = $object -> delete_contact ( $lineid );
2008-08-12 20:20:18 +02:00
2013-04-05 12:43:00 +02:00
if ( $result >= 0 )
{
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
exit ;
}
else {
dol_print_error ( $db );
}
}
}
2011-03-02 11:33:24 +01:00
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
* View
*/
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02: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 );
2012-07-28 09:57:04 +02:00
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*********************************************************************
*
* Mode creation
*
*********************************************************************/
if ( $action == 'create' && $user -> rights -> commande -> creer )
{
print_fiche_titre ( $langs -> trans ( 'CreateOrder' ));
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
dol_htmloutput_mesg ( $mesg , $mesgs , 'error' );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$soc = new Societe ( $db );
if ( $socid > 0 ) $res = $soc -> fetch ( $socid );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
if ( ! empty ( $origin ) && ! empty ( $originid ))
{
// Parse element/subelement (ex: project_task)
$element = $subelement = $origin ;
if ( preg_match ( '/^([^_]+)_([^_]+)/i' , $origin , $regs ))
{
$element = $regs [ 1 ];
$subelement = $regs [ 2 ];
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
if ( $element == 'project' )
{
$projectid = $originid ;
2012-07-25 12:20:45 +02:00
}
else
{
2013-04-05 12:43:00 +02:00
// For compatibility
if ( $element == 'order' || $element == 'commande' ) {
$element = $subelement = 'commande' ;
}
if ( $element == 'propal' ) {
$element = 'comm/propal' ; $subelement = 'propal' ;
}
if ( $element == 'contract' ) {
$element = $subelement = 'contrat' ;
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02: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 );
if ( empty ( $objectsrc -> lines ) && method_exists ( $objectsrc , 'fetch_lines' )) $objectsrc -> fetch_lines ();
$objectsrc -> fetch_thirdparty ();
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02: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
2013-04-05 12:43:00 +02:00
$soc = $objectsrc -> client ;
$cond_reglement_id = ( ! empty ( $objectsrc -> cond_reglement_id ) ? $objectsrc -> cond_reglement_id : ( ! empty ( $soc -> cond_reglement_id ) ? $soc -> cond_reglement_id : 1 ));
$mode_reglement_id = ( ! empty ( $objectsrc -> mode_reglement_id ) ? $objectsrc -> mode_reglement_id : ( ! empty ( $soc -> mode_reglement_id ) ? $soc -> mode_reglement_id : 0 ));
$availability_id = ( ! empty ( $objectsrc -> availability_id ) ? $objectsrc -> availability_id : ( ! empty ( $soc -> availability_id ) ? $soc -> availability_id : 0 ));
$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 ));
$dateinvoice = empty ( $conf -> global -> MAIN_AUTOFILL_DATE ) ? - 1 : 0 ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$datedelivery = ( ! empty ( $objectsrc -> date_livraison ) ? $objectsrc -> date_livraison : '' );
2012-07-25 12:20:45 +02:00
2013-04-09 17:18:07 +02:00
$note_private = ( ! empty ( $objectsrc -> note_private ) ? $objectsrc -> note_private : ( ! empty ( $objectsrc -> note_private ) ? $objectsrc -> note_private : '' ));
2013-04-05 12:43:00 +02:00
$note_public = ( ! empty ( $objectsrc -> note_public ) ? $objectsrc -> note_public : '' );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Object source contacts list
$srccontactslist = $objectsrc -> liste_contact ( - 1 , 'external' , 1 );
2013-01-19 10:45:57 +01:00
}
2013-04-05 12:43:00 +02:00
}
else
{
$cond_reglement_id = $soc -> cond_reglement_id ;
$mode_reglement_id = $soc -> mode_reglement_id ;
$availability_id = $soc -> availability_id ;
$demand_reason_id = $soc -> demand_reason_id ;
$remise_percent = $soc -> remise_percent ;
$remise_absolue = 0 ;
$dateinvoice = empty ( $conf -> global -> MAIN_AUTOFILL_DATE ) ? - 1 : 0 ;
$projectid = 0 ;
}
$absolute_discount = $soc -> getAvailableDiscounts ();
2012-07-25 12:20:45 +02:00
2013-01-26 10:35:30 +01:00
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$nbrow = 10 ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
print '<form name="crea_commande" action="' . $_SERVER [ " PHP_SELF " ] . '" method="POST">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="add">' ;
print '<input type="hidden" name="socid" value="' . $soc -> id . '">' . " \n " ;
2013-06-16 21:31:21 +02:00
print '<input type="hidden" name="remise_percent" value="' . $soc -> remise_percent . '">' ;
2013-04-05 12:43:00 +02:00
print '<input type="hidden" name="origin" value="' . $origin . '">' ;
print '<input type="hidden" name="originid" value="' . $originid . '">' ;
2012-07-25 12:20:45 +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
print '<tr><td class="fieldrequired">' . $langs -> trans ( 'Ref' ) . '</td><td colspan="2">' . $langs -> trans ( " Draft " ) . '</td></tr>' ;
// Reference client
print '<tr><td>' . $langs -> trans ( 'RefCustomer' ) . '</td><td colspan="2">' ;
//print '<input type="text" name="ref_client" value="'.$ref_client.'"></td>';
print '<input type="text" name="ref_client" value=""></td>' ; // We must not use ref_client of proposal for an order
print '</tr>' ;
// Client
print '<tr>' ;
print '<td class="fieldrequired">' . $langs -> trans ( 'Customer' ) . '</td>' ;
if ( $socid > 0 )
{
print '<td colspan="2">' ;
print $soc -> getNomUrl ( 1 );
print '<input type="hidden" name="socid" value="' . $soc -> id . '">' ;
print '</td>' ;
}
else
{
print '<td colspan="2">' ;
print $form -> select_company ( '' , 'socid' , 's.client = 1 OR s.client = 3' , 1 );
print '</td>' ;
}
print '</tr>' . " \n " ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
* Contact de la commande
*/
if ( $socid > 0 )
{
print " <tr><td> " . $langs -> trans ( " DefaultContact " ) . '</td><td colspan="2">' ;
$form -> select_contacts ( $soc -> id , $setcontact , 'contactidp' , 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
print '<tr><td>' . $langs -> trans ( 'Discounts' ) . '</td><td colspan="2">' ;
2013-06-16 21:31:21 +02:00
if ( $soc -> remise_percent ) print $langs -> trans ( " CompanyHasRelativeDiscount " , $soc -> remise_percent );
2013-04-05 12:43:00 +02:00
else print $langs -> trans ( " CompanyHasNoRelativeDiscount " );
print '. ' ;
$absolute_discount = $soc -> getAvailableDiscounts ();
if ( $absolute_discount ) print $langs -> trans ( " CompanyHasAbsoluteDiscount " , price ( $absolute_discount ), $langs -> trans ( " Currency " . $conf -> currency ));
else print $langs -> trans ( " CompanyHasNoAbsoluteDiscount " );
print '.' ;
print '</td></tr>' ;
}
// Date
print '<tr><td class="fieldrequired">' . $langs -> trans ( 'Date' ) . '</td><td colspan="2">' ;
$form -> select_date ( '' , 're' , '' , '' , '' , " crea_commande " , 1 , 1 );
print '</td></tr>' ;
// Date de livraison
print " <tr><td> " . $langs -> trans ( " DeliveryDate " ) . '</td><td colspan="2">' ;
if ( empty ( $datedelivery ))
{
if ( ! empty ( $conf -> global -> DATE_LIVRAISON_WEEK_DELAY )) $datedelivery = time () + (( 7 * $conf -> global -> DATE_LIVRAISON_WEEK_DELAY ) * 24 * 60 * 60 );
else $datedelivery = empty ( $conf -> global -> MAIN_AUTOFILL_DATE ) ? - 1 : 0 ;
}
$form -> select_date ( $datedelivery , 'liv_' , '' , '' , '' , " crea_commande " , 1 , 1 );
print " </td></tr> " ;
// Conditions de reglement
2013-04-25 01:13:13 +02:00
print '<tr><td class="nowrap">' . $langs -> trans ( 'PaymentConditionsShort' ) . '</td><td colspan="2">' ;
2013-04-05 12:43:00 +02:00
$form -> select_conditions_paiements ( $cond_reglement_id , 'cond_reglement_id' , - 1 , 1 );
print '</td></tr>' ;
// Mode de reglement
print '<tr><td>' . $langs -> trans ( 'PaymentMode' ) . '</td><td colspan="2">' ;
$form -> select_types_paiements ( $mode_reglement_id , 'mode_reglement_id' );
print '</td></tr>' ;
// Delivery delay
print '<tr><td>' . $langs -> trans ( 'AvailabilityPeriod' ) . '</td><td colspan="2">' ;
$form -> select_availability ( $availability_id , 'availability_id' , '' , 1 );
print '</td></tr>' ;
// What trigger creation
print '<tr><td>' . $langs -> trans ( 'Source' ) . '</td><td colspan="2">' ;
$form -> select_demand_reason ( $demand_reason_id , 'demand_reason_id' , '' , 1 );
print '</td></tr>' ;
// Project
if ( ! empty ( $conf -> projet -> enabled ) && $socid > 0 )
{
2013-06-14 22:33:01 +02:00
$formproject = new FormProjets ( $db );
2013-06-16 21:31:21 +02:00
2013-04-05 12:43:00 +02:00
print '<tr><td>' . $langs -> trans ( 'Project' ) . '</td><td colspan="2">' ;
2013-06-14 22:33:01 +02:00
$numprojet = $formproject -> select_projects ( $soc -> id , $projectid );
2013-04-05 12:43:00 +02:00
if ( $numprojet == 0 )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
print ' <a href="' . DOL_URL_ROOT . '/projet/fiche.php?socid=' . $soc -> id . '&action=create">' . $langs -> trans ( " AddProject " ) . '</a>' ;
2012-07-25 12:20:45 +02:00
}
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
// Other attributes
$parameters = array ( 'objectsrc' => $objectsrc , 'colspan' => ' colspan="3"' );
$reshook = $hookmanager -> executeHooks ( 'formObjectOptions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
if ( empty ( $reshook ) && ! empty ( $extrafields -> attribute_label ))
{
print $object -> showOptionals ( $extrafields , 'edit' );
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Template to use by default
print '<tr><td>' . $langs -> trans ( 'Model' ) . '</td>' ;
print '<td colspan="2">' ;
include_once DOL_DOCUMENT_ROOT . '/core/modules/commande/modules_commande.php' ;
$liste = ModelePDFCommandes :: liste_modeles ( $db );
print $form -> selectarray ( 'model' , $liste , $conf -> global -> COMMANDE_ADDON_PDF );
print " </td></tr> " ;
// Note publique
print '<tr>' ;
print '<td class="border" valign="top">' . $langs -> trans ( 'NotePublic' ) . '</td>' ;
print '<td valign="top" colspan="2">' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$doleditor = new DolEditor ( 'note_public' , $note_public , '' , 80 , 'dolibarr_notes' , 'In' , 0 , false , true , ROWS_3 , 70 );
print $doleditor -> Create ( 1 );
//print '<textarea name="note_public" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_public.'</textarea>';
print '</td></tr>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Note privee
if ( ! $user -> societe_id )
{
2012-07-25 12:20:45 +02:00
print '<tr>' ;
2013-04-05 12:43:00 +02:00
print '<td class="border" valign="top">' . $langs -> trans ( 'NotePrivate' ) . '</td>' ;
2012-07-25 12:20:45 +02:00
print '<td valign="top" colspan="2">' ;
2012-07-28 09:57:04 +02:00
2013-04-09 17:18:07 +02:00
$doleditor = new DolEditor ( 'note_private' , $note_private , '' , 80 , 'dolibarr_notes' , 'In' , 0 , false , true , ROWS_3 , 70 );
2012-07-25 12:20:45 +02:00
print $doleditor -> Create ( 1 );
2013-04-05 12:43:00 +02: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
}
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc ))
{
// TODO for compatibility
if ( $origin == 'contrat' )
{
// Calcul contrat->price (HT), contrat->total (TTC), contrat->tva
$objectsrc -> remise_absolue = $remise_absolue ;
$objectsrc -> remise_percent = $remise_percent ;
$objectsrc -> update_price ( 1 );
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02: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 . '">' ;
$newclassname = $classname ;
if ( $newclassname == 'Propal' ) $newclassname = 'CommercialProposal' ;
print '<tr><td>' . $langs -> trans ( $newclassname ) . '</td><td colspan="2">' . $objectsrc -> getNomUrl ( 1 ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'TotalHT' ) . '</td><td colspan="2">' . price ( $objectsrc -> total_ht ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'TotalVAT' ) . '</td><td colspan="2">' . price ( $objectsrc -> total_tva ) . " </td></tr> " ;
if ( $mysoc -> localtax1_assuj == " 1 " ) //Localtax1 RE
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ) . '</td><td colspan="2">' . price ( $objectsrc -> total_localtax1 ) . " </td></tr> " ;
}
2012-07-28 09:57:04 +02:00
2013-04-05 12:43:00 +02:00
if ( $mysoc -> localtax2_assuj == " 1 " ) //Localtax2 IRPF
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ) . '</td><td colspan="2">' . price ( $objectsrc -> total_localtax2 ) . " </td></tr> " ;
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
print '<tr><td>' . $langs -> trans ( 'TotalTTC' ) . '</td><td colspan="2">' . price ( $objectsrc -> total_ttc ) . " </td></tr> " ;
}
else
{
if ( ! empty ( $conf -> global -> PRODUCT_SHOW_WHEN_CREATE ))
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
/*
* Services / produits predefinis
*/
$NBLINES = 8 ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
print '<tr><td colspan="3">' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
print '<table class="noborder">' ;
print '<tr><td>' . $langs -> trans ( 'ProductsAndServices' ) . '</td>' ;
print '<td>' . $langs -> trans ( 'Qty' ) . '</td>' ;
print '<td>' . $langs -> trans ( 'ReductionShort' ) . '</td>' ;
print '</tr>' ;
for ( $i = 1 ; $i <= $NBLINES ; $i ++ )
2012-11-28 10:35:16 +01:00
{
2013-04-05 12:43:00 +02:00
print '<tr><td>' ;
// multiprix
if ( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES ))
print $form -> select_produits ( '' , 'idprod' . $i , '' , $conf -> product -> limit_size , $soc -> price_level );
else
print $form -> select_produits ( '' , 'idprod' . $i , '' , $conf -> product -> limit_size );
print '</td>' ;
print '<td><input type="text" size="3" name="qty' . $i . '" value="1"></td>' ;
2013-06-16 21:31:21 +02:00
print '<td><input type="text" size="3" name="remise_percent' . $i . '" value="' . $soc -> remise_percent . '">%</td></tr>' ;
2012-07-25 12:20:45 +02:00
}
2012-11-28 10:35:16 +01:00
2013-04-05 12:43:00 +02:00
print '</table>' ;
print '</td></tr>' ;
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +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
2013-04-05 12:43:00 +02:00
// Button "Create Draft"
print '<br><center><input type="submit" class="button" name="bouton" value="' . $langs -> trans ( 'CreateDraft' ) . '"></center>' ;
2012-07-25 12:20:45 +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
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc ))
{
$title = $langs -> trans ( 'ProductsAndServices' );
print_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>' ;
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
}
else
{
/* *************************************************************************** */
/* */
/* Mode vue et edition */
/* */
/* *************************************************************************** */
$now = dol_now ();
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
if ( $object -> id > 0 )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
dol_htmloutput_mesg ( $mesg , $mesgs );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$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
2013-04-05 12:43:00 +02:00
$head = commande_prepare_head ( $object );
dol_fiche_head ( $head , 'order' , $langs -> trans ( " CustomerOrder " ), 0 , 'order' );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$formconfirm = '' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
* Confirmation de la suppression de la commande
*/
if ( $action == 'delete' )
{
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'DeleteOrder' ), $langs -> trans ( 'ConfirmDeleteOrder' ), 'confirm_delete' , '' , 0 , 1 );
}
/*
* Confirmation de la validation
*/
if ( $action == 'validate' )
{
// on verifie si l'objet est en numerotation provisoire
$ref = substr ( $object -> ref , 1 , 4 );
if ( $ref == 'PROV' )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
$numref = $object -> getNextNumRef ( $soc );
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
else
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
$numref = $object -> ref ;
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
$text = $langs -> trans ( 'ConfirmValidateOrder' , $numref );
if ( ! empty ( $conf -> notification -> enabled ))
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/notify.class.php' ;
$notify = new Notify ( $db );
$text .= '<br>' ;
2013-04-21 14:24:19 +02:00
$text .= $notify -> confirmMessage ( 'ORDER_VALIDATE' , $object -> socid );
2013-04-05 12:43:00 +02:00
}
$formquestion = array ();
if ( ! empty ( $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER ) && $object -> hasProductsOrServices ( 1 ))
{
$langs -> load ( " stocks " );
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
$formproduct = new FormProduct ( $db );
$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' => 'idwarehouse' , 'label' => $langs -> trans ( " SelectWarehouseForStockDecrease " ), 'value' => $formproduct -> selectWarehouses ( GETPOST ( 'idwarehouse' ), 'idwarehouse' , '' , 1 )));
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ValidateOrder' ), $text , 'confirm_validate' , $formquestion , 0 , 1 , 220 );
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Confirm back to draft status
if ( $action == 'modif' )
{
$text = $langs -> trans ( 'ConfirmUnvalidateOrder' , $object -> ref );
$formquestion = array ();
if ( ! empty ( $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER ) && $object -> hasProductsOrServices ( 1 ))
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
$langs -> load ( " stocks " );
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
$formproduct = new FormProduct ( $db );
$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' => 'idwarehouse' , 'label' => $langs -> trans ( " SelectWarehouseForStockIncrease " ), 'value' => $formproduct -> selectWarehouses ( GETPOST ( 'idwarehouse' ), 'idwarehouse' , '' , 1 )));
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'UnvalidateOrder' ), $text , 'confirm_modif' , $formquestion , " yes " , 1 , 220 );
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
* Confirmation de la cloture
*/
if ( $action == 'shipped' )
{
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'CloseOrder' ), $langs -> trans ( 'ConfirmCloseOrder' ), 'confirm_shipped' , '' , 0 , 1 );
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
* Confirmation de l ' annulation
*/
if ( $action == 'cancel' )
{
$text = $langs -> trans ( 'ConfirmCancelOrder' , $object -> ref );
$formquestion = array ();
if ( ! empty ( $conf -> global -> STOCK_CALCULATE_ON_VALIDATE_ORDER ) && $object -> hasProductsOrServices ( 1 ))
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
$langs -> load ( " stocks " );
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
$formproduct = new FormProduct ( $db );
2012-07-25 12:20:45 +02:00
$formquestion = array (
2013-04-05 12:43:00 +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' ), 'idwarehouse' , '' , 1 )));
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'Cancel' ), $text , 'confirm_cancel' , $formquestion , 0 , 1 );
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
* Confirmation de la suppression d ' une ligne produit
*/
if ( $action == 'ask_deleteline' )
{
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&lineid=' . $lineid , $langs -> trans ( 'DeleteProductLine' ), $langs -> trans ( 'ConfirmDeleteProductLine' ), 'confirm_deleteline' , '' , 0 , 1 );
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Clone confirmation
if ( $action == 'clone' )
{
// Create an array for form
$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)' ))
);
// Paiement incomplet. On demande si motif = escompte ou autre
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'CloneOrder' ), $langs -> trans ( 'ConfirmCloneOrder' , $object -> ref ), 'confirm_clone' , $formquestion , 'yes' , 1 );
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
if ( ! $formconfirm )
{
$parameters = array ( 'lineid' => $lineid );
$formconfirm = $hookmanager -> executeHooks ( 'formConfirm' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
}
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
2013-04-05 12:43:00 +02:00
/*
* Commande
*/
$nbrow = 9 ;
if ( ! empty ( $conf -> projet -> enabled )) $nbrow ++ ;
2012-07-28 20:54:07 +02:00
2013-04-05 12:43:00 +02:00
//Local taxes
if ( $mysoc -> localtax1_assuj == " 1 " ) $nbrow ++ ;
if ( $mysoc -> localtax2_assuj == " 1 " ) $nbrow ++ ;
2012-07-25 12:20:45 +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
$linkback = '<a href="' . DOL_URL_ROOT . '/commande/liste.php' . ( ! empty ( $socid ) ? '?socid=' . $socid : '' ) . '">' . $langs -> trans ( " BackToList " ) . '</a>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Ref
print '<tr><td width="18%">' . $langs -> trans ( 'Ref' ) . '</td>' ;
print '<td colspan="3">' ;
print $form -> showrefnav ( $object , 'ref' , $linkback , 1 , 'ref' , 'ref' );
print '</td>' ;
print '</tr>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Ref commande client
print '<tr><td>' ;
2013-04-25 01:13:13 +02:00
print '<table class="nobordernopadding" width="100%"><tr><td class="nowrap">' ;
2013-04-05 12:43:00 +02:00
print $langs -> trans ( 'RefCustomer' ) . '</td><td align="left">' ;
print '</td>' ;
if ( $action != 'refcustomer' && $object -> brouillon ) print '<td align="right"><a href="' . $_SERVER [ 'PHP_SELF' ] . '?action=refcustomer&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'Modify' )) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $user -> rights -> commande -> creer && $action == 'refcustomer' )
{
print '<form action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="set_ref_client">' ;
print '<input type="text" class="flat" size="20" name="ref_client" value="' . $object -> ref_client . '">' ;
print ' <input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
print '</form>' ;
}
else
{
print $object -> ref_client ;
}
print '</td>' ;
print '</tr>' ;
2013-04-03 00:36:31 +02:00
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Third party
print '<tr><td>' . $langs -> trans ( 'Company' ) . '</td>' ;
print '<td colspan="3">' . $soc -> getNomUrl ( 1 ) . '</td>' ;
print '</tr>' ;
2012-07-25 12:20:45 +02:00
2013-04-21 14:24:19 +02:00
if ( ! empty ( $conf -> global -> FACTURE_DEPOSITS_ARE_JUST_PAYMENTS ))
{
$filterabsolutediscount = " fk_facture_source IS NULL " ; // If we want deposit to be substracted to payments only and not to total of final invoice
$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
{
$filterabsolutediscount = " fk_facture_source IS NULL OR (fk_facture_source IS NOT NULL AND description='(DEPOSIT)') " ;
$filtercreditnote = " fk_facture_source IS NOT NULL AND description <> '(DEPOSIT)' " ;
2013-04-05 12:43:00 +02:00
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Relative and absolute discounts
$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>' ;
$addcreditnote = '<a href="' . DOL_URL_ROOT . '/compta/facture.php?action=create&socid=' . $soc -> id . '&type=2&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ]) . '?facid=' . $object -> id . '">' . $langs -> trans ( " AddCreditNote " ) . '</a>' ;
print '<tr><td>' . $langs -> trans ( 'Discounts' ) . '</td><td colspan="3">' ;
2013-06-16 21:31:21 +02:00
if ( $soc -> remise_percent ) print $langs -> trans ( " CompanyHasRelativeDiscount " , $soc -> remise_percent );
2013-04-05 12:43:00 +02:00
else print $langs -> trans ( " CompanyHasNoRelativeDiscount " );
print '. ' ;
$absolute_discount = $soc -> getAvailableDiscounts ( '' , 'fk_facture_source IS NULL' );
$absolute_creditnote = $soc -> getAvailableDiscounts ( '' , 'fk_facture_source IS NOT NULL' );
$absolute_discount = price2num ( $absolute_discount , 'MT' );
$absolute_creditnote = price2num ( $absolute_creditnote , 'MT' );
if ( $absolute_discount )
{
if ( $object -> statut > 0 )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
print $langs -> trans ( " CompanyHasAbsoluteDiscount " , price ( $absolute_discount ), $langs -> transnoentities ( " Currency " . $conf -> currency ));
2012-07-25 12:20:45 +02:00
}
else
{
2013-04-05 12:43:00 +02:00
// Remise dispo de type remise fixe (not credit note)
print '<br>' ;
$form -> form_remise_dispo ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , 0 , 'remise_id' , $soc -> id , $absolute_discount , $filterabsolutediscount );
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
}
if ( $absolute_creditnote )
{
print $langs -> trans ( " CompanyHasCreditNote " , price ( $absolute_creditnote ), $langs -> transnoentities ( " Currency " . $conf -> currency )) . '. ' ;
}
if ( ! $absolute_discount && ! $absolute_creditnote ) print $langs -> trans ( " CompanyHasNoAbsoluteDiscount " ) . '.' ;
print '</td></tr>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Date
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'Date' );
print '</td>' ;
if ( $action != 'editdate' && $object -> brouillon ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editdate&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetDate' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'editdate' )
{
print '<form name="setdate" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="setdate">' ;
$form -> select_date ( $object -> date , 'order_' , '' , '' , '' , " setdate " );
print '<input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
print '</form>' ;
}
else
{
print $object -> date ? dol_print_date ( $object -> date , 'daytext' ) : ' ' ;
}
print '</td>' ;
print '</tr>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Delivery date planed
print '<tr><td height="10">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'DateDeliveryPlanned' );
print '</td>' ;
if ( $action != 'editdate_livraison' ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editdate_livraison&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetDeliveryDate' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'editdate_livraison' )
{
print '<form name="setdate_livraison" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="setdate_livraison">' ;
$form -> select_date ( $object -> date_livraison ? $object -> date_livraison :- 1 , 'liv_' , '' , '' , '' , " setdate_livraison " );
print '<input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
print '</form>' ;
}
else
{
print $object -> date_livraison ? dol_print_date ( $object -> date_livraison , 'daytext' ) : ' ' ;
}
print '</td>' ;
print '</tr>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Terms of payment
print '<tr><td height="10">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'PaymentConditionsShort' );
print '</td>' ;
if ( $action != 'editconditions' && $object -> brouillon ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editconditions&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetConditions' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'editconditions' )
{
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'cond_reglement_id' , 1 );
}
else
{
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'none' , 1 );
}
print '</td>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
print '</tr>' ;
// Mode of payment
print '<tr><td height="10">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'PaymentMode' );
print '</td>' ;
if ( $action != 'editmode' && $object -> brouillon ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editmode&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetMode' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'editmode' )
{
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> mode_reglement_id , 'mode_reglement_id' );
}
else
{
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> mode_reglement_id , 'none' );
}
print '</td></tr>' ;
// Availability
print '<tr><td height="10">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'AvailabilityPeriod' );
print '</td>' ;
if ( $action != 'editavailability' && $object -> brouillon ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editavailability&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetAvailability' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'editavailability' )
{
$form -> form_availability ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> availability_id , 'availability_id' , 1 );
}
else
{
$form -> form_availability ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> availability_id , 'none' , 1 );
}
print '</td></tr>' ;
// Source
print '<tr><td height="10">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'Source' );
print '</td>' ;
if ( $action != 'editdemandreason' && ! empty ( $object -> brouillon )) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editdemandreason&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetDemandReason' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'editdemandreason' )
{
$form -> form_demand_reason ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> demand_reason_id , 'demand_reason_id' , 1 );
}
else
{
$form -> form_demand_reason ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> demand_reason_id , 'none' );
}
// Removed because using dictionnary is an admin feature, not a user feature. Ther is already the "star" to show info to admin users.
// This is to avoid too heavy screens and have an uniform look and feel for all screens.
//print '</td><td>';
//print '<a href="'.DOL_URL_ROOT.'/admin/dict.php?id=22&origin=order&originid='.$object->id.'">'.$langs->trans("DictionnarySource").'</a>';
print '</td></tr>' ;
// Project
if ( ! empty ( $conf -> projet -> enabled ))
{
$langs -> load ( 'projects' );
2012-07-25 12:20:45 +02:00
print '<tr><td height="10">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
2013-04-05 12:43:00 +02:00
print $langs -> trans ( 'Project' );
2012-07-25 12:20:45 +02:00
print '</td>' ;
2013-04-05 12:43:00 +02:00
if ( $action != 'classify' ) print '<td align="right"><a href="' . $_SERVER [ 'PHP_SELF' ] . '?action=classify&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetProject' )) . '</a></td>' ;
2012-07-25 12:20:45 +02:00
print '</tr></table>' ;
2013-04-03 00:36:31 +02:00
print '</td><td colspan="3">' ;
2013-04-05 12:43:00 +02:00
//print "$object->id, $object->socid, $object->fk_project";
if ( $action == 'classify' )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
$form -> form_project ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> socid , $object -> fk_project , 'projectid' );
2012-07-25 12:20:45 +02:00
}
else
{
2013-04-05 12:43:00 +02:00
$form -> form_project ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> socid , $object -> fk_project , 'none' );
2012-07-25 12:20:45 +02:00
}
print '</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
// Other attributes
$res = $object -> fetch_optionals ( $object -> id , $extralabels );
$parameters = array ( 'colspan' => ' colspan="3"' );
$reshook = $hookmanager -> executeHooks ( 'formObjectOptions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
if ( empty ( $reshook ) && ! empty ( $extrafields -> attribute_label ))
{
2013-05-10 15:39:54 +02:00
if ( $action == 'edit_extras' )
{
print '<form enctype="multipart/form-data" action="' . $_SERVER [ " PHP_SELF " ] . '" method="post" name="formsoc">' ;
print '<input type="hidden" name="action" value="update_extras">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="id" value="' . $object -> id . '">' ;
}
2013-04-05 12:43:00 +02:00
2013-05-10 15:39:54 +02:00
foreach ( $extrafields -> attribute_label as $key => $label )
{
2013-05-19 18:47:14 +02:00
if ( $action == 'edit_extras' ) {
$value = ( isset ( $_POST [ " options_ " . $key ]) ? $_POST [ " options_ " . $key ] : $object -> array_options [ " options_ " . $key ]);
} else {
$value = $object -> array_options [ " options_ " . $key ];
}
2013-05-10 15:39:54 +02:00
if ( $extrafields -> attribute_type [ $key ] == 'separate' )
2012-07-25 12:20:45 +02:00
{
2013-05-10 15:39:54 +02:00
print $extrafields -> showSeparator ( $key );
2012-07-25 12:20:45 +02:00
}
2013-05-10 15:39:54 +02:00
else
{
print '<tr><td' ;
if ( ! empty ( $extrafields -> attribute_required [ $key ])) print ' class="fieldrequired"' ;
print '>' . $label . '</td><td colspan="5">' ;
// Convert date into timestamp format
if ( in_array ( $extrafields -> attribute_type [ $key ], array ( 'date' , 'datetime' )))
{
2013-05-10 16:34:14 +02:00
$value = isset ( $_POST [ " options_ " . $key ]) ? dol_mktime ( $_POST [ " options_ " . $key . " hour " ], $_POST [ " options_ " . $key . " min " ], 0 , $_POST [ " options_ " . $key . " month " ], $_POST [ " options_ " . $key . " day " ], $_POST [ " options_ " . $key . " year " ]) : $db -> jdate ( $object -> array_options [ 'options_' . $key ]);
2013-05-10 15:39:54 +02:00
}
2013-04-05 12:43:00 +02:00
2013-05-10 15:39:54 +02:00
if ( $action == 'edit_extras' && $user -> rights -> commande -> creer )
{
print $extrafields -> showInputField ( $key , $value );
}
else
{
print $extrafields -> showOutputField ( $key , $value );
}
print '</td></tr>' . " \n " ;
2012-07-25 12:20:45 +02:00
}
2013-05-10 15:39:54 +02:00
}
if ( count ( $extrafields -> attribute_label ) > 0 ) {
2013-04-05 12:43:00 +02:00
2013-05-10 15:39:54 +02:00
if ( $action == 'edit_extras' && $user -> rights -> commande -> creer )
2013-04-05 12:43:00 +02:00
{
2013-05-10 15:39:54 +02:00
print '<tr><td></td><td colspan="5">' ;
2013-04-05 12:43:00 +02:00
print '<input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
print '</form>' ;
print '</td></tr>' ;
}
else {
2013-05-10 15:39:54 +02:00
if ( $object -> statut == 0 && $user -> rights -> commande -> creer )
2013-04-05 12:43:00 +02:00
{
print '<tr><td></td><td><a href="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '&action=edit_extras">' . img_picto ( '' , 'edit' ) . ' ' . $langs -> trans ( 'Modify' ) . '</a></td></tr>' ;
}
}
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-21 14:24:19 +02:00
$rowspan = 4 ;
if ( $mysoc -> localtax1_assuj == " 1 " ) $rowspan ++ ;
if ( $mysoc -> localtax2_assuj == " 1 " ) $rowspan ++ ;
2013-04-03 00:36:31 +02:00
2013-04-05 12:43:00 +02:00
// Total HT
print '<tr><td>' . $langs -> trans ( 'AmountHT' ) . '</td>' ;
2013-04-12 16:09:52 +02:00
print '<td align="right">' . price ( $object -> total_ht , 1 , '' , 1 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Margin Infos
if ( ! empty ( $conf -> margin -> enabled ))
{
print '<td valign="top" width="50%" colspan="2" rowspan="' . $rowspan . '">' ;
$object -> displayMarginInfos ();
print '</td>' ;
}
else print '<td width="50%" colspan="2" rowspan="' . $rowspan . '"></td>' ;
2013-04-03 00:36:31 +02:00
2013-04-05 12:43:00 +02:00
print '</tr>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Total TVA
2013-04-12 16:09:52 +02:00
print '<tr><td>' . $langs -> trans ( 'AmountVAT' ) . '</td><td align="right">' . 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
if ( $mysoc -> localtax1_assuj == " 1 " ) //Localtax1 RE
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ) . '</td>' ;
2013-04-12 16:09:52 +02:00
print '<td align="right">' . price ( $object -> total_localtax1 , 1 , '' , 1 , - 1 , - 1 , $conf -> currency ) . '</td></tr>' ;
2013-04-05 12:43:00 +02:00
}
if ( $mysoc -> localtax2_assuj == " 1 " ) //Localtax2 IRPF
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ) . '</td>' ;
2013-04-12 16:09:52 +02:00
print '<td align="right">' . 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
2013-04-12 16:09:52 +02:00
print '<tr><td>' . $langs -> trans ( 'AmountTTC' ) . '</td><td align="right">' . 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
print '<tr><td>' . $langs -> trans ( 'Status' ) . '</td><td>' . $object -> getLibStatut ( 4 ) . '</td></tr>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
print '</table><br>' ;
print " \n " ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_CONTACTS_TAB ))
{
$blocname = 'contacts' ;
$title = $langs -> trans ( 'ContactsAddresses' );
include DOL_DOCUMENT_ROOT . '/core/tpl/bloc_showhide.tpl.php' ;
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_NOTES_TAB ))
{
$blocname = 'notes' ;
$title = $langs -> trans ( 'Notes' );
include DOL_DOCUMENT_ROOT . '/core/tpl/bloc_showhide.tpl.php' ;
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
* Lines
*/
$result = $object -> getLinesArray ();
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$numlines = count ( $object -> lines );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
if ( ! empty ( $conf -> use_javascript_ajax ) && $object -> statut == 0 )
{
include DOL_DOCUMENT_ROOT . '/core/tpl/ajaxrow.tpl.php' ;
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
print '<table id="tablelines" class="noborder" 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 ))
$ret = $object -> printObjectLines ( $action , $mysoc , $soc , $lineid , 1 );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
* Form to add new line
*/
if ( $object -> statut == 0 && $user -> rights -> commande -> creer )
{
if ( $action != 'editline' )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
$var = true ;
if ( $conf -> global -> MAIN_FEATURES_LEVEL > 1 )
{
// Add free or predefined products/services
$object -> formAddObjectLine ( 1 , $mysoc , $soc );
}
else
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
// Add free products/services
$object -> formAddFreeProduct ( 1 , $mysoc , $soc );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Add predefined products/services
if ( ! empty ( $conf -> product -> enabled ) || ! empty ( $conf -> service -> enabled ))
2012-08-27 19:11:44 +02:00
{
2013-04-05 12:43:00 +02:00
$var =! $var ;
$object -> formAddPredefinedProduct ( 1 , $mysoc , $soc );
2012-08-27 19:11:44 +02:00
}
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'formAddObjectLine' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
}
print '</table>' ;
print '</div>' ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
/*
* Boutons actions
2013-04-20 05:11:25 +02:00
*/
2013-04-05 12:43:00 +02:00
if ( $action != 'presend' )
{
if ( $user -> societe_id == 0 && $action <> 'editline' )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
print '<div class="tabsAction">' ;
// Valid
if ( $object -> statut == 0 && $object -> total_ttc >= 0 && $numlines > 0 && $user -> rights -> commande -> valider )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +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>' ;
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Edit
if ( $object -> statut == 1 && $user -> rights -> commande -> creer )
{
print '<div class="inline-block divButAction"><a class="butAction" href="fiche.php?id=' . $object -> id . '&action=modif">' . $langs -> trans ( 'Modify' ) . '</a></div>' ;
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Send
if ( $object -> statut > 0 )
{
if (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) || $user -> rights -> commande -> order_advance -> send ))
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=presend&mode=init">' . $langs -> trans ( 'SendByMail' ) . '</a></div>' ;
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
else print '<div class="inline-block divButAction"><a class="butActionRefused" href="#">' . $langs -> trans ( 'SendByMail' ) . '</a></div>' ;
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Ship
$numshipping = 0 ;
if ( ! empty ( $conf -> expedition -> enabled ))
{
$numshipping = $object -> nb_expedition ();
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
if ( $object -> statut > 0 && $object -> statut < 3 && $object -> getNbOfProductsLines () > 0 )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
if (( $conf -> expedition_bon -> enabled && $user -> rights -> expedition -> creer )
2013-05-10 15:39:54 +02:00
|| ( $conf -> livraison_bon -> enabled && $user -> rights -> expedition -> livraison -> creer ))
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
if ( $user -> rights -> expedition -> creer )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/expedition/shipment.php?id=' . $object -> id . '">' . $langs -> trans ( 'ShipProduct' ) . '</a></div>' ;
2012-07-25 12:20:45 +02:00
}
else
{
2013-04-05 12:43:00 +02:00
print '<div class="inline-block divButAction"><a class="butActionRefused" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " NotAllowed " )) . '">' . $langs -> trans ( 'ShipProduct' ) . '</a></div>' ;
2012-07-25 12:20:45 +02:00
}
}
2013-04-05 12:43:00 +02:00
else
{
$langs -> load ( " errors " );
print '<div class="inline-block divButAction"><a class="butActionRefused" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " ErrorModuleSetupNotComplete " )) . '">' . $langs -> trans ( 'ShipProduct' ) . '</a></div>' ;
}
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
// Create intervention
if ( $conf -> ficheinter -> enabled )
{
$langs -> load ( " interventions " );
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
if ( $object -> statut > 0 && $object -> statut < 3 && $object -> getNbOfServicesLines () > 0 )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
if ( $user -> rights -> ficheinter -> creer )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/fichinter/fiche.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( 'AddIntervention' ) . '</a></div>' ;
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
else
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
print '<div class="inline-block divButAction"><a class="butActionRefused" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " NotAllowed " )) . '">' . $langs -> trans ( 'AddIntervention' ) . '</a></div>' ;
2012-07-25 12:20:45 +02:00
}
}
2013-04-05 12:43:00 +02:00
}
// Reopen a closed order
if ( $object -> statut == 3 )
{
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '&action=reopen">' . $langs -> trans ( 'ReOpen' ) . '</a></div>' ;
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Create bill and Classify billed
if ( ! empty ( $conf -> facture -> enabled ) && $object -> statut > 0 && ! $object -> billed )
{
if ( $user -> rights -> facture -> creer && empty ( $conf -> global -> WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER ))
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/compta/facture.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
}
2013-04-05 12:43:00 +02:00
if ( $user -> rights -> commande -> creer && $object -> statut > 2 && empty ( $conf -> global -> WORKFLOW_DISABLE_CLASSIFY_BILLED_FROM_ORDER ) && empty ( $conf -> global -> WORsKFLOW_BILL_ON_SHIPMENT ))
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +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
}
// Set to shipped
if (( $object -> statut == 1 || $object -> statut == 2 ) && $user -> rights -> commande -> cloturer )
{
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=shipped">' . $langs -> trans ( 'ClassifyShipped' ) . '</a></div>' ;
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Clone
if ( $user -> rights -> commande -> creer )
{
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>' ;
}
// Cancel order
if ( $object -> statut == 1 && $user -> rights -> commande -> annuler )
{
print '<div class="inline-block divButAction"><a class="butActionDelete" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=cancel">' . $langs -> trans ( 'Cancel' ) . '</a></div>' ;
}
// Delete order
if ( $user -> rights -> commande -> supprimer )
{
if ( $numshipping == 0 )
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +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>' ;
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
else
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
print '<div class="inline-block divButAction"><a class="butActionRefused" href="#" title="' . $langs -> trans ( " ShippingExist " ) . '">' . $langs -> trans ( " Delete " ) . '</a></div>' ;
2012-07-25 12:20:45 +02:00
}
}
2013-04-05 12:43:00 +02:00
print '</div>' ;
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
}
2013-04-21 14:24:19 +02:00
print '<br>' ;
2013-04-05 12:43:00 +02:00
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
if ( $action != 'presend' )
{
2013-04-16 01:13:20 +02:00
print '<div class="fichecenter"><div class="fichehalfleft">' ;
//print '<table width="100%"><tr><td width="50%" valign="top">';
//print '<a name="builddoc"></a>'; // ancre
2012-07-25 12:20:45 +02:00
/*
2013-04-05 12:43:00 +02:00
* Documents generes
2013-04-20 05:11:25 +02:00
*/
2013-04-05 12:43:00 +02:00
$comref = dol_sanitizeFileName ( $object -> ref );
$file = $conf -> commande -> dir_output . '/' . $comref . '/' . $comref . '.pdf' ;
$relativepath = $comref . '/' . $comref . '.pdf' ;
$filedir = $conf -> commande -> dir_output . '/' . $comref ;
$urlsource = $_SERVER [ " PHP_SELF " ] . " ?id= " . $object -> id ;
$genallowed = $user -> rights -> commande -> creer ;
$delallowed = $user -> rights -> commande -> supprimer ;
2013-06-12 10:47:56 +02:00
$somethingshown = $formfile -> show_documents ( '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
/*
* Linked object block
2013-04-20 05:11:25 +02:00
*/
2013-04-05 12:43:00 +02:00
$somethingshown = $object -> showLinkedObjectBlock ();
2013-04-16 01:13:20 +02:00
print '</div><div class="fichehalfright"><div class="ficheaddleft">' ;
//print '</td><td valign="top" width="50%">';
2013-04-05 12:43:00 +02:00
// List of actions on element
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php' ;
$formactions = new FormActions ( $db );
$somethingshown = $formactions -> showactions ( $object , 'order' , $socid );
2013-04-16 01:13:20 +02:00
//print '</td></tr></table>';
2013-04-20 05:11:25 +02:00
print '</div></div></div>' ;
2013-04-05 12:43:00 +02:00
}
/*
* Action presend
*
*/
if ( $action == 'presend' )
{
$ref = dol_sanitizeFileName ( $object -> ref );
include_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
$fileparams = dol_most_recent_file ( $conf -> commande -> dir_output . '/' . $ref , preg_quote ( $ref , '/' ));
$file = $fileparams [ 'fullname' ];
// Build document if it not exists
if ( ! $file || ! is_readable ( $file ))
{
// Define output language
$outputlangs = $langs ;
$newlang = '' ;
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && ! empty ( $_REQUEST [ 'lang_id' ])) $newlang = $_REQUEST [ 'lang_id' ];
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> client -> default_lang ;
if ( ! empty ( $newlang ))
2012-07-25 12:20:45 +02:00
{
2013-04-05 12:43:00 +02:00
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
$result = commande_pdf_create ( $db , $object , GETPOST ( 'model' ) ? GETPOST ( 'model' ) : $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
if ( $result <= 0 )
{
dol_print_error ( $db , $result );
exit ;
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
$fileparams = dol_most_recent_file ( $conf -> commande -> dir_output . '/' . $ref , preg_quote ( $ref , '/' ));
$file = $fileparams [ 'fullname' ];
}
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
print '<br>' ;
print_titre ( $langs -> trans ( 'SendOrderByMail' ));
2013-03-30 13:54:46 +01:00
2013-04-05 12:43:00 +02:00
// Cree l'objet formulaire mail
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formmail.class.php' ;
$formmail = new FormMail ( $db );
$formmail -> fromtype = 'user' ;
$formmail -> fromid = $user -> id ;
$formmail -> fromname = $user -> getFullName ( $langs );
$formmail -> frommail = $user -> email ;
$formmail -> withfrom = 1 ;
$liste = array ();
foreach ( $object -> thirdparty -> thirdparty_and_contact_email_array ( 1 ) as $key => $value ) $liste [ $key ] = $value ;
$formmail -> withto = GETPOST ( 'sendto' ) ? GETPOST ( 'sendto' ) : $liste ;
$formmail -> withtocc = $liste ;
$formmail -> withtoccc = $conf -> global -> MAIN_EMAIL_USECCC ;
$formmail -> withtopic = $langs -> trans ( 'SendOrderRef' , '__ORDERREF__' );
$formmail -> withfile = 2 ;
$formmail -> withbody = 1 ;
$formmail -> withdeliveryreceipt = 1 ;
$formmail -> withcancel = 1 ;
// Tableau des substitutions
$formmail -> substit [ '__ORDERREF__' ] = $object -> ref ;
$formmail -> substit [ '__SIGNATURE__' ] = $user -> signature ;
$formmail -> substit [ '__PERSONALIZED__' ] = '' ;
$formmail -> substit [ '__CONTACTCIVNAME__' ] = '' ;
$custcontact = '' ;
$contactarr = array ();
$contactarr = $object -> liste_contact ( - 1 , 'external' );
if ( is_array ( $contactarr ) && count ( $contactarr ) > 0 ) {
foreach ( $contactarr as $contact ) {
if ( $contact [ 'libelle' ] == $langs -> trans ( 'TypeContact_commande_external_CUSTOMER' )) {
$contactstatic = new Contact ( $db );
$contactstatic -> fetch ( $contact [ 'id' ]);
$custcontact = $contactstatic -> getFullName ( $langs , 1 );
2013-03-23 14:39:23 +01:00
}
}
2013-03-30 13:54:46 +01:00
2013-04-05 12:43:00 +02:00
if ( ! empty ( $custcontact )) {
$formmail -> substit [ '__CONTACTCIVNAME__' ] = $custcontact ;
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
// Tableau des parametres complementaires
$formmail -> param [ 'action' ] = 'send' ;
$formmail -> param [ 'models' ] = 'order_send' ;
$formmail -> param [ 'orderid' ] = $object -> id ;
$formmail -> param [ 'returnurl' ] = $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id ;
2012-07-25 12:20:45 +02:00
2013-04-05 12:43:00 +02:00
// Init list of files
if ( GETPOST ( " mode " ) == 'init' )
{
$formmail -> clear_attached_files ();
$formmail -> add_attached_files ( $file , basename ( $file ), dol_mimetype ( $file ));
2012-07-25 12:20:45 +02:00
}
2013-04-05 12:43:00 +02:00
// Show form
$formmail -> show_form ();
print '<br>' ;
2012-07-25 12:20:45 +02:00
}
}
2013-04-05 12:43:00 +02:00
}
2008-08-12 20:20:18 +02:00
2012-08-22 17:42:40 +02:00
llxFooter ();
$db -> close ();
2012-08-23 07:53:48 +02:00
?>