2008-08-12 20:20:18 +02:00
< ? php
/* Copyright ( C ) 2001 - 2007 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2013-01-19 15:57:28 +01:00
* Copyright ( C ) 2004 - 2013 Laurent Destailleur < eldy @ users . sourceforge . net >
2013-05-18 09:11:24 +02:00
* Copyright ( C ) 2004 Eric Seigne < eric . seigne @ ryxeo . com >
* Copyright ( C ) 2005 Marc Barilley / Ocebo < marc @ ocebo . com >
* Copyright ( C ) 2005 - 2012 Regis Houssin < regis . houssin @ capnetworks . com >
* Copyright ( C ) 2006 Andre Cianfarani < acianfa @ free . fr >
2013-05-20 17:37:08 +02:00
* Copyright ( C ) 2010 - 2013 Juanjo Menent < jmenent @ 2 byte . es >
2013-05-18 09:11:24 +02:00
* Copyright ( C ) 2010 - 2011 Philippe Grand < philippe . grand @ atoo - net . com >
2013-08-12 15:34:09 +02:00
* Copyright ( C ) 2012 - 2013 Christophe Battarel < christophe . battarel @ altairis . fr >
2014-04-06 21:21:08 +02:00
* Copyright ( C ) 2013 - 2014 Florian Henry < florian . henry @ open - concept . pro >
2013-05-20 17:37:08 +02:00
*
2013-05-18 09:11:24 +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 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
/**
2008-10-28 21:05:23 +01:00
* \file htdocs / comm / propal . php
2013-05-18 09:11:24 +02:00
* \ingroup propale
* \brief Page of commercial proposals card and list
*/
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.formother.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formpropal.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/comm/propal/class/propal.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/comm/action/class/actioncomm.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/modules/propale/modules_propale.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/propal.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php' ;
2013-03-04 18:22:25 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php' ;
2013-02-12 17:08:21 +01:00
if ( ! empty ( $conf -> projet -> enabled ))
2013-02-02 18:31:45 +01:00
{
require_once 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' ;
2013-02-02 18:31:45 +01:00
}
2008-08-12 20:20:18 +02:00
$langs -> load ( 'companies' );
$langs -> load ( 'propal' );
$langs -> load ( 'compta' );
$langs -> load ( 'bills' );
$langs -> load ( 'orders' );
$langs -> load ( 'products' );
2013-02-02 18:31:45 +01:00
$langs -> load ( " deliveries " );
2012-07-20 09:57:50 +02:00
if ( ! empty ( $conf -> margin -> enabled ))
2013-04-16 11:37:51 +02:00
$langs -> load ( 'margins' );
2008-08-12 20:20:18 +02:00
2012-08-26 14:14:27 +02:00
$error = 0 ;
2012-01-13 17:46:15 +01:00
$id = GETPOST ( 'id' , 'int' );
$ref = GETPOST ( 'ref' , 'alpha' );
$socid = GETPOST ( 'socid' , 'int' );
$action = GETPOST ( 'action' , 'alpha' );
2013-02-02 18:31:45 +01:00
$origin = GETPOST ( 'origin' , 'alpha' );
$originid = GETPOST ( 'originid' , 'int' );
2012-01-13 17:46:15 +01:00
$confirm = GETPOST ( 'confirm' , 'alpha' );
$lineid = GETPOST ( 'lineid' , 'int' );
2011-03-11 15:59:35 +01:00
2012-05-21 17:12:57 +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
2011-06-30 00:29:50 +02:00
// Nombre de ligne pour choix de produit/service predefinis
$NBLINES = 4 ;
2008-08-12 20:20:18 +02:00
// Security check
2012-08-25 19:29:26 +02:00
if ( ! empty ( $user -> societe_id )) $socid = $user -> societe_id ;
$result = restrictedArea ( $user , 'propal' , $id );
2008-08-12 20:20:18 +02:00
2012-03-12 09:28:02 +01:00
$object = new Propal ( $db );
2013-03-04 18:22:25 +01:00
$extrafields = new ExtraFields ( $db );
2012-03-12 09:28:02 +01:00
2013-03-29 22:14:06 +01:00
// fetch optionals attributes and labels
2013-04-26 10:29:14 +02:00
$extralabels = $extrafields -> fetch_name_optionals_label ( $object -> table_element );
2013-03-29 22:14:06 +01:00
2012-03-12 09:28:02 +01:00
// Load object
2012-07-02 19:30:37 +02:00
if ( $id > 0 || ! empty ( $ref ))
2012-03-12 09:28:02 +01:00
{
2013-02-02 18:31:45 +01:00
$ret = $object -> fetch ( $id , $ref );
2013-02-17 16:20:49 +01:00
if ( $ret > 0 ) $ret = $object -> fetch_thirdparty ();
if ( $ret < 0 ) dol_print_error ( '' , $object -> error );
2012-08-25 19:08:06 +02:00
}
2012-03-12 09:28:02 +01:00
2011-08-10 12:55:34 +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 ( 'propalcard' ));
2010-08-06 18:10:03 +02:00
2008-08-12 20:20:18 +02:00
2011-12-16 14:59:09 +01:00
2012-02-20 12:20:56 +01:00
/*
* Actions
2013-11-05 10:44:58 +01:00
*/
2008-08-12 20:20:18 +02:00
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-07 12:15:34 +02:00
2009-01-14 16:53:52 +01:00
// Action clone object
2011-04-25 12:10:34 +02:00
if ( $action == 'confirm_clone' && $confirm == 'yes' )
2009-01-14 16:53:52 +01:00
{
2011-12-12 13:42:19 +01:00
if ( 1 == 0 && ! GETPOST ( 'clone_content' ) && ! GETPOST ( 'clone_receivers' ))
2009-01-14 16:53:52 +01:00
{
2012-07-29 12:54:19 +02:00
setEventMessage ( $langs -> trans ( " NoCloneOptionsSpecified " ), 'errors' );
2009-01-14 16:53:52 +01:00
}
else
{
2012-07-29 12:54:19 +02:00
if ( $object -> id > 0 )
2009-01-14 16:53:52 +01:00
{
2013-01-26 10:35:30 +01:00
$result = $object -> createFromClone ( $socid );
2011-12-12 13:42:19 +01:00
if ( $result > 0 )
{
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . '?id=' . $result );
exit ;
}
else
{
2012-07-29 12:54:19 +02:00
setEventMessage ( $object -> error , 'errors' );
2011-12-12 13:42:19 +01:00
$action = '' ;
}
2009-01-14 16:53:52 +01:00
}
}
}
2013-11-05 10:44:58 +01:00
// Delete proposal
2012-08-25 03:28:30 +02:00
else if ( $action == 'confirm_delete' && $confirm == 'yes' && $user -> rights -> propal -> supprimer )
2008-08-12 20:20:18 +02:00
{
2012-02-15 19:35:19 +01:00
$result = $object -> delete ( $user );
if ( $result > 0 )
2008-08-12 20:20:18 +02:00
{
2012-08-31 05:58:38 +02:00
header ( 'Location: ' . DOL_URL_ROOT . '/comm/propal/list.php' );
2012-02-15 19:35:19 +01:00
exit ;
}
else
{
$langs -> load ( " errors " );
2012-07-29 12:54:19 +02:00
setEventMessage ( $langs -> trans ( $object -> error ), 'errors' );
2008-08-12 20:20:18 +02:00
}
}
2009-03-04 01:14:51 +01:00
// Remove line
2012-08-25 03:28:30 +02:00
else if ( $action == 'confirm_deleteline' && $confirm == 'yes' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-02 19:30:37 +02:00
$result = $object -> deleteline ( $lineid );
// reorder lines
if ( $result ) $object -> line_order ( true );
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
2012-10-05 15:12:17 +02:00
// Define output language
$outputlangs = $langs ;
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ))
{
$outputlangs = new Translate ( " " , $conf );
$newlang = ( GETPOST ( 'lang_id' ) ? GETPOST ( 'lang_id' ) : $object -> client -> default_lang );
$outputlangs -> setDefaultLang ( $newlang );
}
2012-07-02 19:30:37 +02:00
$ret = $object -> fetch ( $id ); // Reload to get new records
2013-01-26 10:35:30 +01:00
propale_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-07-02 19:30:37 +02:00
}
2012-08-31 05:58:38 +02:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
2012-03-16 10:55:29 +01:00
exit ;
2008-08-12 20:20:18 +02:00
}
2009-03-04 01:14:51 +01:00
// Validation
2012-08-25 03:28:30 +02:00
else if ( $action == 'confirm_validate' && $confirm == 'yes' && $user -> rights -> propal -> valider )
2008-08-12 20:20:18 +02:00
{
2010-09-18 11:40:24 +02:00
$result = $object -> valid ( $user );
2008-08-12 20:20:18 +02:00
if ( $result >= 0 )
{
2011-12-02 19:57:20 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
2012-10-05 15:12:17 +02:00
// Define output language
$outputlangs = $langs ;
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ))
{
$outputlangs = new Translate ( " " , $conf );
$newlang = ( GETPOST ( 'lang_id' ) ? GETPOST ( 'lang_id' ) : $object -> client -> default_lang );
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
2013-01-26 10:35:30 +01:00
propale_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2011-12-02 19:57:20 +01:00
}
2008-08-12 20:20:18 +02:00
}
else
{
2012-07-29 12:54:19 +02:00
$langs -> load ( " errors " );
setEventMessage ( $langs -> trans ( $object -> error ), 'errors' );
2008-08-12 20:20:18 +02:00
}
}
2012-08-25 03:28:30 +02:00
else if ( $action == 'setdate' && $user -> rights -> propal -> creer )
2009-03-04 01:14:51 +01:00
{
2013-04-16 11:37:51 +02:00
$datep = dol_mktime ( 12 , 0 , 0 , $_POST [ 'remonth' ], $_POST [ 'reday' ], $_POST [ 'reyear' ]);
if ( empty ( $datep ))
{
$error ++ ;
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Date " )), 'errors' );
}
if ( ! $error )
{
$result = $object -> set_date ( $user , $datep );
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
}
2009-03-04 01:14:51 +01:00
}
2012-08-25 03:28:30 +02:00
else if ( $action == 'setecheance' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2010-09-18 11:40:24 +02:00
$result = $object -> set_echeance ( $user , dol_mktime ( 12 , 0 , 0 , $_POST [ 'echmonth' ], $_POST [ 'echday' ], $_POST [ 'echyear' ]));
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
2008-08-12 20:20:18 +02:00
}
2012-08-25 03:28:30 +02:00
else if ( $action == 'setdate_livraison' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2010-09-18 11:40:24 +02:00
$result = $object -> set_date_livraison ( $user , dol_mktime ( 12 , 0 , 0 , $_POST [ 'liv_month' ], $_POST [ 'liv_day' ], $_POST [ 'liv_year' ]));
if ( $result < 0 ) dol_print_error ( $db , $object -> error );
2008-08-12 20:20:18 +02:00
}
// Positionne ref client
2012-08-25 03:28:30 +02:00
else if ( $action == 'set_ref_client' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2010-09-18 11:40:24 +02:00
$object -> set_ref_client ( $user , $_POST [ 'ref_client' ]);
2008-08-12 20:20:18 +02:00
}
2012-08-25 03:28:30 +02:00
else if ( $action == 'setnote_public' && $user -> rights -> propal -> creer )
2012-07-02 19:30:37 +02:00
{
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 );
2012-03-12 10:47:55 +01:00
}
2012-07-02 19:30:37 +02:00
2013-04-09 17:18:07 +02:00
else if ( $action == 'setnote_private' && $user -> rights -> propal -> creer )
2012-07-02 19:30:37 +02:00
{
2013-04-10 10:58:38 +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-12 10:47:55 +01:00
}
2011-12-16 14:59:09 +01:00
// Create proposal
2012-08-25 03:28:30 +02:00
else if ( $action == 'add' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2012-01-11 13:37:50 +01:00
$object -> socid = $socid ;
2010-09-18 11:40:24 +02:00
$object -> fetch_thirdparty ();
2008-08-12 20:20:18 +02:00
2012-07-28 22:07:27 +02:00
$datep = dol_mktime ( 12 , 0 , 0 , GETPOST ( 'remonth' ), GETPOST ( 'reday' ), GETPOST ( 'reyear' ));
$date_delivery = dol_mktime ( 12 , 0 , 0 , GETPOST ( 'liv_month' ), GETPOST ( 'liv_day' ), GETPOST ( 'liv_year' ));
2012-07-29 13:47:42 +02:00
$duration = GETPOST ( 'duree_validite' );
2008-08-12 20:20:18 +02:00
2012-01-11 13:37:50 +01:00
if ( empty ( $datep ))
2008-08-12 20:20:18 +02:00
{
2012-07-29 08:26:33 +02:00
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Date " )), 'errors' );
2013-04-16 11:37:51 +02:00
$action = 'create' ;
2013-02-02 18:31:45 +01:00
$error ++ ;
2008-08-12 20:20:18 +02:00
}
2012-07-29 16:11:52 +02:00
if ( empty ( $duration ))
{
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " ValidityDuration " )), 'errors' );
2013-02-02 18:31:45 +01:00
$action = 'create' ;
$error ++ ;
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
if ( $socid < 1 )
{
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Customer " )), 'errors' );
$action = 'create' ;
$error ++ ;
2012-07-29 16:11:52 +02:00
}
2008-08-12 20:20:18 +02:00
2012-01-11 13:37:50 +01:00
if ( ! $error )
2008-08-12 20:20:18 +02:00
{
2013-04-16 11:37:51 +02:00
$db -> begin ();
// Si on a selectionne une propal a copier, on realise la copie
if ( GETPOST ( 'createmode' ) == 'copy' && GETPOST ( 'copie_propal' ))
{
if ( $object -> fetch ( GETPOST ( 'copie_propal' )) > 0 )
{
$object -> ref = GETPOST ( 'ref' );
$object -> datep = $datep ;
$object -> date_livraison = $date_delivery ;
$object -> availability_id = GETPOST ( 'availability_id' );
$object -> demand_reason_id = GETPOST ( 'demand_reason_id' );
$object -> fk_delivery_address = GETPOST ( 'fk_address' );
$object -> duree_validite = $duration ;
$object -> cond_reglement_id = GETPOST ( 'cond_reglement_id' );
$object -> mode_reglement_id = GETPOST ( 'mode_reglement_id' );
$object -> remise_percent = GETPOST ( 'remise_percent' );
$object -> remise_absolue = GETPOST ( 'remise_absolue' );
$object -> socid = GETPOST ( 'socid' );
$object -> contactid = GETPOST ( 'contactidp' );
$object -> fk_project = GETPOST ( 'projectid' );
$object -> modelpdf = GETPOST ( 'model' );
$object -> author = $user -> id ; // deprecated
$object -> note = GETPOST ( 'note' );
$object -> statut = 0 ;
$id = $object -> create_from ( $user );
}
else
{
setEventMessage ( $langs -> trans ( " ErrorFailedToCopyProposal " , GETPOST ( 'copie_propal' )), 'errors' );
}
}
else
{
$object -> ref = GETPOST ( 'ref' );
$object -> ref_client = GETPOST ( 'ref_client' );
$object -> datep = $datep ;
$object -> date_livraison = $date_delivery ;
$object -> availability_id = GETPOST ( 'availability_id' );
$object -> demand_reason_id = GETPOST ( 'demand_reason_id' );
$object -> fk_delivery_address = GETPOST ( 'fk_address' );
$object -> duree_validite = GETPOST ( 'duree_validite' );
$object -> cond_reglement_id = GETPOST ( 'cond_reglement_id' );
$object -> mode_reglement_id = GETPOST ( 'mode_reglement_id' );
$object -> contactid = GETPOST ( 'contactidp' );
$object -> fk_project = GETPOST ( 'projectid' );
$object -> modelpdf = GETPOST ( 'model' );
$object -> author = $user -> id ; // deprecated
$object -> note = GETPOST ( 'note' );
$object -> origin = GETPOST ( 'origin' );
$object -> origin_id = GETPOST ( 'originid' );
2013-07-26 15:42:32 +02:00
for ( $i = 1 ; $i <= $conf -> global -> PRODUCT_SHOW_WHEN_CREATE ; $i ++ )
2013-04-16 11:37:51 +02:00
{
if ( $_POST [ 'idprod' . $i ])
{
$xid = 'idprod' . $i ;
$xqty = 'qty' . $i ;
$xremise = 'remise' . $i ;
$object -> add_product ( $_POST [ $xid ], $_POST [ $xqty ], $_POST [ $xremise ]);
}
}
// Fill array 'array_options' with data from add form
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object );
2013-07-26 15:42:32 +02:00
if ( $ret < 0 ) {
$error ++ ;
$action = 'create' ;
}
}
2013-04-16 11:37:51 +02:00
2013-07-26 15:42:32 +02:00
if ( ! $error ) {
2013-04-16 11:37:51 +02:00
$id = $object -> create ( $user );
2013-07-26 15:42:32 +02:00
if ( $id > 0 )
2013-04-16 11:37:51 +02:00
{
2013-07-26 15:42:32 +02:00
// Insertion contact par defaut si defini
if ( GETPOST ( 'contactidp' ) > 0 )
2013-04-16 11:37:51 +02:00
{
2013-07-26 15:42:32 +02:00
$result = $object -> add_contact ( GETPOST ( 'contactidp' ), 'CUSTOMER' , 'external' );
if ( $result < 0 )
{
$error ++ ;
setEventMessage ( $langs -> trans ( " ErrorFailedToAddContact " ), 'errors' );
}
2013-04-16 11:37:51 +02:00
}
2013-07-26 15:42:32 +02:00
if ( ! $error )
2013-04-16 11:37:51 +02:00
{
2013-07-26 15:42:32 +02:00
$db -> commit ();
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
2013-04-16 11:37:51 +02:00
{
2013-07-26 15:42:32 +02:00
// Define output language
$outputlangs = $langs ;
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ))
{
$outputlangs = new Translate ( " " , $conf );
$newlang = ( GETPOST ( 'lang_id' ) ? GETPOST ( 'lang_id' ) : $object -> client -> default_lang );
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
propale_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2013-04-16 11:37:51 +02:00
}
2013-07-26 15:42:32 +02:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $id );
exit ;
}
else
{
$db -> rollback ();
}
2013-04-16 11:37:51 +02:00
}
else
{
2013-07-26 15:42:32 +02:00
dol_print_error ( $db , $object -> error );
2013-04-16 11:37:51 +02:00
$db -> rollback ();
2013-07-26 15:42:32 +02:00
exit ;
2013-04-16 11:37:51 +02:00
}
}
2008-08-12 20:20:18 +02:00
}
}
2010-09-10 18:51:33 +02:00
// Classify billed
2012-08-25 03:28:30 +02:00
else if ( $action == 'classifybilled' && $user -> rights -> propal -> cloturer )
2010-09-10 18:51:33 +02:00
{
2010-09-18 11:40:24 +02:00
$object -> cloture ( $user , 4 , '' );
2010-09-10 18:51:33 +02:00
}
2011-12-16 14:59:09 +01:00
// Reopen proposal
2012-08-25 03:28:30 +02:00
else if ( $action == 'confirm_reopen' && $user -> rights -> propal -> cloturer && ! GETPOST ( 'cancel' ))
2008-08-12 20:20:18 +02:00
{
2012-07-29 12:54:19 +02:00
// prevent browser refresh from reopening proposal several times
if ( $object -> statut == 2 || $object -> statut == 3 )
2008-08-12 20:20:18 +02:00
{
2013-07-15 09:33:26 +02:00
$object -> reopen ( $user , 1 );
2008-08-12 20:20:18 +02:00
}
}
2011-12-16 14:59:09 +01:00
// Close proposal
2012-08-25 03:28:30 +02:00
else if ( $action == 'setstatut' && $user -> rights -> propal -> cloturer && ! GETPOST ( 'cancel' ))
2011-12-16 14:59:09 +01:00
{
2012-07-29 12:54:19 +02:00
if ( ! GETPOST ( 'statut' ))
{
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentities ( " CloseAs " )), 'errors' );
$action = 'statut' ;
}
else
{
// prevent browser refresh from closing proposal several times
if ( $object -> statut == 1 )
{
$object -> cloture ( $user , GETPOST ( 'statut' ), GETPOST ( 'note' ));
}
}
2011-12-16 14:59:09 +01:00
}
2008-08-12 20:20:18 +02:00
2013-11-05 10:44:58 +01:00
// Add file in email form
2012-07-20 09:57:50 +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
2010-05-12 13:29:21 +02:00
// Set tmp user directory TODO Use a dedicated directory for temp mails files
2009-10-14 18:13:20 +02:00
$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
2012-07-29 12:54:19 +02:00
dol_add_file_process ( $upload_dir_tmp , 0 , 0 );
2011-04-28 19:15:03 +02:00
$action = 'presend' ;
2008-08-12 20:20:18 +02:00
}
2013-11-05 10:44:58 +01:00
// Remove file in email form
2012-07-29 12:54:19 +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
2010-01-13 11:30:33 +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-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 ( $_POST [ 'removedfile' ], 0 );
2011-04-28 19:15:03 +02:00
$action = 'presend' ;
2010-01-13 11:30:33 +01:00
}
2008-08-12 20:20:18 +02:00
/*
* Send mail
2013-11-05 10:44:58 +01:00
*/
2012-07-29 12:54:19 +02:00
if ( $action == 'send' && ! GETPOST ( 'addfile' ) && ! GETPOST ( 'removedfile' ) && ! GETPOST ( 'cancel' ))
2008-08-12 20:20:18 +02:00
{
$langs -> load ( 'mails' );
2012-07-29 12:54:19 +02:00
if ( $object -> id > 0 )
2008-08-12 20:20:18 +02:00
{
2012-07-29 12:54:19 +02:00
if ( $_POST [ 'sendto' ])
{
// Le destinataire a ete fourni via le champ libre
$sendto = $_POST [ 'sendto' ];
$sendtoid = 0 ;
}
elseif ( $_POST [ 'receiver' ] != '-1' )
{
// Recipient was provided from combo list
if ( $_POST [ 'receiver' ] == 'thirdparty' ) // Id of third party
2008-08-12 20:20:18 +02:00
{
2012-07-29 12:54:19 +02:00
$sendto = $object -> client -> email ;
2008-08-12 20:20:18 +02:00
$sendtoid = 0 ;
}
2012-07-29 12:54:19 +02:00
else // Id du contact
2008-08-12 20:20:18 +02:00
{
2012-07-29 12:54:19 +02:00
$sendto = $object -> client -> contact_get_property ( $_POST [ 'receiver' ], 'email' );
$sendtoid = $_POST [ 'receiver' ];
2008-08-12 20:20:18 +02:00
}
2012-07-29 12:54:19 +02:00
}
2008-08-12 20:20:18 +02:00
2012-07-29 12:54:19 +02:00
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 ( dol_strlen ( $_POST [ 'subject' ])) $subject = $_POST [ 'subject' ];
else $subject = $langs -> transnoentities ( 'Propal' ) . ' ' . $object -> ref ;
$actiontypecode = 'AC_PROP' ;
$actionmsg = $langs -> transnoentities ( 'MailSentBy' ) . ' ' . $from . ' ' . $langs -> transnoentities ( 'To' ) . ' ' . $sendto . " . \n " ;
if ( $message )
2008-08-12 20:20:18 +02:00
{
2012-07-29 12:54:19 +02:00
$actionmsg .= $langs -> transnoentities ( 'MailTopic' ) . " : " . $subject . " \n " ;
$actionmsg .= $langs -> transnoentities ( 'TextUsedInTheMessageBody' ) . " : \n " ;
$actionmsg .= $message ;
}
$actionmsg2 = $langs -> transnoentities ( 'Action' . $actiontypecode );
// Create form object
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formmail.class.php' ;
2012-07-29 12:54:19 +02:00
$formmail = new FormMail ( $db );
2008-08-12 20:20:18 +02:00
2012-07-29 12:54:19 +02:00
$attachedfiles = $formmail -> get_attached_files ();
$filepath = $attachedfiles [ 'paths' ];
$filename = $attachedfiles [ 'names' ];
$mimetype = $attachedfiles [ 'mimes' ];
2008-08-12 20:20:18 +02:00
2012-07-29 12:54:19 +02:00
// Envoi de la propal
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/CMailFile.class.php' ;
2013-03-27 14:39:41 +01:00
$mailfile = new CMailFile ( $subject , $sendto , $from , $message , $filepath , $mimetype , $filename , $sendtocc , '' , $deliveryreceipt , - 1 );
2012-07-29 12:54:19 +02:00
if ( $mailfile -> error )
{
setEventMessage ( $mailfile -> error , 'errors' );
}
else
{
$result = $mailfile -> sendfile ();
if ( $result )
2008-08-12 20:20:18 +02:00
{
2012-07-29 12:54:19 +02:00
// 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-29 12:54:19 +02:00
$interface = new Interfaces ( $db );
$result = $interface -> run_triggers ( 'PROPAL_SENTBYMAIL' , $object , $user , $langs , $conf );
if ( $result < 0 ) {
$error ++ ; $this -> errors = $interface -> errors ;
2008-08-12 20:20:18 +02:00
}
2012-07-29 12:54:19 +02:00
// Fin appel triggers
2008-08-12 20:20:18 +02:00
2012-07-29 12:54:19 +02:00
if ( ! $error )
{
// Redirect here
// This avoid sending mail twice if going out and then back to page
$mesg = $langs -> trans ( 'MailSuccessfulySent' , $mailfile -> getValidAddress ( $from , 2 ), $mailfile -> getValidAddress ( $sendto , 2 ));
setEventMessage ( $mesg );
2012-08-31 05:58:38 +02:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
2012-07-29 12:54:19 +02:00
exit ;
}
else
{
dol_print_error ( $db );
}
2008-08-12 20:20:18 +02:00
}
else
{
2012-07-29 12:54:19 +02:00
$langs -> load ( " other " );
if ( $mailfile -> error )
2008-08-12 20:20:18 +02:00
{
2012-07-29 12:54:19 +02:00
$mesg .= $langs -> trans ( 'ErrorFailedToSendMail' , $from , $sendto );
$mesg .= '<br>' . $mailfile -> error ;
2008-08-12 20:20:18 +02:00
}
else
{
2012-07-29 12:54:19 +02:00
$mesg .= 'No mail sent. Feature is disabled by option MAIN_DISABLE_ALL_MAILS' ;
2008-08-12 20:20:18 +02:00
}
2012-07-29 12:54:19 +02:00
setEventMessage ( $mesg , 'errors' );
2008-08-12 20:20:18 +02:00
}
}
2012-07-29 12:54:19 +02:00
}
2008-08-12 20:20:18 +02:00
else
{
2012-07-29 12:54:19 +02:00
$langs -> load ( " other " );
setEventMessage ( $langs -> trans ( 'ErrorMailRecipientIsEmpty' ) . '!' , 'errors' );
dol_syslog ( $langs -> trans ( 'ErrorMailRecipientIsEmpty' ));
}
2008-08-12 20:20:18 +02:00
}
else
{
$langs -> load ( " other " );
2012-07-29 12:54:19 +02:00
setEventMessage ( $langs -> trans ( 'ErrorFailedToReadEntity' , $langs -> trans ( " Proposal " )), 'errors' );
dol_syslog ( $langs -> trans ( 'ErrorFailedToReadEntity' , $langs -> trans ( " Proposal " )));
2008-08-12 20:20:18 +02:00
}
}
2012-01-11 13:37:50 +01:00
// Go back to draft
2012-08-25 03:28:30 +02:00
if ( $action == 'modif' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2010-09-18 11:40:24 +02:00
$object -> set_draft ( $user );
2008-08-12 20:20:18 +02:00
2012-10-05 15:12:17 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
2008-08-12 20:20:18 +02:00
{
2012-10-05 15:12:17 +02:00
// Define output language
$outputlangs = $langs ;
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ))
{
$outputlangs = new Translate ( " " , $conf );
$newlang = ( GETPOST ( 'lang_id' ) ? GETPOST ( 'lang_id' ) : $object -> client -> default_lang );
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
2013-01-26 10:35:30 +01:00
propale_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2008-08-12 20:20:18 +02:00
}
}
2012-08-25 03:28:30 +02:00
else if ( $action == " setabsolutediscount " && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
if ( $_POST [ " remise_id " ])
{
2012-07-29 12:54:19 +02:00
if ( $object -> id > 0 )
2008-08-12 20:20:18 +02:00
{
2010-09-18 11:40:24 +02:00
$result = $object -> insert_discount ( $_POST [ " remise_id " ]);
2008-08-12 20:20:18 +02:00
if ( $result < 0 )
{
2012-07-29 12:54:19 +02:00
setEventMessage ( $object -> error , 'errors' );
2008-08-12 20:20:18 +02:00
}
}
}
}
2013-11-05 10:44:58 +01:00
// Add line
2013-11-17 23:25:25 +01:00
else if (( $action == 'addline' || $action == 'addline_predef' ) && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2013-11-17 23:25:25 +01:00
// Set if we used free entry or predefined product
2014-03-01 16:58:10 +01:00
if ( GETPOST ( 'addline_libre' )
2014-02-24 17:29:52 +01:00
|| ( GETPOST ( 'dp_desc' ) && ! GETPOST ( 'addline_libre' ) && ! GETPOST ( 'idprod' , 'int' ) > 0 ) // we push enter onto qty field
)
2013-11-17 23:25:25 +01:00
{
$predef = '' ;
$idprod = 0 ;
$product_desc = ( GETPOST ( 'dp_desc' ) ? GETPOST ( 'dp_desc' ) : '' );
$price_ht = GETPOST ( 'price_ht' );
$tva_tx = ( GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : 0 );
}
2014-03-01 16:58:10 +01:00
if ( GETPOST ( 'addline_predefined' )
2014-02-24 17:29:52 +01:00
|| ( ! GETPOST ( 'dp_desc' ) && ! GETPOST ( 'addline_predefined' ) && GETPOST ( 'idprod' , 'int' ) > 0 ) // we push enter onto qty field
)
2013-11-17 23:25:25 +01:00
{
$predef = (( $conf -> global -> MAIN_FEATURES_LEVEL < 2 ) ? '_predef' : '' );
$idprod = GETPOST ( 'idprod' , 'int' );
$product_desc = ( GETPOST ( 'product_desc' ) ? GETPOST ( 'product_desc' ) : ( GETPOST ( 'np_desc' ) ? GETPOST ( 'np_desc' ) : '' ));
$price_ht = '' ;
$tva_tx = '' ;
}
2013-11-19 17:54:36 +01:00
if ( GETPOST ( 'usenewaddlineform' )) {
$idprod = GETPOST ( 'idprod' , 'int' );
$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' );
$tva_tx = ( GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : 0 );
}
2013-11-17 23:25:25 +01:00
$qty = GETPOST ( 'qty' . $predef );
$remise_percent = GETPOST ( 'remise_percent' . $predef );
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 );
2014-02-16 23:51:29 +01:00
$array_option = $extrafieldsline -> getOptionalsFromPost ( $extralabelsline , $predef );
2013-06-10 16:05:41 +02:00
//Unset extrafield
if ( is_array ( $extralabelsline ))
{
// Get extra fields
foreach ( $extralabelsline as $key => $value )
{
unset ( $_POST [ " options_ " . $key ]);
}
}
2012-08-22 17:42:40 +02:00
if ( empty ( $idprod ) && GETPOST ( 'type' ) < 0 )
2009-06-04 02:59:06 +02:00
{
2012-07-29 12:54:19 +02:00
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )), 'errors' );
$error ++ ;
2009-06-04 02:59:06 +02:00
}
2013-06-19 10:22:46 +02:00
if (( empty ( $idprod ) || GETPOST ( 'usenewaddlineform' )) && $price_ht == '' ) // Unit price can be 0 but not ''. Also price can be negative for proposal.
2012-08-27 19:11:44 +02:00
{
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " UnitPriceHT " )), 'errors' );
$error ++ ;
}
if ( empty ( $idprod ) && empty ( $product_desc ))
2012-08-25 15:21:34 +02:00
{
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Description " )), 'errors' );
$error ++ ;
2012-08-22 17:42:40 +02:00
}
2009-06-04 02:59:06 +02:00
2013-11-17 23:25:25 +01:00
if ( ! $error && ( $qty >= 0 ) && ( ! empty ( $product_desc ) || ! empty ( $idprod )))
2008-08-12 20:20:18 +02:00
{
2012-07-29 09:54:58 +02:00
$pu_ht = 0 ;
$pu_ttc = 0 ;
$price_min = 0 ;
2012-08-28 14:42:46 +02:00
$price_base_type = ( GETPOST ( 'price_base_type' , 'alpha' ) ? GETPOST ( 'price_base_type' , 'alpha' ) : 'HT' );
2010-06-08 10:27:57 +02:00
2013-12-10 17:18:28 +01:00
$db -> begin ();
2013-12-14 17:40:23 +01:00
2010-06-08 10:27:57 +02:00
// Ecrase $pu par celui du produit
// Ecrase $desc par celui du produit
// Ecrase $txtva par celui du produit
2012-08-22 17:42:40 +02:00
if ( ! empty ( $idprod ))
2008-08-12 20:20:18 +02:00
{
2011-09-11 20:35:38 +02:00
$prod = new Product ( $db );
2012-08-22 17:42:40 +02:00
$prod -> fetch ( $idprod );
2010-06-08 10:27:57 +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 14:42:46 +02:00
// If prices fields are update
2012-08-31 08:51:08 +02:00
if ( GETPOST ( 'usenewaddlineform' ))
2008-08-12 20:20:18 +02:00
{
2012-08-29 17:40:13 +02:00
$pu_ht = price2num ( $price_ht , 'MU' );
2012-08-28 14:42:46 +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 ;
2010-06-07 11:29:42 +02:00
}
else
{
2012-08-28 14:42:46 +02:00
$tva_tx = get_default_tva ( $mysoc , $object -> client , $prod -> id );
$tva_npr = get_default_npr ( $mysoc , $object -> client , $prod -> id );
2010-06-08 10:27:57 +02:00
2012-08-28 14:42:46 +02:00
// On defini prix unitaire
if ( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES ) && $object -> client -> price_level )
2012-08-18 19:05:59 +02:00
{
2012-08-28 14:42:46 +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-18 19:05:59 +02:00
}
2012-08-28 14:42:46 +02:00
else
2012-08-18 19:05:59 +02:00
{
2012-08-28 14:42:46 +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-18 19:05:59 +02:00
}
2013-08-12 15:34:09 +02:00
// if price ht is forced (ie: calculated by margin rate and cost price)
if ( ! empty ( $price_ht ))
{
$pu_ht = price2num ( $price_ht , 'MU' );
$pu_ttc = price2num ( $pu_ht * ( 1 + ( $tva_tx / 100 )), 'MU' );
}
2012-08-28 14:42:46 +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).
2013-08-12 15:34:09 +02:00
elseif ( $tva_tx != $prod -> tva_tx )
2010-06-08 10:27:57 +02:00
{
2012-08-28 14:42:46 +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' );
}
2010-06-08 10:27:57 +02:00
}
2012-08-22 17:42:40 +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 ;
2012-01-13 17:46:15 +01:00
}
2012-02-06 17:18:19 +01:00
2013-04-16 11:37:51 +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-01-13 17:46:15 +01:00
}
2012-01-13 16:53:28 +01:00
2010-06-08 10:27:57 +02:00
$type = $prod -> type ;
2008-08-12 20:20:18 +02:00
}
2010-06-08 10:27:57 +02:00
else
2008-08-12 20:20:18 +02:00
{
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' );
2010-06-08 10:27:57 +02:00
}
2012-08-23 07:50:20 +02:00
// Margin
2013-11-17 23:25:25 +01:00
$fournprice = ( GETPOST ( 'fournprice' . $predef ) ? GETPOST ( 'fournprice' . $predef ) : '' );
$buyingprice = ( GETPOST ( 'buying_price' . $predef ) ? GETPOST ( 'buying_price' . $predef ) : '' );
2012-08-23 07:50:20 +02:00
2013-04-15 15:31:12 +02:00
$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-23 07:50:20 +02:00
2012-08-25 15:21:34 +02:00
// Local Taxes
$localtax1_tx = get_localtax ( $tva_tx , 1 , $object -> client );
2012-08-23 07:50:20 +02:00
$localtax2_tx = get_localtax ( $tva_tx , 2 , $object -> client );
2010-06-08 10:27:57 +02:00
$info_bits = 0 ;
if ( $tva_npr ) $info_bits |= 0x01 ;
2010-08-28 01:42:10 +02:00
2013-11-17 23:25:25 +01:00
if ( ! empty ( $price_min ) && ( price2num ( $pu_ht ) * ( 1 - price2num ( $remise_percent ) / 100 ) < price2num ( $price_min )))
2010-06-08 10:27:57 +02:00
{
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-07-29 12:54:19 +02:00
setEventMessage ( $mesg , 'errors' );
2010-06-08 10:27:57 +02:00
}
else
{
2008-08-28 01:00:37 +02:00
// Insert line
2010-09-18 11:40:24 +02:00
$result = $object -> addline (
2012-08-26 23:13:18 +02:00
$desc ,
$pu_ht ,
2013-11-17 23:25:25 +01:00
$qty ,
2012-08-26 23:13:18 +02:00
$tva_tx ,
$localtax1_tx ,
$localtax2_tx ,
$idprod ,
2013-11-17 23:25:25 +01:00
$remise_percent ,
2012-08-26 23:13:18 +02:00
$price_base_type ,
$pu_ttc ,
$info_bits ,
$type ,
- 1 ,
0 ,
GETPOST ( 'fk_parent_line' ),
$fournprice ,
$buyingprice ,
2013-04-15 15:31:12 +02:00
$label ,
$date_start ,
2013-06-10 16:05:41 +02:00
$date_end ,
$array_option
2008-08-28 01:00:37 +02:00
);
2010-06-08 10:27:57 +02:00
if ( $result > 0 )
2008-08-28 01:00:37 +02:00
{
2013-12-10 17:18:28 +01:00
$db -> commit ();
2013-12-14 17:40:23 +01:00
2011-12-02 19:57:20 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
2012-10-05 15:12:17 +02:00
// Define output language
$outputlangs = $langs ;
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ))
{
$outputlangs = new Translate ( " " , $conf );
$newlang = ( GETPOST ( 'lang_id' ) ? GETPOST ( 'lang_id' ) : $object -> client -> default_lang );
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
2013-01-26 10:35:30 +01:00
propale_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2011-12-02 19:57:20 +01:00
}
2010-06-08 10:27:57 +02:00
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
2012-08-23 07:50:20 +02:00
unset ( $_POST [ 'remise_percent' ]);
2012-08-22 17:42:40 +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' ]);
unset ( $_POST [ 'buying_price' ]);
2013-08-12 15:34:09 +02:00
unset ( $_POST [ 'np_marginRate' ]);
unset ( $_POST [ 'np_markRate' ]);
2013-11-17 23:25:25 +01:00
unset ( $_POST [ 'dp_desc' ]);
2012-08-27 19:11:44 +02:00
2013-11-17 23:25:25 +01:00
unset ( $_POST [ 'idprod' ]);
unset ( $_POST [ 'qty_predef' ]);
unset ( $_POST [ 'remise_percent_predef' ]);
unset ( $_POST [ 'fournprice_predef' ]);
unset ( $_POST [ 'buying_price_predef' ]);
unset ( $_POST [ 'np_marginRate_predef' ]);
unset ( $_POST [ 'np_markRate_predef' ]);
2012-08-27 19:11:44 +02:00
unset ( $_POST [ 'np_desc' ]);
2010-06-08 10:27:57 +02:00
}
else
{
2013-12-10 17:18:28 +01:00
$db -> rollback ();
2013-12-14 17:40:23 +01:00
2012-07-29 12:54:19 +02:00
setEventMessage ( $object -> error , 'errors' );
2008-08-28 01:00:37 +02:00
}
2008-08-12 20:20:18 +02:00
}
}
}
2012-01-13 17:46:15 +01:00
// Mise a jour d'une ligne dans la propale
2012-08-25 03:28:30 +02:00
else if ( $action == 'updateligne' && $user -> rights -> propal -> creer && GETPOST ( 'save' ) == $langs -> trans ( " Save " ))
2008-08-12 20:20:18 +02:00
{
2010-06-08 10:27:57 +02:00
// Define info_bits
$info_bits = 0 ;
2012-08-25 03:28:30 +02:00
if ( preg_match ( '/\*/' , GETPOST ( 'tva_tx' ))) $info_bits |= 0x01 ;
// Clean parameters
$description = dol_htmlcleanlastbr ( GETPOST ( 'product_desc' ));
2010-06-08 10:27:57 +02:00
// Define vat_rate
2013-01-09 10:40:36 +01:00
$vat_rate = ( GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : 0 );
2010-06-08 10:27:57 +02:00
$vat_rate = str_replace ( '*' , '' , $vat_rate );
2010-09-18 11:40:24 +02:00
$localtax1_rate = get_localtax ( $vat_rate , 1 , $object -> client );
$localtax2_rate = get_localtax ( $vat_rate , 2 , $object -> client );
2012-08-25 03:28:30 +02:00
$pu_ht = GETPOST ( 'price_ht' );
2012-08-25 15:21:34 +02:00
// Add buying price
$fournprice = ( GETPOST ( 'fournprice' ) ? GETPOST ( 'fournprice' ) : '' );
2012-08-25 03:28:30 +02:00
$buyingprice = ( GETPOST ( 'buying_price' ) ? GETPOST ( 'buying_price' ) : '' );
2010-06-08 10:27:57 +02:00
2013-04-15 15:31:12 +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' ));
2013-04-16 11:37:51 +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 ]);
}
}
2013-06-16 21:31:21 +02:00
2012-07-29 12:54:19 +02:00
// Define special_code for special lines
2014-03-01 16:58:10 +01:00
$special_code = GETPOST ( 'special_code' );
2012-08-25 03:28:30 +02:00
if ( ! GETPOST ( 'qty' )) $special_code = 3 ;
2011-08-08 03:53:25 +02:00
2012-08-25 03:28:30 +02:00
// Check minimum price
2012-08-26 23:13:18 +02:00
$productid = GETPOST ( 'productid' , 'int' );
2012-08-25 03:28:30 +02:00
if ( ! empty ( $productid ))
2008-09-08 14:51:29 +02:00
{
2011-09-20 15:32:16 +02:00
$product = new Product ( $db );
$res = $product -> fetch ( $productid );
2012-08-25 03:28:30 +02:00
$type = $product -> type ;
2011-01-29 17:26:56 +01: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 ))
$price_min = $product -> multiprices_min [ $object -> client -> price_level ];
$label = (( GETPOST ( 'update_label' ) && GETPOST ( 'product_label' )) ? GETPOST ( 'product_label' ) : '' );
2012-08-25 15:21:34 +02:00
if ( $price_min && ( price2num ( $pu_ht ) * ( 1 - price2num ( GETPOST ( 'remise_percent' )) / 100 ) < price2num ( $price_min )))
{
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-08-25 15:21:34 +02:00
$error ++ ;
2012-08-25 03:28:30 +02:00
}
2008-09-08 14:51:29 +02:00
}
2012-08-25 15:21:34 +02:00
else
{
$type = GETPOST ( 'type' );
$label = ( GETPOST ( 'product_label' ) ? GETPOST ( 'product_label' ) : '' );
// Check parameters
if ( GETPOST ( 'type' ) < 0 ) {
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )), 'errors' );
$error ++ ;
}
2008-08-28 01:00:37 +02:00
}
2013-12-14 17:40:23 +01:00
2012-08-25 03:28:30 +02:00
if ( ! $error )
2008-08-28 01:00:37 +02:00
{
2013-12-10 17:18:28 +01:00
$db -> begin ();
2013-12-14 17:40:23 +01:00
2011-10-14 16:44:22 +02:00
$result = $object -> updateline (
2012-08-26 23:13:18 +02:00
GETPOST ( 'lineid' ),
$pu_ht ,
GETPOST ( 'qty' ),
GETPOST ( 'remise_percent' ),
$vat_rate ,
$localtax1_rate ,
$localtax2_rate ,
$description ,
'HT' ,
$info_bits ,
$special_code ,
GETPOST ( 'fk_parent_line' ),
0 ,
$fournprice ,
2013-03-11 09:08:57 +01:00
$buyingprice ,
2012-09-18 16:06:45 +02:00
$label ,
2013-04-15 15:31:12 +02:00
$type ,
$date_start ,
2013-06-10 16:05:41 +02:00
$date_end ,
$array_option
2011-04-08 12:10:08 +02:00
);
2010-06-08 10:27:57 +02:00
2012-08-25 15:21:34 +02:00
if ( $result >= 0 )
{
2013-12-10 17:18:28 +01:00
$db -> commit ();
2013-12-14 17:40:23 +01:00
2012-08-25 15:21:34 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
2012-08-25 03:28:30 +02:00
{
2012-08-25 15:21:34 +02:00
// Define output language
$outputlangs = $langs ;
2012-10-05 15:12:17 +02:00
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ))
2012-08-25 15:21:34 +02:00
{
$outputlangs = new Translate ( " " , $conf );
2012-10-05 15:12:17 +02:00
$newlang = ( GETPOST ( 'lang_id' ) ? GETPOST ( 'lang_id' ) : $object -> client -> default_lang );
2012-08-25 15:21:34 +02:00
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
2013-01-26 10:35:30 +01:00
propale_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-08-25 03:28:30 +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-25 03:28:30 +02:00
unset ( $_POST [ 'buying_price' ]);
2008-08-28 01:00:37 +02:00
}
2012-08-25 15:21:34 +02:00
else
{
2013-12-10 17:18:28 +01:00
$db -> rollback ();
2013-12-14 17:40:23 +01:00
2012-08-25 15:21:34 +02:00
setEventMessage ( $object -> error , 'errors' );
2011-12-02 19:57:20 +01:00
}
2008-08-12 20:20:18 +02:00
}
}
2012-08-25 15:21:34 +02:00
else if ( $action == 'updateligne' && $user -> rights -> propal -> creer && GETPOST ( 'cancel' ) == $langs -> trans ( 'Cancel' ))
{
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-08-25 15:21:34 +02:00
exit ;
2012-08-25 03:28:30 +02:00
}
2012-01-13 17:46:15 +01:00
// Generation doc (depuis lien ou depuis cartouche doc)
2012-08-25 03:28:30 +02:00
else if ( $action == 'builddoc' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2012-07-29 12:54:19 +02:00
if ( GETPOST ( 'model' ))
2008-08-12 20:20:18 +02:00
{
2012-07-29 12:54:19 +02:00
$object -> setDocModel ( $user , GETPOST ( 'model' ));
2008-08-12 20:20:18 +02:00
}
2010-02-27 14:37:13 +01:00
// Define output language
2008-10-29 00:36:36 +01:00
$outputlangs = $langs ;
2012-10-05 15:12:17 +02:00
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ))
2008-08-12 20:20:18 +02:00
{
$outputlangs = new Translate ( " " , $conf );
2012-10-05 15:12:17 +02:00
$newlang = ( GETPOST ( 'lang_id' ) ? GETPOST ( 'lang_id' ) : $object -> client -> default_lang );
2010-02-27 14:37:13 +01:00
$outputlangs -> setDefaultLang ( $newlang );
2008-08-12 20:20:18 +02:00
}
2012-10-05 15:12:17 +02:00
$ret = $object -> fetch ( $id ); // Reload to get new records
2013-01-26 10:35:30 +01:00
$result = propale_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-10-05 15:12:17 +02:00
2008-08-12 20:20:18 +02:00
if ( $result <= 0 )
{
2009-02-20 23:53:15 +01:00
dol_print_error ( $db , $result );
2008-08-12 20:20:18 +02:00
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' ));
2008-08-12 20:20:18 +02:00
exit ;
}
}
2012-07-02 19:30:37 +02:00
// Remove file in doc form
2012-08-25 03:28:30 +02:00
else if ( $action == 'remove_file' && $user -> rights -> propal -> creer )
2012-07-02 19:30:37 +02:00
{
2012-07-29 12:54:19 +02:00
if ( $object -> id > 0 )
2012-07-02 19:30:37 +02:00
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2012-07-02 19:30:37 +02:00
$langs -> load ( " other " );
$upload_dir = $conf -> propal -> dir_output ;
$file = $upload_dir . '/' . GETPOST ( 'file' );
2012-07-29 16:11:52 +02:00
$ret = dol_delete_file ( $file , 0 , 0 , 0 , $object );
2012-08-18 19:05:59 +02:00
if ( $ret ) setEventMessage ( $langs -> trans ( " FileWasRemoved " , GETPOST ( 'file' )));
else setEventMessage ( $langs -> trans ( " ErrorFailToDeleteFile " , GETPOST ( 'file' )), 'errors' );
2012-07-02 19:30:37 +02:00
}
2012-06-10 17:09:10 +02:00
}
2009-02-18 16:00:34 +01:00
// Set project
2012-08-25 03:28:30 +02:00
else if ( $action == 'classin' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2010-09-18 11:40:24 +02:00
$object -> setProject ( $_POST [ 'projectid' ]);
2008-08-12 20:20:18 +02:00
}
2011-04-06 17:36:45 +02:00
// Delai de livraison
2012-08-25 03:28:30 +02:00
else if ( $action == 'setavailability' && $user -> rights -> propal -> creer )
2011-04-06 17:36:45 +02:00
{
$result = $object -> availability ( $_POST [ 'availability_id' ]);
}
2011-04-27 10:49:51 +02:00
// Origine de la propale
2012-08-25 03:28:30 +02:00
else if ( $action == 'setdemandreason' && $user -> rights -> propal -> creer )
2011-04-27 10:49:51 +02:00
{
$result = $object -> demand_reason ( $_POST [ 'demand_reason_id' ]);
}
2008-08-12 20:20:18 +02:00
// Conditions de reglement
2012-08-25 03:28:30 +02:00
else if ( $action == 'setconditions' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2012-03-13 19:24:11 +01:00
$result = $object -> setPaymentTerms ( GETPOST ( 'cond_reglement_id' , 'int' ));
2008-08-12 20:20:18 +02:00
}
2012-08-25 03:28:30 +02:00
else if ( $action == 'setremisepercent' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2010-09-18 11:40:24 +02:00
$result = $object -> set_remise_percent ( $user , $_POST [ 'remise_percent' ]);
2008-08-12 20:20:18 +02:00
}
2012-08-25 03:28:30 +02:00
else if ( $action == 'setremiseabsolue' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2010-09-18 11:40:24 +02:00
$result = $object -> set_remise_absolue ( $user , $_POST [ 'remise_absolue' ]);
2008-08-12 20:20:18 +02:00
}
// Mode de reglement
2012-08-25 03:28:30 +02:00
else if ( $action == 'setmode' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2012-03-13 20:01:10 +01:00
$result = $object -> setPaymentMethods ( GETPOST ( 'mode_reglement_id' , 'int' ));
2008-08-12 20:20:18 +02:00
}
/*
* Ordonnancement des lignes
2013-04-16 11:37:51 +02:00
*/
2008-08-12 20:20:18 +02:00
2012-08-25 03:28:30 +02:00
else if ( $action == 'up' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2011-04-28 19:15:03 +02:00
$object -> line_up ( GETPOST ( 'rowid' ));
2008-10-29 00:36:36 +01:00
2012-10-05 15:12:17 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
2008-08-12 20:20:18 +02:00
{
2012-10-05 15:12:17 +02:00
// Define output language
$outputlangs = $langs ;
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ))
{
$outputlangs = new Translate ( " " , $conf );
$newlang = ( GETPOST ( 'lang_id' ) ? GETPOST ( 'lang_id' ) : $object -> client -> default_lang );
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
2013-01-26 10:35:30 +01:00
propale_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2008-08-12 20:20:18 +02:00
}
2010-02-27 14:37:13 +01:00
2012-08-31 05:58:38 +02:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $id . '#' . GETPOST ( 'rowid' ));
2008-10-29 00:36:36 +01:00
exit ;
2008-08-12 20:20:18 +02:00
}
2012-08-25 03:28:30 +02:00
else if ( $action == 'down' && $user -> rights -> propal -> creer )
2008-08-12 20:20:18 +02:00
{
2011-04-28 19:15:03 +02:00
$object -> line_down ( GETPOST ( 'rowid' ));
2008-10-29 00:36:36 +01:00
2012-10-05 15:12:17 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
2008-08-12 20:20:18 +02:00
{
2012-10-05 15:12:17 +02:00
// Define output language
$outputlangs = $langs ;
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ))
{
$outputlangs = new Translate ( " " , $conf );
$newlang = ( GETPOST ( 'lang_id' ) ? GETPOST ( 'lang_id' ) : $object -> client -> default_lang );
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
2013-01-26 10:35:30 +01:00
propale_pdf_create ( $db , $object , $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2008-08-12 20:20:18 +02:00
}
2010-02-27 14:37:13 +01:00
2012-08-31 05:58:38 +02:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $id . '#' . GETPOST ( 'rowid' ));
2008-08-12 20:20:18 +02:00
exit ;
}
2013-03-04 19:17:11 +01:00
else if ( $action == 'update_extras' )
{
2013-03-30 10:46:23 +01:00
// 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-11-05 13:11:36 +01:00
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object , GETPOST ( 'attribute' ));
if ( $ret < 0 ) $error ++ ;
2013-03-30 13:54:46 +01:00
2013-11-17 23:25:25 +01:00
if ( ! $error )
2013-11-05 13:11:36 +01:00
{
2013-07-26 15:42:32 +02:00
// Actions on extra fields (by external module or standard code)
// FIXME le hook fait double emploi avec le trigger !!
$hookmanager -> initHooks ( array ( 'propaldao' ));
$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 ))
2013-03-04 19:17:11 +01:00
{
2013-11-05 13:11:36 +01:00
$result = $object -> insertExtraFields ();
if ( $result < 0 )
2013-03-04 19:17:11 +01:00
{
2013-11-05 13:11:36 +01:00
$error ++ ;
2013-03-04 19:17:11 +01:00
}
}
2013-07-26 15:42:32 +02:00
else if ( $reshook < 0 ) $error ++ ;
2013-03-04 19:17:11 +01:00
}
2013-11-17 23:25:25 +01:00
2013-11-05 13:11:36 +01:00
if ( $error ) $action = 'edit_extras' ;
2013-03-04 19:17:11 +01:00
}
2008-08-12 20:20:18 +02:00
2012-08-25 03:28:30 +02:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_CONTACTS_TAB ) && $user -> rights -> propal -> creer )
2012-03-16 22:02:14 +01:00
{
2012-07-29 12:54:19 +02:00
if ( $action == 'addcontact' )
2012-07-02 19:30:37 +02:00
{
2012-07-29 12:54:19 +02:00
if ( $object -> id > 0 )
2012-07-02 19:30:37 +02:00
{
$contactid = ( GETPOST ( 'userid' ) ? GETPOST ( 'userid' ) : GETPOST ( 'contactid' ));
2012-07-29 12:54:19 +02:00
$result = $object -> add_contact ( $contactid , $_POST [ " type " ], $_POST [ " source " ]);
2012-07-02 19:30:37 +02:00
}
if ( $result >= 0 )
{
2012-08-31 05:58:38 +02:00
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
2012-07-02 19:30:37 +02:00
exit ;
}
else
2012-03-18 14:06:55 +01:00
{
2012-07-02 19:30:37 +02:00
if ( $object -> error == 'DB_ERROR_RECORD_ALREADY_EXISTS' )
{
$langs -> load ( " errors " );
2012-07-29 12:54:19 +02:00
setEventMessage ( $langs -> trans ( " ErrorThisContactIsAlreadyDefinedAsThisType " ), 'errors' );
2012-07-02 19:30:37 +02:00
}
else
{
2012-07-29 12:54:19 +02:00
setEventMessage ( $object -> error , 'errors' );
2012-07-02 19:30:37 +02:00
}
}
}
// Bascule du statut d'un contact
2012-07-29 12:54:19 +02:00
else if ( $action == 'swapstatut' )
2012-07-02 19:30:37 +02:00
{
if ( $object -> fetch ( $id ) > 0 )
{
$result = $object -> swapContactStatus ( GETPOST ( 'ligne' ));
}
else
{
dol_print_error ( $db );
}
}
// Efface un contact
2012-07-29 12:54:19 +02:00
else if ( $action == 'deletecontact' )
2012-07-02 19:30:37 +02:00
{
$object -> fetch ( $id );
$result = $object -> delete_contact ( $lineid );
if ( $result >= 0 )
{
2012-08-31 05:58:38 +02:00
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
2012-07-02 19:30:37 +02:00
exit ;
}
else
{
dol_print_error ( $db );
}
2012-03-16 22:02:14 +01:00
}
}
2008-08-12 20:20:18 +02:00
/*
2009-03-10 01:54:53 +01:00
* View
2013-11-05 10:44:58 +01:00
*/
2008-08-12 20:20:18 +02:00
2009-08-05 19:49:12 +02:00
llxHeader ( '' , $langs -> trans ( 'Proposal' ), 'EN:Commercial_Proposals|FR:Proposition_commerciale|ES:Presupuestos' );
2008-08-12 20:20:18 +02:00
2011-11-08 10:18:45 +01:00
$form = new Form ( $db );
2012-02-20 10:24:08 +01:00
$formother = new FormOther ( $db );
2008-08-12 20:20:18 +02:00
$formfile = new FormFile ( $db );
2012-02-20 10:24:08 +01:00
$formpropal = new FormPropal ( $db );
2009-08-05 20:11:27 +02:00
$companystatic = new Societe ( $db );
2008-08-12 20:20:18 +02:00
2010-05-12 13:29:21 +02:00
$now = dol_now ();
2013-02-02 18:31:45 +01:00
// Add new proposal
if ( $action == 'create' )
2012-05-05 17:28:52 +02:00
{
2013-02-02 18:31:45 +01:00
print_fiche_titre ( $langs -> trans ( " NewProp " ));
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
$soc = new Societe ( $db );
if ( $socid > 0 ) $res = $soc -> fetch ( $socid );
2011-11-03 01:59:13 +01:00
2013-02-02 18:31:45 +01:00
$object = new Propal ( $db );
2010-01-09 15:48:27 +01:00
2013-02-02 18:31:45 +01:00
print '<form name="addprop" action="' . $_SERVER [ " PHP_SELF " ] . '" method="POST">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="add">' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
if ( $origin != 'project' && $originid )
2012-05-05 17:28:52 +02:00
{
2013-02-02 18:31:45 +01:00
print '<input type="hidden" name="origin" value="' . $origin . '">' ;
print '<input type="hidden" name="originid" value="' . $originid . '">' ;
2012-05-05 17:28:52 +02:00
}
2008-08-12 20:20:18 +02:00
2013-02-02 18:31:45 +01:00
print '<table class="border" width="100%">' ;
2013-03-08 10:06:23 +01:00
2013-03-02 15:57:26 +01:00
// Reference
print '<tr><td class="fieldrequired">' . $langs -> trans ( 'Ref' ) . '</td><td colspan="2">' . $langs -> trans ( " Draft " ) . '</td></tr>' ;
2008-08-12 20:20:18 +02:00
2013-02-02 18:31:45 +01:00
// Ref customer
print '<tr><td>' . $langs -> trans ( 'RefCustomer' ) . '</td><td colspan="2">' ;
print '<input type="text" name="ref_client" value=""></td>' ;
print '</tr>' ;
2008-08-12 20:20:18 +02:00
2013-02-02 18:31:45 +01:00
// Third party
print '<tr>' ;
print '<td class="fieldrequired">' . $langs -> trans ( 'Customer' ) . '</td>' ;
if ( $socid > 0 )
2009-03-04 01:14:51 +01:00
{
2013-02-02 18:31:45 +01:00
print '<td colspan="2">' ;
print $soc -> getNomUrl ( 1 );
print '<input type="hidden" name="socid" value="' . $soc -> id . '">' ;
print '</td>' ;
2009-03-04 01:14:51 +01:00
}
else
{
2013-02-02 18:31:45 +01:00
print '<td colspan="2">' ;
2013-02-21 21:11:21 +01:00
print $form -> select_company ( '' , 'socid' , 's.client = 1 OR s.client = 2 OR s.client = 3' , 1 );
2013-02-02 18:31:45 +01:00
print '</td>' ;
2008-08-12 20:20:18 +02:00
}
2013-02-02 18:31:45 +01:00
print '</tr>' . " \n " ;
// Contacts
if ( $socid > 0 )
2008-08-12 20:20:18 +02:00
{
2013-02-02 18:31:45 +01:00
print " <tr><td> " . $langs -> trans ( " DefaultContact " ) . '</td><td colspan="2">' ;
$form -> select_contacts ( $soc -> id , $setcontact , 'contactidp' , 1 , $srccontactslist );
print '</td></tr>' ;
// 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-02-02 18:31:45 +01:00
else print $langs -> trans ( " CompanyHasNoRelativeDiscount " );
$absolute_discount = $soc -> getAvailableDiscounts ();
print '. ' ;
if ( $absolute_discount ) print $langs -> trans ( " CompanyHasAbsoluteDiscount " , price ( $absolute_discount ), $langs -> trans ( " Currency " . $conf -> currency ));
else print $langs -> trans ( " CompanyHasNoAbsoluteDiscount " );
print '.' ;
print '</td></tr>' ;
2008-08-12 20:20:18 +02:00
}
2013-02-02 18:31:45 +01:00
// Date
print '<tr><td class="fieldrequired">' . $langs -> trans ( 'Date' ) . '</td><td colspan="2">' ;
2014-05-23 21:06:53 +02:00
$form -> select_date ( '' , '' , '' , '' , '' , " addprop " , 1 , 1 );
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
// Validaty duration
print '<tr><td class="fieldrequired">' . $langs -> trans ( " ValidityDuration " ) . '</td><td colspan="2"><input name="duree_validite" size="5" value="' . $conf -> global -> PROPALE_VALIDITY_DURATION . '"> ' . $langs -> trans ( " days " ) . '</td></tr>' ;
// Terms of payment
2013-04-25 01:13:13 +02:00
print '<tr><td class="nowrap fieldrequired">' . $langs -> trans ( 'PaymentConditionsShort' ) . '</td><td colspan="2">' ;
2013-06-16 21:31:21 +02:00
$form -> select_conditions_paiements ( $soc -> cond_reglement_id , 'cond_reglement_id' );
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
// Mode of payment
print '<tr><td>' . $langs -> trans ( 'PaymentMode' ) . '</td><td colspan="2">' ;
2013-06-16 21:31:21 +02:00
$form -> select_types_paiements ( $soc -> mode_reglement_id , 'mode_reglement_id' );
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
// What trigger creation
print '<tr><td>' . $langs -> trans ( 'Source' ) . '</td><td>' ;
$form -> select_demand_reason ( '' , 'demand_reason_id' , " SRC_PROP " , 1 );
print '</td></tr>' ;
// Delivery delay
print '<tr><td>' . $langs -> trans ( 'AvailabilityPeriod' ) . '</td><td colspan="2">' ;
$form -> select_availability ( '' , 'availability_id' , '' , 1 );
print '</td></tr>' ;
// Delivery date (or manufacturing)
print '<tr><td>' . $langs -> trans ( " DeliveryDate " ) . '</td>' ;
print '<td colspan="2">' ;
if ( $conf -> global -> DATE_LIVRAISON_WEEK_DELAY != " " )
2008-08-12 20:20:18 +02:00
{
2013-02-02 18:31:45 +01:00
$tmpdte = time () + (( 7 * $conf -> global -> DATE_LIVRAISON_WEEK_DELAY ) * 24 * 60 * 60 );
$syear = date ( " Y " , $tmpdte );
$smonth = date ( " m " , $tmpdte );
$sday = date ( " d " , $tmpdte );
$form -> select_date ( $syear . " - " . $smonth . " - " . $sday , 'liv_' , '' , '' , '' , " addprop " );
2009-02-18 15:29:56 +01:00
}
else
{
2014-05-23 20:54:23 +02:00
$datepropal = empty ( $conf -> global -> MAIN_AUTOFILL_DATE ) ? - 1 : '' ;
2013-02-02 18:31:45 +01:00
$form -> select_date ( $datepropal , 'liv_' , '' , '' , '' , " addprop " );
2009-02-18 15:29:56 +01:00
}
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
// Model
print '<tr>' ;
print '<td>' . $langs -> trans ( " DefaultModel " ) . '</td>' ;
print '<td colspan="2">' ;
$liste = ModelePDFPropales :: liste_modeles ( $db );
2013-03-16 01:13:44 +01:00
print $form -> selectarray ( 'model' , $liste ,( $conf -> global -> PROPALE_ADDON_PDF_ODT_DEFAULT ? $conf -> global -> PROPALE_ADDON_PDF_ODT_DEFAULT : $conf -> global -> PROPALE_ADDON_PDF ));
2013-02-02 18:31:45 +01:00
print " </td></tr> " ;
// Project
if ( ! empty ( $conf -> projet -> enabled ) && $socid > 0 )
{
2013-06-16 21:31:21 +02:00
2013-06-14 22:33:01 +02:00
$formproject = new FormProjets ( $db );
2013-06-16 21:31:21 +02:00
2013-02-02 18:31:45 +01:00
$projectid = 0 ;
if ( $origin == 'project' ) $projectid = ( $originid ? $originid : 0 );
2011-04-07 09:39:21 +02:00
2013-02-02 18:31:45 +01:00
print '<tr>' ;
print '<td valign="top">' . $langs -> trans ( " Project " ) . '</td><td colspan="2">' ;
2011-05-03 13:29:09 +02:00
2013-06-14 22:33:01 +02:00
$numprojet = $formproject -> select_projects ( $soc -> id , $projectid );
2013-02-02 18:31:45 +01:00
if ( $numprojet == 0 )
2008-08-12 20:20:18 +02:00
{
2013-05-11 02:12:34 +02:00
$langs -> load ( " projects " );
2013-02-02 18:31:45 +01:00
print ' <a href="../projet/fiche.php?socid=' . $soc -> id . '&action=create">' . $langs -> trans ( " AddProject " ) . '</a>' ;
2008-08-12 20:20:18 +02:00
}
2013-02-02 18:31:45 +01:00
print '</td>' ;
print '</tr>' ;
2008-08-12 20:20:18 +02:00
}
2013-02-02 18:31:45 +01:00
// Other attributes
$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 ))
2010-04-24 18:00:48 +02:00
{
2013-04-01 19:43:26 +02:00
print $object -> showOptionals ( $extrafields , 'edit' );
2010-04-24 18:00:48 +02:00
}
2012-03-16 00:34:41 +01:00
2013-02-02 18:31:45 +01:00
print " </table> " ;
print '<br>' ;
2011-04-13 15:44:58 +02:00
2013-02-02 18:31:45 +01:00
/*
* Combobox pour la fonction de copie
2013-11-05 10:44:58 +01:00
*/
2011-05-03 13:29:09 +02:00
2013-02-02 18:31:45 +01:00
if ( empty ( $conf -> global -> PROPAL_CLONE_ON_CREATE_PAGE ))
{
print '<input type="hidden" name="createmode" value="empty">' ;
}
2008-08-12 20:20:18 +02:00
2013-02-02 18:31:45 +01:00
print '<table>' ;
if ( ! empty ( $conf -> global -> PROPAL_CLONE_ON_CREATE_PAGE ))
{
// For backward compatibility
print '<tr>' ;
print '<td><input type="radio" name="createmode" value="copy"></td>' ;
print '<td>' . $langs -> trans ( " CopyPropalFrom " ) . ' </td>' ;
print '<td>' ;
$liste_propal = array ();
$liste_propal [ 0 ] = '' ;
$sql = " SELECT p.rowid as id, p.ref, s.nom " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " propal p " ;
$sql .= " , " . MAIN_DB_PREFIX . " societe s " ;
$sql .= " WHERE s.rowid = p.fk_soc " ;
$sql .= " AND p.entity = " . $conf -> entity ;
$sql .= " AND p.fk_statut <> 0 " ;
$sql .= " ORDER BY Id " ;
$resql = $db -> query ( $sql );
if ( $resql )
{
$num = $db -> num_rows ( $resql );
$i = 0 ;
while ( $i < $num )
{
$row = $db -> fetch_row ( $resql );
$propalRefAndSocName = $row [ 1 ] . " - " . $row [ 2 ];
$liste_propal [ $row [ 0 ]] = $propalRefAndSocName ;
$i ++ ;
}
print $form -> selectarray ( " copie_propal " , $liste_propal , 0 );
}
else
{
dol_print_error ( $db );
}
print '</td></tr>' ;
2012-11-28 10:32:24 +01:00
2013-02-02 18:31:45 +01:00
if ( ! empty ( $conf -> global -> PRODUCT_SHOW_WHEN_CREATE )) print '<tr><td colspan="3"> </td></tr>' ;
2008-08-12 20:20:18 +02:00
2013-02-02 18:31:45 +01:00
print '<tr><td valign="top"><input type="radio" name="createmode" value="empty" checked="checked"></td>' ;
print '<td valign="top" colspan="2">' . $langs -> trans ( " CreateEmptyPropal " ) . '</td></tr>' ;
}
2008-08-12 20:20:18 +02:00
2013-02-02 18:31:45 +01:00
if ( ! empty ( $conf -> global -> PRODUCT_SHOW_WHEN_CREATE ))
{
print '<tr><td colspan="3">' ;
if ( ! empty ( $conf -> product -> enabled ) || ! empty ( $conf -> service -> enabled ))
{
$lib = $langs -> trans ( " ProductsAndServices " );
print '<table class="border" width="100%">' ;
print '<tr>' ;
print '<td>' . $lib . '</td>' ;
print '<td>' . $langs -> trans ( " Qty " ) . '</td>' ;
print '<td>' . $langs -> trans ( " ReductionShort " ) . '</td>' ;
print '</tr>' ;
for ( $i = 1 ; $i <= $conf -> global -> PRODUCT_SHOW_WHEN_CREATE ; $i ++ )
{
print '<tr><td>' ;
// multiprix
if ( $conf -> global -> PRODUIT_MULTIPRICES && $soc -> price_level )
$form -> select_produits ( '' , " idprod " . $i , '' , $conf -> product -> limit_size , $soc -> price_level );
else
$form -> select_produits ( '' , " idprod " . $i , '' , $conf -> product -> limit_size );
print '</td>' ;
print '<td><input type="text" size="2" name="qty' . $i . '" value="1"></td>' ;
2013-06-16 21:31:21 +02:00
print '<td><input type="text" size="2" name="remise' . $i . '" value="' . $soc -> remise_percent . '">%</td>' ;
2013-02-02 18:31:45 +01:00
print '</tr>' ;
}
2008-08-12 20:20:18 +02:00
2013-02-02 18:31:45 +01:00
print " </table> " ;
2011-12-16 14:59:09 +01:00
2013-02-02 18:31:45 +01:00
}
print '</td></tr>' ;
}
print '</table>' ;
print '<br>' ;
2010-09-14 22:27:47 +02:00
2013-02-02 18:31:45 +01:00
$langs -> load ( " bills " );
print '<center>' ;
print '<input type="submit" class="button" value="' . $langs -> trans ( " CreateDraft " ) . '">' ;
print ' <input type="button" class="button" value="' . $langs -> trans ( " Cancel " ) . '" onClick="javascript:history.go(-1)">' ;
print '</center>' ;
2011-03-02 11:33:24 +01:00
2013-02-02 18:31:45 +01:00
print " </form> " ;
2012-05-05 17:28:52 +02:00
}
2013-02-12 17:08:21 +01:00
else
2012-05-05 17:28:52 +02:00
{
2013-02-02 18:31:45 +01:00
/*
* Show object in view mode
2013-11-05 10:44:58 +01:00
*/
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
$soc = new Societe ( $db );
$soc -> fetch ( $object -> socid );
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
$head = propal_prepare_head ( $object );
dol_fiche_head ( $head , 'comm' , $langs -> trans ( 'Proposal' ), 0 , 'propal' );
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
$formconfirm = '' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Clone confirmation
if ( $action == 'clone' )
2012-05-05 17:28:52 +02:00
{
2013-02-02 18:31:45 +01:00
// 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=2 OR s.client=3)' ))
);
// Paiement incomplet. On demande si motif = escompte ou autre
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ClonePropal' ), $langs -> trans ( 'ConfirmClonePropal' , $object -> ref ), 'confirm_clone' , $formquestion , 'yes' , 1 );
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Confirm delete
else if ( $action == 'delete' )
{
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'DeleteProp' ), $langs -> trans ( 'ConfirmDeleteProp' , $object -> ref ), 'confirm_delete' , '' , 0 , 1 );
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Confirm reopen
else if ( $action == 'reopen' )
{
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ReOpen' ), $langs -> trans ( 'ConfirmReOpenProp' , $object -> ref ), 'confirm_reopen' , '' , 0 , 1 );
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Confirmation delete product/service line
else 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 );
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Confirm validate proposal
else if ( $action == 'validate' )
{
2013-04-16 11:37:51 +02:00
$error = 0 ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// on verifie si l'objet est en numerotation provisoire
$ref = substr ( $object -> ref , 1 , 4 );
if ( $ref == 'PROV' )
2012-08-27 19:11:44 +02:00
{
2013-02-02 18:31:45 +01:00
$numref = $object -> getNextNumRef ( $soc );
if ( empty ( $numref ))
{
2013-04-16 11:37:51 +02:00
$error ++ ;
dol_htmloutput_errors ( $object -> error );
2013-02-02 18:31:45 +01:00
}
2012-08-27 19:11:44 +02:00
}
else
{
2013-02-02 18:31:45 +01:00
$numref = $object -> ref ;
2012-08-27 19:11:44 +02:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
$text = $langs -> trans ( 'ConfirmValidateProp' , $numref );
if ( ! empty ( $conf -> notification -> enabled ))
{
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 ( 'PROPAL_VALIDATE' , $object -> socid );
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
if ( ! $error ) $formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ValidateProp' ), $text , 'confirm_validate' , '' , 0 , 1 );
2008-08-12 20:20:18 +02:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
if ( ! $formconfirm )
{
2013-04-16 11:37:51 +02:00
$parameters = array ( 'lineid' => $lineid );
$formconfirm = $hookmanager -> executeHooks ( 'formConfirm' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Print form confirm
print $formconfirm ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
print '<table class="border" width="100%">' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
$linkback = '<a href="' . DOL_URL_ROOT . '/comm/propal/list.php' . ( ! empty ( $socid ) ? '?socid=' . $socid : '' ) . '">' . $langs -> trans ( " BackToList " ) . '</a>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Ref
print '<tr><td>' . $langs -> trans ( 'Ref' ) . '</td><td colspan="5">' ;
print $form -> showrefnav ( $object , 'ref' , $linkback , 1 , 'ref' , 'ref' , '' );
print '</td></tr>' ;
2013-02-12 17:08:21 +01:00
2013-11-05 10:44:58 +01:00
// Ref customer
2013-02-02 18:31:45 +01:00
print '<tr><td>' ;
2013-07-19 15:58:07 +02:00
print '<table class="nobordernopadding" width="100%"><tr><td class="nowrap">' ;
2013-07-09 10:55:58 +02:00
print $langs -> trans ( 'RefCustomer' ) . '</td>' ;
2013-02-02 18:31:45 +01:00
if ( $action != 'refclient' && ! empty ( $object -> brouillon )) print '<td align="right"><a href="' . $_SERVER [ 'PHP_SELF' ] . '?action=refclient&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'Modify' )) . '</a></td>' ;
2013-11-05 10:44:58 +01:00
print '</td>' ;
2013-02-02 18:31:45 +01:00
print '</tr></table>' ;
print '</td><td colspan="5">' ;
if ( $user -> rights -> propal -> creer && $action == 'refclient' )
2012-05-05 17:28:52 +02:00
{
2013-02-02 18:31:45 +01:00
print '<form action="propal.php?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-11-05 10:44:58 +01:00
2013-02-02 18:31:45 +01:00
// Company
print '<tr><td>' . $langs -> trans ( 'Company' ) . '</td><td colspan="5">' . $soc -> getNomUrl ( 1 ) . '</td>' ;
print '</tr>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Ligne info remises tiers
print '<tr><td>' . $langs -> trans ( 'Discounts' ) . '</td><td colspan="5">' ;
2013-06-16 21:31:21 +02:00
if ( $soc -> remise_percent ) print $langs -> trans ( " CompanyHasRelativeDiscount " , $soc -> remise_percent );
2013-02-02 18:31:45 +01:00
else print $langs -> trans ( " CompanyHasNoRelativeDiscount " );
print '. ' ;
2014-04-06 21:21:08 +02:00
$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 , 0 , $langs , 0 , 0 , - 1 , $conf -> currency ));
} else {
2013-02-02 18:31:45 +01:00
// Remise dispo de type non avoir
$filter = 'fk_facture_source IS NULL' ;
print '<br>' ;
$form -> form_remise_dispo ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , 0 , 'remise_id' , $soc -> id , $absolute_discount , $filter );
2012-05-05 17:28:52 +02:00
}
2013-02-02 18:31:45 +01:00
}
2014-04-06 21:21:08 +02:00
if ( $absolute_creditnote ) {
print $langs -> trans ( " CompanyHasCreditNote " , price ( $absolute_creditnote , 0 , $langs , 0 , 0 , - 1 , $conf -> currency )) . '. ' ;
2013-02-02 18:31:45 +01:00
}
if ( ! $absolute_discount && ! $absolute_creditnote ) print $langs -> trans ( " CompanyHasNoAbsoluteDiscount " ) . '.' ;
print '</td></tr>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Date of proposal
print '<tr>' ;
print '<td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'Date' );
print '</td>' ;
if ( $action != 'editdate' && ! empty ( $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 ( ! empty ( $object -> brouillon ) && $action == 'editdate' )
{
print '<form name="editdate" 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 , 're' , '' , '' , 0 , " editdate " );
print '<input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
print '</form>' ;
}
else
{
if ( $object -> date )
2012-05-05 17:28:52 +02:00
{
2013-02-02 18:31:45 +01:00
print dol_print_date ( $object -> date , 'daytext' );
2012-05-05 17:28:52 +02:00
}
2013-02-02 18:31:45 +01:00
else
2012-05-05 17:28:52 +02:00
{
2013-02-02 18:31:45 +01:00
print ' ' ;
2012-05-05 17:28:52 +02:00
}
2013-02-02 18:31:45 +01:00
}
print '</td>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Date end proposal
print '<tr>' ;
print '<td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'DateEndPropal' );
print '</td>' ;
if ( $action != 'editecheance' && ! empty ( $object -> brouillon )) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editecheance&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetConditions' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( ! empty ( $object -> brouillon ) && $action == 'editecheance' )
{
print '<form name="editecheance" 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="setecheance">' ;
$form -> select_date ( $object -> fin_validite , 'ech' , '' , '' , '' , " editecheance " );
print '<input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
print '</form>' ;
}
else
{
if ( ! empty ( $object -> fin_validite ))
{
print dol_print_date ( $object -> fin_validite , 'daytext' );
if ( $object -> statut == 1 && $object -> fin_validite < ( $now - $conf -> propal -> cloture -> warning_delay )) print img_warning ( $langs -> trans ( " Late " ));
}
else
2008-08-12 20:20:18 +02:00
{
2013-02-02 18:31:45 +01:00
print ' ' ;
}
}
print '</td>' ;
print '</tr>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Payment term
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'PaymentConditionsShort' );
print '</td>' ;
if ( $action != 'editconditions' && ! empty ( $object -> brouillon )) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editconditions&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetConditions' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'editconditions' )
{
2013-04-16 11:37:51 +02:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'cond_reglement_id' );
2013-02-02 18:31:45 +01:00
}
else
{
2013-04-16 11:37:51 +02:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'none' );
2013-02-02 18:31:45 +01:00
}
print '</td>' ;
print '</tr>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Delivery date
$langs -> load ( 'deliveries' );
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'DeliveryDate' );
print '</td>' ;
if ( $action != 'editdate_livraison' && ! empty ( $object -> brouillon )) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editdate_livraison&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetDeliveryDate' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'editdate_livraison' )
{
print '<form name="editdate_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 , 'liv_' , '' , '' , '' , " editdate_livraison " );
print '<input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
print '</form>' ;
}
else
{
print dol_print_date ( $object -> date_livraison , 'daytext' );
}
print '</td>' ;
print '</tr>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Delivery delay
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'AvailabilityPeriod' );
if ( ! empty ( $conf -> commande -> enabled )) print ' (' . $langs -> trans ( 'AfterOrder' ) . ')' ;
print '</td>' ;
if ( $action != 'editavailability' && ! empty ( $object -> brouillon )) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editavailability&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( '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 );
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
print '</td>' ;
print '</tr>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Origin of demand
print '<tr><td>' ;
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 -> transnoentitiesnoconv ( 'SetDemandReason' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
//print $object->demand_reason_id;
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' );
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
print '</td>' ;
print '</tr>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Payment mode
print '<tr>' ;
print '<td width="25%">' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'PaymentMode' );
print '</td>' ;
if ( $action != 'editmode' && ! empty ( $object -> brouillon )) print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editmode&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( '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>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Project
if ( ! empty ( $conf -> projet -> enabled ))
{
$langs -> load ( " projects " );
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'Project' ) . '</td>' ;
if ( $user -> rights -> propal -> creer )
{
if ( $action != 'classify' ) print '<td align="right"><a href="' . $_SERVER [ 'PHP_SELF' ] . '?action=classify&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetProject' )) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'classify' )
2012-05-05 17:28:52 +02:00
{
2013-02-02 18:31:45 +01:00
$form -> form_project ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> socid , $object -> fk_project , 'projectid' );
2012-05-05 17:28:52 +02:00
}
2013-02-02 18:31:45 +01:00
else
2012-05-05 17:28:52 +02:00
{
2013-02-02 18:31:45 +01:00
$form -> form_project ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> socid , $object -> fk_project , 'none' );
2012-05-05 17:28:52 +02:00
}
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
2012-05-05 17:28:52 +02:00
}
2013-02-02 18:31:45 +01:00
else
2011-07-20 17:33:00 +02:00
{
2013-02-02 18:31:45 +01:00
print '</td></tr></table>' ;
if ( ! empty ( $object -> fk_project ))
{
print '<td colspan="3">' ;
$proj = new Project ( $db );
$proj -> fetch ( $object -> fk_project );
print '<a href="../projet/fiche.php?id=' . $object -> fk_project . '" title="' . $langs -> trans ( 'ShowProject' ) . '">' ;
print $proj -> ref ;
print '</a>' ;
print '</td>' ;
}
else {
print '<td colspan="3"> </td>' ;
}
2011-07-20 17:33:00 +02:00
}
2013-02-02 18:31:45 +01:00
print '</tr>' ;
}
2013-02-12 17:08:21 +01:00
2013-10-06 17:27:53 +02:00
if ( $soc -> outstanding_limit )
2013-09-27 22:00:11 +02:00
{
// Outstanding Bill
print '<tr><td>' ;
print $langs -> trans ( 'OutstandingBill' );
2013-10-06 17:27:53 +02:00
print '</td><td align=right colspan=3>' ;
2013-09-27 22:00:11 +02:00
print price ( $soc -> get_OutstandingBill ()) . ' / ' ;
2013-10-06 17:27:53 +02:00
print price ( $soc -> outstanding_limit , 0 , '' , 1 , - 1 , - 1 , $conf -> currency );
2013-09-27 22:00:11 +02:00
print '</td>' ;
print '</tr>' ;
}
2013-11-05 13:11:36 +01:00
// Other attributes (TODO Move this into an include)
2013-03-04 19:17:11 +01:00
$res = $object -> fetch_optionals ( $object -> id , $extralabels );
2013-02-02 18:31:45 +01:00
$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:33:28 +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:33:28 +02:00
if ( $extrafields -> attribute_type [ $key ] == 'separate' )
{
print $extrafields -> showSeparator ( $key );
}
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:33:28 +02:00
}
2013-11-05 13:11:36 +01:00
if ( $action == 'edit_extras' && $user -> rights -> propal -> creer && GETPOST ( 'attribute' ) == $key )
2013-05-10 15:33:28 +02:00
{
2013-11-05 13:11:36 +01:00
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="attribute" value="' . $key . '">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="id" value="' . $object -> id . '">' ;
2013-11-17 23:25:25 +01:00
2013-05-10 15:33:28 +02:00
print $extrafields -> showInputField ( $key , $value );
2013-11-17 23:25:25 +01:00
2013-11-05 13:11:36 +01:00
print '<input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
2013-11-17 23:25:25 +01:00
2013-11-05 13:11:36 +01:00
print '</form>' ;
2013-05-10 15:33:28 +02:00
}
else
{
print $extrafields -> showOutputField ( $key , $value );
2013-11-05 13:11:36 +01:00
if ( $object -> statut == 0 && $user -> rights -> propal -> creer ) print '<a href="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '&action=edit_extras&attribute=' . $key . '">' . img_picto ( '' , 'edit' ) . ' ' . $langs -> trans ( 'Modify' ) . '</a>' ;
2013-05-10 15:33:28 +02:00
}
print '</td></tr>' . " \n " ;
}
}
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Amount HT
2013-04-27 22:55:57 +02:00
print '<tr><td height="10" width="25%">' . $langs -> trans ( 'AmountHT' ) . '</td>' ;
2013-12-14 17:40:23 +01:00
print '<td align="right" class="nowrap"><b>' . price ( $object -> total_ht , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</b></td>' ;
print '<td></td>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Margin Infos
if ( ! empty ( $conf -> margin -> enabled )) {
2013-04-16 11:37:51 +02:00
print '<td valign="top" width="50%" rowspan="4">' ;
$object -> displayMarginInfos ();
print '</td>' ;
2013-02-02 18:31:45 +01:00
}
print '</tr>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Amount VAT
print '<tr><td height="10">' . $langs -> trans ( 'AmountVAT' ) . '</td>' ;
2013-12-14 17:40:23 +01:00
print '<td align="right" class="nowrap">' . price ( $object -> total_tva , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
print '<td></td></tr>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Amount Local Taxes
if ( $mysoc -> localtax1_assuj == " 1 " ) //Localtax1
{
print '<tr><td height="10">' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ) . '</td>' ;
2013-12-14 17:40:23 +01:00
print '<td align="right" class="nowrap">' . price ( $object -> total_localtax1 , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
print '<td></td></tr>' ;
2013-02-02 18:31:45 +01:00
}
if ( $mysoc -> localtax2_assuj == " 1 " ) //Localtax2
{
print '<tr><td height="10">' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ) . '</td>' ;
2013-12-14 17:40:23 +01:00
print '<td align="right" class="nowrap">' . price ( $object -> total_localtax2 , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
print '<td></td></tr>' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Amount TTC
print '<tr><td height="10">' . $langs -> trans ( 'AmountTTC' ) . '</td>' ;
2013-12-14 17:40:23 +01:00
print '<td align="right" class="nowrap">' . price ( $object -> total_ttc , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
print '<td></td></tr>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Statut
print '<tr><td height="10">' . $langs -> trans ( 'Status' ) . '</td><td align="left" colspan="2">' . $object -> getLibStatut ( 4 ) . '</td></tr>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
print '</table><br>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01: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' ;
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01: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' ;
}
2013-02-12 17:08:21 +01:00
2013-05-10 15:33:28 +02:00
2013-02-02 18:31:45 +01:00
/*
* Lines
2013-11-05 10:44:58 +01:00
*/
2013-02-12 17:08:21 +01:00
2013-11-17 23:25:25 +01:00
// Show object lines
$result = $object -> getLinesArray ();
print ' <form name="addproduct" id="addproduct" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . (( $action != 'editline' ) ? '#add' : '#line_' . GETPOST ( 'lineid' )) . ' " method= " POST " >
< input type = " hidden " name = " token " value = " '. $_SESSION['newtoken'] .' " >
< input type = " hidden " name = " action " value = " '.(( $action != 'editline')?'addline':'updateligne').' " >
< input type = " hidden " name = " mode " value = " " >
< input type = " hidden " name = " id " value = " '. $object->id .' " >
' ;
2013-02-02 18:31:45 +01:00
if ( ! empty ( $conf -> use_javascript_ajax ) && $object -> statut == 0 )
{
include DOL_DOCUMENT_ROOT . '/core/tpl/ajaxrow.tpl.php' ;
}
2013-02-12 17:08:21 +01:00
2013-11-17 23:25:25 +01:00
print '<table id="tablelines" class="noborder noshadow" width="100%">' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
if ( ! empty ( $object -> lines ))
2013-05-20 17:58:03 +02:00
$ret = $object -> printObjectLines ( $action , $mysoc , $soc , $lineid , 1 );
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Form to add new line
if ( $object -> statut == 0 && $user -> rights -> propal -> creer )
{
if ( $action != 'editline' )
2012-05-05 17:28:52 +02:00
{
2013-02-02 18:31:45 +01:00
$var = true ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
if ( $conf -> global -> MAIN_FEATURES_LEVEL > 1 )
{
// Add free or predefined products/services
2013-04-15 15:31:12 +02:00
$object -> formAddObjectLine ( 1 , $mysoc , $soc );
2013-02-02 18:31:45 +01:00
}
else
{
// Add free products/services
2013-04-15 15:31:12 +02:00
$object -> formAddFreeProduct ( 1 , $mysoc , $soc );
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Add predefined products/services
if ( ! empty ( $conf -> product -> enabled ) || ! empty ( $conf -> service -> enabled ))
{
$var =! $var ;
2013-04-15 15:31:12 +02:00
$object -> formAddPredefinedProduct ( 1 , $mysoc , $soc );
2013-02-02 18:31:45 +01:00
}
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'formAddObjectLine' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2012-05-05 17:28:52 +02:00
}
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
print '</table>' ;
2013-02-12 17:08:21 +01:00
2013-11-17 23:25:25 +01:00
print " </form> \n " ;
dol_fiche_end ();
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
if ( $action == 'statut' )
{
/*
* Formulaire cloture ( signe ou non )
2013-11-05 10:44:58 +01:00
*/
2013-02-02 18:31:45 +01:00
$form_close = '<form action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
$form_close .= '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
$form_close .= '<table class="border" width="100%">' ;
2013-04-16 11:37:51 +02:00
$form_close .= '<tr><td width="150" align="left">' . $langs -> trans ( " CloseAs " ) . '</td><td align="left">' ;
$form_close .= '<input type="hidden" name="action" value="setstatut">' ;
$form_close .= '<select id="statut" name="statut" class="flat">' ;
$form_close .= '<option value="0"> </option>' ;
$form_close .= '<option value="2">' . $object -> labelstatut [ 2 ] . '</option>' ;
$form_close .= '<option value="3">' . $object -> labelstatut [ 3 ] . '</option>' ;
$form_close .= '</select>' ;
$form_close .= '</td></tr>' ;
2013-02-02 18:31:45 +01:00
$form_close .= '<tr><td width="150" align="left">' . $langs -> trans ( 'Note' ) . '</td><td align="left"><textarea cols="70" rows="' . ROWS_3 . '" wrap="soft" name="note">' ;
$form_close .= $object -> note ;
$form_close .= '</textarea></td></tr>' ;
$form_close .= '<tr><td align="center" colspan="2">' ;
$form_close .= '<input type="submit" class="button" name="validate" value="' . $langs -> trans ( 'Validate' ) . '">' ;
$form_close .= ' <input type="submit" class="button" name="cancel" value="' . $langs -> trans ( 'Cancel' ) . '">' ;
$form_close .= '<a name="close"> </a>' ;
$form_close .= '</td>' ;
$form_close .= '</tr></table></form>' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
print $form_close ;
}
2013-02-12 17:08:21 +01:00
2012-05-05 17:28:52 +02:00
/*
2013-02-02 18:31:45 +01:00
* Boutons Actions
2013-11-05 10:44:58 +01:00
*/
2013-02-02 18:31:45 +01:00
if ( $action != 'presend' )
{
print '<div class="tabsAction">' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
if ( $action != 'statut' && $action <> 'editline' )
{
// Validate
2013-03-02 15:57:26 +01:00
if ( $object -> statut == 0 && $object -> total_ttc >= 0 && count ( $object -> lines ) > 0 && $user -> rights -> propal -> valider )
2013-02-02 18:31:45 +01:00
{
2013-04-16 11:37:51 +02:00
if ( count ( $object -> lines ) > 0 ) print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=validate">' . $langs -> trans ( 'Validate' ) . '</a></div>' ;
//else print '<a class="butActionRefused" href="#">'.$langs->trans('Validate').'</a>';
2013-02-02 18:31:45 +01:00
}
2013-09-26 14:06:15 +02:00
// Create event
if ( $conf -> agenda -> enabled && ! empty ( $conf -> global -> MAIN_ADD_EVENT_ON_ELEMENT_CARD )) // Add hidden condition because this is not a "workflow" action so should appears somewhere else on page.
2013-08-27 15:51:06 +02:00
{
print '<a class="butAction" href="' . DOL_URL_ROOT . '/comm/action/fiche.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( " AddAction " ) . '</a>' ;
}
2013-02-02 18:31:45 +01:00
// Edit
if ( $object -> statut == 1 && $user -> rights -> propal -> creer )
{
2013-04-03 18:37:54 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=modif">' . $langs -> trans ( 'Modify' ) . '</a></div>' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// ReOpen
if (( $object -> statut == 2 || $object -> statut == 3 ) && $user -> rights -> propal -> cloturer )
{
2013-04-03 18:37:54 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=reopen' . ( empty ( $conf -> global -> MAIN_JUMP_TAG ) ? '' : '#reopen' ) . '"' ;
print '>' . $langs -> trans ( 'ReOpen' ) . '</a></div>' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Send
if ( $object -> statut == 1 || $object -> statut == 2 )
{
2013-04-16 11:37:51 +02:00
if ( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) || $user -> rights -> propal -> propal_advance -> send )
{
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>' ;
}
else print '<div class="inline-block divButAction"><a class="butActionRefused" href="#">' . $langs -> trans ( 'SendByMail' ) . '</a></div>' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-04-16 11:37:51 +02:00
// Create an order
if ( ! empty ( $conf -> commande -> enabled ) && $object -> statut == 2 && $user -> societe_id == 0 )
{
if ( $user -> rights -> commande -> creer )
{
print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/commande/fiche.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( " AddOrder " ) . '</a></div>' ;
}
}
2013-02-12 17:08:21 +01:00
2013-04-16 11:37:51 +02:00
// Create contract
if ( $conf -> contrat -> enabled && $object -> statut == 2 && $user -> societe_id == 0 )
{
$langs -> load ( " contracts " );
2013-03-27 14:39:41 +01:00
if ( $user -> rights -> contrat -> creer )
{
2013-04-16 11:37:51 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/contrat/fiche.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( 'AddContract' ) . '</a></div>' ;
2013-03-27 14:39:41 +01:00
}
2013-04-16 11:37:51 +02:00
}
2013-03-27 14:39:41 +01:00
2013-04-16 11:37:51 +02:00
// Create an invoice and classify billed
2013-02-02 18:31:45 +01:00
if ( $object -> statut == 2 && $user -> societe_id == 0 )
{
if ( ! empty ( $conf -> facture -> enabled ) && $user -> rights -> facture -> creer )
{
2013-04-03 18:37:54 +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 ( " AddBill " ) . '</a></div>' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
$arraypropal = $object -> getInvoiceArrayList ();
if ( is_array ( $arraypropal ) && count ( $arraypropal ) > 0 )
{
2013-04-03 18:37:54 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=classifybilled&socid=' . $object -> socid . '">' . $langs -> trans ( " ClassifyBilled " ) . '</a></div>' ;
2013-02-02 18:31:45 +01:00
}
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Close
if ( $object -> statut == 1 && $user -> rights -> propal -> cloturer )
{
2013-04-03 18:37:54 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=statut' . ( empty ( $conf -> global -> MAIN_JUMP_TAG ) ? '' : '#close' ) . '"' ;
print '>' . $langs -> trans ( 'Close' ) . '</a></div>' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Clone
if ( $user -> rights -> propal -> creer )
{
2013-04-03 18:37:54 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '&socid=' . $object -> socid . '&action=clone&object=' . $object -> element . '">' . $langs -> trans ( " ToClone " ) . '</a></div>' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Delete
if ( $user -> rights -> propal -> supprimer )
{
2013-04-03 18:37:54 +02:00
print '<div class="inline-block divButAction"><a class="butActionDelete" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=delete"' ;
print '>' . $langs -> trans ( 'Delete' ) . '</a></div>' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
print '</div>' ;
}
2013-04-16 11:37:51 +02:00
print " <br> \n " ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01: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
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
/*
* Documents generes
2013-11-05 10:44:58 +01:00
*/
2013-02-02 18:31:45 +01:00
$filename = dol_sanitizeFileName ( $object -> ref );
$filedir = $conf -> propal -> dir_output . " / " . dol_sanitizeFileName ( $object -> ref );
$urlsource = $_SERVER [ " PHP_SELF " ] . " ?id= " . $object -> id ;
$genallowed = $user -> rights -> propal -> creer ;
$delallowed = $user -> rights -> propal -> supprimer ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
$var = true ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
$somethingshown = $formfile -> show_documents ( 'propal' , $filename , $filedir , $urlsource , $genallowed , $delallowed , $object -> modelpdf , 1 , 0 , 0 , 28 , 0 , '' , 0 , '' , $soc -> default_lang );
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
/*
* Linked object block
2013-04-16 11:37:51 +02:00
*/
2013-02-02 18:31:45 +01:00
$somethingshown = $object -> showLinkedObjectBlock ();
2013-02-12 17:08:21 +01:00
2013-04-16 01:13:20 +02:00
2013-04-16 11:37:51 +02:00
2013-04-16 01:13:20 +02:00
print '</div><div class="fichehalfright"><div class="ficheaddleft">' ;
//print '</td><td valign="top" width="50%">';
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01: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 , 'propal' , $socid );
2013-02-12 17:08:21 +01:00
2013-04-16 01:13:20 +02:00
//print '</td></tr></table>';
2013-04-21 14:24:19 +02:00
print '</div></div></div>' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2012-05-05 17:28:52 +02:00
/*
2013-02-02 18:31:45 +01:00
* Action presend
2013-04-16 11:37:51 +02:00
*
*/
2013-02-02 18:31:45 +01:00
if ( $action == 'presend' )
{
$ref = dol_sanitizeFileName ( $object -> ref );
2013-04-16 11:37:51 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
$fileparams = dol_most_recent_file ( $conf -> propal -> 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 ))
{
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$result = propale_pdf_create ( $db , $object , GETPOST ( 'model' ) ? GETPOST ( 'model' ) : $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
if ( $result <= 0 )
{
dol_print_error ( $db , $result );
exit ;
}
$fileparams = dol_most_recent_file ( $conf -> propal -> dir_output . '/' . $ref , preg_quote ( $ref , '/' ));
$file = $fileparams [ 'fullname' ];
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
print '<br>' ;
print_titre ( $langs -> trans ( 'SendPropalByMail' ));
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Create form object
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 ;
2013-03-27 14:39:41 +01:00
$liste = array ();
foreach ( $object -> thirdparty -> thirdparty_and_contact_email_array ( 1 ) as $key => $value ) $liste [ $key ] = $value ;
2013-02-12 17:08:21 +01:00
$formmail -> withto = GETPOST ( " sendto " ) ? GETPOST ( " sendto " ) : $liste ;
$formmail -> withtocc = $liste ;
2013-02-02 18:31:45 +01:00
$formmail -> withtoccc = ( ! empty ( $conf -> global -> MAIN_EMAIL_USECCC ) ? $conf -> global -> MAIN_EMAIL_USECCC : false );
2013-07-09 12:20:01 +02:00
if ( empty ( $object -> ref_client ))
{
$formmail -> withtopic = $langs -> trans ( 'SendPropalRef' , '__PROPREF__' );
}
else if ( ! empty ( $object -> ref_client ))
{
$formmail -> withtopic = $langs -> trans ( 'SendPropalRef' , '__PROPREF__(__REFCLIENT__)' );
}
2013-02-02 18:31:45 +01:00
$formmail -> withfile = 2 ;
$formmail -> withbody = 1 ;
$formmail -> withdeliveryreceipt = 1 ;
$formmail -> withcancel = 1 ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Tableau des substitutions
$formmail -> substit [ '__PROPREF__' ] = $object -> ref ;
2013-04-16 11:37:51 +02:00
$formmail -> substit [ '__SIGNATURE__' ] = $user -> signature ;
2013-07-09 12:20:01 +02:00
$formmail -> substit [ '__REFCLIENT__' ] = $object -> ref_client ;
2013-04-16 11:37:51 +02:00
$formmail -> substit [ '__PERSONALIZED__' ] = '' ;
$formmail -> substit [ '__CONTACTCIVNAME__' ] = '' ;
//Find the good contact adress
$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_propal_external_CUSTOMER' )) {
$contactstatic = new Contact ( $db );
$contactstatic -> fetch ( $contact [ 'id' ]);
$custcontact = $contactstatic -> getFullName ( $langs , 1 );
}
}
if ( ! empty ( $custcontact )) {
$formmail -> substit [ '__CONTACTCIVNAME__' ] = $custcontact ;
}
}
2013-03-30 13:54:46 +01:00
2013-02-02 18:31:45 +01:00
// Tableau des parametres complementaires
$formmail -> param [ 'action' ] = 'send' ;
$formmail -> param [ 'models' ] = 'propal_send' ;
$formmail -> param [ 'id' ] = $object -> id ;
$formmail -> param [ 'returnurl' ] = $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id ;
// Init list of files
2013-04-16 11:37:51 +02:00
if ( GETPOST ( " mode " ) == 'init' )
2013-02-02 18:31:45 +01:00
{
$formmail -> clear_attached_files ();
2013-04-16 11:37:51 +02:00
$formmail -> add_attached_files ( $file , basename ( $file ), dol_mimetype ( $file ));
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
$formmail -> show_form ();
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
print '<br>' ;
}
2008-08-12 20:20:18 +02:00
}
2012-02-20 10:24:08 +01:00
2012-03-15 07:23:49 +01:00
// End of page
2012-03-12 09:28:02 +01:00
llxFooter ();
2012-03-15 07:23:49 +01:00
$db -> close ();
2008-08-12 20:20:18 +02:00
?>