2008-08-12 20:20:18 +02:00
< ? php
/* Copyright ( C ) 2003 - 2006 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2011-03-02 11:33:24 +01:00
* Copyright ( C ) 2004 - 2011 Laurent Destailleur < eldy @ users . sourceforge . net >
2008-08-12 20:20:18 +02:00
* Copyright ( C ) 2005 Marc Barilley / Ocebo < marc @ ocebo . com >
2011-04-20 15:59:51 +02:00
* Copyright ( C ) 2005 - 2011 Regis Houssin < regis @ dolibarr . fr >
2008-08-12 20:20:18 +02:00
* Copyright ( C ) 2006 Andre Cianfarani < acianfa @ free . fr >
2010-04-24 18:00:48 +02:00
* Copyright ( C ) 2010 Juanjo Menent < jmenent @ 2 byte . es >
2011-04-14 14:39:12 +02:00
* Copyright ( C ) 2011 Philippe Grand < philippe . grand @ atoo - net . com >
2008-08-12 20:20:18 +02:00
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 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
2011-08-01 00:21:57 +02:00
* 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
* \ingroup commande
2010-02-20 19:43:33 +01:00
* \brief Page to show customer order
2008-08-12 20:20:18 +02:00
*/
2010-03-27 03:35:08 +01:00
require ( " ../main.inc.php " );
2010-05-03 10:43:32 +02:00
require_once ( DOL_DOCUMENT_ROOT . " /core/class/html.formfile.class.php " );
2010-05-03 10:43:33 +02:00
require_once ( DOL_DOCUMENT_ROOT . " /core/class/html.formorder.class.php " );
2008-11-16 02:54:33 +01:00
require_once ( DOL_DOCUMENT_ROOT . " /includes/modules/commande/modules_commande.php " );
2010-04-27 10:13:42 +02:00
require_once ( DOL_DOCUMENT_ROOT . '/commande/class/commande.class.php' );
2010-06-05 17:20:09 +02:00
require_once ( DOL_DOCUMENT_ROOT . '/comm/action/class/actioncomm.class.php' );
2008-08-12 20:20:18 +02:00
require_once ( DOL_DOCUMENT_ROOT . " /lib/order.lib.php " );
2009-01-07 11:57:36 +01:00
require_once ( DOL_DOCUMENT_ROOT . " /lib/functions2.lib.php " );
2010-04-29 16:34:21 +02:00
if ( $conf -> projet -> enabled ) require_once ( DOL_DOCUMENT_ROOT . '/projet/class/project.class.php' );
2008-08-12 20:20:18 +02:00
if ( $conf -> projet -> enabled ) require_once ( DOL_DOCUMENT_ROOT . '/lib/project.lib.php' );
2010-04-28 19:30:59 +02:00
if ( $conf -> propal -> enabled ) require_once ( DOL_DOCUMENT_ROOT . '/comm/propal/class/propal.class.php' );
2008-08-12 20:20:18 +02:00
2009-04-27 22:37:50 +02:00
if ( ! $user -> rights -> commande -> lire ) accessforbidden ();
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' );
2011-06-02 19:20:24 +02:00
$id = ( GETPOST ( " id " ) ? GETPOST ( " id " ) : GETPOST ( " orderid " ));
2011-05-09 17:20:19 +02:00
$ref = GETPOST ( 'ref' );
$socid = GETPOST ( 'socid' );
$action = GETPOST ( 'action' );
$confirm = GETPOST ( 'confirm' );
$lineid = GETPOST ( 'lineid' );
2011-06-30 00:29:50 +02:00
$mesg = GETPOST ( 'mesg' );
$object = new Commande ( $db );
2010-08-10 23:01:21 +02:00
2008-10-02 00:24:31 +02:00
// Security check
if ( $user -> societe_id ) $socid = $user -> societe_id ;
2011-04-18 17:06:23 +02:00
$result = restrictedArea ( $user , 'commande' , $id , '' );
2008-10-02 00:24:31 +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
include_once ( DOL_DOCUMENT_ROOT . '/core/class/hookmanager.class.php' );
$hookmanager = new HookManager ( $db );
$hookmanager -> callHooks ( 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
2011-04-18 17:06:23 +02:00
if ( $action == 'confirm_clone' && $confirm == 'yes' )
2009-03-25 22:26:15 +01:00
{
2011-04-24 22:24:50 +02:00
if ( 1 == 0 && ! GETPOST ( 'clone_content' ) && ! GETPOST ( 'clone_receivers' ) )
2011-03-02 11:33:24 +01:00
{
$mesg = '<div class="error">' . $langs -> trans ( " NoCloneOptionsSpecified " ) . '</div>' ;
}
else
{
2011-08-10 21:55:21 +02:00
$result = $object -> createFromClone ( $id , 0 , GETPOST ( 'socid' ), $hookmanager );
2011-03-02 11:33:24 +01:00
if ( $result > 0 )
{
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . '?id=' . $result );
exit ;
}
else
{
2011-06-18 00:24:52 +02:00
$mesg = '<div class="error">' . $object -> error . '</div>' ;
2011-05-09 17:20:19 +02:00
$action = '' ;
2011-03-02 11:33:24 +01:00
}
}
2009-03-25 22:26:15 +01:00
}
2010-03-31 22:08:38 +02:00
// Reopen a closed order
2011-04-18 17:06:23 +02:00
if ( $action == 'reopen' && $user -> rights -> commande -> creer )
2010-03-31 22:08:38 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
if ( $object -> statut == 3 )
{
$result = $object -> set_reopen ( $user );
if ( $result > 0 )
{
2011-04-18 17:06:23 +02:00
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $id );
2011-03-02 11:33:24 +01:00
exit ;
}
else
{
2011-06-18 00:24:52 +02:00
$mesg = '<div class="error">' . $object -> error . '</div>' ;
2011-03-02 11:33:24 +01:00
}
}
2010-03-31 22:08:38 +02:00
}
2008-08-12 20:20:18 +02:00
// Suppression de la commande
2011-04-18 17:06:23 +02:00
if ( $action == 'confirm_delete' && $confirm == 'yes' )
2008-08-12 20:20:18 +02:00
{
2011-03-02 11:33:24 +01:00
if ( $user -> rights -> commande -> supprimer )
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$result = $object -> delete ( $user );
if ( $result > 0 )
{
Header ( 'Location: index.php' );
exit ;
}
else
{
2011-06-18 00:24:52 +02:00
$mesg = '<div class="error">' . $object -> error . '</div>' ;
2011-03-02 11:33:24 +01:00
}
}
2008-08-12 20:20:18 +02:00
}
2010-08-10 23:01:21 +02:00
// Remove a product line
2011-04-18 17:06:23 +02:00
if ( $action == 'confirm_deleteline' && $confirm == 'yes' )
2008-08-12 20:20:18 +02:00
{
2011-03-02 11:33:24 +01:00
if ( $user -> rights -> commande -> creer )
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$object -> fetch_thirdparty ();
2011-04-18 17:06:23 +02:00
$result = $object -> deleteline ( $lineid );
2011-03-02 11:33:24 +01:00
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 );
}
2011-08-10 20:04:41 +02:00
commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , GETPOST ( 'hidedetails' ), GETPOST ( 'hidedesc' ), GETPOST ( 'hideref' ), $hookmanager );
2011-03-02 11:33:24 +01:00
}
else
{
2011-06-18 00:24:52 +02:00
$mesg = '<div class="error">' . $object -> error . '</div>' ;
2011-03-02 11:33:24 +01:00
}
}
2011-04-18 17:06:23 +02:00
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $id );
2011-03-02 11:33:24 +01:00
exit ;
2008-08-12 20:20:18 +02:00
}
// Categorisation dans projet
2011-04-18 17:06:23 +02:00
if ( $action == 'classin' )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$object -> setProject ( $_POST [ 'projectid' ]);
2008-08-12 20:20:18 +02:00
}
2010-02-20 19:43:33 +01:00
// Add order
2011-04-18 17:06:23 +02:00
if ( $action == 'add' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-03-02 11:33:24 +01:00
$datecommande = dol_mktime ( 12 , 0 , 0 , $_POST [ 'remonth' ], $_POST [ 'reday' ], $_POST [ 'reyear' ]);
$datelivraison = dol_mktime ( 12 , 0 , 0 , $_POST [ 'liv_month' ], $_POST [ 'liv_day' ], $_POST [ 'liv_year' ]);
$object -> socid = GETPOST ( 'socid' );
$object -> fetch_thirdparty ();
$db -> begin ();
$object -> date_commande = $datecommande ;
$object -> note = $_POST [ 'note' ];
$object -> note_public = $_POST [ 'note_public' ];
$object -> source = $_POST [ 'source_id' ];
$object -> fk_project = $_POST [ 'projectid' ];
$object -> ref_client = $_POST [ 'ref_client' ];
$object -> modelpdf = $_POST [ 'model' ];
$object -> cond_reglement_id = $_POST [ 'cond_reglement_id' ];
$object -> mode_reglement_id = $_POST [ 'mode_reglement_id' ];
2011-04-14 14:43:50 +02:00
$object -> availability_id = $_POST [ 'availability_id' ];
2011-06-19 23:11:49 +02:00
$object -> demand_reason_id = $_POST [ 'demand_reason_id' ];
2011-03-02 11:33:24 +01:00
$object -> date_livraison = $datelivraison ;
$object -> fk_delivery_address = $_POST [ 'fk_address' ];
$object -> contactid = $_POST [ 'contactidp' ];
// If creation from another object of another module (Example: origin=propal, originid=1)
if ( $_POST [ 'origin' ] && $_POST [ 'originid' ])
{
// Parse element/subelement (ex: project_task)
$element = $subelement = $_POST [ 'origin' ];
if ( preg_match ( '/^([^_]+)_([^_]+)/i' , $_POST [ 'origin' ], $regs ))
{
$element = $regs [ 1 ];
$subelement = $regs [ 2 ];
}
// For compatibility
if ( $element == 'order' ) { $element = $subelement = 'commande' ; }
if ( $element == 'propal' ) { $element = 'comm/propal' ; $subelement = 'propal' ; }
if ( $element == 'contract' ) { $element = $subelement = 'contrat' ; }
$object -> origin = $_POST [ 'origin' ];
$object -> origin_id = $_POST [ 'originid' ];
$object_id = $object -> create ( $user );
if ( $object_id > 0 )
{
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
$classname = ucfirst ( $subelement );
$srcobject = new $classname ( $db );
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 )
{
$lines = $srcobject -> lines ;
if ( empty ( $lines ) && method_exists ( $srcobject , 'fetch_lines' )) $lines = $srcobject -> fetch_lines ();
2011-04-13 15:44:58 +02:00
2011-04-14 14:43:50 +02:00
$fk_parent_line = 0 ;
2011-09-17 21:49:50 +02:00
$num = count ( $lines );
2011-04-14 14:43:50 +02:00
for ( $i = 0 ; $i < $num ; $i ++ )
2011-03-02 11:33:24 +01:00
{
$desc = ( $lines [ $i ] -> desc ? $lines [ $i ] -> desc : $lines [ $i ] -> libelle );
$product_type = ( $lines [ $i ] -> product_type ? $lines [ $i ] -> product_type : 0 );
// 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 ;
2011-04-13 15:44:58 +02:00
2011-04-14 14:43:50 +02: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 ) {
2011-06-19 23:11:49 +02:00
$fk_parent_line = 0 ;
2011-04-14 14:43:50 +02:00
}
2011-03-02 11:33:24 +01:00
$result = $object -> addline (
$object_id ,
$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 ,
$datestart ,
$dateend ,
$product_type ,
$lines [ $i ] -> rang ,
2011-04-14 14:43:50 +02:00
$lines [ $i ] -> special_code ,
$fk_parent_line
2011-03-02 11:33:24 +01:00
);
if ( $result < 0 )
{
$error ++ ;
break ;
}
2011-04-14 14:43:50 +02:00
// Defined the new fk_parent_line
if ( $result > 0 && $lines [ $i ] -> product_type == 9 ) {
2011-06-19 23:11:49 +02:00
$fk_parent_line = $result ;
2011-04-14 14:43:50 +02:00
}
}
// Hooks
2011-08-11 00:47:33 +02:00
$parameters = array ( 'objFrom' => $srcobject );
$reshook = $hookmanager -> executeHooks ( 'createfrom' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2011-08-10 19:40:42 +02:00
if ( $reshook < 0 ) $error ++ ;
2011-03-02 11:33:24 +01:00
}
else
{
$mesg = $srcobject -> error ;
$error ++ ;
}
}
else
{
$mesg = $object -> error ;
$error ++ ;
}
}
else
{
$object_id = $object -> create ( $user );
// If some invoice's lines already known
$NBLINES = 8 ;
for ( $i = 1 ; $i <= $NBLINES ; $i ++ )
{
if ( $_POST [ 'idprod' . $i ])
{
$xid = 'idprod' . $i ;
$xqty = 'qty' . $i ;
$xremise = 'remise_percent' . $i ;
$object -> add_product ( $_POST [ $xid ], $_POST [ $xqty ], $_POST [ $xremise ]);
}
}
}
// Insert default contacts if defined
if ( $object_id > 0 )
{
if ( $_POST [ " contactidp " ])
{
$result = $object -> add_contact ( $_POST [ " contactidp " ], 'CUSTOMER' , 'external' );
2011-05-21 09:12:21 +02:00
if ( $result < 0 )
2011-03-02 11:33:24 +01:00
{
$mesg = '<div class="error">' . $langs -> trans ( " ErrorFailedToAddContact " ) . '</div>' ;
2011-05-21 09:12:21 +02:00
$error ++ ;
2011-03-02 11:33:24 +01:00
}
}
2011-04-18 17:06:23 +02:00
$id = $object_id ;
2011-03-02 11:33:24 +01:00
$action = '' ;
}
// 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 ();
2011-05-09 17:20:19 +02:00
$action = 'create' ;
$socid = $_POST [ 'socid' ];
2011-03-02 11:33:24 +01:00
if ( ! $mesg ) $mesg = '<div class="error">' . $object -> error . '</div>' ;
}
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'classifybilled' )
2010-09-10 18:25:12 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$object -> classer_facturee ();
2010-09-10 18:25:12 +02:00
}
2008-08-12 20:20:18 +02:00
// Positionne ref commande client
2011-04-18 17:06:23 +02:00
if ( $action == 'set_ref_client' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$object -> set_ref_client ( $user , $_POST [ 'ref_client' ]);
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'setremise' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$object -> set_remise ( $user , $_POST [ 'remise' ]);
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == " setabsolutediscount " && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-03-02 11:33:24 +01:00
if ( $_POST [ " remise_id " ])
{
2011-04-18 17:06:23 +02:00
$ret = $object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
if ( $ret > 0 )
{
$object -> insert_discount ( $_POST [ " remise_id " ]);
}
else
{
dol_print_error ( $db , $object -> error );
}
}
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'setdate' && $user -> rights -> commande -> creer )
2009-12-04 20:02:55 +01:00
{
2011-03-02 11:33:24 +01:00
//print "x ".$_POST['liv_month'].", ".$_POST['liv_day'].", ".$_POST['liv_year'];
$date = dol_mktime ( 0 , 0 , 0 , $_POST [ 'order_month' ], $_POST [ 'order_day' ], $_POST [ 'order_year' ]);
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$result = $object -> set_date ( $user , $date );
if ( $result < 0 )
{
$mesg = '<div class="error">' . $object -> error . '</div>' ;
}
2009-12-04 20:02:55 +01:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'setdate_livraison' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-03-02 11:33:24 +01:00
//print "x ".$_POST['liv_month'].", ".$_POST['liv_day'].", ".$_POST['liv_year'];
$datelivraison = dol_mktime ( 0 , 0 , 0 , $_POST [ 'liv_month' ], $_POST [ 'liv_day' ], $_POST [ 'liv_year' ]);
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$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
}
2011-04-18 17:06:23 +02:00
if ( $action == 'setaddress' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$object -> set_adresse_livraison ( $user , $_POST [ 'fk_address' ]);
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'setmode' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$result = $object -> mode_reglement ( $_POST [ 'mode_reglement_id' ]);
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'setavailability' && $user -> rights -> commande -> creer )
2011-04-14 14:39:12 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-04-14 14:39:12 +02:00
$result = $object -> availability ( $_POST [ 'availability_id' ]);
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
}
2011-04-26 22:59:45 +02:00
if ( $action == 'setdemandreason' && $user -> rights -> commande -> creer )
{
$object -> fetch ( $id );
$result = $object -> demand_reason ( $_POST [ 'demand_reason_id' ]);
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
}
2011-04-18 17:06:23 +02:00
if ( $action == 'setconditions' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$result = $object -> cond_reglement ( $_POST [ 'cond_reglement_id' ]);
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'setremisepercent' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$result = $object -> set_remise ( $user , $_POST [ 'remise_percent' ]);
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'setremiseabsolue' && $user -> rights -> facture -> creer )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$result = $object -> set_remise_absolue ( $user , $_POST [ 'remise_absolue' ]);
2008-08-12 20:20:18 +02:00
}
/*
* Ajout d ' une ligne produit dans la commande
*/
2011-04-18 17:06:23 +02:00
if ( $action == 'addline' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-03-02 11:33:24 +01:00
$result = 0 ;
if ( empty ( $_POST [ 'idprod' ]) && $_POST [ " type " ] < 0 )
{
$mesg = '<div class="error">' . $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )) . '</div>' ;
$result = - 1 ;
}
if ( empty ( $_POST [ 'idprod' ]) && ( ! isset ( $_POST [ " np_price " ]) || $_POST [ " np_price " ] == '' )) // Unit price can be 0 but not ''
{
$mesg = '<div class="error">' . $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " UnitPriceHT " )) . '</div>' ;
$result = - 1 ;
}
if ( $result >= 0 && $_POST [ 'qty' ] && (( $_POST [ 'np_price' ] != '' && ( $_POST [ 'np_desc' ] || $_POST [ 'dp_desc' ])) || $_POST [ 'idprod' ]))
{
2011-04-18 17:06:23 +02:00
$ret = $object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
if ( $ret < 0 )
{
dol_print_error ( $db , $object -> error );
exit ;
}
$ret = $object -> fetch_thirdparty ();
// Clean parameters
$suffixe = $_POST [ 'idprod' ] ? '_predef' : '' ;
$date_start = dol_mktime ( 0 , 0 , 0 , $_POST [ 'date_start' . $suffixe . 'month' ], $_POST [ 'date_start' . $suffixe . 'day' ], $_POST [ 'date_start' . $suffixe . 'year' ]);
$date_end = dol_mktime ( 0 , 0 , 0 , $_POST [ 'date_end' . $suffixe . 'month' ], $_POST [ 'date_end' . $suffixe . 'day' ], $_POST [ 'date_end' . $suffixe . 'year' ]);
$price_base_type = 'HT' ;
// 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
if ( $_POST [ 'idprod' ])
{
2011-09-11 20:35:38 +02:00
$prod = new Product ( $db );
2011-03-02 11:33:24 +01:00
$prod -> fetch ( $_POST [ 'idprod' ]);
$tva_tx = get_default_tva ( $mysoc , $object -> client , $prod -> id );
// multiprix
if ( $conf -> global -> PRODUIT_MULTIPRICES && $object -> client -> price_level )
{
$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 ];
}
else
{
$pu_ht = $prod -> price ;
$pu_ttc = $prod -> price_ttc ;
$price_min = $prod -> price_min ;
$price_base_type = $prod -> price_base_type ;
}
// 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 )
{
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' );
}
}
$desc = $prod -> description ;
2011-08-31 17:30:56 +02:00
$desc .= ( $prod -> description && $_POST [ 'np_desc' ]) ? (( dol_textishtml ( $prod -> description ) || dol_textishtml ( $_POST [ 'np_desc' ])) ? " <br> \n " : " \n " ) : " " ;
2011-03-02 11:33:24 +01:00
$desc .= $_POST [ 'np_desc' ];
$type = $prod -> type ;
}
else
{
$pu_ht = $_POST [ 'np_price' ];
$tva_tx = str_replace ( '*' , '' , $_POST [ 'np_tva_tx' ]);
$tva_npr = preg_match ( '/\*/' , $_POST [ 'np_tva_tx' ]) ? 1 : 0 ;
$desc = $_POST [ 'dp_desc' ];
$type = $_POST [ " type " ];
}
// 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 ;
if ( $result >= 0 )
{
if ( $price_min && ( price2num ( $pu_ht ) * ( 1 - price2num ( $_POST [ 'remise_percent' ]) / 100 ) < price2num ( $price_min )))
{
2010-10-31 19:57:11 +01:00
//print "CantBeLessThanMinPrice ".$up_ht." - ".GETPOST('remise_percent')." - ".$product->price_min;
2011-03-02 11:33:24 +01:00
$mesg = '<div class="error">' . $langs -> trans ( " CantBeLessThanMinPrice " , price2num ( $price_min , 'MU' ) . ' ' . $langs -> trans ( " Currency " . $conf -> monnaie )) . '</div>' ;
}
else
{
// Insert line
$result = $object -> addline (
2011-04-18 17:06:23 +02:00
$id ,
2011-03-02 11:33:24 +01:00
$desc ,
$pu_ht ,
$_POST [ 'qty' ],
$tva_tx ,
$localtax1_tx ,
$localtax2_tx ,
$_POST [ 'idprod' ],
$_POST [ 'remise_percent' ],
$info_bits ,
0 ,
$price_base_type ,
$pu_ttc ,
$date_start ,
$date_end ,
2011-04-14 14:43:50 +02:00
$type ,
- 1 ,
'' ,
$_POST [ 'fk_parent_line' ]
2011-03-02 11:33:24 +01:00
);
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 );
}
2011-08-10 20:04:41 +02:00
commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , GETPOST ( 'hidedetails' ), GETPOST ( 'hidedesc' ), GETPOST ( 'hideref' ), $hookmanager );
2011-03-02 11:33:24 +01:00
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
unset ( $_POST [ 'idprod' ]);
unset ( $_POST [ 'remise_percent' ]);
unset ( $_POST [ 'dp_desc' ]);
unset ( $_POST [ 'np_desc' ]);
unset ( $_POST [ 'np_price' ]);
unset ( $_POST [ 'np_tva_tx' ]);
}
else
{
$mesg = '<div class="error">' . $object -> error . '</div>' ;
}
}
}
}
2008-08-12 20:20:18 +02:00
}
/*
* Mise a jour d ' une ligne dans la commande
*/
2011-04-18 17:06:23 +02:00
if ( $action == 'updateligne' && $user -> rights -> commande -> creer && $_POST [ 'save' ] == $langs -> trans ( 'Save' ))
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
if ( ! $object -> fetch ( $id ) > 0 ) dol_print_error ( $db );
2011-03-02 11:33:24 +01:00
$object -> fetch_thirdparty ();
// Clean parameters
$date_start = '' ;
$date_end = '' ;
$date_start = dol_mktime ( 0 , 0 , 0 , $_POST [ 'date_start' . $suffixe . 'month' ], $_POST [ 'date_start' . $suffixe . 'day' ], $_POST [ 'date_start' . $suffixe . 'year' ]);
$date_end = dol_mktime ( 0 , 0 , 0 , $_POST [ 'date_end' . $suffixe . 'month' ], $_POST [ 'date_end' . $suffixe . 'day' ], $_POST [ 'date_end' . $suffixe . 'year' ]);
$description = dol_htmlcleanlastbr ( $_POST [ 'desc' ]);
2010-10-31 19:57:11 +01:00
$up_ht = GETPOST ( 'pu' ) ? GETPOST ( 'pu' ) : GETPOST ( 'subprice' );
2008-08-12 20:20:18 +02:00
2011-03-02 11:33:24 +01:00
// Define info_bits
$info_bits = 0 ;
if ( preg_match ( '/\*/' , $_POST [ 'tva_tx' ])) $info_bits |= 0x01 ;
// Define vat_rate
$vat_rate = $_POST [ 'tva_tx' ];
$vat_rate = str_replace ( '*' , '' , $vat_rate );
$localtax1_rate = get_localtax ( $vat_rate , 1 , $object -> client );
$localtax2_rate = get_localtax ( $vat_rate , 2 , $object -> client );
// Check parameters
if ( empty ( $_POST [ 'productid' ]) && $_POST [ " type " ] < 0 )
{
$mesg = '<div class="error">' . $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )) . '</div>' ;
$result = - 1 ;
}
// Check minimum price
if ( ! empty ( $_POST [ 'productid' ]))
{
$productid = $_POST [ 'productid' ];
$product = new Product ( $db );
$product -> fetch ( $productid );
$type = $product -> type ;
$price_min = $product -> price_min ;
if ( $conf -> global -> PRODUIT_MULTIPRICES && $object -> client -> price_level ) $price_min = $product -> multiprices_min [ $object -> client -> price_level ];
}
2011-05-14 10:10:03 +02:00
if ( $price_min && GETPOST ( 'productid' ) && ( price2num ( $up_ht ) * ( 1 - price2num ( $_POST [ 'remise_percent' ]) / 100 ) < price2num ( $price_min )))
2011-03-02 11:33:24 +01:00
{
$mesg = '<div class="error">' . $langs -> trans ( " CantBeLessThanMinPrice " , price2num ( $price_min , 'MU' ) . ' ' . $langs -> trans ( " Currency " . $conf -> monnaie )) . '</div>' ;
$result =- 1 ;
}
// Define params
if ( ! empty ( $_POST [ 'productid' ]))
{
$type = $product -> type ;
}
else
{
$type = $_POST [ " type " ];
}
if ( $result >= 0 )
{
$result = $object -> updateline ( $_POST [ 'lineid' ],
$description ,
$up_ht ,
$_POST [ 'qty' ],
2011-05-13 11:38:38 +02:00
$_POST [ 'remise_percent' ],
2011-03-02 11:33:24 +01:00
$vat_rate ,
$localtax1_rate ,
$localtax2_rate ,
2008-10-07 23:49:40 +02:00
'HT' ,
2011-03-02 11:33:24 +01:00
$info_bits ,
$date_start ,
$date_end ,
2011-04-14 14:43:50 +02:00
$type ,
$_POST [ 'fk_parent_line' ]
2011-03-02 11:33:24 +01:00
);
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 );
}
2011-08-10 20:04:41 +02:00
commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , GETPOST ( 'hidedetails' ), GETPOST ( 'hidedesc' ), GETPOST ( 'hideref' ), $hookmanager );
2011-03-02 11:33:24 +01:00
}
else
{
dol_print_error ( $db , $object -> error );
exit ;
}
}
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'updateligne' && $user -> rights -> commande -> creer && $_POST [ 'cancel' ] == $langs -> trans ( 'Cancel' ))
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
Header ( 'Location: fiche.php?id=' . $id ); // Pour reaffichage de la fiche en cours d'edition
2011-03-02 11:33:24 +01:00
exit ;
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'confirm_validate' && $confirm == 'yes' && $user -> rights -> commande -> valider )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id ); // Load order and lines
2011-03-02 11:33:24 +01:00
$object -> fetch_thirdparty ();
$result = $object -> valid ( $user );
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 );
}
2011-08-10 20:04:41 +02:00
commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , GETPOST ( 'hidedetails' ), GETPOST ( 'hidedesc' ), GETPOST ( 'hideref' ), $hookmanager );
2011-03-02 11:33:24 +01:00
}
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'confirm_close' && $confirm == 'yes' && $user -> rights -> commande -> cloturer )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id ); // Load order and lines
2009-07-10 00:17:31 +02:00
2011-03-02 11:33:24 +01:00
$result = $object -> cloture ( $user );
2011-06-06 21:15:44 +02:00
if ( $result < 0 ) $mesgs = $object -> errors ;
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'confirm_cancel' && $confirm == 'yes' && $user -> rights -> commande -> valider )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id ); // Load order and lines
2009-07-10 00:17:31 +02:00
2011-03-02 11:33:24 +01:00
$result = $object -> cancel ( $user );
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'modif' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-03-02 11:33:24 +01:00
/*
* Repasse la commande en mode brouillon
*/
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id ); // Load order and lines
2011-03-02 11:33:24 +01:00
$object -> fetch_thirdparty ();
$result = $object -> set_draft ( $user );
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 );
}
2011-08-10 20:04:41 +02:00
commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , GETPOST ( 'hidedetails' ), GETPOST ( 'hidedesc' ), GETPOST ( 'hideref' ), $hookmanager );
2011-03-02 11:33:24 +01:00
}
2008-08-12 20:20:18 +02:00
}
/*
* Ordonnancement des lignes
*/
2011-04-18 17:06:23 +02:00
if ( $action == 'up' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$object -> fetch_thirdparty ();
$object -> line_up ( $_GET [ '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 );
}
2011-08-10 20:04:41 +02:00
commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , GETPOST ( 'hidedetails' ), GETPOST ( 'hidedesc' ), GETPOST ( 'hideref' ), $hookmanager );
2011-03-02 11:33:24 +01:00
2011-09-20 14:56:06 +02:00
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $id . '#' . $_GET [ 'rowid' ]);
2011-03-02 11:33:24 +01:00
exit ;
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'down' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-04-18 17:06:23 +02:00
$object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$object -> fetch_thirdparty ();
$object -> line_down ( $_GET [ '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 );
}
2011-08-10 20:04:41 +02:00
commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , GETPOST ( 'hidedetails' ), GETPOST ( 'hidedesc' ), GETPOST ( 'hideref' ), $hookmanager );
2011-03-02 11:33:24 +01:00
2011-09-20 14:56:06 +02:00
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $id . '#' . $_GET [ 'rowid' ]);
2011-03-02 11:33:24 +01:00
exit ;
2008-08-12 20:20:18 +02:00
}
2011-04-18 17:06:23 +02:00
if ( $action == 'builddoc' ) // In get or post
2008-08-12 20:20:18 +02:00
{
2011-03-02 11:33:24 +01:00
/*
* Generate order document
* define into / includes / modules / commande / modules_commande . php
*/
// Sauvegarde le dernier modele choisi pour generer un document
2011-04-18 17:06:23 +02:00
$result = $object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$object -> fetch_thirdparty ();
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 );
}
2011-08-10 19:40:42 +02:00
$result = commande_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , GETPOST ( 'hidedetails' ), GETPOST ( 'hidedesc' ), GETPOST ( 'hideref' ), $hookmanager );
2011-03-02 11:33:24 +01:00
if ( $result <= 0 )
{
dol_print_error ( $db , $result );
exit ;
}
else
{
2011-09-20 14:56:06 +02:00
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . ( empty ( $conf -> global -> MAIN_JUMP_TAG ) ? '' : '#builddoc' ));
2011-03-02 11:33:24 +01:00
exit ;
}
2008-08-12 20:20:18 +02:00
}
2010-05-12 13:29:21 +02:00
// Remove file in doc form
2011-04-18 17:06:23 +02:00
if ( $action == 'remove_file' )
2008-08-12 20:20:18 +02:00
{
2011-03-02 11:33:24 +01:00
if ( $object -> fetch ( $id ))
{
2011-03-09 16:34:57 +01:00
require_once ( DOL_DOCUMENT_ROOT . " /lib/files.lib.php " );
2011-07-10 22:03:38 +02:00
$upload_dir = $conf -> commande -> dir_output ;
2011-03-02 11:33:24 +01:00
$file = $upload_dir . '/' . $_GET [ 'file' ];
dol_delete_file ( $file );
$mesg = '<div class="ok">' . $langs -> trans ( " FileWasRemoved " ) . '</div>' ;
}
2008-08-12 20:20:18 +02:00
}
/*
2010-01-13 11:30:33 +01:00
* Add file in email form
2008-08-12 20:20:18 +02:00
*/
if ( $_POST [ 'addfile' ])
{
2011-03-02 11:33:24 +01:00
require_once ( DOL_DOCUMENT_ROOT . " /lib/files.lib.php " );
2010-05-01 16:28:48 +02:00
2011-03-02 11:33:24 +01:00
// Set tmp user directory TODO Use a dedicated directory for temp mails files
$vardir = $conf -> user -> dir_output . " / " . $user -> id ;
2011-07-10 22:03:38 +02:00
$upload_dir_tmp = $vardir . '/temp' ;
2008-08-12 20:20:18 +02:00
2011-07-10 22:03:38 +02:00
$mesg = dol_add_file_process ( $upload_dir_tmp , 0 , 0 );
2010-05-01 16:28:48 +02:00
2011-06-02 19:20:24 +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
*/
if ( ! empty ( $_POST [ 'removedfile' ]))
{
2011-03-02 11:33:24 +01:00
require_once ( DOL_DOCUMENT_ROOT . " /lib/files.lib.php " );
2010-05-12 13:29:21 +02:00
2011-03-02 11:33:24 +01:00
// Set tmp user directory
$vardir = $conf -> user -> dir_output . " / " . $user -> id ;
2011-07-10 22:03:38 +02:00
$upload_dir_tmp = $vardir . '/temp' ;
2010-01-13 11:30:33 +01:00
2011-03-02 11:33:24 +01:00
$mesg = dol_remove_file_process ( $_POST [ 'removedfile' ], 0 );
2010-01-13 11:30:33 +01:00
2011-06-02 19:20:24 +02:00
$action = 'presend' ;
2010-01-13 11:30:33 +01:00
}
2008-08-12 20:20:18 +02:00
/*
* Send mail
*/
2011-04-18 17:06:23 +02:00
if ( $action == 'send' && ! $_POST [ 'addfile' ] && ! $_POST [ 'removedfile' ] && ! $_POST [ 'cancel' ])
2008-08-12 20:20:18 +02:00
{
2011-03-02 11:33:24 +01:00
$langs -> load ( 'mails' );
2011-04-18 17:06:23 +02:00
$result = $object -> fetch ( $id );
2011-03-02 11:33:24 +01:00
$result = $object -> fetch_thirdparty ();
if ( $result > 0 )
{
$ref = dol_sanitizeFileName ( $object -> ref );
$file = $conf -> commande -> dir_output . '/' . $ref . '/' . $ref . '.pdf' ;
if ( is_readable ( $file ))
{
if ( $_POST [ 'sendto' ])
{
// Le destinataire a ete fourni via le champ libre
$sendto = $_POST [ 'sendto' ];
$sendtoid = 0 ;
}
2011-07-07 23:32:18 +02:00
elseif ( $_POST [ 'receiver' ] != '-1' )
2011-03-02 11:33:24 +01:00
{
2011-07-07 23:32:18 +02:00
// Recipient was provided from combo list
if ( $_POST [ 'receiver' ] == 'thirdparty' ) // Id of third party
2011-03-02 11:33:24 +01:00
{
$sendto = $object -> client -> email ;
$sendtoid = 0 ;
}
else // Id du contact
{
2011-03-05 17:27:26 +01:00
$sendto = $object -> client -> contact_get_property ( $_POST [ 'receiver' ], 'email' );
2011-03-02 11:33:24 +01:00
$sendtoid = $_POST [ 'receiver' ];
}
}
if ( dol_strlen ( $sendto ))
{
$langs -> load ( " commercial " );
$from = $_POST [ 'fromname' ] . ' <' . $_POST [ 'frommail' ] . '>' ;
$replyto = $_POST [ 'replytoname' ] . ' <' . $_POST [ 'replytomail' ] . '>' ;
$message = $_POST [ 'message' ];
$sendtocc = $_POST [ 'sendtocc' ];
$deliveryreceipt = $_POST [ 'deliveryreceipt' ];
if ( $_POST [ 'action' ] == 'send' )
{
if ( dol_strlen ( $_POST [ 'subject' ])) $subject = $_POST [ '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 );
}
// Create form object
include_once ( DOL_DOCUMENT_ROOT . '/core/class/html.formmail.class.php' );
$formmail = new FormMail ( $db );
$attachedfiles = $formmail -> get_attached_files ();
$filepath = $attachedfiles [ 'paths' ];
$filename = $attachedfiles [ 'names' ];
$mimetype = $attachedfiles [ 'mimes' ];
// Send mail
require_once ( DOL_DOCUMENT_ROOT . '/lib/CMailFile.class.php' );
$mailfile = new CMailFile ( $subject , $sendto , $from , $message , $filepath , $mimetype , $filename , $sendtocc , '' , $deliveryreceipt );
if ( $mailfile -> error )
{
$mesg = '<div class="error">' . $mailfile -> error . '</div>' ;
}
else
{
$result = $mailfile -> sendfile ();
if ( $result )
{
2011-07-02 18:48:31 +02:00
$mesg = $langs -> trans ( 'MailSuccessfulySent' , $mailfile -> getValidAddress ( $from , 2 ), $mailfile -> getValidAddress ( $sendto , 2 )); // Must not contains "
2011-03-02 11:33:24 +01:00
$error = 0 ;
// Initialisation donnees
2011-06-04 15:12:44 +02:00
$object -> sendtoid = $sendtoid ;
$object -> actiontypecode = $actiontypecode ;
$object -> actionmsg = $actionmsg ;
$object -> actionmsg2 = $actionmsg2 ;
$object -> fk_element = $object -> id ;
2011-06-19 23:11:49 +02:00
$object -> elementtype = $object -> element ;
2011-03-02 11:33:24 +01:00
// Appel des triggers
include_once ( DOL_DOCUMENT_ROOT . " /core/class/interfaces.class.php " );
$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
Header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&mesg=' . urlencode ( $mesg ));
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>' ;
2011-05-09 17:20:19 +02:00
$action = 'presend' ;
2011-03-02 11:33:24 +01:00
dol_syslog ( 'Recipient email is empty' );
}
}
else
{
$langs -> load ( " other " );
$mesg = '<div class="error">' . $langs -> trans ( 'ErrorCantReadFile' , $file ) . '</div>' ;
dol_syslog ( 'Failed to read file: ' . $file );
}
}
else
{
$langs -> load ( " other " );
2011-06-02 19:20:24 +02:00
$mesg = '<div class="error">' . $langs -> trans ( 'ErrorFailedToReadEntity' , $langs -> trans ( " Order " )) . '</div>' ;
dol_syslog ( $langs -> trans ( 'ErrorFailedToReadEntity' , $langs -> trans ( " Order " )));
2011-03-02 11:33:24 +01:00
}
2008-08-12 20:20:18 +02:00
}
/*
* View
*/
2009-08-05 20:11:27 +02:00
llxHeader ( '' , $langs -> trans ( 'Order' ), 'EN:Customers_Orders|FR:Commandes_Clients|ES:Pedidos de clientes' );
2008-08-12 20:20:18 +02:00
$html = new Form ( $db );
$formfile = new FormFile ( $db );
2008-11-16 02:54:33 +01:00
$formorder = new FormOrder ( $db );
2008-08-12 20:20:18 +02:00
/*********************************************************************
*
* Mode creation
*
*********************************************************************/
2011-04-18 17:06:23 +02:00
if ( $action == 'create' && $user -> rights -> commande -> creer )
2008-08-12 20:20:18 +02:00
{
2011-03-02 11:33:24 +01:00
print_fiche_titre ( $langs -> trans ( 'CreateOrder' ));
2011-06-18 00:24:52 +02:00
dol_htmloutput_mesg ( $mesg , $mesgs , 'error' );
2011-03-02 11:33:24 +01:00
$soc = new Societe ( $db );
if ( $socid ) $res = $soc -> fetch ( $socid );
if ( GETPOST ( 'origin' ) && GETPOST ( 'originid' ))
{
// Parse element/subelement (ex: project_task)
$element = $subelement = GETPOST ( 'origin' );
if ( preg_match ( '/^([^_]+)_([^_]+)/i' , GETPOST ( 'origin' ), $regs ))
{
$element = $regs [ 1 ];
$subelement = $regs [ 2 ];
}
if ( $element == 'project' )
{
$projectid = GETPOST ( 'originid' );
}
else
{
// For compatibility
if ( $element == 'order' || $element == 'commande' ) { $element = $subelement = 'commande' ; }
if ( $element == 'propal' ) { $element = 'comm/propal' ; $subelement = 'propal' ; }
if ( $element == 'contract' ) { $element = $subelement = 'contrat' ; }
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
$classname = ucfirst ( $subelement );
$objectsrc = new $classname ( $db );
$objectsrc -> fetch ( GETPOST ( 'originid' ));
if ( empty ( $objectsrc -> lines ) && method_exists ( $objectsrc , 'fetch_lines' )) $objectsrc -> fetch_lines ();
$objectsrc -> fetch_thirdparty ();
$projectid = ( ! empty ( $objectsrc -> fk_project ) ? $object -> fk_project : '' );
$ref_client = ( ! empty ( $objectsrc -> ref_client ) ? $object -> ref_client : '' );
$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 ));
2011-04-14 14:43:50 +02:00
$availability_id = ( ! empty ( $objectsrc -> availability_id ) ? $objectsrc -> availability_id : ( ! empty ( $soc -> availability_id ) ? $soc -> availability_id : 0 ));
2011-06-19 23:11:49 +02:00
$demand_reason_id = ( ! empty ( $objectsrc -> demand_reason_id ) ? $objectsrc -> demand_reason_id : ( ! empty ( $soc -> demand_reason_id ) ? $soc -> demand_reason_id : 0 ));
2011-03-02 11:33:24 +01:00
$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 ;
2011-05-05 09:25:31 +02:00
2011-04-26 15:49:41 +02:00
// Object source contacts list
$srccontactslist = $objectsrc -> liste_contact ( - 1 , 'external' , 1 );
2011-03-02 11:33:24 +01:00
}
}
else
{
$cond_reglement_id = $soc -> cond_reglement_id ;
$mode_reglement_id = $soc -> mode_reglement_id ;
2011-04-14 14:43:50 +02:00
$availability_id = $soc -> availability_id ;
2011-06-19 23:11:49 +02:00
$demand_reason_id = $soc -> demand_reason_id ;
2011-03-02 11:33:24 +01:00
$remise_percent = $soc -> remise_percent ;
$remise_absolue = 0 ;
$dateinvoice = empty ( $conf -> global -> MAIN_AUTOFILL_DATE ) ? - 1 : 0 ;
}
$absolute_discount = $soc -> getAvailableDiscounts ();
$nbrow = 10 ;
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 " ;
print '<input type="hidden" name="remise_percent" value="' . $soc -> remise_client . '">' ;
print '<input name="facnumber" type="hidden" value="provisoire">' ;
print '<input type="hidden" name="origin" value="' . GETPOST ( 'origin' ) . '">' ;
print '<input type="hidden" name="originid" value="' . GETPOST ( 'originid' ) . '">' ;
print '<table class="border" width="100%">' ;
// Reference
2011-05-09 17:20:19 +02:00
print '<tr><td class="fieldrequired">' . $langs -> trans ( 'Ref' ) . '</td><td colspan="2">' . $langs -> trans ( " Draft " ) . '</td></tr>' ;
2011-03-02 11:33:24 +01:00
// Reference client
2011-05-09 17:20:19 +02:00
print '<tr><td>' . $langs -> trans ( 'RefCustomer' ) . '</td><td colspan="2">' ;
2011-03-02 11:33:24 +01:00
print '<input type="text" name="ref_client" value=""></td>' ;
print '</tr>' ;
// Client
2011-05-09 17:20:19 +02:00
print '<tr><td class="fieldrequired">' . $langs -> trans ( 'Customer' ) . '</td><td colspan="2">' . $soc -> getNomUrl ( 1 ) . '</td></tr>' ;
2011-03-02 11:33:24 +01:00
/*
* Contact de la commande
*/
2011-05-09 17:20:19 +02:00
print " <tr><td> " . $langs -> trans ( " DefaultContact " ) . '</td><td colspan="2">' ;
2011-04-26 15:49:41 +02:00
$html -> select_contacts ( $soc -> id , $setcontact , 'contactidp' , 1 , $srccontactslist );
2011-03-02 11:33:24 +01:00
print '</td></tr>' ;
// Ligne info remises tiers
2011-05-09 17:20:19 +02:00
print '<tr><td>' . $langs -> trans ( 'Discounts' ) . '</td><td colspan="2">' ;
2011-03-02 11:33:24 +01:00
if ( $soc -> remise_client ) print $langs -> trans ( " CompanyHasRelativeDiscount " , $soc -> remise_client );
else print $langs -> trans ( " CompanyHasNoRelativeDiscount " );
print '. ' ;
$absolute_discount = $soc -> getAvailableDiscounts ();
if ( $absolute_discount ) print $langs -> trans ( " CompanyHasAbsoluteDiscount " , price ( $absolute_discount ), $langs -> trans ( " Currency " . $conf -> monnaie ));
else print $langs -> trans ( " CompanyHasNoAbsoluteDiscount " );
print '.' ;
print '</td></tr>' ;
// Date
2011-05-09 17:20:19 +02:00
print '<tr><td class="fieldrequired">' . $langs -> trans ( 'Date' ) . '</td><td colspan="2">' ;
2011-03-02 11:33:24 +01:00
$html -> select_date ( '' , 're' , '' , '' , '' , " crea_commande " , 1 , 1 );
print '</td></tr>' ;
// Date de livraison
2011-05-09 17:20:19 +02:00
print " <tr><td> " . $langs -> trans ( " DeliveryDate " ) . '</td><td colspan="2">' ;
2011-03-02 11:33:24 +01:00
if ( $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 ;
}
$html -> select_date ( $datedelivery , 'liv_' , '' , '' , '' , " crea_commande " , 1 , 1 );
print " </td></tr> " ;
// Delivery address
if ( $conf -> global -> COMMANDE_ADD_DELIVERY_ADDRESS )
{
// Link to edit: $html->form_address($_SERVER['PHP_SELF'].'?action=create','',$soc->id,'adresse_livraison_id','commande','');
2011-05-09 17:20:19 +02:00
print '<tr><td nowrap="nowrap">' . $langs -> trans ( 'DeliveryAddress' ) . '</td><td colspan="2">' ;
$numaddress = $html -> select_address ( $soc -> fk_delivery_address , $socid , 'fk_address' , 1 );
2011-03-02 11:33:24 +01:00
print ' <a href="../comm/address.php?socid=' . $soc -> id . '&action=create">' . $langs -> trans ( " AddAddress " ) . '</a>' ;
print '</td></tr>' ;
}
// Conditions de reglement
2011-05-09 17:20:19 +02:00
print '<tr><td nowrap="nowrap">' . $langs -> trans ( 'PaymentConditionsShort' ) . '</td><td colspan="2">' ;
2011-03-02 11:33:24 +01:00
$html -> select_conditions_paiements ( $soc -> cond_reglement , 'cond_reglement_id' , - 1 , 1 );
print '</td></tr>' ;
// Mode de reglement
2011-05-09 17:20:19 +02:00
print '<tr><td>' . $langs -> trans ( 'PaymentMode' ) . '</td><td colspan="2">' ;
2011-03-02 11:33:24 +01:00
$html -> select_types_paiements ( $soc -> mode_reglement , 'mode_reglement_id' );
2011-04-14 14:39:12 +02:00
print '</td></tr>' ;
2011-07-20 23:26:11 +02:00
// Delivery delay
2011-05-09 17:20:19 +02:00
print '<tr><td>' . $langs -> trans ( 'AvailabilityPeriod' ) . '</td><td colspan="2">' ;
2011-07-20 23:26:11 +02:00
$html -> select_availability ( $propal -> availability , 'availability_id' , '' , 1 );
2011-04-26 22:59:45 +02:00
print '</td></tr>' ;
2011-06-19 23:11:49 +02:00
// What trigger creation
2011-05-09 17:20:19 +02:00
print '<tr><td>' . $langs -> trans ( 'Source' ) . '</td><td colspan="2">' ;
2011-05-07 13:36:47 +02:00
$html -> select_demand_reason (( GETPOST ( " origin " ) == 'propal' ? 'SRC_COMM' : '' ), 'demand_reason_id' , '' , 1 );
2011-03-02 11:33:24 +01:00
print '</td></tr>' ;
2011-05-07 13:36:47 +02:00
// Project
2011-03-02 11:33:24 +01:00
if ( $conf -> projet -> enabled )
{
$projectid = 0 ;
if ( isset ( $_GET [ " origin " ]) && $_GET [ " origin " ] == 'project' ) $projectid = ( $_GET [ " originid " ] ? $_GET [ " originid " ] : 0 );
print '<tr><td>' . $langs -> trans ( 'Project' ) . '</td><td colspan="2">' ;
$numprojet = select_projects ( $soc -> id , $projectid );
if ( $numprojet == 0 )
{
print ' <a href="' . DOL_URL_ROOT . '/projet/fiche.php?socid=' . $soc -> id . '&action=create">' . $langs -> trans ( " AddProject " ) . '</a>' ;
}
print '</td></tr>' ;
}
2011-08-27 17:40:08 +02:00
2011-08-23 17:23:19 +02:00
// Insert hooks
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'formObjectOptions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2011-03-02 11:33:24 +01:00
print '<tr><td>' . $langs -> trans ( 'Model' ) . '</td>' ;
print '<td colspan="2">' ;
// pdf
include_once ( DOL_DOCUMENT_ROOT . '/includes/modules/commande/modules_commande.php' );
2011-08-27 17:40:08 +02:00
$liste = ModelePDFCommandes :: liste_modeles ( $db );
2011-03-02 11:33:24 +01:00
print $html -> 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">' ;
print '<textarea name="note_public" wrap="soft" cols="70" rows="' . ROWS_3 . '">' ;
print '</textarea></td></tr>' ;
// Note privee
if ( ! $user -> societe_id )
{
print '<tr>' ;
print '<td class="border" valign="top">' . $langs -> trans ( 'NotePrivate' ) . '</td>' ;
print '<td valign="top" colspan="2">' ;
print '<textarea name="note" wrap="soft" cols="70" rows="' . ROWS_3 . '">' ;
print '</textarea></td></tr>' ;
}
if ( is_object ( $objectsrc ))
{
// TODO for compatibility
if ( $_GET [ 'origin' ] == 'contrat' )
{
// Calcul contrat->price (HT), contrat->total (TTC), contrat->tva
$objectsrc -> remise_absolue = $remise_absolue ;
$objectsrc -> remise_percent = $remise_percent ;
2011-04-14 14:43:50 +02:00
$objectsrc -> update_price ( 1 );
2011-03-02 11:33:24 +01:00
}
print " \n <!-- " . $classname . " info --> " ;
print " \n " ;
print '<input type="hidden" name="amount" value="' . $objectsrc -> total_ht . '">' . " \n " ;
print '<input type="hidden" name="total" value="' . $objectsrc -> total_ttc . '">' . " \n " ;
print '<input type="hidden" name="tva" value="' . $objectsrc -> total_tva . '">' . " \n " ;
print '<input type="hidden" name="origin" value="' . $objectsrc -> element . '">' ;
print '<input type="hidden" name="originid" value="' . $objectsrc -> id . '">' ;
$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 -> pays_code == 'ES' )
{
if ( $mysoc -> localtax1_assuj == " 1 " ) //Localtax1 RE
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> pays_code ) . '</td><td colspan="2">' . price ( $objectsrc -> total_localtax1 ) . " </td></tr> " ;
}
if ( $mysoc -> localtax2_assuj == " 1 " ) //Localtax2 IRPF
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> pays_code ) . '</td><td colspan="2">' . price ( $objectsrc -> total_localtax2 ) . " </td></tr> " ;
}
}
print '<tr><td>' . $langs -> trans ( 'TotalTTC' ) . '</td><td colspan="2">' . price ( $objectsrc -> total_ttc ) . " </td></tr> " ;
}
else
{
if ( $conf -> global -> PRODUCT_SHOW_WHEN_CREATE )
{
/*
* Services / produits predefinis
*/
$NBLINES = 8 ;
print '<tr><td colspan="3">' ;
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 ++ )
{
print '<tr><td>' ;
// multiprix
if ( $conf -> global -> PRODUIT_MULTIPRICES )
print $html -> select_produits ( '' , 'idprod' . $i , '' , $conf -> product -> limit_size , $soc -> price_level );
else
print $html -> select_produits ( '' , 'idprod' . $i , '' , $conf -> product -> limit_size );
print '</td>' ;
print '<td><input type="text" size="3" name="qty' . $i . '" value="1"></td>' ;
print '<td><input type="text" size="3" name="remise_percent' . $i . '" value="' . $soc -> remise_client . '">%</td></tr>' ;
}
print '</table>' ;
print '</td></tr>' ;
}
}
print '</table>' ;
// Button "Create Draft"
print '<br><center><input type="submit" class="button" name="bouton" value="' . $langs -> trans ( 'CreateDraft' ) . '"></center>' ;
print '</form>' ;
// Show origin lines
if ( is_object ( $objectsrc ))
{
$title = $langs -> trans ( 'ProductsAndServices' );
print_titre ( $title );
print '<table class="noborder" width="100%">' ;
2011-04-13 15:44:58 +02:00
2011-08-11 17:14:50 +02:00
$objectsrc -> printOriginLinesList ( $hookmanager );
2011-03-02 11:33:24 +01:00
print '</table>' ;
}
2008-08-12 20:20:18 +02:00
}
else
{
2011-03-02 11:33:24 +01:00
/* *************************************************************************** */
/* */
/* Mode vue et edition */
/* */
/* *************************************************************************** */
$now = dol_now ();
if ( $id > 0 || ! empty ( $ref ))
{
2011-06-18 00:24:52 +02:00
dol_htmloutput_mesg ( $mesg , $mesgs );
2011-03-02 11:33:24 +01:00
$product_static = new Product ( $db );
2011-04-18 17:06:23 +02:00
$result = $object -> fetch ( $id , $ref );
2011-03-02 11:33:24 +01:00
if ( $result > 0 )
{
$soc = new Societe ( $db );
$soc -> fetch ( $object -> socid );
$author = new User ( $db );
$author -> fetch ( $object -> user_author_id );
$head = commande_prepare_head ( $object );
dol_fiche_head ( $head , 'order' , $langs -> trans ( " CustomerOrder " ), 0 , 'order' );
2011-05-05 09:25:31 +02:00
2011-04-20 15:59:51 +02:00
$formconfirm = '' ;
2011-03-02 11:33:24 +01:00
/*
* Confirmation de la suppression de la commande
*/
2011-04-20 15:59:51 +02:00
if ( $action == 'delete' )
2011-03-02 11:33:24 +01:00
{
2011-04-20 15:59:51 +02:00
$formconfirm = $html -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'DeleteOrder' ), $langs -> trans ( 'ConfirmDeleteOrder' ), 'confirm_delete' , '' , 0 , 1 );
2011-03-02 11:33:24 +01:00
}
/*
* Confirmation de la validation
*/
2011-04-20 15:59:51 +02:00
if ( $action == 'validate' )
2011-03-02 11:33:24 +01:00
{
// on verifie si l'objet est en numerotation provisoire
$ref = substr ( $object -> ref , 1 , 4 );
if ( $ref == 'PROV' )
{
$numref = $object -> getNextNumRef ( $soc );
}
else
{
$numref = $object -> ref ;
}
$text = $langs -> trans ( 'ConfirmValidateOrder' , $numref );
if ( $conf -> notification -> enabled )
{
require_once ( DOL_DOCUMENT_ROOT . " /core/class/notify.class.php " );
$notify = new Notify ( $db );
$text .= '<br>' ;
$text .= $notify -> confirmMessage ( 'NOTIFY_VAL_ORDER' , $object -> socid );
}
2011-04-20 15:59:51 +02:00
$formconfirm = $html -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ValidateOrder' ), $text , 'confirm_validate' , '' , 0 , 1 );
2011-03-02 11:33:24 +01:00
}
/*
* Confirmation de la cloture
*/
2011-04-20 15:59:51 +02:00
if ( $action == 'close' )
2011-03-02 11:33:24 +01:00
{
2011-04-20 15:59:51 +02:00
$formconfirm = $html -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'CloseOrder' ), $langs -> trans ( 'ConfirmCloseOrder' ), 'confirm_close' , '' , 0 , 1 );
2011-03-02 11:33:24 +01:00
}
/*
* Confirmation de l ' annulation
*/
2011-04-20 15:59:51 +02:00
if ( $action == 'cancel' )
2011-03-02 11:33:24 +01:00
{
2011-04-20 15:59:51 +02:00
$formconfirm = $html -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'Cancel' ), $langs -> trans ( 'ConfirmCancelOrder' ), 'confirm_cancel' , '' , 0 , 1 );
2011-03-02 11:33:24 +01:00
}
/*
* Confirmation de la suppression d ' une ligne produit
*/
2011-04-20 15:59:51 +02:00
if ( $action == 'ask_deleteline' )
2011-03-02 11:33:24 +01:00
{
2011-04-20 15:59:51 +02:00
$formconfirm = $html -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&lineid=' . $lineid , $langs -> trans ( 'DeleteProductLine' ), $langs -> trans ( 'ConfirmDeleteProductLine' ), 'confirm_deleteline' , '' , 0 , 1 );
2011-03-02 11:33:24 +01:00
}
// Clone confirmation
2011-04-20 15:59:51 +02:00
if ( $action == 'clone' )
2011-03-02 11:33:24 +01:00
{
// Create an array for form
$formquestion = array (
//'text' => $langs->trans("ConfirmClone"),
2011-04-24 22:24:50 +02:00
//array('type' => 'checkbox', 'name' => 'clone_content', 'label' => $langs->trans("CloneMainAttributes"), 'value' => 1),
2011-04-25 11:27:25 +02:00
//array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans("PuttingPricesUpToDate"), 'value' => 1),
2011-04-25 10:25:14 +02:00
array ( 'type' => 'other' , 'name' => 'socid' , 'label' => $langs -> trans ( " SelectThirdParty " ), 'value' => $html -> select_company ( GETPOST ( 'socid' ), 'socid' , '(s.client=1 OR s.client=3)' ))
2011-03-02 11:33:24 +01:00
);
// Paiement incomplet. On demande si motif = escompte ou autre
2011-04-20 15:59:51 +02:00
$formconfirm = $html -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'CloneOrder' ), $langs -> trans ( 'ConfirmCloneOrder' , $object -> ref ), 'confirm_clone' , $formquestion , 'yes' , 1 );
2011-03-02 11:33:24 +01:00
}
2011-08-11 00:47:33 +02:00
if ( ! $formconfirm )
{
2011-08-12 07:41:01 +02:00
$parameters = array ( 'lineid' => $lineid );
2011-08-11 00:47:33 +02:00
$formconfirm = $hookmanager -> executeHooks ( 'formconfirm' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
}
2011-05-05 09:25:31 +02:00
2011-06-19 23:11:49 +02:00
// Print form confirm
print $formconfirm ;
2011-03-02 11:33:24 +01:00
/*
* Commande
*/
2011-04-26 23:32:09 +02:00
$nbrow = 9 ;
2011-03-02 11:33:24 +01:00
if ( $conf -> projet -> enabled ) $nbrow ++ ;
//Local taxes
if ( $mysoc -> pays_code == 'ES' )
{
if ( $mysoc -> localtax1_assuj == " 1 " ) $nbrow ++ ;
if ( $mysoc -> localtax2_assuj == " 1 " ) $nbrow ++ ;
}
print '<table class="border" width="100%">' ;
// Ref
print '<tr><td width="18%">' . $langs -> trans ( 'Ref' ) . '</td>' ;
print '<td colspan="3">' ;
print $html -> showrefnav ( $object , 'ref' , '' , 1 , 'ref' , 'ref' );
print '</td>' ;
print '</tr>' ;
// Ref commande client
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td nowrap="nowrap">' ;
print $langs -> trans ( 'RefCustomer' ) . '</td><td align="left">' ;
print '</td>' ;
2011-05-09 17:20:19 +02:00
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>' ;
2011-03-02 11:33:24 +01:00
print '</tr></table>' ;
print '</td><td colspan="3">' ;
2011-05-09 17:20:19 +02:00
if ( $user -> rights -> commande -> creer && $action == 'refcustomer' )
2011-03-02 11:33:24 +01:00
{
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>' ;
// Societe
print '<tr><td>' . $langs -> trans ( 'Company' ) . '</td>' ;
print '<td colspan="3">' . $soc -> getNomUrl ( 1 ) . '</td>' ;
print '</tr>' ;
// Ligne info remises tiers
print '<tr><td>' . $langs -> trans ( 'Discounts' ) . '</td><td colspan="3">' ;
if ( $soc -> remise_client ) print $langs -> trans ( " CompanyHasRelativeDiscount " , $soc -> remise_client );
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 )
{
print $langs -> trans ( " CompanyHasAbsoluteDiscount " , price ( $absolute_discount ), $langs -> transnoentities ( " Currency " . $conf -> monnaie ));
}
else
{
// Remise dispo de type non avoir
$filter = 'fk_facture_source IS NULL' ;
print '<br>' ;
$html -> form_remise_dispo ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , 0 , 'remise_id' , $soc -> id , $absolute_discount , $filter );
}
}
if ( $absolute_creditnote )
{
print $langs -> trans ( " CompanyHasCreditNote " , price ( $absolute_creditnote ), $langs -> transnoentities ( " Currency " . $conf -> monnaie )) . '. ' ;
}
if ( ! $absolute_discount && ! $absolute_creditnote ) print $langs -> trans ( " CompanyHasNoAbsoluteDiscount " ) . '.' ;
print '</td></tr>' ;
// Date
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'Date' );
print '</td>' ;
2011-05-09 17:20:19 +02:00
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>' ;
2011-03-02 11:33:24 +01:00
print '</tr></table>' ;
2011-07-20 23:26:11 +02:00
print '</td><td colspan="3">' ;
2011-05-09 17:20:19 +02:00
if ( $action == 'editdate' )
2011-03-02 11:33:24 +01:00
{
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">' ;
$html -> 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>' ;
// Delivery date planed
print '<tr><td height="10">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'DateDeliveryPlanned' );
print '</td>' ;
2011-05-09 17:20:19 +02:00
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>' ;
2011-03-02 11:33:24 +01:00
print '</tr></table>' ;
print '</td><td colspan="2">' ;
2011-05-09 17:20:19 +02:00
if ( $action == 'editdate_livraison' )
2011-03-02 11:33:24 +01:00
{
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">' ;
$html -> 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 '<td rowspan="' . $nbrow . '" valign="top">' . $langs -> trans ( 'NotePublic' ) . ' :<br>' ;
2011-06-19 23:11:49 +02:00
print dol_htmlcleanlastbr ( $object -> note_public );
2011-03-02 11:33:24 +01:00
print '</td>' ;
print '</tr>' ;
// Delivery address
if ( $conf -> global -> COMMANDE_ADD_DELIVERY_ADDRESS )
{
print '<tr><td height="10">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'DeliveryAddress' );
print '</td>' ;
2011-05-09 17:20:19 +02:00
if ( $action != 'editdelivery_adress' && $object -> brouillon ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editdelivery_adress&socid=' . $object -> socid . '&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetDeliveryAddress' ), 1 ) . '</a></td>' ;
2011-03-02 11:33:24 +01:00
print '</tr></table>' ;
print '</td><td colspan="2">' ;
2011-05-09 17:20:19 +02:00
if ( $action == 'editdelivery_adress' )
2011-03-02 11:33:24 +01:00
{
2011-05-09 17:20:19 +02:00
$html -> form_address ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> fk_delivery_address , $socid , 'fk_address' , 'commande' , $object -> id );
2011-03-02 11:33:24 +01:00
}
else
{
2011-05-09 17:20:19 +02:00
$html -> form_address ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> fk_delivery_address , $socid , 'none' , 'commande' , $object -> id );
2011-03-02 11:33:24 +01:00
}
print '</td></tr>' ;
}
// Terms of payment
print '<tr><td height="10">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'PaymentConditionsShort' );
print '</td>' ;
2011-05-09 17:20:19 +02:00
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>' ;
2011-03-02 11:33:24 +01:00
print '</tr></table>' ;
print '</td><td colspan="2">' ;
2011-05-09 17:20:19 +02:00
if ( $action == 'editconditions' )
2011-03-02 11:33:24 +01:00
{
2011-07-20 23:26:11 +02:00
$html -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'cond_reglement_id' , 1 );
2011-03-02 11:33:24 +01:00
}
else
{
2011-07-20 23:26:11 +02:00
$html -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'none' , 1 );
2011-03-02 11:33:24 +01:00
}
print '</td>' ;
print '</tr>' ;
// Mode of payment
print '<tr><td height="10">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'PaymentMode' );
print '</td>' ;
2011-05-09 17:20:19 +02:00
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>' ;
2011-03-02 11:33:24 +01:00
print '</tr></table>' ;
print '</td><td colspan="2">' ;
2011-05-09 17:20:19 +02:00
if ( $action == 'editmode' )
2011-03-02 11:33:24 +01:00
{
$html -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> mode_reglement_id , 'mode_reglement_id' );
}
else
{
$html -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> mode_reglement_id , 'none' );
}
print '</td></tr>' ;
2011-05-05 09:25:31 +02:00
2011-04-14 14:43:50 +02:00
// Availability
2011-04-14 11:42:10 +02:00
print '<tr><td height="10">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'AvailabilityPeriod' );
print '</td>' ;
2011-05-09 17:20:19 +02:00
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>' ;
2011-04-14 11:42:10 +02:00
print '</tr></table>' ;
print '</td><td colspan="2">' ;
2011-05-09 17:20:19 +02:00
if ( $action == 'editavailability' )
2011-04-14 11:42:10 +02:00
{
2011-07-20 23:26:11 +02:00
$html -> form_availability ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> availability_id , 'availability_id' , 1 );
2011-04-14 11:42:10 +02:00
}
else
{
2011-07-20 23:26:11 +02:00
$html -> form_availability ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> availability_id , 'none' , 1 );
2011-04-14 11:42:10 +02:00
}
2011-04-26 22:59:45 +02:00
print '</td></tr>' ;
2011-07-20 23:26:11 +02:00
// Source
2011-06-19 23:11:49 +02:00
print '<tr><td height="10">' ;
2011-04-26 22:59:45 +02:00
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'Source' );
print '</td>' ;
2011-05-09 17:48:12 +02:00
if ( $_GET [ 'action' ] != 'editdemandreason' && $object -> brouillon ) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editdemandreason&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetDemandReason' ), 1 ) . '</a></td>' ;
2011-04-26 22:59:45 +02:00
print '</tr></table>' ;
2011-05-10 00:10:50 +02:00
print '</td><td colspan="2">' ;
2011-05-09 17:48:12 +02:00
if ( $_GET [ 'action' ] == 'editdemandreason' )
2011-04-26 22:59:45 +02:00
{
2011-05-07 13:36:47 +02:00
$html -> form_demand_reason ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> demand_reason_id , 'demand_reason_id' , 1 );
2011-04-26 22:59:45 +02:00
}
else
{
$html -> form_demand_reason ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> demand_reason_id , 'none' );
}
2011-05-10 00:10:50 +02:00
// 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>';
2011-04-14 11:42:10 +02:00
print '</td></tr>' ;
2011-03-02 11:33:24 +01:00
// Project
if ( $conf -> projet -> enabled )
{
$langs -> load ( 'projects' );
print '<tr><td height="10">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'Project' );
print '</td>' ;
2011-08-23 20:40:45 +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>' ;
2011-03-02 11:33:24 +01:00
print '</tr></table>' ;
print '</td><td colspan="2">' ;
//print "$object->id, $object->socid, $object->fk_project";
2011-08-23 20:40:45 +02:00
if ( $action == 'classify' )
2011-03-02 11:33:24 +01:00
{
$html -> form_project ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> socid , $object -> fk_project , 'projectid' );
}
else
{
$html -> form_project ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> socid , $object -> fk_project , 'none' );
}
print '</td></tr>' ;
}
2011-08-27 17:40:08 +02:00
2011-08-23 17:23:19 +02:00
// Insert hooks
2011-08-23 20:40:45 +02:00
$parameters = array ( 'colspan' => ' colspan="2"' );
2011-08-23 17:23:19 +02:00
$reshook = $hookmanager -> executeHooks ( 'formObjectOptions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2011-03-02 11:33:24 +01:00
// Lignes de 3 colonnes
// Total HT
print '<tr><td>' . $langs -> trans ( 'AmountHT' ) . '</td>' ;
print '<td align="right"><b>' . price ( $object -> total_ht ) . '</b></td>' ;
print '<td>' . $langs -> trans ( 'Currency' . $conf -> monnaie ) . '</td></tr>' ;
// Total TVA
print '<tr><td>' . $langs -> trans ( 'AmountVAT' ) . '</td><td align="right">' . price ( $object -> total_tva ) . '</td>' ;
print '<td>' . $langs -> trans ( 'Currency' . $conf -> monnaie ) . '</td></tr>' ;
// Amount Local Taxes
if ( $mysoc -> pays_code == 'ES' )
{
if ( $mysoc -> localtax1_assuj == " 1 " ) //Localtax1 RE
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> pays_code ) . '</td>' ;
print '<td align="right">' . price ( $object -> total_localtax1 ) . '</td>' ;
print '<td>' . $langs -> trans ( " Currency " . $conf -> monnaie ) . '</td></tr>' ;
}
if ( $mysoc -> localtax2_assuj == " 1 " ) //Localtax2 IRPF
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> pays_code ) . '</td>' ;
print '<td align="right">' . price ( $object -> total_localtax2 ) . '</td>' ;
print '<td>' . $langs -> trans ( " Currency " . $conf -> monnaie ) . '</td></tr>' ;
}
}
// Total TTC
print '<tr><td>' . $langs -> trans ( 'AmountTTC' ) . '</td><td align="right">' . price ( $object -> total_ttc ) . '</td>' ;
print '<td>' . $langs -> trans ( 'Currency' . $conf -> monnaie ) . '</td></tr>' ;
// Statut
print '<tr><td>' . $langs -> trans ( 'Status' ) . '</td>' ;
print '<td colspan="2">' . $object -> getLibStatut ( 4 ) . '</td>' ;
print '</tr>' ;
print '</table><br>' ;
print " \n " ;
/*
* Lines
*/
2010-10-02 23:01:24 +02:00
$result = $object -> getLinesArray ();
2011-05-05 09:25:31 +02:00
2011-04-14 16:04:18 +02:00
$numlines = count ( $object -> lines );
2010-08-10 23:01:21 +02:00
2010-10-02 23:01:24 +02:00
if ( $conf -> use_javascript_ajax && $object -> statut == 0 )
{
include ( DOL_DOCUMENT_ROOT . '/core/tpl/ajaxrow.tpl.php' );
}
2010-09-14 23:52:24 +02:00
2010-10-02 23:01:24 +02:00
print '<table id="tablelines" class="noborder" width="100%">' ;
2010-09-14 23:52:24 +02:00
2011-04-14 14:43:50 +02:00
// Show object lines
2011-08-10 19:40:42 +02:00
if ( ! empty ( $object -> lines )) $object -> printObjectLines ( $action , $mysoc , $soc , $lineid , 1 , $hookmanager );
2011-03-02 11:33:24 +01:00
/*
* Form to add new line
*/
if ( $object -> statut == 0 && $user -> rights -> commande -> creer )
{
2011-05-09 17:20:19 +02:00
if ( $action != 'editline' )
2011-03-02 11:33:24 +01:00
{
$var = true ;
2011-08-10 19:40:42 +02:00
$object -> formAddFreeProduct ( 1 , $mysoc , $soc , $hookmanager );
2011-03-02 11:33:24 +01:00
// Add predefined products/services
if ( $conf -> product -> enabled || $conf -> service -> enabled )
{
$var =! $var ;
2011-08-10 19:40:42 +02:00
$object -> formAddPredefinedProduct ( 1 , $mysoc , $soc , $hookmanager );
2011-03-02 11:33:24 +01:00
}
2011-08-11 00:47:33 +02:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'formAddObject' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2011-03-02 11:33:24 +01:00
}
}
print '</table>' ;
print '</div>' ;
/*
* Boutons actions
*/
2011-04-18 17:06:23 +02:00
if ( $action != 'presend' )
2011-03-02 11:33:24 +01:00
{
2011-04-18 17:06:23 +02:00
if ( $user -> societe_id == 0 && $action <> 'editline' )
2011-03-02 11:33:24 +01:00
{
print '<div class="tabsAction">' ;
// Valid
if ( $object -> statut == 0 && $object -> total_ttc >= 0 && $numlines > 0 && $user -> rights -> commande -> valider )
{
2011-04-22 19:31:28 +02:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=validate">' . $langs -> trans ( 'Validate' ) . '</a>' ;
2011-03-02 11:33:24 +01:00
}
// Edit
2011-04-22 19:31:28 +02:00
if ( $object -> statut == 1 && $user -> rights -> commande -> creer )
2011-03-02 11:33:24 +01:00
{
2011-04-22 19:31:28 +02:00
print '<a class="butAction" href="fiche.php?id=' . $object -> id . '&action=modif">' . $langs -> trans ( 'Modify' ) . '</a>' ;
2011-03-02 11:33:24 +01:00
}
// Send
if ( $object -> statut > 0 )
{
2011-05-05 09:25:31 +02:00
$comref = dol_sanitizeFileName ( $object -> ref );
$file = $conf -> commande -> dir_output . '/' . $comref . '/' . $comref . '.pdf' ;
if ( file_exists ( $file ))
2011-03-02 11:33:24 +01:00
{
2011-05-05 09:25:31 +02:00
if (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) || $user -> rights -> commande -> order_advance -> send ))
2011-03-02 11:33:24 +01:00
{
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=presend&mode=init">' . $langs -> trans ( 'SendByMail' ) . '</a>' ;
}
2011-05-05 09:25:31 +02:00
else print '<a class="butActionRefused" href="#">' . $langs -> trans ( 'SendByMail' ) . '</a>' ;
2011-03-02 11:33:24 +01:00
}
}
// Ship
2011-04-22 19:31:28 +02:00
$numshipping = 0 ;
2011-03-02 11:33:24 +01:00
if ( $conf -> expedition -> enabled )
{
2011-06-19 23:11:49 +02:00
$numshipping = $object -> nb_expedition ();
2011-05-05 09:25:31 +02:00
2011-03-02 11:33:24 +01:00
if ( $object -> statut > 0 && $object -> statut < 3 && $object -> getNbOfProductsLines () > 0 )
{
2011-08-08 14:00:13 +02:00
if (( $conf -> expedition_bon -> enabled && $user -> rights -> expedition -> creer )
|| ( $conf -> livraison_bon -> enabled && $user -> rights -> expedition -> livraison -> creer ))
{
if ( $user -> rights -> expedition -> creer )
{
print '<a class="butAction" href="' . DOL_URL_ROOT . '/expedition/shipment.php?id=' . $object -> id . '">' . $langs -> trans ( 'ShipProduct' ) . '</a>' ;
}
else
{
print '<a class="butActionRefused" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " NotAllowed " )) . '">' . $langs -> trans ( 'ShipProduct' ) . '</a>' ;
}
}
else
{
$langs -> load ( " errors " );
print '<a class="butActionRefused" href="#" title="' . dol_escape_htmltag ( $langs -> trans ( " ErrorModuleSetupNotComplete " )) . '">' . $langs -> trans ( 'ShipProduct' ) . '</a>' ;
}
2011-03-02 11:33:24 +01:00
}
}
2010-09-14 23:52:24 +02:00
// Reopen a closed order
2010-10-02 23:01:24 +02:00
if ( $object -> statut == 3 )
2010-09-14 23:52:24 +02:00
{
2010-10-02 23:01:24 +02:00
print '<a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '&action=reopen">' . $langs -> trans ( 'ReOpen' ) . '</a>' ;
2010-09-14 23:52:24 +02:00
}
2011-03-02 11:33:24 +01:00
// Create bill and Classify billed
if ( $conf -> facture -> enabled && $object -> statut > 0 && ! $object -> facturee )
{
if ( $user -> rights -> facture -> creer )
{
print '<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>' ;
}
if ( $user -> rights -> commande -> creer && $object -> statut > 2 )
{
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=classifybilled">' . $langs -> trans ( " ClassifyBilled " ) . '</a>' ;
}
}
// Close
2011-04-22 19:31:28 +02:00
if (( $object -> statut == 1 || $object -> statut == 2 ) && $user -> rights -> commande -> cloturer )
2011-03-02 11:33:24 +01:00
{
2011-04-22 19:31:28 +02:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=close">' . $langs -> trans ( 'Close' ) . '</a>' ;
2011-03-02 11:33:24 +01:00
}
// Clone
if ( $user -> rights -> commande -> creer )
{
2011-04-24 22:24:50 +02:00
print '<a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '&socid=' . $object -> socid . '&action=clone&object=order">' . $langs -> trans ( " ToClone " ) . '</a>' ;
2011-03-02 11:33:24 +01:00
}
// Cancel order
2011-04-22 19:31:28 +02:00
if ( $object -> statut == 1 && $user -> rights -> commande -> annuler )
2011-03-02 11:33:24 +01:00
{
2011-04-22 19:31:28 +02:00
print '<a class="butActionDelete" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=cancel">' . $langs -> trans ( 'Cancel' ) . '</a>' ;
2011-03-02 11:33:24 +01:00
}
// Delete order
if ( $user -> rights -> commande -> supprimer )
{
2011-06-19 23:11:49 +02:00
if ( $numshipping == 0 )
{
print '<a class="butActionDelete" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=delete">' . $langs -> trans ( 'Delete' ) . '</a>' ;
}
else
{
print '<a class="butActionRefused" href="#" title="' . $langs -> trans ( " ShippingExist " ) . '">' . $langs -> trans ( " Delete " ) . '</a>' ;
}
2011-03-02 11:33:24 +01:00
}
print '</div>' ;
}
print '<br>' ;
}
2011-04-18 17:06:23 +02:00
if ( $action != 'presend' )
2011-03-02 11:33:24 +01:00
{
print '<table width="100%"><tr><td width="50%" valign="top">' ;
print '<a name="builddoc"></a>' ; // ancre
/*
* Documents generes
*
*/
$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 ;
2011-08-10 19:40:42 +02:00
$somethingshown = $formfile -> show_documents ( 'commande' , $comref , $filedir , $urlsource , $genallowed , $delallowed , $object -> modelpdf , 1 , 0 , 0 , 28 , 0 , '' , '' , '' , $soc -> default_lang , $hookmanager );
2011-03-02 11:33:24 +01:00
/*
* Linked object block
*/
2011-05-06 20:27:18 +02:00
$somethingshown = $object -> showLinkedObjectBlock ();
2011-03-02 11:33:24 +01:00
print '</td><td valign="top" width="50%">' ;
// 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 );
print '</td></tr></table>' ;
}
/*
* Action presend
*
*/
2011-04-18 17:06:23 +02:00
if ( $action == 'presend' )
2011-03-02 11:33:24 +01:00
{
$ref = dol_sanitizeFileName ( $object -> ref );
$file = $conf -> commande -> dir_output . '/' . $ref . '/' . $ref . '.pdf' ;
print '<br>' ;
print_titre ( $langs -> trans ( 'SendOrderByMail' ));
// 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 ;
$formmail -> withto = empty ( $_POST [ " sendto " ]) ? 1 : $_POST [ " sendto " ];
$formmail -> withtosocid = $soc -> id ;
$formmail -> withtocc = 1 ;
$formmail -> withtoccsocid = 0 ;
$formmail -> withtoccc = $conf -> global -> MAIN_EMAIL_USECCC ;
$formmail -> withtocccsocid = 0 ;
$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 ;
// 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 ;
// Init list of files
if ( ! empty ( $_REQUEST [ " mode " ]) && $_REQUEST [ " mode " ] == 'init' )
{
$formmail -> clear_attached_files ();
$formmail -> add_attached_files ( $file , dol_sanitizeFilename ( $ref . '.pdf' ), 'application/pdf' );
}
// Show form
$formmail -> show_form ();
print '<br>' ;
}
}
else
{
// Commande non trouvee
dol_print_error ( $db );
}
}
2008-08-12 20:20:18 +02:00
}
$db -> close ();
2011-08-27 16:24:16 +02:00
llxFooter ();
2008-08-12 20:20:18 +02:00
?>