2008-08-12 20:20:18 +02:00
< ? php
2021-12-25 17:08:40 +01:00
/* Copyright ( C ) 2001 - 2007 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2014-05-05 14:30:08 +02:00
* Copyright ( C ) 2004 - 2014 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 >
2018-10-27 14:43:12 +02:00
* Copyright ( C ) 2005 - 2012 Regis Houssin < regis . houssin @ inodbox . com >
2013-05-18 09:11:24 +02:00
* Copyright ( C ) 2006 Andre Cianfarani < acianfa @ free . fr >
2023-02-15 10:47:25 +01:00
* Copyright ( C ) 2010 - 2023 Juanjo Menent < jmenent @ 2 byte . es >
2021-08-22 11:40:32 +02:00
* Copyright ( C ) 2010 - 2021 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 >
2015-02-26 14:15:33 +01:00
* Copyright ( C ) 2012 Cedric Salvador < csalvador @ gpcsolutions . fr >
2019-10-26 14:28:40 +02:00
* Copyright ( C ) 2013 - 2014 Florian Henry < florian . henry @ open - concept . pro >
* Copyright ( C ) 2014 Ferran Marcet < fmarcet @ 2 byte . es >
* Copyright ( C ) 2016 Marcos García < marcosgdf @ gmail . com >
2021-02-09 17:58:59 +01:00
* Copyright ( C ) 2018 - 2021 Frédéric France < frederic . france @ netlogic . fr >
2020-10-02 08:42:48 +02:00
* Copyright ( C ) 2020 Nicolas ZABOURI < info @ inovea - conseil . com >
2022-01-28 15:08:02 +01:00
* Copyright ( C ) 2022 Gauthier VERDOL < gauthier . verdol @ atm - consulting . fr >
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
2019-09-23 21:55:30 +02:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2013-05-18 09:11:24 +02:00
*/
2008-08-12 20:20:18 +02:00
2016-10-03 00:38:28 +02:00
2008-08-12 20:20:18 +02:00
/**
2016-04-23 15:37:22 +02:00
* \file htdocs / comm / propal / card . php
2015-01-18 17:13:42 +01:00
* \ingroup propale
* \brief Page of commercial proposals card and list
2013-05-18 09:11:24 +02:00
*/
2016-10-03 00:38:28 +02:00
2016-04-23 15:37:22 +02:00
require '../../main.inc.php' ;
2019-11-12 09:46:08 +01: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 . '/core/class/html.formmargin.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' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/doleditor.class.php' ;
2022-06-14 17:53:17 +02:00
if ( ! empty ( $conf -> project -> enabled )) {
2019-11-12 09:46:08 +01:00
require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php' ;
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
2017-02-08 12:37:38 +01:00
if ( ! empty ( $conf -> variants -> enabled )) {
require_once DOL_DOCUMENT_ROOT . '/variants/class/ProductCombination.class.php' ;
2016-07-23 16:37:21 +02:00
}
2018-05-26 20:32:23 +02:00
// Load translation files required by the page
2019-10-23 03:50:48 +02:00
$langs -> loadLangs ( array ( 'companies' , 'propal' , 'compta' , 'bills' , 'orders' , 'products' , 'deliveries' , 'sendings' , 'other' ));
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> incoterm -> enabled )) {
$langs -> load ( 'incoterm' );
}
if ( ! empty ( $conf -> margin -> enabled )) {
2013-04-16 11:37:51 +02:00
$langs -> load ( 'margins' );
2021-02-23 18:59:19 +01:00
}
2008-08-12 20:20:18 +02:00
2014-02-23 17:01:51 +01:00
$error = 0 ;
2012-08-26 14:14:27 +02:00
2014-02-23 17:01:51 +01:00
$id = GETPOST ( 'id' , 'int' );
$ref = GETPOST ( 'ref' , 'alpha' );
$socid = GETPOST ( 'socid' , 'int' );
2020-09-16 19:39:50 +02:00
$action = GETPOST ( 'action' , 'aZ09' );
2015-04-25 22:20:10 +02:00
$cancel = GETPOST ( 'cancel' , 'alpha' );
2014-02-23 17:01:51 +01:00
$origin = GETPOST ( 'origin' , 'alpha' );
$originid = GETPOST ( 'originid' , 'int' );
$confirm = GETPOST ( 'confirm' , 'alpha' );
$lineid = GETPOST ( 'lineid' , 'int' );
2019-01-27 11:55:16 +01:00
$contactid = GETPOST ( 'contactid' , 'int' );
$projectid = GETPOST ( 'projectid' , 'int' );
2021-11-16 14:09:18 +01:00
$rank = ( GETPOST ( 'rank' , 'int' ) > 0 ) ? GETPOST ( 'rank' , 'int' ) : - 1 ;
2011-03-11 15:59:35 +01:00
2014-02-23 17:01:51 +01:00
// PDF
2019-11-12 09:46:08 +01: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
2014-02-23 17:01:51 +01:00
$NBLINES = 4 ;
2011-06-30 00:29:50 +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
2019-10-06 14:41:52 +02:00
$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
2019-11-12 09:46:08 +01:00
if ( $id > 0 || ! empty ( $ref )) {
2014-02-23 17:01:51 +01:00
$ret = $object -> fetch ( $id , $ref );
2021-02-23 18:59:19 +01:00
if ( $ret > 0 ) {
2014-02-23 17:01:51 +01:00
$ret = $object -> fetch_thirdparty ();
2021-02-23 18:59:19 +01:00
}
if ( $ret <= 0 ) {
2018-02-14 21:14:24 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
$action = '' ;
}
2012-08-25 19:08:06 +02:00
}
2012-03-12 09:28:02 +01:00
2017-06-10 12:56:28 +02:00
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
2019-11-12 09:46:08 +01:00
$hookmanager -> initHooks ( array ( 'propalcard' , 'globalcard' ));
2008-08-12 20:20:18 +02:00
2022-08-08 11:39:43 +02:00
$usercanread = $user -> hasRight ( " propal " , " lire " );
$usercancreate = $user -> hasRight ( " propal " , " creer " );
$usercandelete = $user -> hasRight ( " propal " , " supprimer " );
2020-04-10 11:54:14 +02:00
$usercanclose = (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && $usercancreate ) || ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> propal -> propal_advance -> close )));
2019-11-12 09:46:08 +01:00
$usercanvalidate = (( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && $usercancreate ) || ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> propal -> propal_advance -> validate )));
2022-03-11 10:48:51 +01:00
$usercansend = ( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) || ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> propal -> propal_advance -> send )));
2018-07-01 11:06:47 +02:00
2022-08-08 11:39:43 +02:00
$usercancreateorder = $user -> hasRight ( " commande " , " creer " );
$usercancreateinvoice = $user -> hasRight ( " facture " , " creer " );
$usercancreatecontract = $user -> hasRight ( " contrat " , " creer " );
2021-08-24 16:46:21 +02:00
$usercancreateintervention = $user -> hasRight ( 'ficheinter' , 'creer' );
2022-06-14 09:14:30 +02:00
$usercancreatepurchaseorder = ( $user -> hasRight ( 'fournisseur' , 'commande' , 'creer' ) || $user -> hasRight ( 'supplier_order' , 'creer' ));
2018-07-01 11:06:47 +02:00
$permissionnote = $usercancreate ; // Used by the include of actions_setnotes.inc.php
2019-11-12 09:46:08 +01:00
$permissiondellink = $usercancreate ; // Used by the include of actions_dellink.inc.php
2018-07-01 11:06:47 +02:00
$permissiontoedit = $usercancreate ; // Used by the include of actions_lineupdown.inc.php
2011-12-16 14:59:09 +01:00
2021-03-29 22:43:39 +02:00
// Security check
if ( ! empty ( $user -> socid )) {
$socid = $user -> socid ;
}
restrictedArea ( $user , 'propal' , $object -> id );
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
2014-02-23 20:10:05 +01:00
$parameters = array ( 'socid' => $socid );
2014-09-28 03:41:32 +02:00
$reshook = $hookmanager -> executeHooks ( 'doActions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by some hooks
2021-02-23 18:59:19 +01:00
if ( $reshook < 0 ) {
setEventMessages ( $hookmanager -> error , $hookmanager -> errors , 'errors' );
}
if ( empty ( $reshook )) {
2021-09-02 21:35:36 +02:00
$backurlforlist = DOL_URL_ROOT . '/comm/propal/list.php' ;
if ( empty ( $backtopage ) || ( $cancel && empty ( $id ))) {
if ( empty ( $backtopage ) || ( $cancel && strpos ( $backtopage , '__ID__' ))) {
if ( empty ( $id ) && (( $action != 'add' && $action != 'create' ) || $cancel )) {
$backtopage = $backurlforlist ;
} else {
$backtopage = DOL_URL_ROOT . '/comm/propal/card.php?id=' . (( ! empty ( $id ) && $id > 0 ) ? $id : '__ID__' );
}
}
}
2021-02-23 18:59:19 +01:00
if ( $cancel ) {
2021-09-02 21:35:36 +02:00
if ( ! empty ( $backtopageforcancel )) {
header ( " Location: " . $backtopageforcancel );
exit ;
} elseif ( ! empty ( $backtopage )) {
2017-09-17 15:38:50 +02:00
header ( " Location: " . $backtopage );
exit ;
}
2019-11-12 09:46:08 +01:00
$action = '' ;
2017-09-17 15:38:50 +02:00
}
2015-04-25 22:20:10 +02:00
2015-07-28 14:13:16 +02:00
include DOL_DOCUMENT_ROOT . '/core/actions_setnotes.inc.php' ; // Must be include, not includ_once
2019-11-12 09:46:08 +01:00
include DOL_DOCUMENT_ROOT . '/core/actions_dellink.inc.php' ; // Must be include, not include_once
2015-07-28 14:13:16 +02:00
2019-11-12 09:46:08 +01:00
include DOL_DOCUMENT_ROOT . '/core/actions_lineupdown.inc.php' ; // Must be include, not include_once
2010-08-07 12:15:34 +02:00
2015-01-17 19:28:27 +01:00
// Action clone object
2021-02-23 18:59:19 +01:00
if ( $action == 'confirm_clone' && $confirm == 'yes' && $usercancreate ) {
if ( ! GETPOST ( 'socid' , 3 )) {
2015-11-07 21:56:21 +01:00
setEventMessages ( $langs -> trans ( " NoCloneOptionsSpecified " ), null , 'errors' );
2020-05-21 15:05:19 +02:00
} else {
2015-01-17 19:28:27 +01:00
if ( $object -> id > 0 ) {
2016-10-17 23:22:25 +02:00
if ( ! empty ( $conf -> global -> PROPAL_CLONE_DATE_DELIVERY )) {
//Get difference between old and new delivery date and change lines according to difference
2021-02-23 18:59:19 +01:00
$date_delivery = dol_mktime (
12 ,
0 ,
0 ,
2016-10-17 23:22:25 +02:00
GETPOST ( 'date_deliverymonth' , 'int' ),
GETPOST ( 'date_deliveryday' , 'int' ),
GETPOST ( 'date_deliveryyear' , 'int' )
);
2020-11-16 12:20:18 +01:00
$date_delivery_old = ( empty ( $object -> delivery_date ) ? $object -> date_livraison : $object -> delivery_date );
2021-02-23 18:59:19 +01:00
if ( ! empty ( $date_delivery_old ) && ! empty ( $date_delivery )) {
2016-10-17 23:22:25 +02:00
//Attempt to get the date without possible hour rounding errors
2021-02-23 18:59:19 +01:00
$old_date_delivery = dol_mktime (
12 ,
0 ,
0 ,
2020-11-16 12:20:18 +01:00
dol_print_date ( $date_delivery_old , '%m' ),
dol_print_date ( $date_delivery_old , '%d' ),
dol_print_date ( $date_delivery_old , '%Y' )
2016-10-17 23:22:25 +02:00
);
//Calculate the difference and apply if necessary
$difference = $date_delivery - $old_date_delivery ;
2021-02-23 18:59:19 +01:00
if ( $difference != 0 ) {
2016-10-17 23:22:25 +02:00
$object -> date_livraison = $date_delivery ;
2020-11-11 18:08:40 +01:00
$object -> delivery_date = $date_delivery ;
2021-02-23 18:59:19 +01:00
foreach ( $object -> lines as $line ) {
if ( isset ( $line -> date_start )) {
$line -> date_start = $line -> date_start + $difference ;
}
if ( isset ( $line -> date_end )) {
$line -> date_end = $line -> date_end + $difference ;
}
2016-10-17 23:22:25 +02:00
}
}
}
}
2022-03-08 10:06:57 +01:00
$result = $object -> createFromClone ( $user , $socid , ( GETPOSTISSET ( 'entity' ) ? GETPOST ( 'entity' , 'int' ) : null ), ( GETPOST ( 'update_prices' , 'aZ' ) ? true : false ));
2015-01-17 19:28:27 +01:00
if ( $result > 0 ) {
2019-11-12 09:46:08 +01:00
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . '?id=' . $result );
2015-01-17 19:28:27 +01:00
exit ();
} else {
2021-02-23 18:59:19 +01:00
if ( count ( $object -> errors ) > 0 ) {
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
2015-01-17 19:28:27 +01:00
$action = '' ;
}
2011-12-12 13:42:19 +01:00
}
2009-01-14 16:53:52 +01:00
}
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'confirm_delete' && $confirm == 'yes' && $usercandelete ) {
// Delete proposal
2015-01-17 19:28:27 +01:00
$result = $object -> delete ( $user );
if ( $result > 0 ) {
2019-11-12 09:46:08 +01:00
header ( 'Location: ' . DOL_URL_ROOT . '/comm/propal/list.php?restore_lastsearch_values=1' );
2015-01-17 19:28:27 +01:00
exit ();
} else {
$langs -> load ( " errors " );
2015-11-07 21:56:21 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2012-10-05 15:12:17 +02:00
}
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'confirm_deleteline' && $confirm == 'yes' && $usercancreate ) {
// Remove line
2015-01-17 19:28:27 +01:00
$result = $object -> deleteline ( $lineid );
// reorder lines
2022-03-09 11:32:07 +01:00
if ( $result > 0 ) {
2015-01-17 19:28:27 +01:00
$object -> line_order ( true );
2022-03-09 11:32:07 +01:00
} else {
$langs -> load ( " errors " );
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2021-02-23 18:59:19 +01:00
}
2008-08-12 20:20:18 +02:00
2014-02-23 17:01:51 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
2012-10-05 15:12:17 +02:00
// Define output language
$outputlangs = $langs ;
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS )) {
2014-02-23 17:01:51 +01:00
$outputlangs = new Translate ( " " , $conf );
2019-01-27 11:55:16 +01:00
$newlang = ( GETPOST ( 'lang_id' , 'aZ09' ) ? GETPOST ( 'lang_id' , 'aZ09' ) : $object -> thirdparty -> default_lang );
2012-10-05 15:12:17 +02:00
$outputlangs -> setDefaultLang ( $newlang );
}
2014-02-23 17:01:51 +01:00
$ret = $object -> fetch ( $id ); // Reload to get new records
2021-02-23 18:59:19 +01:00
if ( $ret > 0 ) {
$object -> fetch_thirdparty ();
}
2020-09-10 01:49:09 +02:00
$object -> generateDocument ( $object -> model_pdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-10-05 15:12:17 +02:00
}
2012-07-02 19:30:37 +02:00
2019-11-12 09:46:08 +01:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
2015-01-17 19:28:27 +01:00
exit ();
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'confirm_validate' && $confirm == 'yes' && $usercanvalidate ) {
// Validation
2021-01-11 16:21:15 +01:00
$idwarehouse = GETPOST ( 'idwarehouse' , 'int' );
2015-01-17 19:28:27 +01:00
$result = $object -> valid ( $user );
2021-02-23 18:59:19 +01:00
if ( $result >= 0 ) {
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
2015-09-22 12:03:11 +02:00
$outputlangs = $langs ;
$newlang = '' ;
2021-08-22 22:28:53 +02:00
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) {
2021-02-23 18:59:19 +01:00
$newlang = GETPOST ( 'lang_id' , 'aZ09' );
}
2021-08-22 22:28:53 +02:00
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && empty ( $newlang )) {
2021-02-23 18:59:19 +01:00
$newlang = $object -> thirdparty -> default_lang ;
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $newlang )) {
2015-09-22 12:03:11 +02:00
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
2015-01-17 19:28:27 +01:00
}
2020-09-10 01:49:09 +02:00
$model = $object -> model_pdf ;
2015-09-22 12:03:11 +02:00
$ret = $object -> fetch ( $id ); // Reload to get new records
2020-07-07 12:43:15 +02:00
if ( $ret > 0 ) {
$object -> fetch_thirdparty ();
}
2015-09-22 12:03:11 +02:00
$object -> generateDocument ( $model , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-10-05 15:12:17 +02:00
}
2015-01-17 19:28:27 +01:00
} else {
$langs -> load ( " errors " );
2021-02-23 18:59:19 +01:00
if ( count ( $object -> errors ) > 0 ) {
setEventMessages ( $object -> error , $object -> errors , 'errors' );
} else {
setEventMessages ( $langs -> trans ( $object -> error ), null , 'errors' );
}
2011-12-02 19:57:20 +01:00
}
2021-02-23 18:59:19 +01:00
} elseif ( $action == 'setdate' && $usercancreate ) {
2022-02-22 23:44:56 +01:00
$datep = dol_mktime ( 12 , 0 , 0 , GETPOST ( 'remonth' , 'int' ), GETPOST ( 'reday' , 'int' ), GETPOST ( 'reyear' , 'int' ));
2013-04-16 11:37:51 +02:00
2015-01-17 19:28:27 +01:00
if ( empty ( $datep )) {
2019-11-12 09:46:08 +01:00
$error ++ ;
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Date " )), null , 'errors' );
2015-01-17 19:28:27 +01:00
}
2013-04-16 11:37:51 +02:00
2019-11-12 09:46:08 +01:00
if ( ! $error ) {
2015-01-17 19:28:27 +01:00
$result = $object -> set_date ( $user , $datep );
2022-08-23 08:56:00 +02:00
if ( $result > 0 && ! empty ( $object -> duree_validite ) && ! empty ( $object -> fin_validite )) {
$datev = $datep + ( $object -> duree_validite * 24 * 3600 );
$result = $object -> set_echeance ( $user , $datev , 1 );
}
2021-02-23 18:59:19 +01:00
if ( $result < 0 ) {
2015-01-17 19:28:27 +01:00
dol_print_error ( $db , $object -> error );
2022-08-22 17:18:31 +02:00
} elseif ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
$outputlangs = $langs ;
$newlang = '' ;
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) $newlang = GETPOST ( 'lang_id' , 'aZ09' );
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && empty ( $newlang )) $newlang = $object -> thirdparty -> default_lang ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$model = $object -> model_pdf ;
$ret = $object -> fetch ( $id ); // Reload to get new records
if ( $ret > 0 ) {
$object -> fetch_thirdparty ();
}
$object -> generateDocument ( $model , $outputlangs , $hidedetails , $hidedesc , $hideref );
2021-02-23 18:59:19 +01:00
}
2015-01-17 19:28:27 +01:00
}
2021-02-23 18:59:19 +01:00
} elseif ( $action == 'setecheance' && $usercancreate ) {
2022-02-22 23:44:56 +01:00
$result = $object -> set_echeance ( $user , dol_mktime ( 12 , 0 , 0 , GETPOST ( 'echmonth' , 'int' ), GETPOST ( 'echday' , 'int' ), GETPOST ( 'echyear' , 'int' )));
2021-05-03 19:36:49 +02:00
if ( $result >= 0 ) {
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
2021-04-28 11:58:34 +02:00
$outputlangs = $langs ;
$newlang = '' ;
2022-08-22 17:18:31 +02:00
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) $newlang = GETPOST ( 'lang_id' , 'aZ09' );
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && empty ( $newlang )) $newlang = $object -> thirdparty -> default_lang ;
2021-04-28 11:58:34 +02:00
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$model = $object -> model_pdf ;
$ret = $object -> fetch ( $id ); // Reload to get new records
if ( $ret > 0 ) {
$object -> fetch_thirdparty ();
}
$object -> generateDocument ( $model , $outputlangs , $hidedetails , $hidedesc , $hideref );
}
2021-04-28 15:07:31 +02:00
} else {
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2021-02-23 18:59:19 +01:00
}
} elseif ( $action == 'setdate_livraison' && $usercancreate ) {
2022-02-22 23:44:56 +01:00
$result = $object -> setDeliveryDate ( $user , dol_mktime ( 12 , 0 , 0 , GETPOST ( 'date_livraisonmonth' , 'int' ), GETPOST ( 'date_livraisonday' , 'int' ), GETPOST ( 'date_livraisonyear' , 'int' )));
2021-02-23 18:59:19 +01:00
if ( $result < 0 ) {
2014-02-23 17:01:51 +01:00
dol_print_error ( $db , $object -> error );
2021-02-23 18:59:19 +01:00
}
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'setref_client' && $usercancreate ) {
// Positionne ref client
2016-09-19 13:57:50 +02:00
$result = $object -> set_ref_client ( $user , GETPOST ( 'ref_client' ));
2021-02-23 18:59:19 +01:00
if ( $result < 0 ) {
2017-10-07 13:09:31 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2016-09-19 13:57:50 +02:00
}
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'set_incoterms' && ! empty ( $conf -> incoterm -> enabled ) && $usercancreate ) {
// Set incoterm
2017-10-07 13:09:31 +02:00
$result = $object -> setIncoterms ( GETPOST ( 'incoterm_id' , 'int' ), GETPOST ( 'location_incoterms' , 'alpha' ));
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'add' && $usercancreate ) {
// Create proposal
2015-01-17 19:28:27 +01:00
$object -> socid = $socid ;
$object -> fetch_thirdparty ();
2013-04-16 11:37:51 +02:00
2015-01-17 19:28:27 +01:00
$datep = dol_mktime ( 12 , 0 , 0 , GETPOST ( 'remonth' ), GETPOST ( 'reday' ), GETPOST ( 'reyear' ));
2015-04-25 22:20:10 +02:00
$date_delivery = dol_mktime ( 12 , 0 , 0 , GETPOST ( 'date_livraisonmonth' ), GETPOST ( 'date_livraisonday' ), GETPOST ( 'date_livraisonyear' ));
2019-06-04 18:45:01 +02:00
$duration = GETPOST ( 'duree_validite' , 'int' );
2008-08-12 20:20:18 +02:00
2015-01-17 19:28:27 +01:00
if ( empty ( $datep )) {
2021-05-15 07:45:04 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " DatePropal " )), null , 'errors' );
2015-01-17 19:28:27 +01:00
$action = 'create' ;
2019-11-12 09:46:08 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
if ( empty ( $duration )) {
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " ValidityDuration " )), null , 'errors' );
2015-01-17 19:28:27 +01:00
$action = 'create' ;
2019-11-12 09:46:08 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2008-08-12 20:20:18 +02:00
2015-01-17 19:28:27 +01:00
if ( $socid < 1 ) {
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Customer " )), null , 'errors' );
2016-08-10 09:47:25 +02:00
2015-01-17 19:28:27 +01:00
$action = 'create' ;
2019-11-12 09:46:08 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2013-04-16 11:37:51 +02:00
2021-02-23 18:59:19 +01:00
if ( ! $error ) {
2015-01-17 19:28:27 +01:00
$db -> begin ();
2016-02-14 21:58:54 +01:00
// If we select proposal to clone during creation (when option PROPAL_CLONE_ON_CREATE_PAGE is on)
2021-02-23 18:59:19 +01:00
if ( GETPOST ( 'createmode' ) == 'copy' && GETPOST ( 'copie_propal' )) {
2019-01-27 11:55:16 +01:00
if ( $object -> fetch ( GETPOST ( 'copie_propal' , 'int' )) > 0 ) {
2015-01-17 19:28:27 +01:00
$object -> ref = GETPOST ( 'ref' );
$object -> datep = $datep ;
2020-11-16 12:20:18 +01:00
$object -> date = $datep ;
2020-12-01 02:41:19 +01:00
$object -> date_livraison = $date_delivery ; // deprecated
2020-11-16 12:20:18 +01:00
$object -> delivery_date = $date_delivery ;
2015-01-17 19:28:27 +01:00
$object -> availability_id = GETPOST ( 'availability_id' );
$object -> demand_reason_id = GETPOST ( 'demand_reason_id' );
2019-01-27 11:55:16 +01:00
$object -> fk_delivery_address = GETPOST ( 'fk_address' , 'int' );
2017-10-07 13:09:31 +02:00
$object -> shipping_method_id = GETPOST ( 'shipping_method_id' , 'int' );
2021-01-09 02:45:46 +01:00
$object -> warehouse_id = GETPOST ( 'warehouse_id' , 'int' );
2015-01-17 19:28:27 +01:00
$object -> duree_validite = $duration ;
$object -> cond_reglement_id = GETPOST ( 'cond_reglement_id' );
2021-10-28 16:53:28 +02:00
$object -> deposit_percent = GETPOST ( 'cond_reglement_id_deposit_percent' , 'alpha' );
2015-01-17 19:28:27 +01:00
$object -> mode_reglement_id = GETPOST ( 'mode_reglement_id' );
2017-10-07 13:09:31 +02:00
$object -> fk_account = GETPOST ( 'fk_account' , 'int' );
2021-12-19 20:55:24 +01:00
$object -> remise_absolue = price2num ( GETPOST ( 'remise_absolue' ), 'MU' , 2 ); // deprecated
2021-09-08 22:00:16 +02:00
$object -> remise_percent = price2num ( GETPOST ( 'remise_percent' ), '' , 2 );
2019-01-27 11:55:16 +01:00
$object -> socid = GETPOST ( 'socid' , 'int' );
2020-06-25 12:17:47 +02:00
$object -> contact_id = GETPOST ( 'contactid' , 'int' );
2019-01-27 11:55:16 +01:00
$object -> fk_project = GETPOST ( 'projectid' , 'int' );
2020-11-16 12:20:18 +01:00
$object -> model_pdf = GETPOST ( 'model' , 'alphanohtml' );
2015-01-17 19:28:27 +01:00
$object -> author = $user -> id ; // deprecated
2020-11-16 12:20:18 +01:00
$object -> user_author_id = $user -> id ;
2020-09-18 01:29:17 +02:00
$object -> note_private = GETPOST ( 'note_private' , 'restricthtml' );
$object -> note_public = GETPOST ( 'note_public' , 'restricthtml' );
2015-04-03 05:18:47 +02:00
$object -> statut = Propal :: STATUS_DRAFT ;
2015-02-10 11:46:35 +01:00
$object -> fk_incoterms = GETPOST ( 'incoterm_id' , 'int' );
$object -> location_incoterms = GETPOST ( 'location_incoterms' , 'alpha' );
2015-01-17 19:28:27 +01:00
} else {
2015-11-07 21:56:21 +01:00
setEventMessages ( $langs -> trans ( " ErrorFailedToCopyProposal " , GETPOST ( 'copie_propal' )), null , 'errors' );
2015-01-17 19:28:27 +01:00
}
} else {
2014-02-23 17:01:51 +01:00
$object -> ref = GETPOST ( 'ref' );
2015-01-17 19:28:27 +01:00
$object -> ref_client = GETPOST ( 'ref_client' );
2014-02-23 17:01:51 +01:00
$object -> datep = $datep ;
2020-11-16 12:20:18 +01:00
$object -> date = $datep ;
2014-02-23 17:01:51 +01:00
$object -> date_livraison = $date_delivery ;
2020-11-16 12:20:18 +01:00
$object -> delivery_date = $date_delivery ;
2020-10-17 16:01:43 +02:00
$object -> availability_id = GETPOST ( 'availability_id' , 'int' );
$object -> demand_reason_id = GETPOST ( 'demand_reason_id' , 'int' );
$object -> fk_delivery_address = GETPOST ( 'fk_address' , 'int' );
2017-10-07 13:09:31 +02:00
$object -> shipping_method_id = GETPOST ( 'shipping_method_id' , 'int' );
2021-01-10 01:07:27 +01:00
$object -> warehouse_id = GETPOST ( 'warehouse_id' , 'int' );
2020-10-17 16:01:43 +02:00
$object -> duree_validite = price2num ( GETPOST ( 'duree_validite' , 'alpha' ));
$object -> cond_reglement_id = GETPOST ( 'cond_reglement_id' , 'int' );
2021-10-28 16:53:28 +02:00
$object -> deposit_percent = GETPOST ( 'cond_reglement_id_deposit_percent' , 'alpha' );
2020-10-17 16:01:43 +02:00
$object -> mode_reglement_id = GETPOST ( 'mode_reglement_id' , 'int' );
2017-10-07 13:09:31 +02:00
$object -> fk_account = GETPOST ( 'fk_account' , 'int' );
2020-06-25 12:17:47 +02:00
$object -> contact_id = GETPOST ( 'contactid' , 'int' );
2019-01-27 11:55:16 +01:00
$object -> fk_project = GETPOST ( 'projectid' , 'int' );
2020-09-10 01:49:09 +02:00
$object -> model_pdf = GETPOST ( 'model' );
2014-02-23 17:01:51 +01:00
$object -> author = $user -> id ; // deprecated
2020-09-18 01:29:17 +02:00
$object -> note_private = GETPOST ( 'note_private' , 'restricthtml' );
$object -> note_public = GETPOST ( 'note_public' , 'restricthtml' );
2015-02-10 11:46:35 +01:00
$object -> fk_incoterms = GETPOST ( 'incoterm_id' , 'int' );
$object -> location_incoterms = GETPOST ( 'location_incoterms' , 'alpha' );
2013-04-16 11:37:51 +02:00
2015-01-17 19:28:27 +01:00
$object -> origin = GETPOST ( 'origin' );
$object -> origin_id = GETPOST ( 'originid' );
2016-08-10 09:47:25 +02:00
2016-01-18 19:45:27 +01:00
// Multicurrency
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled )) {
2016-01-18 19:45:27 +01:00
$object -> multicurrency_code = GETPOST ( 'multicurrency_code' , 'alpha' );
}
2013-04-16 11:37:51 +02:00
2015-01-17 19:28:27 +01:00
// Fill array 'array_options' with data from add form
2019-10-06 14:41:52 +02:00
$ret = $extrafields -> setOptionalsFromPost ( null , $object );
2015-01-17 19:28:27 +01:00
if ( $ret < 0 ) {
2019-11-12 09:46:08 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
$action = 'create' ;
}
2013-07-26 15:42:32 +02:00
}
2013-04-16 11:37:51 +02:00
2021-02-23 18:59:19 +01:00
if ( ! $error ) {
if ( $origin && $originid ) {
2015-01-18 17:13:42 +01:00
// Parse element/subelement (ex: project_task)
$element = $subelement = $origin ;
if ( preg_match ( '/^([^_]+)_([^_]+)/i' , $origin , $regs )) {
$element = $regs [ 1 ];
$subelement = $regs [ 2 ];
}
2014-06-28 19:47:51 +02:00
2015-01-18 17:13:42 +01:00
// For compatibility
if ( $element == 'order' ) {
$element = $subelement = 'commande' ;
}
if ( $element == 'propal' ) {
$element = 'comm/propal' ;
$subelement = 'propal' ;
}
if ( $element == 'contract' ) {
$element = $subelement = 'contrat' ;
}
if ( $element == 'inter' ) {
$element = $subelement = 'ficheinter' ;
}
if ( $element == 'shipping' ) {
$element = $subelement = 'expedition' ;
}
2014-06-28 19:47:51 +02:00
2015-01-18 17:13:42 +01:00
$object -> origin = $origin ;
$object -> origin_id = $originid ;
2014-06-28 19:47:51 +02:00
2015-01-18 17:13:42 +01:00
// Possibility to add external linked objects with hooks
$object -> linked_objects [ $object -> origin ] = $object -> origin_id ;
2019-11-12 09:46:08 +01:00
if ( is_array ( $_POST [ 'other_linked_objects' ]) && ! empty ( $_POST [ 'other_linked_objects' ])) {
2015-01-18 17:13:42 +01:00
$object -> linked_objects = array_merge ( $object -> linked_objects , $_POST [ 'other_linked_objects' ]);
}
2014-06-28 19:47:51 +02:00
2015-01-18 17:13:42 +01:00
$id = $object -> create ( $user );
2021-02-23 18:59:19 +01:00
if ( $id > 0 ) {
2019-11-12 09:46:08 +01:00
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
2014-06-28 19:47:51 +02:00
2019-10-26 14:28:40 +02:00
$classname = ucfirst ( $subelement );
$srcobject = new $classname ( $db );
2014-06-28 19:47:51 +02:00
2019-11-12 09:46:08 +01:00
dol_syslog ( " Try to find source object origin= " . $object -> origin . " originid= " . $object -> origin_id . " to add lines " );
2019-10-26 14:28:40 +02:00
$result = $srcobject -> fetch ( $object -> origin_id );
2014-06-28 19:47:51 +02:00
2021-02-23 18:59:19 +01:00
if ( $result > 0 ) {
2019-10-26 14:28:40 +02:00
$lines = $srcobject -> lines ;
2021-02-23 18:59:19 +01:00
if ( empty ( $lines ) && method_exists ( $srcobject , 'fetch_lines' )) {
2019-10-26 14:28:40 +02:00
$srcobject -> fetch_lines ();
2014-09-04 18:58:33 +02:00
$lines = $srcobject -> lines ;
2019-10-26 14:28:40 +02:00
}
2019-11-12 09:46:08 +01:00
$fk_parent_line = 0 ;
$num = count ( $lines );
2021-02-23 18:59:19 +01:00
for ( $i = 0 ; $i < $num ; $i ++ ) {
2019-11-12 09:46:08 +01:00
$label = ( ! empty ( $lines [ $i ] -> label ) ? $lines [ $i ] -> label : '' );
$desc = ( ! empty ( $lines [ $i ] -> desc ) ? $lines [ $i ] -> desc : $lines [ $i ] -> libelle );
2019-10-26 14:28:40 +02:00
// Positive line
$product_type = ( $lines [ $i ] -> product_type ? $lines [ $i ] -> product_type : 0 );
// Date start
$date_start = false ;
2021-02-23 18:59:19 +01:00
if ( $lines [ $i ] -> date_debut_prevue ) {
2019-10-26 14:28:40 +02:00
$date_start = $lines [ $i ] -> date_debut_prevue ;
2021-02-23 18:59:19 +01:00
}
if ( $lines [ $i ] -> date_debut_reel ) {
2019-10-26 14:28:40 +02:00
$date_start = $lines [ $i ] -> date_debut_reel ;
2021-02-23 18:59:19 +01:00
}
if ( $lines [ $i ] -> date_start ) {
2019-10-26 14:28:40 +02:00
$date_start = $lines [ $i ] -> date_start ;
2021-02-23 18:59:19 +01:00
}
2019-10-26 14:28:40 +02:00
// Date end
$date_end = false ;
2021-02-23 18:59:19 +01:00
if ( $lines [ $i ] -> date_fin_prevue ) {
2019-10-26 14:28:40 +02:00
$date_end = $lines [ $i ] -> date_fin_prevue ;
2021-02-23 18:59:19 +01:00
}
if ( $lines [ $i ] -> date_fin_reel ) {
2019-10-26 14:28:40 +02:00
$date_end = $lines [ $i ] -> date_fin_reel ;
2021-02-23 18:59:19 +01:00
}
if ( $lines [ $i ] -> date_end ) {
2019-10-26 14:28:40 +02:00
$date_end = $lines [ $i ] -> date_end ;
2021-02-23 18:59:19 +01:00
}
2019-10-26 14:28:40 +02:00
// Reset fk_parent_line for no child products and special product
if (( $lines [ $i ] -> product_type != 9 && empty ( $lines [ $i ] -> fk_parent_line )) || $lines [ $i ] -> product_type == 9 ) {
$fk_parent_line = 0 ;
2015-01-18 17:13:42 +01:00
}
2019-10-26 14:28:40 +02:00
// Extrafields
2020-04-23 13:21:39 +02:00
if ( method_exists ( $lines [ $i ], 'fetch_optionals' )) {
2019-10-26 14:28:40 +02:00
$lines [ $i ] -> fetch_optionals ();
$array_options = $lines [ $i ] -> array_options ;
2015-01-18 17:13:42 +01:00
}
2019-10-26 14:28:40 +02:00
$tva_tx = $lines [ $i ] -> tva_tx ;
2021-02-23 18:59:19 +01:00
if ( ! empty ( $lines [ $i ] -> vat_src_code ) && ! preg_match ( '/\(/' , $tva_tx )) {
$tva_tx .= ' (' . $lines [ $i ] -> vat_src_code . ')' ;
}
2019-10-26 14:28:40 +02:00
$result = $object -> addline ( $desc , $lines [ $i ] -> subprice , $lines [ $i ] -> qty , $tva_tx , $lines [ $i ] -> localtax1_tx , $lines [ $i ] -> localtax2_tx , $lines [ $i ] -> fk_product , $lines [ $i ] -> remise_percent , 'HT' , 0 , $lines [ $i ] -> info_bits , $product_type , $lines [ $i ] -> rang , $lines [ $i ] -> special_code , $fk_parent_line , $lines [ $i ] -> fk_fournprice , $lines [ $i ] -> pa_ht , $label , $date_start , $date_end , $array_options , $lines [ $i ] -> fk_unit );
if ( $result > 0 ) {
$lineid = $result ;
} else {
$lineid = 0 ;
2019-11-12 09:46:08 +01:00
$error ++ ;
2019-10-26 14:28:40 +02:00
break ;
}
// Defined the new fk_parent_line
if ( $result > 0 && $lines [ $i ] -> product_type == 9 ) {
$fk_parent_line = $result ;
}
2015-01-18 17:13:42 +01:00
}
2019-10-26 14:28:40 +02:00
// Hooks
$parameters = array ( 'objFrom' => $srcobject );
$reshook = $hookmanager -> executeHooks ( 'createFrom' , $parameters , $object , $action ); // Note that $action and $object may have been
// modified by hook
2021-02-23 18:59:19 +01:00
if ( $reshook < 0 ) {
2023-01-18 09:53:28 +01:00
setEventMessages ( $hookmanager -> error , $hookmanager -> errors , 'errors' );
2019-11-12 09:46:08 +01:00
$error ++ ;
2021-02-23 18:59:19 +01:00
}
2019-10-26 14:28:40 +02:00
} else {
setEventMessages ( $srcobject -> error , $srcobject -> errors , 'errors' );
2019-11-12 09:46:08 +01:00
$error ++ ;
2019-10-26 14:28:40 +02:00
}
2015-01-18 17:13:42 +01:00
} else {
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2019-11-12 09:46:08 +01:00
$error ++ ;
2015-01-18 17:13:42 +01:00
}
2021-03-01 20:37:16 +01:00
} else {
// Standard creation
2015-01-18 17:13:42 +01:00
$id = $object -> create ( $user );
2014-06-28 19:47:51 +02:00
}
2013-04-16 11:37:51 +02:00
2021-02-23 18:59:19 +01:00
if ( $id > 0 ) {
2020-11-30 15:18:58 +01:00
// Insert default contacts if defined
if ( GETPOST ( 'contactid' ) > 0 ) {
2015-01-18 17:13:42 +01:00
$result = $object -> add_contact ( GETPOST ( 'contactid' ), 'CUSTOMER' , 'external' );
2021-02-23 18:59:19 +01:00
if ( $result < 0 ) {
2015-01-18 17:13:42 +01:00
$error ++ ;
2015-11-07 21:56:21 +01:00
setEventMessages ( $langs -> trans ( " ErrorFailedToAddContact " ), null , 'errors' );
2013-07-26 15:42:32 +02:00
}
}
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> global -> PROPOSAL_AUTO_ADD_AUTHOR_AS_CONTACT )) {
2018-10-15 16:40:40 +02:00
$result = $object -> add_contact ( $user -> id , 'SALESREPFOLL' , 'internal' );
2021-02-23 18:59:19 +01:00
if ( $result < 0 ) {
2018-10-15 16:40:40 +02:00
$error ++ ;
setEventMessages ( $langs -> trans ( " ErrorFailedToAddUserAsContact " ), null , 'errors' );
}
}
2021-02-23 18:59:19 +01:00
if ( ! $error ) {
2015-01-17 19:28:27 +01:00
$db -> commit ();
2017-10-07 13:09:31 +02:00
// Define output language
2021-02-23 18:59:19 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
2017-10-07 13:09:31 +02:00
$outputlangs = $langs ;
$newlang = '' ;
2021-02-23 18:59:19 +01:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) {
$newlang = GETPOST ( 'lang_id' , 'aZ09' );
}
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) {
$newlang = $object -> thirdparty -> default_lang ;
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $newlang )) {
2017-10-07 13:09:31 +02:00
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2020-09-10 01:49:09 +02:00
$model = $object -> model_pdf ;
2017-10-07 13:09:31 +02:00
$ret = $object -> fetch ( $id ); // Reload to get new records
2019-11-12 09:46:08 +01:00
$result = $object -> generateDocument ( $model , $outputlangs , $hidedetails , $hidedesc , $hideref );
2021-02-23 18:59:19 +01:00
if ( $result < 0 ) {
dol_print_error ( $db , $result );
}
2017-10-07 13:09:31 +02:00
}
2015-01-17 19:28:27 +01:00
2019-11-12 09:46:08 +01:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $id );
2015-01-17 19:28:27 +01:00
exit ();
2020-05-21 15:05:19 +02:00
} else {
2015-01-17 19:28:27 +01:00
$db -> rollback ();
2019-11-12 09:46:08 +01:00
$action = 'create' ;
2015-01-17 19:28:27 +01:00
}
2020-05-21 15:05:19 +02:00
} else {
2015-01-18 17:13:42 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2013-07-26 15:42:32 +02:00
$db -> rollback ();
2019-11-12 09:46:08 +01:00
$action = 'create' ;
2013-07-26 15:42:32 +02:00
}
2014-09-15 11:48:50 +02:00
}
2013-04-16 11:37:51 +02:00
}
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'classifybilled' && $usercanclose ) {
// Classify billed
2018-10-08 17:40:17 +02:00
$db -> begin ();
2021-04-13 19:38:55 +02:00
$result = $object -> classifyBilled ( $user , 0 , '' );
2021-02-23 18:59:19 +01:00
if ( $result < 0 ) {
2015-04-13 13:14:13 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
$error ++ ;
}
2018-10-08 17:40:17 +02:00
2021-02-23 18:59:19 +01:00
if ( ! $error ) {
2018-10-08 17:40:17 +02:00
$db -> commit ();
2020-05-21 15:05:19 +02:00
} else {
2018-10-08 17:40:17 +02:00
$db -> rollback ();
}
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'confirm_closeas' && $usercanclose && ! GETPOST ( 'cancel' , 'alpha' )) {
// Close proposal
2019-11-12 09:46:08 +01:00
if ( ! ( GETPOST ( 'statut' , 'int' ) > 0 )) {
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " CloseAs " )), null , 'errors' );
2020-09-02 19:15:03 +02:00
$action = 'closeas' ;
2021-04-13 19:38:55 +02:00
} elseif ( GETPOST ( 'statut' , 'int' ) == $object :: STATUS_SIGNED || GETPOST ( 'statut' , 'int' ) == $object :: STATUS_NOTSIGNED ) {
2015-01-17 19:28:27 +01:00
// prevent browser refresh from closing proposal several times
2021-02-23 18:59:19 +01:00
if ( $object -> statut == $object :: STATUS_VALIDATED ) {
2018-10-08 17:40:17 +02:00
$db -> begin ();
2021-04-13 19:38:55 +02:00
$result = $object -> closeProposal ( $user , GETPOST ( 'statut' , 'int' ), GETPOST ( 'note_private' , 'restricthtml' ));
2021-02-23 18:59:19 +01:00
if ( $result < 0 ) {
2015-04-13 13:14:13 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
$error ++ ;
}
2018-10-08 17:40:17 +02:00
2021-09-30 12:41:07 +02:00
$deposit = null ;
2022-05-09 09:26:10 +02:00
$locationTarget = '' ;
2021-09-30 12:41:07 +02:00
2022-05-09 15:57:10 +02:00
$deposit_percent_from_payment_terms = getDictionaryValue ( 'c_payment_term' , 'deposit_percent' , $object -> cond_reglement_id );
2021-09-30 12:57:00 +02:00
if (
2021-10-04 18:09:24 +02:00
! $error && GETPOST ( 'statut' , 'int' ) == $object :: STATUS_SIGNED && GETPOST ( 'generate_deposit' , 'alpha' ) == 'on'
2022-06-11 09:46:28 +02:00
&& ! empty ( $deposit_percent_from_payment_terms ) && isModEnabled ( 'facture' ) && ! empty ( $user -> rights -> facture -> creer )
2021-09-30 12:57:00 +02:00
) {
2021-10-05 14:57:14 +02:00
require_once DOL_DOCUMENT_ROOT . '/compta/facture/class/facture.class.php' ;
2021-10-04 18:09:24 +02:00
$date = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'datefmonth' , 'int' ), GETPOST ( 'datefday' , 'int' ), GETPOST ( 'datefyear' , 'int' ));
$forceFields = array ();
if ( GETPOSTISSET ( 'date_pointoftax' )) {
$forceFields [ 'date_pointoftax' ] = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'date_pointoftaxmonth' , 'int' ), GETPOST ( 'date_pointoftaxday' , 'int' ), GETPOST ( 'date_pointoftaxyear' , 'int' ));
}
$deposit = Facture :: createDepositFromOrigin ( $object , $date , GETPOST ( 'cond_reglement_id' , 'int' ), $user , 0 , GETPOST ( 'validate_generated_deposit' , 'alpha' ) == 'on' , $forceFields );
2021-09-30 12:41:07 +02:00
if ( $deposit ) {
setEventMessage ( 'DepositGenerated' );
$locationTarget = DOL_URL_ROOT . '/compta/facture/card.php?id=' . $deposit -> id ;
} else {
$error ++ ;
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
}
2021-02-23 18:59:19 +01:00
if ( ! $error ) {
2018-10-08 17:40:17 +02:00
$db -> commit ();
2022-05-09 09:26:10 +02:00
2021-09-30 12:41:07 +02:00
if ( $deposit && empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
$ret = $deposit -> fetch ( $deposit -> id ); // Reload to get new records
$outputlangs = $langs ;
2021-10-04 15:06:52 +02:00
if ( $conf -> global -> MAIN_MULTILANGS ) {
2021-09-30 12:41:07 +02:00
$outputlangs = new Translate ( '' , $conf );
$outputlangs -> setDefaultLang ( $deposit -> thirdparty -> default_lang );
$outputlangs -> load ( 'products' );
}
$result = $deposit -> generateDocument ( $deposit -> model_pdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
if ( $result < 0 ) {
setEventMessages ( $deposit -> error , $deposit -> errors , 'errors' );
}
}
2022-05-09 09:26:10 +02:00
if ( $locationTarget ) {
header ( 'Location: ' . $locationTarget );
exit ;
}
2020-05-21 15:05:19 +02:00
} else {
2018-10-08 17:40:17 +02:00
$db -> rollback ();
2022-05-09 09:26:10 +02:00
$action = '' ;
2018-10-08 17:40:17 +02:00
}
2015-01-17 19:28:27 +01:00
}
2012-07-29 12:54:19 +02:00
}
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'confirm_reopen' && $usercanclose && ! GETPOST ( 'cancel' , 'alpha' )) {
// Reopen proposal
2015-01-18 18:44:22 +01:00
// prevent browser refresh from reopening proposal several times
2021-02-23 18:59:19 +01:00
if ( $object -> statut == Propal :: STATUS_SIGNED || $object -> statut == Propal :: STATUS_NOTSIGNED || $object -> statut == Propal :: STATUS_BILLED ) {
2018-10-08 17:40:17 +02:00
$db -> begin ();
2019-11-12 09:46:08 +01:00
$result = $object -> reopen ( $user , 1 );
2021-02-23 18:59:19 +01:00
if ( $result < 0 ) {
2015-04-13 13:14:13 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
$error ++ ;
}
2018-10-08 17:40:17 +02:00
2021-02-23 18:59:19 +01:00
if ( ! $error ) {
2018-10-08 17:40:17 +02:00
$db -> commit ();
2020-05-21 15:05:19 +02:00
} else {
2018-10-08 17:40:17 +02:00
$db -> rollback ();
}
2015-01-18 18:44:22 +01:00
}
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'import_lines_from_object'
2020-10-31 14:32:18 +01:00
&& $user -> rights -> propal -> creer
&& $object -> statut == Propal :: STATUS_DRAFT
2021-02-23 18:59:19 +01:00
) {
2021-03-01 20:37:16 +01:00
// add lines from objectlinked
2020-10-31 14:32:18 +01:00
$fromElement = GETPOST ( 'fromelement' );
$fromElementid = GETPOST ( 'fromelementid' );
$importLines = GETPOST ( 'line_checkbox' );
2021-02-23 18:59:19 +01:00
if ( ! empty ( $importLines ) && is_array ( $importLines ) && ! empty ( $fromElement ) && ctype_alpha ( $fromElement ) && ! empty ( $fromElementid )) {
if ( $fromElement == 'commande' ) {
2020-10-31 14:32:18 +01:00
dol_include_once ( '/' . $fromElement . '/class/' . $fromElement . '.class.php' );
$lineClassName = 'OrderLine' ;
2021-02-23 18:59:19 +01:00
} elseif ( $fromElement == 'propal' ) {
2020-10-31 14:32:18 +01:00
dol_include_once ( '/comm/' . $fromElement . '/class/' . $fromElement . '.class.php' );
$lineClassName = 'PropaleLigne' ;
}
$nextRang = count ( $object -> lines ) + 1 ;
$importCount = 0 ;
$error = 0 ;
2021-02-23 18:59:19 +01:00
foreach ( $importLines as $lineId ) {
2020-10-31 14:32:18 +01:00
$lineId = intval ( $lineId );
$originLine = new $lineClassName ( $db );
2021-02-23 18:59:19 +01:00
if ( intval ( $fromElementid ) > 0 && $originLine -> fetch ( $lineId ) > 0 ) {
2020-10-31 14:32:18 +01:00
$originLine -> fetch_optionals ();
$desc = $originLine -> desc ;
$pu_ht = $originLine -> subprice ;
$qty = $originLine -> qty ;
$txtva = $originLine -> tva_tx ;
$txlocaltax1 = $originLine -> localtax1_tx ;
$txlocaltax2 = $originLine -> localtax2_tx ;
$fk_product = $originLine -> fk_product ;
$remise_percent = $originLine -> remise_percent ;
$date_start = $originLine -> date_start ;
$date_end = $originLine -> date_end ;
$ventil = 0 ;
$info_bits = $originLine -> info_bits ;
$fk_remise_except = $originLine -> fk_remise_except ;
$price_base_type = 'HT' ;
$pu_ttc = 0 ;
$type = $originLine -> product_type ;
$rang = $nextRang ++ ;
$special_code = $originLine -> special_code ;
$origin = $originLine -> element ;
$origin_id = $originLine -> id ;
$fk_parent_line = 0 ;
$fk_fournprice = $originLine -> fk_fournprice ;
$pa_ht = $originLine -> pa_ht ;
$label = $originLine -> label ;
$array_options = $originLine -> array_options ;
$situation_percent = 100 ;
$fk_prev_id = '' ;
$fk_unit = $originLine -> fk_unit ;
$pu_ht_devise = $originLine -> multicurrency_subprice ;
$res = $object -> addline ( $desc , $pu_ht , $qty , $txtva , $txlocaltax1 , $txlocaltax2 , $fk_product , $remise_percent , $price_base_type , $pu_ttc , $info_bits , $type , $rang , $special_code , $fk_parent_line , $fk_fournprice , $pa_ht , $label , $date_start , $date_end , $array_options , $fk_unit , $origin , $origin_id , $pu_ht_devise , $fk_remise_except );
if ( $res > 0 ) {
$importCount ++ ;
} else {
$error ++ ;
}
} else {
$error ++ ;
}
}
2021-02-23 18:59:19 +01:00
if ( $error ) {
2020-10-31 14:32:18 +01:00
setEventMessages ( $langs -> trans ( 'ErrorsOnXLines' , $error ), null , 'errors' );
}
}
2018-10-25 21:39:22 +02:00
}
2010-01-13 11:30:33 +01:00
2015-01-18 18:44:22 +01:00
include DOL_DOCUMENT_ROOT . '/core/actions_printing.inc.php' ;
2012-07-29 12:54:19 +02:00
2015-01-18 17:13:42 +01:00
// Actions to send emails
2019-11-12 09:46:08 +01:00
$actiontypecode = 'AC_OTH_AUTO' ;
2019-12-02 09:38:16 +01:00
$triggersendname = 'PROPAL_SENTBYMAIL' ;
2019-11-12 09:46:08 +01:00
$autocopy = 'MAIN_MAIL_AUTOCOPY_PROPOSAL_TO' ;
$trackid = 'pro' . $object -> id ;
2015-01-18 17:13:42 +01:00
include DOL_DOCUMENT_ROOT . '/core/actions_sendmails.inc.php' ;
2008-08-12 20:20:18 +02:00
2015-01-17 19:28:27 +01:00
// Go back to draft
2021-02-23 18:59:19 +01:00
if ( $action == 'modif' && $usercancreate ) {
2019-03-15 19:01:40 +01:00
$object -> setDraft ( $user );
2008-08-12 20:20:18 +02:00
2021-02-23 18:59:19 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
2015-01-17 19:28:27 +01:00
// Define output language
$outputlangs = $langs ;
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS )) {
2015-01-17 19:28:27 +01:00
$outputlangs = new Translate ( " " , $conf );
2019-01-27 11:55:16 +01:00
$newlang = ( GETPOST ( 'lang_id' , 'aZ09' ) ? GETPOST ( 'lang_id' , 'aZ09' ) : $object -> thirdparty -> default_lang );
2015-01-17 19:28:27 +01:00
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
2021-02-23 18:59:19 +01:00
if ( $ret > 0 ) {
$object -> fetch_thirdparty ();
}
2020-09-10 01:49:09 +02:00
$object -> generateDocument ( $object -> model_pdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-10-05 15:12:17 +02:00
}
2020-05-21 15:05:19 +02:00
} elseif ( $action == " setabsolutediscount " && $usercancreate ) {
2021-03-25 16:59:47 +01:00
if ( GETPOST ( " remise_id " , " int " )) {
2015-01-17 19:28:27 +01:00
if ( $object -> id > 0 ) {
2021-03-25 16:59:47 +01:00
$result = $object -> insert_discount ( GETPOST ( " remise_id " , " int " ));
2015-01-17 19:28:27 +01:00
if ( $result < 0 ) {
2015-11-07 21:56:21 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-17 19:28:27 +01:00
}
2008-08-12 20:20:18 +02:00
}
}
2021-12-25 17:08:40 +01:00
} elseif ( $action == 'addline' && GETPOST ( 'submitforalllines' , 'alpha' ) && GETPOST ( 'vatforalllines' , 'alpha' ) !== '' && $usercancreate ) {
2020-07-06 22:48:22 +02:00
// Define vat_rate
$vat_rate = ( GETPOST ( 'vatforalllines' ) ? GETPOST ( 'vatforalllines' ) : 0 );
$vat_rate = str_replace ( '*' , '' , $vat_rate );
$localtax1_rate = get_localtax ( $vat_rate , 1 , $object -> thirdparty , $mysoc );
$localtax2_rate = get_localtax ( $vat_rate , 2 , $object -> thirdparty , $mysoc );
2020-07-07 01:29:31 +02:00
foreach ( $object -> lines as $line ) {
2020-07-06 22:48:22 +02:00
$result = $object -> updateline ( $line -> id , $line -> subprice , $line -> qty , $line -> remise_percent , $vat_rate , $localtax1_rate , $localtax2_rate , $line -> desc , 'HT' , $line -> info_bits , $line -> special_code , $line -> fk_parent_line , 0 , $line -> fk_fournprice , $line -> pa_ht , $line -> label , $line -> product_type , $line -> date_start , $line -> date_end , $line -> array_options , $line -> fk_unit , $line -> multicurrency_subprice );
}
2022-04-15 14:31:44 +02:00
} elseif ( $action == 'addline' && GETPOST ( 'submitforalllines' , 'alpha' ) && GETPOST ( 'remiseforalllines' , 'alpha' ) !== '' && $usercancreate ) {
// Define vat_rate
$remise_percent = ( GETPOST ( 'remiseforalllines' ) ? GETPOST ( 'remiseforalllines' ) : 0 );
$remise_percent = str_replace ( '*' , '' , $remise_percent );
foreach ( $object -> lines as $line ) {
$result = $object -> updateline ( $line -> id , $line -> subprice , $line -> qty , $remise_percent , $line -> tva_tx , $line -> localtax1_tx , $line -> localtax2_tx , $line -> desc , 'HT' , $line -> info_bits , $line -> special_code , $line -> fk_parent_line , 0 , $line -> fk_fournprice , $line -> pa_ht , $line -> label , $line -> product_type , $line -> date_start , $line -> date_end , $line -> array_options , $line -> fk_unit , $line -> multicurrency_subprice );
2020-07-06 22:48:22 +02:00
}
} elseif ( $action == 'addline' && $usercancreate ) { // Add line
2015-01-17 19:28:27 +01:00
// Set if we used free entry or predefined product
2019-11-12 09:46:08 +01:00
$predef = '' ;
2020-10-28 16:37:41 +01:00
$product_desc = ( GETPOSTISSET ( 'dp_desc' ) ? GETPOST ( 'dp_desc' , 'restricthtml' ) : '' );
2021-03-02 23:09:55 +01:00
$price_ht = price2num ( GETPOST ( 'price_ht' ), 'MU' , 2 );
$price_ht_devise = price2num ( GETPOST ( 'multicurrency_price_ht' ), 'CU' , 2 );
2016-07-23 16:37:21 +02:00
$prod_entry_mode = GETPOST ( 'prod_entry_mode' );
2021-02-23 18:59:19 +01:00
if ( $prod_entry_mode == 'free' ) {
2019-11-12 09:46:08 +01:00
$idprod = 0 ;
2022-05-21 09:31:33 +02:00
$tva_tx = ( GETPOST ( 'tva_tx' ) ? price2num ( preg_replace ( '/\s*\(.*\)/' , '' , GETPOST ( 'tva_tx' ))) : 0 );
2020-05-21 15:05:19 +02:00
} else {
2019-11-12 09:46:08 +01:00
$idprod = GETPOST ( 'idprod' , 'int' );
2015-01-17 19:28:27 +01:00
$tva_tx = '' ;
}
2014-05-05 14:30:08 +02:00
2021-09-08 22:00:16 +02:00
$qty = price2num ( GETPOST ( 'qty' . $predef , 'alpha' ), 'MS' , 2 );
$remise_percent = price2num ( GETPOST ( 'remise_percent' . $predef ), '' , 2 );
2021-02-23 18:59:19 +01:00
if ( empty ( $remise_percent )) {
$remise_percent = 0 ;
}
2015-01-17 19:28:27 +01:00
// Extrafields
2019-10-06 14:41:52 +02:00
$extralabelsline = $extrafields -> fetch_name_optionals_label ( $object -> table_element_line );
$array_options = $extrafields -> getOptionalsFromPost ( $object -> table_element_line , $predef );
2015-01-17 19:28:27 +01:00
// Unset extrafield
if ( is_array ( $extralabelsline )) {
// Get extra fields
foreach ( $extralabelsline as $key => $value ) {
2019-11-12 09:46:08 +01:00
unset ( $_POST [ " options_ " . $key ]);
2015-01-17 19:28:27 +01:00
}
2013-06-10 16:05:41 +02:00
}
2021-07-04 21:02:02 +02:00
if ( $prod_entry_mode == 'free' && ( empty ( $idprod ) || $idprod < 0 ) && GETPOST ( 'type' ) < 0 ) {
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )), null , 'errors' );
2019-11-12 09:46:08 +01:00
$error ++ ;
2013-06-10 16:05:41 +02:00
}
2013-06-19 10:22:46 +02:00
2021-07-04 21:02:02 +02:00
if ( $prod_entry_mode == 'free' && ( empty ( $idprod ) || $idprod < 0 ) && $price_ht === '' && $price_ht_devise === '' ) { // Unit price can be 0 but not ''. Also price can be negative for proposal.
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " UnitPriceHT " )), null , 'errors' );
2019-11-12 09:46:08 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2021-07-04 21:02:02 +02:00
if ( $prod_entry_mode == 'free' && ( empty ( $idprod ) || $idprod < 0 ) && empty ( $product_desc )) {
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Description " )), null , 'errors' );
2019-11-12 09:46:08 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2009-06-04 02:59:06 +02:00
2017-02-08 12:37:38 +01:00
if ( ! $error && ! empty ( $conf -> variants -> enabled ) && $prod_entry_mode != 'free' ) {
2016-07-23 16:37:21 +02:00
if ( $combinations = GETPOST ( 'combinations' , 'array' )) {
//Check if there is a product with the given combination
$prodcomb = new ProductCombination ( $db );
if ( $res = $prodcomb -> fetchByProductCombination2ValuePairs ( $idprod , $combinations )) {
$idprod = $res -> fk_product_child ;
} else {
2018-07-24 18:28:56 +02:00
setEventMessages ( $langs -> trans ( 'ErrorProductCombinationNotFound' ), null , 'errors' );
2019-11-12 09:46:08 +01:00
$error ++ ;
2016-07-23 16:37:21 +02:00
}
}
}
2021-07-04 21:02:02 +02:00
if ( ! $error && ( $qty >= 0 ) && ( ! empty ( $product_desc ) || ( ! empty ( $idprod ) && $idprod > 0 ))) {
2015-01-17 19:28:27 +01:00
$pu_ht = 0 ;
$pu_ttc = 0 ;
$price_min = 0 ;
$price_base_type = ( GETPOST ( 'price_base_type' , 'alpha' ) ? GETPOST ( 'price_base_type' , 'alpha' ) : 'HT' );
$db -> begin ();
2017-10-07 13:09:31 +02:00
// $tva_tx can be 'x.x (XXX)'
2017-06-07 16:44:04 +02:00
2015-01-17 19:28:27 +01:00
// Ecrase $pu par celui du produit
// Ecrase $desc par celui du produit
2017-03-04 21:45:19 +01:00
// Ecrase $tva_tx par celui du produit
2015-02-26 14:15:33 +01:00
// Replaces $fk_unit with the product unit
2021-07-04 21:02:02 +02:00
if ( ! empty ( $idprod ) && $idprod > 0 ) {
2015-01-17 19:28:27 +01:00
$prod = new Product ( $db );
$prod -> fetch ( $idprod );
$label = (( GETPOST ( 'product_label' ) && GETPOST ( 'product_label' ) != $prod -> label ) ? GETPOST ( 'product_label' ) : '' );
2017-03-04 21:45:19 +01:00
// Update if prices fields are defined
2017-03-04 14:18:04 +01:00
$tva_tx = get_default_tva ( $mysoc , $object -> thirdparty , $prod -> id );
$tva_npr = get_default_npr ( $mysoc , $object -> thirdparty , $prod -> id );
2021-02-23 18:59:19 +01:00
if ( empty ( $tva_tx )) {
$tva_npr = 0 ;
}
2017-06-07 16:44:04 +02:00
2018-01-09 14:20:47 +01:00
// Price unique per product
2017-03-04 14:18:04 +01:00
$pu_ht = $prod -> price ;
$pu_ttc = $prod -> price_ttc ;
$price_min = $prod -> price_min ;
$price_base_type = $prod -> price_base_type ;
2015-01-17 19:28:27 +01:00
2018-01-09 14:20:47 +01:00
// If price per segment
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES ) && $object -> thirdparty -> price_level ) {
2017-10-07 13:09:31 +02:00
$pu_ht = $prod -> multiprices [ $object -> thirdparty -> price_level ];
2017-03-04 14:18:04 +01:00
$pu_ttc = $prod -> multiprices_ttc [ $object -> thirdparty -> price_level ];
$price_min = $prod -> multiprices_min [ $object -> thirdparty -> price_level ];
$price_base_type = $prod -> multiprices_base_type [ $object -> thirdparty -> price_level ];
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES_USE_VAT_PER_LEVEL )) { // using this option is a bug. kept for backward compatibility
if ( isset ( $prod -> multiprices_tva_tx [ $object -> thirdparty -> price_level ])) {
$tva_tx = $prod -> multiprices_tva_tx [ $object -> thirdparty -> price_level ];
}
if ( isset ( $prod -> multiprices_recuperableonly [ $object -> thirdparty -> price_level ])) {
$tva_npr = $prod -> multiprices_recuperableonly [ $object -> thirdparty -> price_level ];
}
2015-01-17 19:28:27 +01:00
}
2021-03-01 20:37:16 +01:00
} elseif ( ! empty ( $conf -> global -> PRODUIT_CUSTOMER_PRICES )) {
// If price per customer
2019-11-12 09:46:08 +01:00
require_once DOL_DOCUMENT_ROOT . '/product/class/productcustomerprice.class.php' ;
2014-02-26 15:49:29 +01:00
2017-03-04 14:18:04 +01:00
$prodcustprice = new Productcustomerprice ( $db );
2014-02-26 15:49:29 +01:00
2017-05-12 13:12:17 +02:00
$filter = array ( 't.fk_product' => $prod -> id , 't.fk_soc' => $object -> thirdparty -> id );
2014-02-26 15:49:29 +01:00
2017-03-04 14:18:04 +01:00
$result = $prodcustprice -> fetch_all ( '' , '' , 0 , 0 , $filter );
if ( $result ) {
2017-10-07 13:09:31 +02:00
// If there is some prices specific to the customer
2017-03-04 14:18:04 +01:00
if ( count ( $prodcustprice -> lines ) > 0 ) {
2017-03-04 21:45:19 +01:00
$pu_ht = price ( $prodcustprice -> lines [ 0 ] -> price );
$pu_ttc = price ( $prodcustprice -> lines [ 0 ] -> price_ttc );
2020-12-10 15:08:36 +01:00
$price_min = price ( $prodcustprice -> lines [ 0 ] -> price_min );
2017-03-04 21:45:19 +01:00
$price_base_type = $prodcustprice -> lines [ 0 ] -> price_base_type ;
2019-11-12 09:46:08 +01:00
$tva_tx = ( $prodcustprice -> lines [ 0 ] -> default_vat_code ? $prodcustprice -> lines [ 0 ] -> tva_tx . ' (' . $prodcustprice -> lines [ 0 ] -> default_vat_code . ' )' : $prodcustprice -> lines [ 0 ] -> tva_tx );
2021-02-23 18:59:19 +01:00
if ( $prodcustprice -> lines [ 0 ] -> default_vat_code && ! preg_match ( '/\(.*\)/' , $tva_tx )) {
$tva_tx .= ' (' . $prodcustprice -> lines [ 0 ] -> default_vat_code . ')' ;
}
2017-11-13 14:02:17 +01:00
$tva_npr = $prodcustprice -> lines [ 0 ] -> recuperableonly ;
2021-02-23 18:59:19 +01:00
if ( empty ( $tva_tx )) {
$tva_npr = 0 ;
}
2014-02-23 16:16:47 +01:00
}
}
2021-03-01 20:37:16 +01:00
} elseif ( ! empty ( $conf -> global -> PRODUIT_CUSTOMER_PRICES_BY_QTY )) {
// If price per quantity
2021-02-23 18:59:19 +01:00
if ( $prod -> prices_by_qty [ 0 ]) { // yes, this product has some prices per quantity
2018-01-09 14:20:47 +01:00
// Search the correct price into loaded array product_price_by_qty using id of array retrieved into POST['pqp'].
2019-01-27 11:55:16 +01:00
$pqp = GETPOST ( 'pbq' , 'int' );
2018-01-09 14:20:47 +01:00
// Search price into product_price_by_qty from $prod->id
2021-02-23 18:59:19 +01:00
foreach ( $prod -> prices_by_qty_list [ 0 ] as $priceforthequantityarray ) {
if ( $priceforthequantityarray [ 'rowid' ] != $pqp ) {
continue ;
}
2018-01-09 14:20:47 +01:00
// We found the price
2021-02-23 18:59:19 +01:00
if ( $priceforthequantityarray [ 'price_base_type' ] == 'HT' ) {
2018-01-09 14:20:47 +01:00
$pu_ht = $priceforthequantityarray [ 'unitprice' ];
2020-05-21 15:05:19 +02:00
} else {
2018-01-09 14:20:47 +01:00
$pu_ttc = $priceforthequantityarray [ 'unitprice' ];
}
// Note: the remise_percent or price by qty is used to set data on form, so we will use value from POST.
break ;
}
}
2021-03-01 20:37:16 +01:00
} elseif ( ! empty ( $conf -> global -> PRODUIT_CUSTOMER_PRICES_BY_QTY_MULTIPRICES )) {
// If price per quantity and customer
2021-02-23 18:59:19 +01:00
if ( $prod -> prices_by_qty [ $object -> thirdparty -> price_level ]) { // yes, this product has some prices per quantity
2018-05-23 17:05:08 +02:00
// Search the correct price into loaded array product_price_by_qty using id of array retrieved into POST['pqp'].
2019-01-27 11:55:16 +01:00
$pqp = GETPOST ( 'pbq' , 'int' );
2018-05-23 17:05:08 +02:00
// Search price into product_price_by_qty from $prod->id
2021-02-23 18:59:19 +01:00
foreach ( $prod -> prices_by_qty_list [ $object -> thirdparty -> price_level ] as $priceforthequantityarray ) {
if ( $priceforthequantityarray [ 'rowid' ] != $pqp ) {
continue ;
}
2018-05-23 17:05:08 +02:00
// We found the price
2021-02-23 18:59:19 +01:00
if ( $priceforthequantityarray [ 'price_base_type' ] == 'HT' ) {
2018-05-23 17:05:08 +02:00
$pu_ht = $priceforthequantityarray [ 'unitprice' ];
2020-05-21 15:05:19 +02:00
} else {
2018-05-23 17:05:08 +02:00
$pu_ttc = $priceforthequantityarray [ 'unitprice' ];
}
// Note: the remise_percent or price by qty is used to set data on form, so we will use value from POST.
break ;
}
}
2018-01-09 14:20:47 +01:00
}
2012-08-18 19:05:59 +02:00
2017-03-04 21:45:19 +01:00
$tmpvat = price2num ( preg_replace ( '/\s*\(.*\)/' , '' , $tva_tx ));
$tmpprodvat = price2num ( preg_replace ( '/\s*\(.*\)/' , '' , $prod -> tva_tx ));
2017-06-07 16:44:04 +02:00
2017-03-04 21:45:19 +01:00
// if price ht is forced (ie: calculated by margin rate and cost price). TODO Why this ?
2020-09-22 14:43:09 +02:00
if ( ! empty ( $price_ht ) || $price_ht === '0' ) {
2017-03-04 14:18:04 +01:00
$pu_ht = price2num ( $price_ht , 'MU' );
2017-03-04 21:45:19 +01:00
$pu_ttc = price2num ( $pu_ht * ( 1 + ( $tmpvat / 100 )), 'MU' );
2021-03-01 20:37:16 +01:00
} elseif ( $tmpvat != $tmpprodvat ) {
// 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).
2017-03-04 14:18:04 +01:00
if ( $price_base_type != 'HT' ) {
2017-03-04 21:45:19 +01:00
$pu_ht = price2num ( $pu_ttc / ( 1 + ( $tmpvat / 100 )), 'MU' );
2017-03-04 14:18:04 +01:00
} else {
2017-03-04 21:45:19 +01:00
$pu_ttc = price2num ( $pu_ht * ( 1 + ( $tmpvat / 100 )), 'MU' );
2015-01-17 19:28:27 +01:00
}
2017-03-04 14:18:04 +01:00
}
2010-06-08 10:27:57 +02:00
2017-03-04 14:18:04 +01:00
$desc = '' ;
// Define output language
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && ! empty ( $conf -> global -> PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE )) {
2017-03-04 14:18:04 +01:00
$outputlangs = $langs ;
$newlang = '' ;
2021-02-23 18:59:19 +01:00
if ( empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) {
2019-01-27 11:55:16 +01:00
$newlang = GETPOST ( 'lang_id' , 'aZ09' );
2021-02-23 18:59:19 +01:00
}
if ( empty ( $newlang )) {
2017-03-04 14:18:04 +01:00
$newlang = $object -> thirdparty -> default_lang ;
2021-02-23 18:59:19 +01:00
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $newlang )) {
2017-03-04 14:18:04 +01:00
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
2015-01-17 19:28:27 +01:00
}
2013-12-14 17:40:23 +01:00
2020-10-25 19:13:09 +01:00
$desc = ( ! empty ( $prod -> multilangs [ $outputlangs -> defaultlang ][ " description " ])) ? $prod -> multilangs [ $outputlangs -> defaultlang ][ " description " ] : $prod -> description ;
2017-03-04 14:18:04 +01:00
} else {
$desc = $prod -> description ;
}
2021-01-07 12:43:15 +01:00
2021-01-07 12:39:51 +01:00
//If text set in desc is the same as product description (as now it's preloaded) whe add it only one time
2020-10-28 16:37:41 +01:00
if ( $product_desc == $desc && ! empty ( $conf -> global -> PRODUIT_AUTOFILL_DESC )) {
2020-10-25 19:13:09 +01:00
$product_desc = '' ;
}
2021-02-23 18:59:19 +01:00
if ( ! empty ( $product_desc ) && ! empty ( $conf -> global -> MAIN_NO_CONCAT_DESCRIPTION )) {
$desc = $product_desc ;
} else {
$desc = dol_concatdesc ( $desc , $product_desc , '' , ! empty ( $conf -> global -> MAIN_CHANGE_ORDER_CONCAT_DESCRIPTION ));
}
2015-01-17 19:28:27 +01:00
2017-03-04 14:18:04 +01:00
// Add dimensions into product description
/* if ( empty ( $conf -> global -> MAIN_PRODUCT_DISABLE_AUTOADD_DIM ))
{
$text = '' ;
if ( $prod -> weight ) $text .= ( $text ? " \n " : " " ) . $outputlangs -> trans ( " Weight " ) . ': ' . $prod -> weight . ' ' . $prod -> weight_units ;
if ( $prod -> length ) $text .= ( $text ? " \n " : " " ) . $outputlangs -> trans ( " Length " ) . ': ' . $prod -> length . ' ' . $prod -> length_units ;
if ( $prod -> surface ) $text .= ( $text ? " \n " : " " ) . $outputlangs -> trans ( " Surface " ) . ': ' . $prod -> surface . ' ' . $prod -> surface_units ;
if ( $prod -> volume ) $text .= ( $text ? " \n " : " " ) . $outputlangs -> trans ( " Volume " ) . ': ' . $prod -> volume . ' ' . $prod -> volume_units ;
2015-03-11 14:55:45 +01:00
2017-03-04 14:18:04 +01:00
$desc = dol_concatdesc ( $desc , $text );
} */
2015-03-11 14:55:45 +01:00
2017-03-04 14:18:04 +01:00
// Add custom code and origin country into description
2021-02-23 18:59:19 +01:00
if ( empty ( $conf -> global -> MAIN_PRODUCT_DISABLE_CUSTOMCOUNTRYCODE ) && ( ! empty ( $prod -> customcode ) || ! empty ( $prod -> country_code ))) {
2018-10-12 18:19:17 +02:00
$tmptxt = '(' ;
2017-12-08 10:41:14 +01:00
// Define output language
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS ) && ! empty ( $conf -> global -> PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE )) {
2017-12-08 10:41:14 +01:00
$outputlangs = $langs ;
$newlang = '' ;
2021-02-23 18:59:19 +01:00
if ( empty ( $newlang ) && GETPOST ( 'lang_id' , 'alpha' )) {
2019-01-27 11:55:16 +01:00
$newlang = GETPOST ( 'lang_id' , 'alpha' );
2021-02-23 18:59:19 +01:00
}
if ( empty ( $newlang )) {
2017-12-08 10:41:14 +01:00
$newlang = $object -> thirdparty -> default_lang ;
2021-02-23 18:59:19 +01:00
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $newlang )) {
2017-12-08 10:41:14 +01:00
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
2017-12-08 11:00:23 +01:00
$outputlangs -> load ( 'products' );
2017-12-08 10:41:14 +01:00
}
2021-02-23 18:59:19 +01:00
if ( ! empty ( $prod -> customcode )) {
2019-11-12 09:46:08 +01:00
$tmptxt .= $outputlangs -> transnoentitiesnoconv ( " CustomCode " ) . ': ' . $prod -> customcode ;
2021-02-23 18:59:19 +01:00
}
if ( ! empty ( $prod -> customcode ) && ! empty ( $prod -> country_code )) {
2017-12-08 10:41:14 +01:00
$tmptxt .= ' - ' ;
2021-02-23 18:59:19 +01:00
}
if ( ! empty ( $prod -> country_code )) {
2019-11-12 09:46:08 +01:00
$tmptxt .= $outputlangs -> transnoentitiesnoconv ( " CountryOrigin " ) . ': ' . getCountry ( $prod -> country_code , 0 , $db , $outputlangs , 0 );
2021-02-23 18:59:19 +01:00
}
2017-12-08 10:41:14 +01:00
} else {
2021-02-23 18:59:19 +01:00
if ( ! empty ( $prod -> customcode )) {
2019-11-12 09:46:08 +01:00
$tmptxt .= $langs -> transnoentitiesnoconv ( " CustomCode " ) . ': ' . $prod -> customcode ;
2021-02-23 18:59:19 +01:00
}
if ( ! empty ( $prod -> customcode ) && ! empty ( $prod -> country_code )) {
2017-12-08 10:41:14 +01:00
$tmptxt .= ' - ' ;
2021-02-23 18:59:19 +01:00
}
if ( ! empty ( $prod -> country_code )) {
2019-11-12 09:46:08 +01:00
$tmptxt .= $langs -> transnoentitiesnoconv ( " CountryOrigin " ) . ': ' . getCountry ( $prod -> country_code , 0 , $db , $langs , 0 );
2021-02-23 18:59:19 +01:00
}
2017-12-08 10:41:14 +01:00
}
2017-03-04 14:18:04 +01:00
$tmptxt .= ')' ;
$desc = dol_concatdesc ( $desc , $tmptxt );
}
2012-09-16 20:23:57 +02:00
2015-01-17 19:28:27 +01:00
$type = $prod -> type ;
2015-02-26 14:15:33 +01:00
$fk_unit = $prod -> fk_unit ;
2015-01-17 19:28:27 +01:00
} else {
$pu_ht = price2num ( $price_ht , 'MU' );
$pu_ttc = price2num ( GETPOST ( 'price_ttc' ), 'MU' );
$tva_npr = ( preg_match ( '/\*/' , $tva_tx ) ? 1 : 0 );
$tva_tx = str_replace ( '*' , '' , $tva_tx );
$label = ( GETPOST ( 'product_label' ) ? GETPOST ( 'product_label' ) : '' );
$desc = $product_desc ;
$type = GETPOST ( 'type' );
2015-02-26 14:15:33 +01:00
2015-04-21 15:49:58 +02:00
$fk_unit = GETPOST ( 'units' , 'alpha' );
2016-12-11 00:42:52 +01:00
$pu_ht_devise = price2num ( $price_ht_devise , 'MU' );
2015-01-17 19:28:27 +01:00
}
2014-02-26 15:49:29 +01:00
2015-01-17 19:28:27 +01:00
// Margin
2019-11-12 09:46:08 +01:00
$fournprice = price2num ( GETPOST ( 'fournprice' . $predef ) ? GETPOST ( 'fournprice' . $predef ) : '' );
$buyingprice = price2num ( GETPOST ( 'buying_price' . $predef ) != '' ? GETPOST ( 'buying_price' . $predef ) : '' ); // If buying_price is '0', we muste keep this value
2014-02-26 15:49:29 +01:00
2019-11-12 09:46:08 +01:00
$date_start = dol_mktime ( GETPOST ( 'date_start' . $predef . 'hour' ), GETPOST ( 'date_start' . $predef . 'min' ), GETPOST ( 'date_start' . $predef . 'sec' ), GETPOST ( 'date_start' . $predef . 'month' ), GETPOST ( 'date_start' . $predef . 'day' ), GETPOST ( 'date_start' . $predef . 'year' ));
$date_end = dol_mktime ( GETPOST ( 'date_end' . $predef . 'hour' ), GETPOST ( 'date_end' . $predef . 'min' ), GETPOST ( 'date_end' . $predef . 'sec' ), GETPOST ( 'date_end' . $predef . 'month' ), GETPOST ( 'date_end' . $predef . 'day' ), GETPOST ( 'date_end' . $predef . 'year' ));
2012-08-18 19:05:59 +02:00
2015-01-17 19:28:27 +01:00
// Local Taxes
2016-02-27 11:32:49 +01:00
$localtax1_tx = get_localtax ( $tva_tx , 1 , $object -> thirdparty , $tva_npr );
$localtax2_tx = get_localtax ( $tva_tx , 2 , $object -> thirdparty , $tva_npr );
2013-08-12 15:34:09 +02:00
2015-01-17 19:28:27 +01:00
$info_bits = 0 ;
2021-02-23 18:59:19 +01:00
if ( $tva_npr ) {
2015-01-17 19:28:27 +01:00
$info_bits |= 0x01 ;
2021-02-23 18:59:19 +01:00
}
2012-08-22 17:42:40 +02:00
2019-11-12 09:46:08 +01:00
if ((( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && empty ( $user -> rights -> produit -> ignore_price_min_advance )) || empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS )) && ( ! empty ( $price_min ) && ( price2num ( $pu_ht ) * ( 1 - price2num ( $remise_percent ) / 100 ) < price2num ( $price_min )))) {
2015-01-17 19:28:27 +01:00
$mesg = $langs -> trans ( " CantBeLessThanMinPrice " , price ( price2num ( $price_min , 'MU' ), 0 , $langs , 0 , 0 , - 1 , $conf -> currency ));
2015-11-07 21:56:21 +01:00
setEventMessages ( $mesg , null , 'errors' );
2015-01-17 19:28:27 +01:00
} else {
// Insert line
2021-11-22 16:13:46 +01:00
$result = $object -> addline ( $desc , $pu_ht , $qty , $tva_tx , $localtax1_tx , $localtax2_tx , $idprod , $remise_percent , $price_base_type , $pu_ttc , $info_bits , $type , min ( $rank , count ( $object -> lines ) + 1 ), 0 , GETPOST ( 'fk_parent_line' ), $fournprice , $buyingprice , $label , $date_start , $date_end , $array_options , $fk_unit , '' , 0 , $pu_ht_devise );
2012-09-16 20:23:57 +02:00
2015-01-17 19:28:27 +01:00
if ( $result > 0 ) {
$db -> commit ();
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
// Define output language
$outputlangs = $langs ;
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS )) {
2015-01-17 19:28:27 +01:00
$outputlangs = new Translate ( " " , $conf );
2019-01-27 11:55:16 +01:00
$newlang = ( GETPOST ( 'lang_id' , 'aZ09' ) ? GETPOST ( 'lang_id' , 'aZ09' ) : $object -> thirdparty -> default_lang );
2015-01-17 19:28:27 +01:00
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
2020-06-30 15:20:30 +02:00
if ( $ret > 0 ) {
$object -> fetch_thirdparty ();
}
2020-09-10 01:49:09 +02:00
$object -> generateDocument ( $object -> model_pdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2012-08-25 15:21:34 +02:00
}
2015-01-18 17:13:42 +01:00
unset ( $_POST [ 'prod_entry_mode' ]);
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
unset ( $_POST [ 'remise_percent' ]);
unset ( $_POST [ 'price_ht' ]);
2016-04-12 14:10:27 +02:00
unset ( $_POST [ 'multicurrency_price_ht' ]);
2015-01-18 17:13:42 +01:00
unset ( $_POST [ 'price_ttc' ]);
unset ( $_POST [ 'tva_tx' ]);
unset ( $_POST [ 'product_ref' ]);
unset ( $_POST [ 'product_label' ]);
unset ( $_POST [ 'product_desc' ]);
unset ( $_POST [ 'fournprice' ]);
unset ( $_POST [ 'buying_price' ]);
unset ( $_POST [ 'np_marginRate' ]);
unset ( $_POST [ 'np_markRate' ]);
unset ( $_POST [ 'dp_desc' ]);
unset ( $_POST [ 'idprod' ]);
2015-02-26 14:15:33 +01:00
unset ( $_POST [ 'units' ]);
2015-01-18 17:13:42 +01:00
2017-10-07 13:09:31 +02:00
unset ( $_POST [ 'date_starthour' ]);
unset ( $_POST [ 'date_startmin' ]);
unset ( $_POST [ 'date_startsec' ]);
unset ( $_POST [ 'date_startday' ]);
unset ( $_POST [ 'date_startmonth' ]);
unset ( $_POST [ 'date_startyear' ]);
unset ( $_POST [ 'date_endhour' ]);
unset ( $_POST [ 'date_endmin' ]);
unset ( $_POST [ 'date_endsec' ]);
unset ( $_POST [ 'date_endday' ]);
unset ( $_POST [ 'date_endmonth' ]);
unset ( $_POST [ 'date_endyear' ]);
2014-02-23 17:01:51 +01:00
} else {
2015-01-17 19:28:27 +01:00
$db -> rollback ();
2012-02-06 17:18:19 +01:00
2015-11-07 21:56:21 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2013-04-16 11:37:51 +02:00
}
2015-01-17 19:28:27 +01:00
}
}
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'updateline' && $usercancreate && GETPOST ( 'save' )) {
// Update a line within proposal
2015-01-17 19:28:27 +01:00
// Define info_bits
$info_bits = 0 ;
2021-02-23 18:59:19 +01:00
if ( preg_match ( '/\*/' , GETPOST ( 'tva_tx' ))) {
2015-01-17 19:28:27 +01:00
$info_bits |= 0x01 ;
2021-02-23 18:59:19 +01:00
}
2015-01-17 19:28:27 +01:00
2021-03-02 23:09:55 +01:00
// Clean parameters
2020-09-18 01:29:17 +02:00
$description = dol_htmlcleanlastbr ( GETPOST ( 'product_desc' , 'restricthtml' ));
2015-01-17 19:28:27 +01:00
// Define vat_rate
$vat_rate = ( GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : 0 );
$vat_rate = str_replace ( '*' , '' , $vat_rate );
2015-05-07 12:10:27 +02:00
$localtax1_rate = get_localtax ( $vat_rate , 1 , $object -> thirdparty , $mysoc );
$localtax2_rate = get_localtax ( $vat_rate , 2 , $object -> thirdparty , $mysoc );
2021-03-02 23:09:55 +01:00
$pu_ht = price2num ( GETPOST ( 'price_ht' ), '' , 2 );
2015-01-17 19:28:27 +01:00
// Add buying price
2015-11-04 17:51:15 +01:00
$fournprice = price2num ( GETPOST ( 'fournprice' ) ? GETPOST ( 'fournprice' ) : '' );
2019-11-12 09:46:08 +01:00
$buyingprice = price2num ( GETPOST ( 'buying_price' ) != '' ? GETPOST ( 'buying_price' ) : '' ); // If buying_price is '0', we muste keep this value
2015-01-17 19:28:27 +01:00
2021-03-02 23:09:55 +01:00
$pu_ht_devise = price2num ( GETPOST ( 'multicurrency_subprice' ), '' , 2 );
2015-01-17 19:28:27 +01:00
2015-12-07 03:59:03 +01:00
$date_start = dol_mktime ( GETPOST ( 'date_starthour' ), GETPOST ( 'date_startmin' ), GETPOST ( 'date_startsec' ), GETPOST ( 'date_startmonth' ), GETPOST ( 'date_startday' ), GETPOST ( 'date_startyear' ));
$date_end = dol_mktime ( GETPOST ( 'date_endhour' ), GETPOST ( 'date_endmin' ), GETPOST ( 'date_endsec' ), GETPOST ( 'date_endmonth' ), GETPOST ( 'date_endday' ), GETPOST ( 'date_endyear' ));
2015-01-17 19:28:27 +01:00
2021-09-08 22:00:16 +02:00
$remise_percent = price2num ( GETPOST ( 'remise_percent' ), '' , 2 );
2015-01-17 19:28:27 +01:00
// Extrafields
2019-10-06 14:41:52 +02:00
$extralabelsline = $extrafields -> fetch_name_optionals_label ( $object -> table_element_line );
$array_options = $extrafields -> getOptionalsFromPost ( $object -> table_element_line );
2015-01-17 19:28:27 +01:00
// Unset extrafield
if ( is_array ( $extralabelsline )) {
// Get extra fields
foreach ( $extralabelsline as $key => $value ) {
2019-11-12 09:46:08 +01:00
unset ( $_POST [ " options_ " . $key ]);
2015-01-17 19:28:27 +01:00
}
2008-08-12 20:20:18 +02:00
}
2010-06-08 10:27:57 +02:00
2015-01-17 19:28:27 +01:00
// Define special_code for special lines
2021-09-08 22:00:16 +02:00
$special_code = GETPOST ( 'special_code' , 'int' );
2021-02-23 18:59:19 +01:00
if ( ! GETPOST ( 'qty' )) {
$special_code = 3 ;
}
2012-08-23 07:50:20 +02:00
2015-01-17 19:28:27 +01:00
// Check minimum price
$productid = GETPOST ( 'productid' , 'int' );
2019-11-12 09:46:08 +01:00
if ( ! empty ( $productid )) {
2015-01-17 19:28:27 +01:00
$product = new Product ( $db );
$res = $product -> fetch ( $productid );
2012-08-23 07:50:20 +02:00
2015-01-17 19:28:27 +01:00
$type = $product -> type ;
2012-08-23 07:50:20 +02:00
2015-01-17 19:28:27 +01:00
$price_min = $product -> price_min ;
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES ) && ! empty ( $object -> thirdparty -> price_level )) {
2015-01-18 17:13:42 +01:00
$price_min = $product -> multiprices_min [ $object -> thirdparty -> price_level ];
2021-02-23 18:59:19 +01:00
}
2015-01-17 19:28:27 +01:00
$label = (( GETPOST ( 'update_label' ) && GETPOST ( 'product_label' )) ? GETPOST ( 'product_label' ) : '' );
2021-09-08 22:00:16 +02:00
if ((( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && empty ( $user -> rights -> produit -> ignore_price_min_advance )) || empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS )) && ( $price_min && ( price2num ( $pu_ht ) * ( 1 - $remise_percent / 100 ) < price2num ( $price_min )))) {
2015-11-07 21:56:21 +01:00
setEventMessages ( $langs -> trans ( " CantBeLessThanMinPrice " , price ( price2num ( $price_min , 'MU' ), 0 , $langs , 0 , 0 , - 1 , $conf -> currency )), null , 'errors' );
2019-11-12 09:46:08 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
2014-02-23 17:01:51 +01:00
} else {
2015-01-17 19:28:27 +01:00
$type = GETPOST ( 'type' );
$label = ( GETPOST ( 'product_label' ) ? GETPOST ( 'product_label' ) : '' );
2014-02-26 15:49:29 +01:00
2015-01-17 19:28:27 +01:00
// Check parameters
if ( GETPOST ( 'type' ) < 0 ) {
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )), null , 'errors' );
2019-11-12 09:46:08 +01:00
$error ++ ;
2015-01-17 19:28:27 +01:00
}
}
2019-11-12 09:46:08 +01:00
if ( ! $error ) {
2015-01-17 19:28:27 +01:00
$db -> begin ();
2014-02-26 15:49:29 +01:00
2021-02-23 18:59:19 +01:00
if ( empty ( $user -> rights -> margins -> creer )) {
foreach ( $object -> lines as & $line ) {
2021-04-25 15:55:36 +02:00
if ( $line -> id == GETPOST ( 'lineid' , 'int' )) {
2016-12-15 12:01:46 +01:00
$fournprice = $line -> fk_fournprice ;
$buyingprice = $line -> pa_ht ;
break ;
}
}
}
2020-10-27 19:56:36 +01:00
2021-01-11 13:00:29 +01:00
$qty = price2num ( GETPOST ( 'qty' , 'alpha' ), 'MS' );
2020-10-27 19:56:36 +01:00
2021-09-08 22:00:16 +02:00
$result = $object -> updateline ( GETPOST ( 'lineid' , 'int' ), $pu_ht , $qty , $remise_percent , $vat_rate , $localtax1_rate , $localtax2_rate , $description , 'HT' , $info_bits , $special_code , GETPOST ( 'fk_parent_line' ), 0 , $fournprice , $buyingprice , $label , $type , $date_start , $date_end , $array_options , GETPOST ( " units " ), $pu_ht_devise );
2014-02-26 15:49:29 +01:00
2015-01-17 19:28:27 +01:00
if ( $result >= 0 ) {
2013-12-10 17:18:28 +01:00
$db -> commit ();
2013-12-14 17:40:23 +01:00
2014-02-23 17:01:51 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
2012-10-05 15:12:17 +02:00
// Define output language
$outputlangs = $langs ;
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS )) {
2014-02-23 17:01:51 +01:00
$outputlangs = new Translate ( " " , $conf );
2019-01-27 11:55:16 +01:00
$newlang = ( GETPOST ( 'lang_id' , 'aZ09' ) ? GETPOST ( 'lang_id' , 'aZ09' ) : $object -> thirdparty -> default_lang );
2012-10-05 15:12:17 +02:00
$outputlangs -> setDefaultLang ( $newlang );
}
2014-02-23 17:01:51 +01:00
$ret = $object -> fetch ( $id ); // Reload to get new records
2021-02-23 18:59:19 +01:00
if ( $ret > 0 ) {
$object -> fetch_thirdparty ();
}
2020-09-10 01:49:09 +02:00
$object -> generateDocument ( $object -> model_pdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
2011-12-02 19:57:20 +01:00
}
2010-06-08 10:27:57 +02:00
2014-10-27 01:51:33 +01:00
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
2015-01-18 17:13:42 +01:00
unset ( $_POST [ 'productid' ]);
2014-10-27 01:51:33 +01:00
unset ( $_POST [ 'remise_percent' ]);
unset ( $_POST [ 'price_ht' ]);
2016-04-12 14:10:27 +02:00
unset ( $_POST [ 'multicurrency_price_ht' ]);
2014-10-27 01:51:33 +01:00
unset ( $_POST [ 'price_ttc' ]);
unset ( $_POST [ 'tva_tx' ]);
unset ( $_POST [ 'product_ref' ]);
unset ( $_POST [ 'product_label' ]);
unset ( $_POST [ 'product_desc' ]);
unset ( $_POST [ 'fournprice' ]);
unset ( $_POST [ 'buying_price' ]);
2016-03-04 14:11:06 +01:00
unset ( $_POST [ 'date_starthour' ]);
unset ( $_POST [ 'date_startmin' ]);
unset ( $_POST [ 'date_startsec' ]);
unset ( $_POST [ 'date_startday' ]);
unset ( $_POST [ 'date_startmonth' ]);
unset ( $_POST [ 'date_startyear' ]);
unset ( $_POST [ 'date_endhour' ]);
unset ( $_POST [ 'date_endmin' ]);
unset ( $_POST [ 'date_endsec' ]);
unset ( $_POST [ 'date_endday' ]);
unset ( $_POST [ 'date_endmonth' ]);
unset ( $_POST [ 'date_endyear' ]);
2014-02-23 17:01:51 +01:00
} else {
2013-12-10 17:18:28 +01:00
$db -> rollback ();
2013-12-14 17:40:23 +01:00
2015-11-07 21:56:21 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2008-08-28 01:00:37 +02:00
}
2008-08-12 20:20:18 +02:00
}
2019-01-27 23:23:38 +01:00
} elseif ( $action == 'updateline' && $usercancreate && GETPOST ( 'cancel' , 'alpha' )) {
2019-11-12 09:46:08 +01:00
header ( 'Location: ' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id ); // Pour reaffichage de la fiche en cours d'edition
2015-01-17 19:28:27 +01:00
exit ();
2020-05-21 15:05:19 +02:00
} elseif ( $action == 'classin' && $usercancreate ) {
2020-10-31 14:32:18 +01:00
// Set project
$object -> setProject ( GETPOST ( 'projectid' , 'int' ));
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'setavailability' && $usercancreate ) {
// Delivery time
2019-01-27 11:55:16 +01:00
$result = $object -> set_availability ( $user , GETPOST ( 'availability_id' , 'int' ));
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'setdemandreason' && $usercancreate ) {
// Origin of the commercial proposal
2019-01-27 11:55:16 +01:00
$result = $object -> set_demand_reason ( $user , GETPOST ( 'demand_reason_id' , 'int' ));
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'setconditions' && $usercancreate ) {
// Terms of payment
2021-10-28 16:51:59 +02:00
$result = $object -> setPaymentTerms ( GETPOST ( 'cond_reglement_id' , 'int' ), GETPOST ( 'cond_reglement_id_deposit_percent' , 'alpha' ));
2020-05-21 15:05:19 +02:00
} elseif ( $action == 'setremisepercent' && $usercancreate ) {
2021-09-08 22:00:16 +02:00
$result = $object -> set_remise_percent ( $user , price2num ( GETPOST ( 'remise_percent' ), '' , 2 ));
2020-05-21 15:05:19 +02:00
} elseif ( $action == 'setremiseabsolue' && $usercancreate ) {
2021-09-08 22:00:16 +02:00
$result = $object -> set_remise_absolue ( $user , price2num ( GETPOST ( 'remise_absolue' ), 'MU' , 2 ));
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'setmode' && $usercancreate ) {
// Payment choice
2015-01-17 19:28:27 +01:00
$result = $object -> setPaymentMethods ( GETPOST ( 'mode_reglement_id' , 'int' ));
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'setmulticurrencycode' && $usercancreate ) {
// Multicurrency Code
2016-01-18 19:45:27 +01:00
$result = $object -> setMulticurrencyCode ( GETPOST ( 'multicurrency_code' , 'alpha' ));
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'setmulticurrencyrate' && $usercancreate ) {
// Multicurrency rate
2021-03-02 01:17:28 +01:00
$result = $object -> setMulticurrencyRate ( price2num ( GETPOST ( 'multicurrency_tx' )), GETPOST ( 'calculation_mode' , 'int' ));
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'setbankaccount' && $usercancreate ) {
// bank account
2019-11-12 09:46:08 +01:00
$result = $object -> setBankAccount ( GETPOST ( 'fk_account' , 'int' ));
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'setshippingmethod' && $usercancreate ) {
// shipping method
2019-11-12 09:46:08 +01:00
$result = $object -> setShippingMethod ( GETPOST ( 'shipping_method_id' , 'int' ));
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'setwarehouse' && $usercancreate ) {
// warehouse
2021-01-09 02:45:46 +01:00
$result = $object -> setWarehouse ( GETPOST ( 'warehouse_id' , 'int' ));
2020-05-21 15:05:19 +02:00
} elseif ( $action == 'update_extras' ) {
2018-02-23 16:11:00 +01:00
$object -> oldcopy = dol_clone ( $object );
2015-01-17 19:28:27 +01:00
// Fill array 'array_options' with data from update form
2020-09-18 01:29:17 +02:00
$ret = $extrafields -> setOptionalsFromPost ( null , $object , GETPOST ( 'attribute' , 'restricthtml' ));
2021-02-23 18:59:19 +01:00
if ( $ret < 0 ) {
$error ++ ;
}
if ( ! $error ) {
2023-03-22 20:26:19 +01:00
$result = $object -> insertExtraFields ( 'PROPAL_MODIFY' );
2021-02-23 18:59:19 +01:00
if ( $result < 0 ) {
2017-10-24 19:04:40 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
$error ++ ;
}
2012-10-05 15:12:17 +02:00
}
2021-02-23 18:59:19 +01:00
if ( $error ) {
$action = 'edit_extras' ;
}
2013-03-04 19:17:11 +01:00
}
2013-11-17 23:25:25 +01:00
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_CONTACTS_TAB ) && $usercancreate ) {
if ( $action == 'addcontact' ) {
2015-01-17 19:28:27 +01:00
if ( $object -> id > 0 ) {
$contactid = ( GETPOST ( 'userid' ) ? GETPOST ( 'userid' ) : GETPOST ( 'contactid' ));
2020-11-30 15:18:58 +01:00
$typeid = ( GETPOST ( 'typecontact' ) ? GETPOST ( 'typecontact' ) : GETPOST ( 'type' ));
$result = $object -> add_contact ( $contactid , $typeid , GETPOST ( " source " , 'aZ09' ));
2015-01-17 19:28:27 +01:00
}
2012-07-02 19:30:37 +02:00
2015-01-17 19:28:27 +01:00
if ( $result >= 0 ) {
2019-11-12 09:46:08 +01:00
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
2015-01-17 19:28:27 +01:00
exit ();
2014-02-23 17:01:51 +01:00
} else {
2015-01-17 19:28:27 +01:00
if ( $object -> error == 'DB_ERROR_RECORD_ALREADY_EXISTS' ) {
$langs -> load ( " errors " );
2015-11-07 21:56:21 +01:00
setEventMessages ( $langs -> trans ( " ErrorThisContactIsAlreadyDefinedAsThisType " ), null , 'errors' );
2015-01-17 19:28:27 +01:00
} else {
2015-11-07 21:56:21 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-17 19:28:27 +01:00
}
2012-07-02 19:30:37 +02:00
}
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'swapstatut' ) {
// Toggle the status of a contact
2015-01-17 19:28:27 +01:00
if ( $object -> fetch ( $id ) > 0 ) {
2021-03-29 15:07:23 +02:00
$result = $object -> swapContactStatus ( GETPOST ( 'ligne' , 'int' ));
2015-01-17 19:28:27 +01:00
} else {
dol_print_error ( $db );
}
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'deletecontact' ) {
// Delete a contact
2015-01-17 19:28:27 +01:00
$object -> fetch ( $id );
$result = $object -> delete_contact ( $lineid );
2012-07-02 19:30:37 +02:00
2015-01-17 19:28:27 +01:00
if ( $result >= 0 ) {
2019-11-12 09:46:08 +01:00
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
2015-01-17 19:28:27 +01:00
exit ();
} else {
dol_print_error ( $db );
}
2012-07-02 19:30:37 +02:00
}
2012-03-16 22:02:14 +01:00
}
2016-08-10 09:47:25 +02:00
2017-10-07 13:09:31 +02:00
// Actions to build doc
2021-11-19 14:01:37 +01:00
$upload_dir = ! empty ( $conf -> propal -> multidir_output [ $object -> entity ]) ? $conf -> propal -> multidir_output [ $object -> entity ] : $conf -> propal -> dir_output ;
2020-04-10 10:59:32 +02:00
$permissiontoadd = $usercancreate ;
2017-10-07 13:09:31 +02:00
include DOL_DOCUMENT_ROOT . '/core/actions_builddoc.inc.php' ;
2012-03-16 22:02:14 +01:00
}
2014-12-05 13:26:47 +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
2011-11-08 10:18:45 +01:00
$form = new Form ( $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 );
2015-10-03 19:05:13 +02:00
$formmargin = new FormMargin ( $db );
2022-06-14 17:53:17 +02:00
if ( ! empty ( $conf -> project -> enabled )) {
2021-02-23 18:59:19 +01:00
$formproject = new FormProjets ( $db );
}
2008-08-12 20:20:18 +02:00
2021-05-09 21:08:55 +02:00
$title = $langs -> trans ( 'Proposal' ) . " - " . $langs -> trans ( 'Card' );
2021-03-15 19:28:48 +01:00
$help_url = 'EN:Commercial_Proposals|FR:Proposition_commerciale|ES:Presupuestos|DE:Modul_Angebote' ;
2021-05-09 21:08:55 +02:00
llxHeader ( '' , $title , $help_url );
2020-04-25 13:49:44 +02:00
2014-02-23 17:01:51 +01:00
$now = dol_now ();
2010-05-12 13:29:21 +02:00
2013-02-02 18:31:45 +01:00
// Add new proposal
2022-07-11 00:05:50 +02:00
if ( $action == 'create' ) {
2017-10-07 13:09:31 +02:00
$currency_code = $conf -> currency ;
2017-07-13 10:16:40 +02:00
2020-04-25 13:49:44 +02:00
print load_fiche_titre ( $langs -> trans ( " NewProp " ), '' , 'propal' );
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
$soc = new Societe ( $db );
2021-02-23 18:59:19 +01:00
if ( $socid > 0 ) {
2014-02-23 17:01:51 +01:00
$res = $soc -> fetch ( $socid );
2021-02-23 18:59:19 +01:00
}
2011-11-03 01:59:13 +01:00
2014-06-28 19:47:51 +02:00
// Load objectsrc
2021-02-23 18:59:19 +01:00
if ( ! empty ( $origin ) && ! empty ( $originid )) {
2014-06-28 19:47:51 +02:00
// Parse element/subelement (ex: project_task)
$element = $subelement = $origin ;
2019-12-06 08:50:26 +01:00
$regs = array ();
2014-06-28 19:47:51 +02:00
if ( preg_match ( '/^([^_]+)_([^_]+)/i' , $origin , $regs )) {
2019-12-06 08:50:26 +01:00
$element = $regs [ 1 ];
$subelement = $regs [ 2 ];
2014-06-28 19:47:51 +02:00
}
if ( $element == 'project' ) {
$projectid = $originid ;
} else {
// For compatibility
if ( $element == 'order' || $element == 'commande' ) {
$element = $subelement = 'commande' ;
}
if ( $element == 'propal' ) {
$element = 'comm/propal' ;
$subelement = 'propal' ;
}
if ( $element == 'contract' ) {
$element = $subelement = 'contrat' ;
}
if ( $element == 'shipping' ) {
$element = $subelement = 'expedition' ;
}
2019-11-12 09:46:08 +01:00
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
2014-06-28 19:47:51 +02:00
$classname = ucfirst ( $subelement );
$objectsrc = new $classname ( $db );
$objectsrc -> fetch ( $originid );
2021-02-23 18:59:19 +01:00
if ( empty ( $objectsrc -> lines ) && method_exists ( $objectsrc , 'fetch_lines' )) {
2014-06-28 19:47:51 +02:00
$objectsrc -> fetch_lines ();
2014-09-04 18:58:33 +02:00
}
2014-06-28 19:47:51 +02:00
$objectsrc -> fetch_thirdparty ();
2019-11-12 09:46:08 +01:00
$projectid = ( ! empty ( $objectsrc -> fk_project ) ? $objectsrc -> fk_project : 0 );
$ref_client = ( ! empty ( $objectsrc -> ref_client ) ? $objectsrc -> ref_client : '' );
2014-06-28 19:47:51 +02:00
$soc = $objectsrc -> thirdparty ;
2019-11-12 09:46:08 +01:00
$cond_reglement_id = ( ! empty ( $objectsrc -> cond_reglement_id ) ? $objectsrc -> cond_reglement_id : ( ! empty ( $soc -> cond_reglement_id ) ? $soc -> cond_reglement_id : 0 )); // TODO maybe add default value option
$mode_reglement_id = ( ! empty ( $objectsrc -> mode_reglement_id ) ? $objectsrc -> mode_reglement_id : ( ! empty ( $soc -> mode_reglement_id ) ? $soc -> mode_reglement_id : 0 ));
2021-12-19 20:55:24 +01:00
$remise_absolue = ( ! empty ( $objectsrc -> remise_absolue ) ? $objectsrc -> remise_absolue : ( ! empty ( $soc -> remise_absolue ) ? $soc -> remise_absolue : 0 )); // deprecated
2019-11-12 09:46:08 +01:00
$remise_percent = ( ! empty ( $objectsrc -> remise_percent ) ? $objectsrc -> remise_percent : ( ! empty ( $soc -> remise_percent ) ? $soc -> remise_percent : 0 ));
2021-01-10 01:07:27 +01:00
$warehouse_id = ( ! empty ( $objectsrc -> warehouse_id ) ? $objectsrc -> warehouse_id : ( ! empty ( $soc -> warehouse_id ) ? $soc -> warehouse_id : 0 ));
2019-11-12 09:46:08 +01:00
$dateinvoice = ( empty ( $dateinvoice ) ? ( empty ( $conf -> global -> MAIN_AUTOFILL_DATE ) ? - 1 : '' ) : $dateinvoice );
2014-06-28 19:47:51 +02:00
// Replicate extrafields
2020-03-27 16:02:58 +01:00
$objectsrc -> fetch_optionals ();
2014-06-28 19:47:51 +02:00
$object -> array_options = $objectsrc -> array_options ;
2017-06-07 16:44:04 +02:00
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled )) {
if ( ! empty ( $objectsrc -> multicurrency_code )) {
$currency_code = $objectsrc -> multicurrency_code ;
}
if ( ! empty ( $conf -> global -> MULTICURRENCY_USE_ORIGIN_TX ) && ! empty ( $objectsrc -> multicurrency_tx )) {
$currency_tx = $objectsrc -> multicurrency_tx ;
}
2017-03-23 12:23:32 +01:00
}
2014-06-28 19:47:51 +02:00
}
2020-05-21 15:05:19 +02:00
} else {
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled ) && ! empty ( $soc -> multicurrency_code )) {
$currency_code = $soc -> multicurrency_code ;
}
2017-03-23 12:23:32 +01:00
}
2014-06-28 19:47:51 +02:00
2021-01-10 01:07:27 +01:00
//Warehouse default if null
2021-02-23 18:59:19 +01:00
if ( $soc -> fk_warehouse > 0 ) {
$warehouse_id = $soc -> fk_warehouse ;
}
if ( ! empty ( $conf -> stock -> enabled ) && empty ( $warehouse_id ) && ! empty ( $conf -> global -> WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER )) {
if ( empty ( $object -> warehouse_id ) && ! empty ( $conf -> global -> MAIN_DEFAULT_WAREHOUSE )) {
$warehouse_id = $conf -> global -> MAIN_DEFAULT_WAREHOUSE ;
}
if ( empty ( $object -> warehouse_id ) && ! empty ( $conf -> global -> MAIN_DEFAULT_WAREHOUSE_USER )) {
$warehouse_id = $user -> fk_warehouse ;
}
2021-01-10 01:07:27 +01:00
}
2014-06-28 19:47:51 +02:00
2019-11-12 09:46:08 +01:00
print '<form name="addprop" action="' . $_SERVER [ " PHP_SELF " ] . '" method="POST">' ;
2020-03-24 13:10:35 +01:00
print '<input type="hidden" name="token" value="' . newToken () . '">' ;
2013-02-02 18:31:45 +01:00
print '<input type="hidden" name="action" value="add">' ;
2014-02-23 17:01:51 +01:00
if ( $origin != 'project' && $originid ) {
2019-11-12 09:46:08 +01:00
print '<input type="hidden" name="origin" value="' . $origin . '">' ;
print '<input type="hidden" name="originid" value="' . $originid . '">' ;
2016-08-10 11:34:10 +02:00
} elseif ( $origin == 'project' && ! empty ( $projectid )) {
2019-11-12 09:46:08 +01:00
print '<input type="hidden" name="projectid" value="' . $projectid . '">' ;
2012-05-05 17:28:52 +02:00
}
2008-08-12 20:20:18 +02:00
2020-10-22 22:50:03 +02:00
print dol_get_fiche_head ();
2015-01-18 18:44:22 +01:00
2019-11-05 21:24:41 +01:00
print '<table class="border centpercent">' ;
2013-03-08 10:06:23 +01:00
2013-03-02 15:57:26 +01:00
// Reference
2022-05-04 00:52:49 +02:00
print '<tr class="field_ref"><td class="titlefieldcreate fieldrequired">' . $langs -> trans ( 'Ref' ) . '</td><td class="valuefieldcreate">' . $langs -> trans ( " Draft " ) . '</td></tr>' ;
2008-08-12 20:20:18 +02:00
2013-02-02 18:31:45 +01:00
// Ref customer
2022-05-04 00:52:49 +02:00
print '<tr class="field_ref_client"><td class="titlefieldcreate">' . $langs -> trans ( 'RefCustomer' ) . '</td><td class="valuefieldcreate">' ;
2022-05-20 10:40:59 +02:00
print '<input type="text" name="ref_client" value="' . ( ! empty ( $ref_client ) ? $ref_client : GETPOST ( 'ref_client' )) . '"></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
// Third party
2022-05-04 00:52:49 +02:00
print '<tr class="field_socid">' ;
print '<td class="titlefieldcreate fieldrequired">' . $langs -> trans ( 'Customer' ) . '</td>' ;
2021-10-23 23:12:42 +02:00
$shipping_method_id = 0 ;
2014-02-23 17:01:51 +01:00
if ( $socid > 0 ) {
2022-05-04 00:52:49 +02:00
print '<td class="valuefieldcreate">' ;
2022-06-25 16:24:55 +02:00
print $soc -> getNomUrl ( 1 , 'customer' );
2019-11-12 09:46:08 +01:00
print '<input type="hidden" name="socid" value="' . $soc -> id . '">' ;
2013-02-02 18:31:45 +01:00
print '</td>' ;
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> SOCIETE_ASK_FOR_SHIPPING_METHOD ) && ! empty ( $soc -> shipping_method_id )) {
2017-10-07 13:09:31 +02:00
$shipping_method_id = $soc -> shipping_method_id ;
}
2021-01-09 02:45:46 +01:00
//$warehouse_id = $soc->warehouse_id;
2014-02-23 17:01:51 +01:00
} else {
2022-05-04 00:52:49 +02:00
print '<td class="valuefieldcreate">' ;
2022-09-24 17:19:52 +02:00
print img_picto ( '' , 'company' ) . $form -> select_company ( '' , 'socid' , '((s.client = 1 OR s.client = 2 OR s.client = 3) AND status=1)' , 'SelectThirdParty' , 0 , 0 , null , 0 , 'minwidth300 maxwidth500 widthcentpercentminusxx' );
2015-11-06 16:14:00 +01:00
// reload page to retrieve customer informations
2021-02-23 18:59:19 +01:00
if ( empty ( $conf -> global -> RELOAD_PAGE_ON_CUSTOMER_CHANGE_DISABLED )) {
2015-11-11 15:32:42 +01:00
print ' < script type = " text/javascript " >
$ ( document ) . ready ( function () {
$ ( " #socid " ) . change ( function () {
2020-11-03 02:17:51 +01:00
console . log ( " We have changed the company - Reload page " );
2015-11-11 15:32:42 +01:00
var socid = $ ( this ) . val ();
// reload page
2021-03-02 15:59:48 +01:00
$ ( " input[name=action] " ) . val ( " create " );
$ ( " form[name=addprop] " ) . submit ();
2015-11-11 15:32:42 +01:00
});
2015-11-06 16:14:00 +01:00
});
2015-11-11 15:32:42 +01:00
</ script > ' ;
}
2019-12-01 00:41:11 +01:00
print ' <a href="' . DOL_URL_ROOT . '/societe/card.php?action=create&client=3&fournisseur=0&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?action=create' ) . '"><span class="fa fa-plus-circle valignmiddle paddingleft" title="' . $langs -> trans ( " AddThirdParty " ) . '"></span></a>' ;
2013-02-02 18:31:45 +01:00
print '</td>' ;
2008-08-12 20:20:18 +02:00
}
2019-11-12 09:46:08 +01:00
print '</tr>' . " \n " ;
2013-02-02 18:31:45 +01:00
2021-02-09 17:58:59 +01:00
if ( $socid > 0 ) {
2020-10-31 14:32:18 +01:00
// Contacts (ask contact only if thirdparty already defined).
2022-05-04 00:52:49 +02:00
print '<tr class="field_contactid"><td class="titlefieldcreate">' . $langs -> trans ( " DefaultContact " ) . '</td><td class="valuefieldcreate">' ;
2021-01-10 01:07:27 +01:00
print img_picto ( '' , 'contact' );
2021-04-01 12:27:02 +02:00
print $form -> selectcontacts ( $soc -> id , $contactid , 'contactid' , 1 , '' , '' , 0 , 'minwidth300' );
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
2019-10-26 22:40:10 +02:00
// Third party discounts info line
2022-05-04 00:52:49 +02:00
print '<tr class="field_discount_info"><td class="titlefieldcreate">' . $langs -> trans ( 'Discounts' ) . '</td><td class="valuefieldcreate">' ;
2018-03-02 16:48:25 +01:00
2014-02-23 17:01:51 +01:00
$absolute_discount = $soc -> getAvailableDiscounts ();
2018-03-02 16:48:25 +01:00
$thirdparty = $soc ;
$discount_type = 0 ;
2019-11-12 09:46:08 +01:00
$backtopage = urlencode ( $_SERVER [ " PHP_SELF " ] . '?socid=' . $thirdparty -> id . '&action=' . $action . '&origin=' . GETPOST ( 'origin' ) . '&originid=' . GETPOST ( 'originid' ));
2018-03-02 16:48:25 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/object_discounts.tpl.php' ;
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
2008-08-12 20:20:18 +02:00
}
2013-02-02 18:31:45 +01:00
// Date
2022-05-04 00:52:49 +02:00
print '<tr class="field_addprop"><td class="titlefieldcreate fieldrequired">' . $langs -> trans ( 'DatePropal' ) . '</td><td class="valuefieldcreate">' ;
2021-01-15 13:14:21 +01:00
print $form -> selectDate ( '' , '' , '' , '' , '' , " addprop " , 1 , 1 );
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
// Validaty duration
2022-05-04 00:52:49 +02:00
print '<tr class="field_duree_validitee"><td class="titlefieldcreate fieldrequired">' . $langs -> trans ( " ValidityDuration " ) . '</td><td class="valuefieldcreate">' . img_picto ( '' , 'clock' , 'class="paddingright"' ) . '<input name="duree_validite" class="width50" value="' . ( GETPOSTISSET ( 'duree_validite' ) ? GETPOST ( 'duree_validite' , 'alphanohtml' ) : $conf -> global -> PROPALE_VALIDITY_DURATION ) . '"> ' . $langs -> trans ( " days " ) . '</td></tr>' ;
2013-02-02 18:31:45 +01:00
// Terms of payment
2022-05-09 09:26:10 +02:00
print '<tr class="field_cond_reglement_id"><td class="nowrap">' . $langs -> trans ( 'PaymentConditionsShort' ) . '</td><td>' ;
2021-01-10 01:07:27 +01:00
print img_picto ( '' , 'paiment' );
2022-11-02 00:19:23 +01:00
$form -> select_conditions_paiements (( GETPOSTISSET ( 'cond_reglement_id' ) && GETPOST ( 'cond_reglement_id' , 'int' ) != 0 ) ? GETPOST ( 'cond_reglement_id' , 'int' ) : $soc -> cond_reglement_id , 'cond_reglement_id' , 1 , 1 , 0 , '' , ( GETPOSTISSET ( 'cond_reglement_id_deposit_percent' ) ? GETPOST ( 'cond_reglement_id_deposit_percent' , 'alpha' ) : $soc -> deposit_percent ));
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
// Mode of payment
2022-05-04 00:52:49 +02:00
print '<tr class="field_mode_reglement_id"><td class="titlefieldcreate">' . $langs -> trans ( 'PaymentMode' ) . '</td><td class="valuefieldcreate">' ;
2022-04-29 13:10:28 +02:00
print img_picto ( '' , 'bank' , 'class="pictofixedwidth"' );
2022-11-02 00:19:23 +01:00
$form -> select_types_paiements (( GETPOSTISSET ( 'mode_reglement_id' ) && GETPOST ( 'mode_reglement_id' , 'int' ) != 0 ) ? GETPOST ( 'mode_reglement_id' , 'int' ) : $soc -> mode_reglement_id , 'mode_reglement_id' , 'CRDT' , 0 , 1 , 0 , 0 , 1 , 'maxwidth200 widthcentpercentminusx' );
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
2017-10-07 13:09:31 +02:00
// Bank Account
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL ) && ! empty ( $conf -> banque -> enabled )) {
2022-05-04 00:52:49 +02:00
print '<tr class="field_fk_account"><td class="titlefieldcreate">' . $langs -> trans ( 'BankAccount' ) . '</td><td class="valuefieldcreate">' ;
2021-05-19 15:00:44 +02:00
print img_picto ( '' , 'bank_account' , 'class="pictofixedwidth"' ) . $form -> select_comptes ( $soc -> fk_account , 'fk_account' , 0 , '' , 1 , '' , 0 , 'maxwidth200 widthcentpercentminusx' , 1 );
2017-10-07 13:09:31 +02:00
print '</td></tr>' ;
}
2014-07-06 20:49:34 +02:00
2021-05-19 14:48:30 +02:00
// Source / Channel - What trigger creation
2022-05-04 00:52:49 +02:00
print '<tr class="field_demand_reason_id"><td class="titlefieldcreate">' . $langs -> trans ( 'Source' ) . '</td><td class="valuefieldcreate">' ;
2021-05-19 14:38:39 +02:00
print img_picto ( '' , 'question' , 'class="pictofixedwidth"' );
$form -> selectInputReason ( '' , 'demand_reason_id' , " SRC_PROP " , 1 , 'maxwidth200 widthcentpercentminusx' );
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
// Delivery delay
2022-05-04 00:52:49 +02:00
print '<tr class="field_availability_id"><td class="titlefieldcreate">' . $langs -> trans ( 'AvailabilityPeriod' );
2021-02-09 17:58:59 +01:00
if ( ! empty ( $conf -> commande -> enabled )) {
2020-08-31 13:41:22 +02:00
print ' (' . $langs -> trans ( 'AfterOrder' ) . ')' ;
2021-02-09 17:58:59 +01:00
}
2022-05-04 00:52:49 +02:00
print '</td><td class="valuefieldcreate">' ;
2022-04-29 13:10:28 +02:00
print img_picto ( '' , 'clock' , 'class="pictofixedwidth"' );
2021-05-19 14:38:39 +02:00
$form -> selectAvailabilityDelay ( '' , 'availability_id' , '' , 1 , 'maxwidth200 widthcentpercentminusx' );
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
2017-10-07 13:09:31 +02:00
// Shipping Method
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> expedition -> enabled )) {
2020-10-17 15:53:31 +02:00
if ( ! empty ( $conf -> global -> SOCIETE_ASK_FOR_SHIPPING_METHOD ) && ! empty ( $soc -> shipping_method_id )) {
$shipping_method_id = $soc -> shipping_method_id ;
}
2022-05-04 00:52:49 +02:00
print '<tr class="field_shipping_method_id"><td class="titlefieldcreate">' . $langs -> trans ( 'SendingMethod' ) . '</td><td class="valuefieldcreate">' ;
2021-05-19 14:38:39 +02:00
print img_picto ( '' , 'object_dollyrevert' , 'class="pictofixedwidth"' );
print $form -> selectShippingMethod ( $shipping_method_id , 'shipping_method_id' , '' , 1 , '' , 0 , 'maxwidth200 widthcentpercentminusx' );
2017-10-07 13:09:31 +02:00
print '</td></tr>' ;
}
2014-07-24 18:08:08 +02:00
2021-01-09 02:45:46 +01:00
// Warehouse
2021-01-10 01:07:27 +01:00
if ( ! empty ( $conf -> stock -> enabled ) && ! empty ( $conf -> global -> WAREHOUSE_ASK_WAREHOUSE_DURING_PROPAL )) {
2021-01-09 02:45:46 +01:00
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
$formproduct = new FormProduct ( $db );
2022-05-04 00:52:49 +02:00
print '<tr class="field_warehouse_id"><td class="titlefieldcreate">' . $langs -> trans ( 'Warehouse' ) . '</td><td class="valuefieldcreate">' ;
2021-05-19 14:38:39 +02:00
print img_picto ( '' , 'stock' , 'class="pictofixedwidth"' ) . $formproduct -> selectWarehouses ( $warehouse_id , 'warehouse_id' , '' , 1 , 0 , 0 , '' , 0 , 0 , array (), 'maxwidth500 widthcentpercentminusxx' );
2021-01-09 02:45:46 +01:00
print '</td></tr>' ;
}
2013-02-02 18:31:45 +01:00
// Delivery date (or manufacturing)
2022-05-04 00:52:49 +02:00
print '<tr class="field_date_livraison"><td class="titlefieldcreate">' . $langs -> trans ( " DeliveryDate " ) . '</td>' ;
print '<td class="valuefieldcreate">' ;
2021-11-30 15:29:19 +01:00
if ( isset ( $conf -> global -> DATE_LIVRAISON_WEEK_DELAY ) && is_numeric ( $conf -> global -> DATE_LIVRAISON_WEEK_DELAY )) {
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 );
2018-09-09 11:25:59 +02:00
print $form -> selectDate ( $syear . " - " . $smonth . " - " . $sday , 'date_livraison' , '' , '' , '' , " addprop " );
2014-02-23 17:01:51 +01:00
} else {
2018-09-09 11:25:59 +02:00
print $form -> selectDate ( - 1 , 'date_livraison' , '' , '' , '' , " addprop " , 1 , 1 );
2009-02-18 15:29:56 +01:00
}
2013-02-02 18:31:45 +01:00
print '</td></tr>' ;
2015-06-03 11:55:39 +02:00
// Project
2022-06-14 17:53:17 +02:00
if ( ! empty ( $conf -> project -> enabled )) {
2015-06-03 11:55:39 +02:00
$langs -> load ( " projects " );
2022-05-04 00:52:49 +02:00
print '<tr class="field_projectid">' ;
print '<td class="titlefieldcreate">' . $langs -> trans ( " Project " ) . '</td><td class="valuefieldcreate">' ;
2021-05-19 14:38:39 +02:00
print img_picto ( '' , 'project' , 'class="pictofixedwidth"' ) . $formproject -> select_projects (( $soc -> id > 0 ? $soc -> id : - 1 ), $projectid , 'projectid' , 0 , 0 , 1 , 1 , 0 , 0 , 0 , '' , 1 , 0 , 'maxwidth500 widthcentpercentminusxx' );
2019-12-06 08:50:26 +01:00
print ' <a href="' . DOL_URL_ROOT . '/projet/card.php?socid=' . $soc -> id . '&action=create&status=1&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?action=create&socid=' . $soc -> id ) . '"><span class="fa fa-plus-circle valignmiddle paddingleft" title="' . $langs -> trans ( " AddProject " ) . '"></span></a>' ;
2015-06-03 11:55:39 +02:00
print '</td>' ;
print '</tr>' ;
}
2013-02-02 18:31:45 +01:00
2015-02-10 11:46:35 +01:00
// Incoterms
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> incoterm -> enabled )) {
2022-05-04 00:52:49 +02:00
print '<tr class="field_incoterm_id">' ;
print '<td class="titlefieldcreate"><label for="incoterm_id">' . $form -> textwithpicto ( $langs -> trans ( " IncotermLabel " ), $soc -> label_incoterms , 1 ) . '</label></td>' ;
print '<td class="valuefieldcreate maxwidthonsmartphone">' ;
2019-11-12 09:46:08 +01:00
print $form -> select_incoterms (( ! empty ( $soc -> fk_incoterms ) ? $soc -> fk_incoterms : '' ), ( ! empty ( $soc -> location_incoterms ) ? $soc -> location_incoterms : '' ));
2015-02-10 11:46:35 +01:00
print '</td></tr>' ;
}
2015-06-03 11:55:39 +02:00
// Template to use by default
2022-05-04 00:52:49 +02:00
print '<tr class="field_model">' ;
print '<td class="titlefieldcreate">' . $langs -> trans ( " DefaultModel " ) . '</td>' ;
print '<td class="valuefieldcreate">' ;
2022-04-29 13:10:28 +02:00
print img_picto ( '' , 'pdf' , 'class="pictofixedwidth"' );
2015-06-03 11:55:39 +02:00
$liste = ModelePDFPropales :: liste_modeles ( $db );
2021-10-23 23:12:42 +02:00
$preselected = ( ! empty ( $conf -> global -> PROPALE_ADDON_PDF_ODT_DEFAULT ) ? $conf -> global -> PROPALE_ADDON_PDF_ODT_DEFAULT : getDolGlobalString ( " PROPALE_ADDON_PDF " ));
2021-05-19 14:38:39 +02:00
print $form -> selectarray ( 'model' , $liste , $preselected , 0 , 0 , 0 , '' , 0 , 0 , 0 , '' , 'maxwidth200 widthcentpercentminusx' , 1 );
2015-06-03 11:55:39 +02:00
print " </td></tr> " ;
2013-06-16 21:31:21 +02:00
2016-01-18 19:45:27 +01:00
// Multicurrency
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled )) {
2022-05-04 00:52:49 +02:00
print '<tr class="field_currency">' ;
print '<td class="titlefieldcreate">' . $form -> editfieldkey ( 'Currency' , 'multicurrency_code' , '' , $object , 0 ) . '</td>' ;
print '<td class="valuefieldcreate maxwidthonsmartphone">' ;
2022-04-29 13:04:29 +02:00
print img_picto ( '' , 'currency' , 'class="pictofixedwidth"' ) . $form -> selectMultiCurrency ( $currency_code , 'multicurrency_code' , 0 );
2016-01-18 19:45:27 +01:00
print '</td></tr>' ;
}
2016-08-10 09:47:25 +02:00
2015-06-03 11:55:39 +02:00
// Public note
2022-05-04 00:52:49 +02:00
print '<tr class="field_note_public">' ;
print '<td class="titlefieldcreate tdtop">' . $langs -> trans ( 'NotePublic' ) . '</td>' ;
print '<td class="valuefieldcreate">' ;
2021-10-23 23:12:42 +02:00
$note_public = $object -> getDefaultCreateValueFor ( 'note_public' , ( ! empty ( $objectsrc ) ? $objectsrc -> note_public : null ));
2020-11-30 14:54:44 +01:00
$doleditor = new DolEditor ( 'note_public' , $note_public , '' , 80 , 'dolibarr_notes' , 'In' , 0 , false , empty ( $conf -> global -> FCKEDITOR_ENABLE_NOTE_PUBLIC ) ? 0 : 1 , ROWS_3 , '90%' );
2015-06-03 11:55:39 +02:00
print $doleditor -> Create ( 1 );
2011-04-07 09:39:21 +02:00
2015-06-03 11:55:39 +02:00
// Private note
2021-02-23 18:59:19 +01:00
if ( empty ( $user -> socid )) {
2022-05-04 00:52:49 +02:00
print '<tr class="field_note_private">' ;
print '<td class="titlefieldcreate tdtop">' . $langs -> trans ( 'NotePrivate' ) . '</td>' ;
print '<td class="valuefieldcreate">' ;
2019-11-12 09:46:08 +01:00
$note_private = $object -> getDefaultCreateValueFor ( 'note_private' , (( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc )) ? $objectsrc -> note_private : null ));
2020-11-30 14:54:44 +01:00
$doleditor = new DolEditor ( 'note_private' , $note_private , '' , 80 , 'dolibarr_notes' , 'In' , 0 , false , empty ( $conf -> global -> FCKEDITOR_ENABLE_NOTE_PRIVATE ) ? 0 : 1 , ROWS_3 , '90%' );
2015-06-03 11:55:39 +02:00
print $doleditor -> Create ( 1 );
// print '<textarea name="note_private" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_private.'.</textarea>
print '</td></tr>' ;
2008-08-12 20:20:18 +02:00
}
2013-02-02 18:31:45 +01:00
// Other attributes
2019-11-12 09:46:08 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_add.tpl.php' ;
2014-06-28 19:47:51 +02:00
// Lines from source
2021-02-23 18:59:19 +01:00
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc )) {
2014-06-28 19:47:51 +02:00
// TODO for compatibility
if ( $origin == 'contrat' ) {
// Calcul contrat->price (HT), contrat->total (TTC), contrat->tva
2021-12-19 20:55:24 +01:00
$objectsrc -> remise_absolue = $remise_absolue ; // deprecated
2014-06-28 19:47:51 +02:00
$objectsrc -> remise_percent = $remise_percent ;
$objectsrc -> update_price ( 1 , - 1 , 1 );
}
2019-11-12 09:46:08 +01:00
print " \n <!-- " . $classname . " info --> " ;
2014-06-28 19:47:51 +02:00
print " \n " ;
2019-11-12 09:46:08 +01:00
print '<input type="hidden" name="amount" value="' . $objectsrc -> total_ht . '">' . " \n " ;
print '<input type="hidden" name="total" value="' . $objectsrc -> total_ttc . '">' . " \n " ;
print '<input type="hidden" name="tva" value="' . $objectsrc -> total_tva . '">' . " \n " ;
print '<input type="hidden" name="origin" value="' . $objectsrc -> element . '">' ;
print '<input type="hidden" name="originid" value="' . $objectsrc -> id . '">' ;
2014-06-28 19:47:51 +02:00
$newclassname = $classname ;
2021-02-23 18:59:19 +01:00
if ( $newclassname == 'Propal' ) {
2014-06-28 19:47:51 +02:00
$newclassname = 'CommercialProposal' ;
2021-02-23 18:59:19 +01:00
} elseif ( $newclassname == 'Commande' ) {
2014-06-28 19:47:51 +02:00
$newclassname = 'Order' ;
2021-02-23 18:59:19 +01:00
} elseif ( $newclassname == 'Expedition' ) {
2014-06-28 19:47:51 +02:00
$newclassname = 'Sending' ;
2021-02-23 18:59:19 +01:00
} elseif ( $newclassname == 'Fichinter' ) {
2014-06-28 19:47:51 +02:00
$newclassname = 'Intervention' ;
2021-02-23 18:59:19 +01:00
}
2014-06-28 19:47:51 +02:00
2019-11-12 09:46:08 +01:00
print '<tr><td>' . $langs -> trans ( $newclassname ) . '</td><td>' . $objectsrc -> getNomUrl ( 1 ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'AmountHT' ) . '</td><td>' . price ( $objectsrc -> total_ht , 0 , $langs , 1 , - 1 , - 1 , $conf -> currency ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'AmountVAT' ) . '</td><td>' . price ( $objectsrc -> total_tva , 0 , $langs , 1 , - 1 , - 1 , $conf -> currency ) . " </td></tr> " ;
2021-02-23 18:59:19 +01:00
if ( $mysoc -> localtax1_assuj == " 1 " || $objectsrc -> total_localtax1 != 0 ) { // Localtax1
2019-11-12 09:46:08 +01:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ) . '</td><td>' . price ( $objectsrc -> total_localtax1 , 0 , $langs , 1 , - 1 , - 1 , $conf -> currency ) . " </td></tr> " ;
2014-06-28 19:47:51 +02:00
}
2021-02-23 18:59:19 +01:00
if ( $mysoc -> localtax2_assuj == " 1 " || $objectsrc -> total_localtax2 != 0 ) { // Localtax2
2019-11-12 09:46:08 +01:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ) . '</td><td>' . price ( $objectsrc -> total_localtax2 , 0 , $langs , 1 , - 1 , - 1 , $conf -> currency ) . " </td></tr> " ;
2014-06-28 19:47:51 +02:00
}
2019-11-12 09:46:08 +01:00
print '<tr><td>' . $langs -> trans ( 'AmountTTC' ) . '</td><td>' . price ( $objectsrc -> total_ttc , 0 , $langs , 1 , - 1 , - 1 , $conf -> currency ) . " </td></tr> " ;
2019-03-13 14:10:36 +01:00
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled )) {
2020-10-31 14:32:18 +01:00
print '<tr><td>' . $langs -> trans ( 'MulticurrencyAmountHT' ) . '</td><td>' . price ( $objectsrc -> multicurrency_total_ht ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'MulticurrencyAmountVAT' ) . '</td><td>' . price ( $objectsrc -> multicurrency_total_tva ) . " </td></tr> " ;
print '<tr><td>' . $langs -> trans ( 'MulticurrencyAmountTTC' ) . '</td><td>' . price ( $objectsrc -> multicurrency_total_ttc ) . " </td></tr> " ;
2019-03-13 14:10:36 +01:00
}
2014-06-28 19:47:51 +02:00
}
print " </table> \n " ;
2013-02-02 18:31:45 +01:00
/*
2019-10-26 22:40:10 +02:00
* Combobox for copy function
2021-02-23 18:59:19 +01:00
*/
2011-05-03 13:29:09 +02:00
2021-02-23 18:59:19 +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
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> global -> PROPAL_CLONE_ON_CREATE_PAGE )) {
2017-10-07 13:09:31 +02:00
print '<br><table>' ;
2016-09-10 18:19:54 +02:00
2013-02-02 18:31:45 +01:00
// For backward compatibility
print '<tr>' ;
print '<td><input type="radio" name="createmode" value="copy"></td>' ;
2019-11-12 09:46:08 +01:00
print '<td>' . $langs -> trans ( " CopyPropalFrom " ) . ' </td>' ;
2013-02-02 18:31:45 +01:00
print '<td>' ;
2014-02-23 20:10:05 +01:00
$liste_propal = array ();
2014-02-23 17:01:51 +01:00
$liste_propal [ 0 ] = '' ;
2013-02-02 18:31:45 +01:00
2014-02-23 17:01:51 +01:00
$sql = " SELECT p.rowid as id, p.ref, s.nom " ;
2019-11-12 09:46:08 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " propal p " ;
$sql .= " , " . MAIN_DB_PREFIX . " societe s " ;
2014-02-23 17:01:51 +01:00
$sql .= " WHERE s.rowid = p.fk_soc " ;
2017-05-30 18:50:54 +02:00
$sql .= " AND p.entity IN ( " . getEntity ( 'propal' ) . " ) " ;
2014-02-23 17:01:51 +01:00
$sql .= " AND p.fk_statut <> 0 " ;
$sql .= " ORDER BY Id " ;
2013-02-02 18:31:45 +01:00
$resql = $db -> query ( $sql );
2014-02-23 17:01:51 +01:00
if ( $resql ) {
2013-02-02 18:31:45 +01:00
$num = $db -> num_rows ( $resql );
$i = 0 ;
2014-02-23 20:10:05 +01:00
while ( $i < $num ) {
2013-02-02 18:31:45 +01:00
$row = $db -> fetch_row ( $resql );
2019-11-12 09:46:08 +01:00
$propalRefAndSocName = $row [ 1 ] . " - " . $row [ 2 ];
2014-02-23 17:01:51 +01:00
$liste_propal [ $row [ 0 ]] = $propalRefAndSocName ;
2019-11-12 09:46:08 +01:00
$i ++ ;
2013-02-02 18:31:45 +01:00
}
2016-03-25 15:34:37 +01:00
print $form -> selectarray ( " copie_propal " , $liste_propal , 0 );
2014-02-23 17:01:51 +01:00
} else {
2013-02-02 18:31:45 +01:00
dol_print_error ( $db );
}
print '</td></tr>' ;
2012-11-28 10:32:24 +01:00
2017-01-22 12:13:32 +01:00
print '<tr><td class="tdtop"><input type="radio" name="createmode" value="empty" checked></td>' ;
2019-11-12 09:46:08 +01:00
print '<td valign="top" colspan="2">' . $langs -> trans ( " CreateEmptyPropal " ) . '</td></tr>' ;
2020-07-02 10:16:20 +02:00
print '</table>' ;
2013-02-02 18:31:45 +01:00
}
2008-08-12 20:20:18 +02:00
2020-10-27 18:19:31 +01:00
print dol_get_fiche_end ();
2014-06-28 19:47:51 +02:00
2013-02-02 18:31:45 +01:00
$langs -> load ( " bills " );
2021-08-20 14:41:30 +02:00
print $form -> buttonsSaveCancel ( " CreateDraft " );
2011-03-02 11:33:24 +01:00
2013-02-02 18:31:45 +01:00
print " </form> " ;
2014-06-28 19:47:51 +02:00
// Show origin lines
2019-11-12 09:46:08 +01:00
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc )) {
2014-06-28 19:47:51 +02:00
print '<br>' ;
$title = $langs -> trans ( 'ProductsAndServices' );
2015-09-24 18:27:13 +02:00
print load_fiche_titre ( $title );
2014-06-28 19:47:51 +02:00
2022-04-07 11:18:56 +02:00
print '<div class="div-table-responsive-no-min">' ;
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">' ;
2014-06-28 19:47:51 +02:00
$objectsrc -> printOriginLinesList ();
print '</table>' ;
2022-04-07 11:18:56 +02:00
print '</div>' ;
2014-06-28 19:47:51 +02:00
}
2018-02-14 21:14:24 +01:00
} elseif ( $object -> id > 0 ) {
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 );
2020-10-22 22:50:03 +02:00
print dol_get_fiche_head ( $head , 'comm' , $langs -> trans ( 'Proposal' ), - 1 , 'propal' );
2013-02-12 17:08:21 +01:00
2014-02-23 17:01:51 +01:00
$formconfirm = '' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// Clone confirmation
2014-02-23 17:01:51 +01:00
if ( $action == 'clone' ) {
2013-02-02 18:31:45 +01:00
// Create an array for form
2014-02-23 20:10:05 +01:00
$formquestion = array (
2020-07-02 10:16:20 +02:00
// 'text' => $langs->trans("ConfirmClone"),
// array('type' => 'checkbox', 'name' => 'clone_content', 'label' => $langs->trans("CloneMainAttributes"), 'value' => 1),
2022-04-13 16:15:07 +02:00
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)' , '' , 0 , 0 , null , 0 , 'maxwidth300' )),
2022-03-08 10:06:57 +01:00
array ( 'type' => 'checkbox' , 'name' => 'update_prices' , 'label' => $langs -> trans ( 'PuttingPricesUpToDate' ), 'value' => ( ! empty ( $conf -> global -> PROPOSAL_CLONE_UPDATE_PRICES ) ? 1 : 0 )),
2020-07-02 10:16:20 +02:00
);
2020-11-16 12:20:18 +01:00
if ( ! empty ( $conf -> global -> PROPAL_CLONE_DATE_DELIVERY ) && ! empty ( $object -> delivery_date )) {
$formquestion [] = array ( 'type' => 'date' , 'name' => 'date_delivery' , 'label' => $langs -> trans ( " DeliveryDate " ), 'value' => $object -> delivery_date );
2016-10-17 23:22:25 +02:00
}
2019-10-26 22:40:10 +02:00
// Incomplete payment. We ask if reason = discount or other
2019-11-12 09:46:08 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ToClone' ), $langs -> trans ( 'ConfirmClonePropal' , $object -> ref ), 'confirm_clone' , $formquestion , 'yes' , 1 );
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2021-02-23 18:59:19 +01:00
if ( $action == 'closeas' ) {
2017-09-15 16:06:25 +02:00
//Form to close proposal (signed or not)
$formquestion = array (
2020-11-04 13:33:52 +01:00
array ( 'type' => 'select' , 'name' => 'statut' , 'label' => '<span class="fieldrequired">' . $langs -> trans ( " CloseAs " ) . '</span>' , 'values' => array ( $object :: STATUS_SIGNED => $object -> LibStatut ( $object :: STATUS_SIGNED ), $object :: STATUS_NOTSIGNED => $object -> LibStatut ( $object :: STATUS_NOTSIGNED ))),
2019-11-12 09:46:08 +01:00
array ( 'type' => 'text' , 'name' => 'note_private' , 'label' => $langs -> trans ( " Note " ), 'value' => '' ) // Field to complete private note (not replace)
2017-10-18 11:23:16 +02:00
);
2017-09-15 16:06:25 +02:00
2022-05-09 15:57:10 +02:00
$deposit_percent_from_payment_terms = getDictionaryValue ( 'c_payment_term' , 'deposit_percent' , $object -> cond_reglement_id );
2021-09-30 12:41:07 +02:00
2022-06-11 09:46:28 +02:00
if ( ! empty ( $deposit_percent_from_payment_terms ) && isModEnabled ( 'facture' ) && ! empty ( $user -> rights -> facture -> creer )) {
2021-10-05 14:57:14 +02:00
require_once DOL_DOCUMENT_ROOT . '/compta/facture/class/facture.class.php' ;
2021-09-30 12:41:07 +02:00
$object -> fetchObjectLinked ();
$eligibleForDepositGeneration = true ;
if ( array_key_exists ( 'facture' , $object -> linkedObjects )) {
2021-10-04 18:21:10 +02:00
foreach ( $object -> linkedObjects [ 'facture' ] as $invoice ) {
2021-09-30 12:41:07 +02:00
if ( $invoice -> type == Facture :: TYPE_DEPOSIT ) {
$eligibleForDepositGeneration = false ;
break ;
}
}
}
if ( $eligibleForDepositGeneration && array_key_exists ( 'commande' , $object -> linkedObjects )) {
foreach ( $object -> linkedObjects [ 'commande' ] as $order ) {
$order -> fetchObjectLinked ();
if ( array_key_exists ( 'facture' , $order -> linkedObjects )) {
foreach ( $order -> linkedObjects [ 'facture' ] as $invoice ) {
if ( $invoice -> type == Facture :: TYPE_DEPOSIT ) {
$eligibleForDepositGeneration = false ;
break 2 ;
}
}
}
}
}
2021-10-04 18:09:24 +02:00
2021-09-30 12:41:07 +02:00
if ( $eligibleForDepositGeneration ) {
2021-10-04 18:09:24 +02:00
$formquestion [] = array (
'type' => 'checkbox' ,
'tdclass' => 'showonlyifsigned' ,
'name' => 'generate_deposit' ,
2021-10-05 13:00:25 +02:00
'label' => $form -> textwithpicto ( $langs -> trans ( 'GenerateDeposit' , $object -> deposit_percent ), $langs -> trans ( 'DepositGenerationPermittedByThePaymentTermsSelected' ))
2021-10-04 18:09:24 +02:00
);
$formquestion [] = array (
'type' => 'date' ,
'tdclass' => 'fieldrequired showonlyifgeneratedeposit' ,
'name' => 'datef' ,
'label' => $langs -> trans ( 'DateInvoice' ),
'value' => dol_now (),
'datenow' => true
);
if ( ! empty ( $conf -> global -> INVOICE_POINTOFTAX_DATE )) {
$formquestion [] = array (
'type' => 'date' ,
'tdclass' => 'fieldrequired showonlyifgeneratedeposit' ,
'name' => 'date_pointoftax' ,
'label' => $langs -> trans ( 'DatePointOfTax' ),
'value' => dol_now (),
'datenow' => true
);
}
ob_start ();
2021-10-05 10:54:22 +02:00
$form -> select_conditions_paiements ( 0 , 'cond_reglement_id' , - 1 , 0 , 0 , 'minwidth200' );
2021-10-04 18:09:24 +02:00
$paymentTermsSelect = ob_get_clean ();
$formquestion [] = array (
'type' => 'other' ,
'tdclass' => 'fieldrequired showonlyifgeneratedeposit' ,
'name' => 'cond_reglement_id' ,
'label' => $langs -> trans ( 'PaymentTerm' ),
'value' => $paymentTermsSelect
);
$formquestion [] = array (
'type' => 'checkbox' ,
'tdclass' => 'showonlyifgeneratedeposit' ,
'name' => 'validate_generated_deposit' ,
'label' => $langs -> trans ( 'ValidateGeneratedDeposit' )
);
2021-09-30 12:41:07 +02:00
$formquestion [] = array (
'type' => 'onecolumn' ,
'value' => '
< script >
let signedValue = ' . $object::STATUS_SIGNED . ' ;
$ ( document ) . ready ( function () {
2021-10-04 18:09:24 +02:00
$ ( " [name=generate_deposit] " ) . change ( function () {
let $self = $ ( this );
let $target = $ ( " .showonlyifgeneratedeposit " ) . parent ( " .tagtr " );
if ( ! $self . parents ( " .tagtr " ) . is ( " :hidden " ) && $self . is ( " :checked " )) {
$target . show ();
} else {
$target . hide ();
}
return true ;
});
$ ( " #statut " ) . change ( function () {
let $target = $ ( " .showonlyifsigned " ) . parent ( " .tagtr " );
2021-09-30 12:41:07 +02:00
if ( $ ( this ) . val () == signedValue ) {
2021-10-04 18:09:24 +02:00
$target . show ();
2021-09-30 12:41:07 +02:00
} else {
2021-10-04 18:09:24 +02:00
$target . hide ();
2021-09-30 12:41:07 +02:00
}
2021-10-04 18:09:24 +02:00
$ ( " [name=generate_deposit] " ) . trigger ( " change " );
2021-09-30 12:41:07 +02:00
return true ;
});
2021-10-04 18:09:24 +02:00
$ ( " #statut " ) . trigger ( " change " );
2021-09-30 12:41:07 +02:00
});
</ script >
'
);
}
2021-09-30 12:59:29 +02:00
}
2021-09-30 12:41:07 +02:00
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> notification -> enabled )) {
2019-11-12 09:46:08 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/class/notify.class.php' ;
2017-10-07 13:09:31 +02:00
$notify = new Notify ( $db );
2019-10-06 15:34:22 +02:00
$formquestion = array_merge ( $formquestion , array (
2017-10-07 13:09:31 +02:00
array ( 'type' => 'onecolumn' , 'value' => $notify -> confirmMessage ( 'PROPAL_CLOSE_SIGNED' , $object -> socid , $object )),
));
}
2017-10-06 16:15:40 +02:00
2020-09-02 19:15:03 +02:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'SetAcceptedRefused' ), $text , 'confirm_closeas' , $formquestion , '' , 1 , 250 );
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'delete' ) {
// Confirm delete
2019-11-12 09:46:08 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'DeleteProp' ), $langs -> trans ( 'ConfirmDeleteProp' , $object -> ref ), 'confirm_delete' , '' , 0 , 1 );
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'reopen' ) {
// Confirm reopen
2019-11-12 09:46:08 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ReOpen' ), $langs -> trans ( 'ConfirmReOpenProp' , $object -> ref ), 'confirm_reopen' , '' , 0 , 1 );
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'ask_deleteline' ) {
// Confirmation delete product/service line
2019-11-12 09:46:08 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&lineid=' . $lineid , $langs -> trans ( 'DeleteProductLine' ), $langs -> trans ( 'ConfirmDeleteProductLine' ), 'confirm_deleteline' , '' , 0 , 1 );
2021-03-01 20:37:16 +01:00
} elseif ( $action == 'validate' ) {
// Confirm validate proposal
2014-02-23 17:01:51 +01:00
$error = 0 ;
2013-02-12 17:08:21 +01:00
2019-10-26 22:40:10 +02:00
// We verify whether the object is provisionally numbering
2013-02-02 18:31:45 +01:00
$ref = substr ( $object -> ref , 1 , 4 );
2022-02-23 00:17:49 +01:00
if ( $ref == 'PROV' || $ref == '' ) {
2013-02-02 18:31:45 +01:00
$numref = $object -> getNextNumRef ( $soc );
2014-02-23 17:01:51 +01:00
if ( empty ( $numref )) {
2019-11-12 09:46:08 +01:00
$error ++ ;
2015-11-07 21:56:21 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2013-02-02 18:31:45 +01:00
}
2014-02-23 17:01:51 +01: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
2014-02-23 17:01:51 +01:00
$text = $langs -> trans ( 'ConfirmValidateProp' , $numref );
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> notification -> enabled )) {
require_once DOL_DOCUMENT_ROOT . '/core/class/notify.class.php' ;
2014-02-23 17:01:51 +01:00
$notify = new Notify ( $db );
$text .= '<br>' ;
2015-03-18 21:44:57 +01:00
$text .= $notify -> confirmMessage ( 'PROPAL_VALIDATE' , $object -> socid , $object );
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2021-07-20 14:46:56 +02:00
// mandatoryPeriod
$nbMandated = 0 ;
2021-07-20 15:35:10 +02:00
foreach ( $object -> lines as $line ) {
2021-07-20 14:46:56 +02:00
$res = $line -> fetch_product ();
2021-07-20 15:35:10 +02:00
if ( $res > 0 ) {
if ( $line -> product -> isService () && $line -> product -> isMandatoryPeriod () && ( empty ( $line -> date_start ) || empty ( $line -> date_end ) )) {
2021-07-20 14:46:56 +02:00
$nbMandated ++ ;
break ;
}
}
}
2021-09-09 02:37:47 +02:00
if ( $nbMandated > 0 ) {
$text .= '<div><span class="clearboth nowraponall warning">' . $langs -> trans ( " mandatoryPeriodNeedTobeSetMsgValidate " ) . '</span></div>' ;
}
2021-07-20 14:46:56 +02:00
2021-02-23 18:59:19 +01:00
if ( ! $error ) {
2019-11-12 09:46:08 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ValidateProp' ), $text , 'confirm_validate' , '' , 0 , 1 );
2021-02-23 18:59:19 +01:00
}
2014-02-23 17:01:51 +01:00
}
2013-02-12 17:08:21 +01:00
2018-08-30 11:27:48 +02:00
// Call Hook formConfirm
2020-01-28 12:00:27 +01:00
$parameters = array ( 'formConfirm' => $formconfirm , 'lineid' => $lineid );
2018-08-30 11:27:48 +02:00
$reshook = $hookmanager -> executeHooks ( 'formConfirm' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2021-02-23 18:59:19 +01:00
if ( empty ( $reshook )) {
$formconfirm .= $hookmanager -> resPrint ;
} elseif ( $reshook > 0 ) {
$formconfirm = $hookmanager -> resPrint ;
}
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
2016-09-19 10:43:30 +02:00
// Proposal card
2016-12-10 12:21:48 +01:00
2019-11-12 09:46:08 +01:00
$linkback = '<a href="' . DOL_URL_ROOT . '/comm/propal/list.php?restore_lastsearch_values=1' . ( ! empty ( $socid ) ? '&socid=' . $socid : '' ) . '">' . $langs -> trans ( " BackToList " ) . '</a>' ;
2013-02-12 17:08:21 +01:00
2019-11-12 09:46:08 +01:00
$morehtmlref = '<div class="refidno">' ;
2016-09-18 21:13:23 +02:00
// Ref customer
2019-11-12 09:46:08 +01:00
$morehtmlref .= $form -> editfieldkey ( " RefCustomer " , 'ref_client' , $object -> ref_client , $object , $usercancreate , 'string' , '' , 0 , 1 );
$morehtmlref .= $form -> editfieldval ( " RefCustomer " , 'ref_client' , $object -> ref_client , $object , $usercancreate , 'string' , '' , null , null , '' , 1 );
2017-10-07 13:09:31 +02:00
// Thirdparty
2021-10-30 17:19:46 +02:00
$morehtmlref .= '<br><span class="hideonsmartphone">' . $langs -> trans ( 'ThirdParty' ) . ' : </span>' . $object -> thirdparty -> getNomUrl ( 1 , 'customer' );
2021-02-23 18:59:19 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_OTHER_LINK ) && $object -> thirdparty -> id > 0 ) {
$morehtmlref .= ' (<a href="' . DOL_URL_ROOT . '/comm/propal/list.php?socid=' . $object -> thirdparty -> id . '&search_societe=' . urlencode ( $object -> thirdparty -> name ) . '">' . $langs -> trans ( " OtherProposals " ) . '</a>)' ;
}
2017-10-07 13:09:31 +02:00
// Project
2022-06-14 17:53:17 +02:00
if ( ! empty ( $conf -> project -> enabled )) {
2017-10-07 13:09:31 +02:00
$langs -> load ( " projects " );
2021-10-30 17:19:46 +02:00
$morehtmlref .= '<br><span class="paddingrightonly">' . $langs -> trans ( 'Project' ) . '</span>' ;
2021-02-23 18:59:19 +01:00
if ( $usercancreate ) {
if ( $action != 'classify' ) {
2021-09-18 22:09:55 +02:00
$morehtmlref .= '<a class="editfielda" href="' . $_SERVER [ 'PHP_SELF' ] . '?action=classify&token=' . newToken () . '&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetProject' )) . '</a> : ' ;
2021-02-23 18:59:19 +01:00
}
2017-10-07 13:09:31 +02:00
if ( $action == 'classify' ) {
//$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
2019-11-12 09:46:08 +01:00
$morehtmlref .= '<form method="post" action="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '">' ;
$morehtmlref .= '<input type="hidden" name="action" value="classin">' ;
2019-12-18 23:12:31 +01:00
$morehtmlref .= '<input type="hidden" name="token" value="' . newToken () . '">' ;
2019-11-12 09:46:08 +01:00
$morehtmlref .= $formproject -> select_projects ( $object -> socid , $object -> fk_project , 'projectid' , $maxlength , 0 , 1 , 0 , 1 , 0 , 0 , '' , 1 );
$morehtmlref .= '<input type="submit" class="button valignmiddle" value="' . $langs -> trans ( " Modify " ) . '">' ;
$morehtmlref .= '</form>' ;
2017-10-07 13:09:31 +02:00
} else {
2019-11-12 09:46:08 +01:00
$morehtmlref .= $form -> form_project ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> socid , $object -> fk_project , 'none' , 0 , 0 , 0 , 1 );
2017-10-07 13:09:31 +02:00
}
} else {
2019-11-12 09:46:08 +01:00
if ( ! empty ( $object -> fk_project )) {
2017-10-07 13:09:31 +02:00
$proj = new Project ( $db );
$proj -> fetch ( $object -> fk_project );
2021-10-30 17:19:46 +02:00
$morehtmlref .= ': ' . $proj -> getNomUrl ( 1 );
2021-10-29 09:40:38 +02:00
if ( $proj -> title ) {
$morehtmlref .= ' - ' . $proj -> title ;
}
2017-10-07 13:09:31 +02:00
} else {
2019-11-12 09:46:08 +01:00
$morehtmlref .= '' ;
2017-10-07 13:09:31 +02:00
}
}
}
2019-11-12 09:46:08 +01:00
$morehtmlref .= '</div>' ;
2016-12-10 12:21:48 +01:00
2016-09-18 21:13:23 +02:00
dol_banner_tab ( $object , 'ref' , $linkback , 1 , 'ref' , 'ref' , $morehtmlref );
2016-12-10 12:21:48 +01:00
2017-10-07 13:09:31 +02:00
print '<div class="fichecenter">' ;
print '<div class="fichehalfleft">' ;
print '<div class="underbanner clearboth"></div>' ;
2016-12-10 12:21:48 +01:00
2019-01-17 19:27:26 +01:00
print '<table class="border tableforfield" width="100%">' ;
2016-12-10 12:21:48 +01:00
2017-03-23 22:24:39 +01:00
// Link for thirdparty discounts
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> FACTURE_DEPOSITS_ARE_JUST_PAYMENTS )) {
2018-02-20 12:26:29 +01:00
$filterabsolutediscount = " fk_facture_source IS NULL " ; // If we want deposit to be substracted to payments only and not to total of final invoice
$filtercreditnote = " fk_facture_source IS NOT NULL " ; // If we want deposit to be substracted to payments only and not to total of final invoice
} else {
$filterabsolutediscount = " fk_facture_source IS NULL OR (description LIKE '(DEPOSIT)%' AND description NOT LIKE '(EXCESS RECEIVED)%') " ;
$filtercreditnote = " fk_facture_source IS NOT NULL AND (description NOT LIKE '(DEPOSIT)%' OR description LIKE '(EXCESS RECEIVED)%') " ;
}
2019-11-12 09:46:08 +01:00
print '<tr><td class="titlefield">' . $langs -> trans ( 'Discounts' ) . '</td><td>' ;
2018-03-02 16:48:25 +01:00
2018-02-20 12:26:29 +01:00
$absolute_discount = $soc -> getAvailableDiscounts ( '' , $filterabsolutediscount );
$absolute_creditnote = $soc -> getAvailableDiscounts ( '' , $filtercreditnote );
2014-02-23 17:01:51 +01:00
$absolute_discount = price2num ( $absolute_discount , 'MT' );
$absolute_creditnote = price2num ( $absolute_creditnote , 'MT' );
2018-03-02 16:48:25 +01:00
2021-10-19 22:19:30 +02:00
$caneditfield = ( $object -> statut != Propal :: STATUS_SIGNED && $object -> statut != Propal :: STATUS_BILLED );
2018-03-02 16:48:25 +01:00
$thirdparty = $soc ;
$discount_type = 0 ;
2019-11-12 09:46:08 +01:00
$backtopage = urlencode ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
2018-03-02 16:48:25 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/object_discounts.tpl.php' ;
2013-02-02 18:31:45 +01:00
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>' ;
2022-08-23 08:56:00 +02:00
// print '<table class="nobordernopadding" width="100%"><tr><td>';
// print $langs->trans('DatePropal');
// print '</td>';
// if ($action != 'editdate' && $usercancreate && $caneditfield) {
// print '<td class="right"><a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=editdate&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->trans('SetDate'), 1).'</a></td>';
// }
// print '</tr></table>';
$editenable = $usercancreate && $caneditfield && $object -> statut == Propal :: STATUS_DRAFT ;
print $form -> editfieldkey ( " DatePropal " , 'date' , '' , $object , $editenable );
2021-02-27 12:45:07 +01:00
print '</td><td class="valuefield">' ;
2021-10-19 22:19:30 +02:00
if ( $action == 'editdate' && $usercancreate && $caneditfield ) {
2019-11-12 09:46:08 +01:00
print '<form name="editdate" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
2020-03-24 13:10:35 +01:00
print '<input type="hidden" name="token" value="' . newToken () . '">' ;
2013-02-02 18:31:45 +01:00
print '<input type="hidden" name="action" value="setdate">' ;
2018-09-09 11:25:59 +02:00
print $form -> selectDate ( $object -> date , 're' , '' , '' , 0 , " editdate " );
2021-08-24 17:04:17 +02:00
print '<input type="submit" class="button button-edit" value="' . $langs -> trans ( 'Modify' ) . '">' ;
2013-02-02 18:31:45 +01:00
print '</form>' ;
2014-02-23 17:01:51 +01:00
} else {
if ( $object -> date ) {
2018-03-01 23:51:06 +01:00
print dol_print_date ( $object -> date , 'day' );
2014-02-23 17:01:51 +01:00
} else {
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>' ;
2021-10-19 22:19:30 +02:00
if ( $action != 'editecheance' && $usercancreate && $caneditfield ) {
2021-09-27 12:24:01 +02:00
print '<td class="right"><a class="editfielda" href="' . $_SERVER [ " PHP_SELF " ] . '?action=editecheance&token=' . newToken () . '&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetConditions' ), 1 ) . '</a></td>' ;
2021-02-23 18:59:19 +01:00
}
2013-02-02 18:31:45 +01:00
print '</tr></table>' ;
2021-02-27 12:45:07 +01:00
print '</td><td class="valuefield">' ;
2021-10-19 22:19:30 +02:00
if ( $action == 'editecheance' && $usercancreate && $caneditfield ) {
2019-11-12 09:46:08 +01:00
print '<form name="editecheance" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
2020-03-24 13:10:35 +01:00
print '<input type="hidden" name="token" value="' . newToken () . '">' ;
2013-02-02 18:31:45 +01:00
print '<input type="hidden" name="action" value="setecheance">' ;
2018-09-09 11:25:59 +02:00
print $form -> selectDate ( $object -> fin_validite , 'ech' , '' , '' , '' , " editecheance " );
2021-08-24 17:04:17 +02:00
print '<input type="submit" class="button button-edit" value="' . $langs -> trans ( 'Modify' ) . '">' ;
2013-02-02 18:31:45 +01:00
print '</form>' ;
2014-02-23 17:01:51 +01:00
} else {
2019-11-12 09:46:08 +01:00
if ( ! empty ( $object -> fin_validite )) {
2018-03-01 23:51:06 +01:00
print dol_print_date ( $object -> fin_validite , 'day' );
2021-02-23 18:59:19 +01:00
if ( $object -> statut == Propal :: STATUS_VALIDATED && $object -> fin_validite < ( $now - $conf -> propal -> cloture -> warning_delay )) {
2014-02-23 17:01:51 +01:00
print img_warning ( $langs -> trans ( " Late " ));
2021-02-23 18:59:19 +01:00
}
2014-02-23 17:01:51 +01:00
} else {
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>' ;
2021-10-19 22:19:30 +02:00
if ( $action != 'editconditions' && $usercancreate && $caneditfield ) {
2021-09-27 12:24:01 +02:00
print '<td class="right"><a class="editfielda" href="' . $_SERVER [ " PHP_SELF " ] . '?action=editconditions&token=' . newToken () . '&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetConditions' ), 1 ) . '</a></td>' ;
2021-02-23 18:59:19 +01:00
}
2013-02-02 18:31:45 +01:00
print '</tr></table>' ;
2021-02-27 12:45:07 +01:00
print '</td><td class="valuefield">' ;
2021-10-19 22:19:30 +02:00
if ( $action == 'editconditions' && $usercancreate && $caneditfield ) {
2021-10-13 11:39:09 +02:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'cond_reglement_id' , 0 , '' , 1 , $object -> deposit_percent );
2014-02-23 17:01:51 +01:00
} else {
2021-10-13 11:39:09 +02:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'none' , 0 , '' , 1 , $object -> deposit_percent );
2013-02-02 18:31:45 +01:00
}
print '</td>' ;
print '</tr>' ;
2013-02-12 17:08:21 +01:00
2021-03-02 00:11:15 +01:00
// Payment mode
2022-05-04 00:52:49 +02:00
print '<tr class="field_mode_reglement_id">' ;
print '<td class="titlefieldcreate">' ;
print '<table class="nobordernopadding centpercent"><tr><td>' ;
2021-03-02 00:11:15 +01:00
print $langs -> trans ( 'PaymentMode' );
print '</td>' ;
2021-10-19 22:19:30 +02:00
if ( $action != 'editmode' && $usercancreate && $caneditfield ) {
2021-09-27 12:24:01 +02:00
print '<td class="right"><a class="editfielda" href="' . $_SERVER [ " PHP_SELF " ] . '?action=editmode&token=' . newToken () . '&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetMode' ), 1 ) . '</a></td>' ;
2021-03-02 00:11:15 +01:00
}
print '</tr></table>' ;
print '</td><td class="valuefieldcreate">' ;
2021-10-19 22:19:30 +02:00
if ( $action == 'editmode' && $usercancreate && $caneditfield ) {
2021-03-02 00:11:15 +01:00
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> mode_reglement_id , 'mode_reglement_id' , 'CRDT' , 1 , 1 );
} else {
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> mode_reglement_id , 'none' );
}
print '</td></tr>' ;
2013-02-02 18:31:45 +01:00
// Delivery date
$langs -> load ( 'deliveries' );
print '<tr><td>' ;
2021-10-19 22:19:30 +02:00
print $form -> editfieldkey ( $langs -> trans ( 'DeliveryDate' ), 'date_livraison' , $object -> delivery_date , $object , $usercancreate && $caneditfield , 'datepicker' );
2022-05-04 00:52:49 +02:00
print '</td><td class="valuefieldedit">' ;
2021-10-19 22:19:30 +02:00
print $form -> editfieldval ( $langs -> trans ( 'DeliveryDate' ), 'date_livraison' , $object -> delivery_date , $object , $usercancreate && $caneditfield , 'datepicker' );
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 delay
2016-03-15 19:38:01 +01:00
print '<tr class="fielddeliverydelay"><td>' ;
2013-02-02 18:31:45 +01:00
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> commande -> enabled )) {
2021-10-19 21:38:36 +02:00
print $form -> textwithpicto ( $langs -> trans ( 'AvailabilityPeriod' ), $langs -> trans ( 'AvailabilityPeriod' ) . ' (' . $langs -> trans ( 'AfterOrder' ) . ')' );
} else {
print $langs -> trans ( 'AvailabilityPeriod' );
2021-02-23 18:59:19 +01:00
}
2013-02-02 18:31:45 +01:00
print '</td>' ;
2021-10-19 22:19:30 +02:00
if ( $action != 'editavailability' && $usercancreate && $caneditfield ) {
2021-09-27 12:24:01 +02:00
print '<td class="right"><a class="editfielda" href="' . $_SERVER [ " PHP_SELF " ] . '?action=editavailability&token=' . newToken () . '&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetAvailability' ), 1 ) . '</a></td>' ;
2021-02-23 18:59:19 +01:00
}
2013-02-02 18:31:45 +01:00
print '</tr></table>' ;
2021-02-27 12:45:07 +01:00
print '</td><td class="valuefield">' ;
2021-10-19 22:19:30 +02:00
if ( $action == 'editavailability' && $usercancreate && $caneditfield ) {
2019-11-12 09:46:08 +01:00
$form -> form_availability ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> availability_id , 'availability_id' , 1 );
2014-02-23 17:01:51 +01:00
} else {
2019-11-12 09:46:08 +01:00
$form -> form_availability ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> availability_id , 'none' , 1 );
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 '</td>' ;
print '</tr>' ;
2013-02-12 17:08:21 +01:00
2017-10-07 13:09:31 +02:00
// Shipping Method
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> expedition -> enabled )) {
2017-10-07 13:09:31 +02:00
print '<tr><td>' ;
2022-05-04 00:52:49 +02:00
print '<table class="nobordernopadding centpercent"><tr><td>' ;
2017-10-07 13:09:31 +02:00
print $langs -> trans ( 'SendingMethod' );
print '</td>' ;
2021-10-19 22:19:30 +02:00
if ( $action != 'editshippingmethod' && $usercancreate && $caneditfield ) {
2021-09-27 12:24:01 +02:00
print '<td class="right"><a class="editfielda" href="' . $_SERVER [ " PHP_SELF " ] . '?action=editshippingmethod&token=' . newToken () . '&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetShippingMode' ), 1 ) . '</a></td>' ;
2021-02-23 18:59:19 +01:00
}
2017-10-07 13:09:31 +02:00
print '</tr></table>' ;
2021-02-27 12:45:07 +01:00
print '</td><td class="valuefield">' ;
2021-10-19 22:19:30 +02:00
if ( $action == 'editshippingmethod' && $usercancreate && $caneditfield ) {
2017-10-07 13:09:31 +02:00
$form -> formSelectShippingMethod ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> shipping_method_id , 'shipping_method_id' , 1 );
} else {
$form -> formSelectShippingMethod ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> shipping_method_id , 'none' );
}
print '</td>' ;
print '</tr>' ;
}
2014-07-24 18:08:08 +02:00
2021-01-09 02:45:46 +01:00
// Warehouse
2021-01-10 01:07:27 +01:00
if ( ! empty ( $conf -> stock -> enabled ) && ! empty ( $conf -> global -> WAREHOUSE_ASK_WAREHOUSE_DURING_PROPAL )) {
2021-01-09 02:45:46 +01:00
$langs -> load ( 'stocks' );
require_once DOL_DOCUMENT_ROOT . '/product/class/html.formproduct.class.php' ;
$formproduct = new FormProduct ( $db );
2022-05-04 00:52:49 +02:00
print '<tr class="field_warehouse_id"><td class="titlefieldcreate">' ;
2021-01-09 02:45:46 +01:00
$editenable = $usercancreate ;
print $form -> editfieldkey ( " Warehouse " , 'warehouse' , '' , $object , $editenable );
2021-02-27 12:45:07 +01:00
print '</td><td class="valuefieldcreate">' ;
2021-01-09 02:45:46 +01:00
if ( $action == 'editwarehouse' ) {
$formproduct -> formSelectWarehouses ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> warehouse_id , 'warehouse_id' , 1 );
} else {
$formproduct -> formSelectWarehouses ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> warehouse_id , 'none' );
}
print '</td>' ;
print '</tr>' ;
}
2013-02-02 18:31:45 +01:00
// Origin of demand
print '<tr><td>' ;
2022-05-04 00:52:49 +02:00
print '<table class="nobordernopadding centpercent"><tr><td>' ;
2013-02-02 18:31:45 +01:00
print $langs -> trans ( 'Source' );
print '</td>' ;
2021-05-07 22:13:53 +02:00
if ( $action != 'editdemandreason' && $usercancreate ) {
2021-09-27 12:24:01 +02:00
print '<td class="right"><a class="editfielda" href="' . $_SERVER [ " PHP_SELF " ] . '?action=editdemandreason&token=' . newToken () . '&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetDemandReason' ), 1 ) . '</a></td>' ;
2021-02-23 18:59:19 +01:00
}
2013-02-02 18:31:45 +01:00
print '</tr></table>' ;
2021-02-27 12:45:07 +01:00
print '</td><td class="valuefield">' ;
2021-05-07 22:13:53 +02:00
if ( $action == 'editdemandreason' && $usercancreate ) {
2019-11-12 09:46:08 +01:00
$form -> formInputReason ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> demand_reason_id , 'demand_reason_id' , 1 );
2014-02-23 17:01:51 +01:00
} else {
2019-11-12 09:46:08 +01:00
$form -> formInputReason ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> demand_reason_id , 'none' );
2013-02-02 18:31:45 +01:00
}
print '</td>' ;
print '</tr>' ;
2013-02-12 17:08:21 +01:00
2016-01-23 16:01:55 +01:00
// Multicurrency
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled )) {
2016-01-23 16:01:55 +01:00
// Multicurrency code
print '<tr>' ;
2016-09-19 10:43:30 +02:00
print '<td>' ;
2016-01-23 16:01:55 +01:00
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
2018-10-27 18:07:05 +02:00
print $form -> editfieldkey ( 'Currency' , 'multicurrency_code' , '' , $object , 0 );
2016-01-23 16:01:55 +01:00
print '</td>' ;
2021-02-23 18:59:19 +01:00
if ( $action != 'editmulticurrencycode' && $object -> statut == $object :: STATUS_DRAFT && $usercancreate ) {
2021-09-27 12:24:01 +02:00
print '<td class="right"><a class="editfielda" href="' . $_SERVER [ " PHP_SELF " ] . '?action=editmulticurrencycode&token=' . newToken () . '&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetMultiCurrencyCode' ), 1 ) . '</a></td>' ;
2021-02-23 18:59:19 +01:00
}
2016-01-23 16:01:55 +01:00
print '</tr></table>' ;
2021-02-27 12:45:07 +01:00
print '</td><td class="valuefield">' ;
2019-11-03 17:48:16 +01:00
if ( $object -> statut == $object :: STATUS_DRAFT && $action == 'editmulticurrencycode' && $usercancreate ) {
2019-11-12 09:46:08 +01:00
$form -> form_multicurrency_code ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_code , 'multicurrency_code' );
2016-01-23 16:01:55 +01:00
} else {
2019-11-12 09:46:08 +01:00
$form -> form_multicurrency_code ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_code , 'none' );
2016-01-23 16:01:55 +01:00
}
print '</td></tr>' ;
2016-08-10 09:47:25 +02:00
2016-01-23 16:01:55 +01:00
// Multicurrency rate
2021-02-23 18:59:19 +01:00
if ( $object -> multicurrency_code != $conf -> currency || $object -> multicurrency_tx != 1 ) {
2019-11-03 17:48:16 +01:00
print '<tr>' ;
print '<td>' ;
print '<table class="nobordernopadding" width="100%"><tr>' ;
print '<td>' ;
print $form -> editfieldkey ( 'CurrencyRate' , 'multicurrency_tx' , '' , $object , 0 );
print '</td>' ;
2021-02-23 18:59:19 +01:00
if ( $action != 'editmulticurrencyrate' && $object -> statut == $object :: STATUS_DRAFT && $object -> multicurrency_code && $object -> multicurrency_code != $conf -> currency && $usercancreate ) {
2021-09-27 12:24:01 +02:00
print '<td class="right"><a class="editfielda" href="' . $_SERVER [ " PHP_SELF " ] . '?action=editmulticurrencyrate&token=' . newToken () . '&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetMultiCurrencyCode' ), 1 ) . '</a></td>' ;
2021-02-23 18:59:19 +01:00
}
2019-11-03 17:48:16 +01:00
print '</tr></table>' ;
2021-02-27 12:45:07 +01:00
print '</td><td class="valuefield">' ;
2019-11-12 09:46:08 +01:00
if ( $object -> statut == $object :: STATUS_DRAFT && ( $action == 'editmulticurrencyrate' || $action == 'actualizemulticurrencyrate' ) && $usercancreate ) {
if ( $action == 'actualizemulticurrencyrate' ) {
2019-11-03 17:48:16 +01:00
list ( $object -> fk_multicurrency , $object -> multicurrency_tx ) = MultiCurrency :: getIdAndTxFromCode ( $object -> db , $object -> multicurrency_code );
}
2019-11-12 09:46:08 +01:00
$form -> form_multicurrency_rate ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_tx , 'multicurrency_tx' , $object -> multicurrency_code );
2019-11-03 17:48:16 +01:00
} else {
2019-11-12 09:46:08 +01:00
$form -> form_multicurrency_rate ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_tx , 'none' , $object -> multicurrency_code );
2019-11-03 17:48:16 +01:00
if ( $object -> statut == $object :: STATUS_DRAFT && $object -> multicurrency_code && $object -> multicurrency_code != $conf -> currency ) {
print '<div class="inline-block"> ' ;
print '<a href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=actualizemulticurrencyrate">' . $langs -> trans ( " ActualizeCurrency " ) . '</a>' ;
print '</div>' ;
}
2016-12-11 01:04:58 +01:00
}
2019-11-03 17:48:16 +01:00
print '</td></tr>' ;
2016-01-23 16:01:55 +01:00
}
}
2021-02-23 18:59:19 +01:00
if ( $soc -> outstanding_limit ) {
2013-09-27 22:00:11 +02:00
// Outstanding Bill
print '<tr><td>' ;
print $langs -> trans ( 'OutstandingBill' );
2021-02-27 12:45:07 +01:00
print '</td><td class="valuefield">' ;
2019-08-29 00:45:02 +02:00
$arrayoutstandingbills = $soc -> getOutstandingBills ();
2021-06-08 17:39:13 +02:00
print ( $arrayoutstandingbills [ 'opened' ] > $soc -> outstanding_limit ? img_warning () : '' );
2019-11-12 09:46:08 +01:00
print price ( $arrayoutstandingbills [ 'opened' ]) . ' / ' ;
2015-04-21 12:03:51 +02:00
print price ( $soc -> outstanding_limit , 0 , $langs , 1 , - 1 , - 1 , $conf -> currency );
2013-09-27 22:00:11 +02:00
print '</td>' ;
print '</tr>' ;
}
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> global -> BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL ) && ! empty ( $conf -> banque -> enabled )) {
2017-10-07 13:09:31 +02:00
// Bank Account
print '<tr><td>' ;
print '<table width="100%" class="nobordernopadding"><tr><td>' ;
print $langs -> trans ( 'BankAccount' );
print '</td>' ;
2021-02-23 18:59:19 +01:00
if ( $action != 'editbankaccount' && $usercancreate ) {
2021-09-27 12:24:01 +02:00
print '<td class="right"><a class="editfielda" href="' . $_SERVER [ " PHP_SELF " ] . '?action=editbankaccount&token=' . newToken () . '&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetBankAccount' ), 1 ) . '</a></td>' ;
2021-02-23 18:59:19 +01:00
}
2017-10-07 13:09:31 +02:00
print '</tr></table>' ;
2021-02-27 12:45:07 +01:00
print '</td><td class="valuefield">' ;
2017-10-07 13:09:31 +02:00
if ( $action == 'editbankaccount' ) {
$form -> formSelectAccount ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> fk_account , 'fk_account' , 1 );
} else {
$form -> formSelectAccount ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> fk_account , 'none' );
}
print '</td>' ;
print '</tr>' ;
2014-09-04 22:37:33 +02:00
}
2020-10-31 14:32:18 +01:00
$tmparray = $object -> getTotalWeightVolume ();
$totalWeight = $tmparray [ 'weight' ];
$totalVolume = $tmparray [ 'volume' ];
if ( $totalWeight ) {
print '<tr><td>' . $langs -> trans ( " CalculatedWeight " ) . '</td>' ;
2021-02-27 12:45:07 +01:00
print '<td class="valuefield">' ;
2021-10-19 21:38:36 +02:00
print showDimensionInBestUnit ( $totalWeight , 0 , " weight " , $langs , isset ( $conf -> global -> MAIN_WEIGHT_DEFAULT_ROUND ) ? $conf -> global -> MAIN_WEIGHT_DEFAULT_ROUND : - 1 , isset ( $conf -> global -> MAIN_WEIGHT_DEFAULT_UNIT ) ? $conf -> global -> MAIN_WEIGHT_DEFAULT_UNIT : 'no' , 0 );
2020-10-31 14:32:18 +01:00
print '</td></tr>' ;
}
if ( $totalVolume ) {
print '<tr><td>' . $langs -> trans ( " CalculatedVolume " ) . '</td>' ;
2021-02-27 12:45:07 +01:00
print '<td class="valuefield">' ;
2021-10-19 21:38:36 +02:00
print showDimensionInBestUnit ( $totalVolume , 0 , " volume " , $langs , isset ( $conf -> global -> MAIN_VOLUME_DEFAULT_ROUND ) ? $conf -> global -> MAIN_VOLUME_DEFAULT_ROUND : - 1 , isset ( $conf -> global -> MAIN_VOLUME_DEFAULT_UNIT ) ? $conf -> global -> MAIN_VOLUME_DEFAULT_UNIT : 'no' , 0 );
2020-10-31 14:32:18 +01:00
print '</td></tr>' ;
}
2017-12-28 16:20:08 +01:00
2015-02-10 11:46:35 +01:00
// Incoterms
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> incoterm -> enabled )) {
2015-02-10 11:46:35 +01:00
print '<tr><td>' ;
2017-10-07 13:09:31 +02:00
print '<table width="100%" class="nobordernopadding"><tr><td>' ;
print $langs -> trans ( 'IncotermLabel' );
2019-01-22 14:04:33 +01:00
print '<td><td class="right">' ;
2021-10-19 22:19:30 +02:00
if ( $action != 'editincoterm' && $usercancreate && $caneditfield ) {
2021-09-27 12:24:01 +02:00
print '<a class="editfielda" href="' . DOL_URL_ROOT . '/comm/propal/card.php?id=' . $object -> id . '&action=editincoterm&token=' . newToken () . '">' . img_edit () . '</a>' ;
2021-02-23 18:59:19 +01:00
} else {
print ' ' ;
}
2017-10-07 13:09:31 +02:00
print '</td></tr></table>' ;
print '</td>' ;
2021-02-27 12:45:07 +01:00
print '<td class="valuefield">' ;
2021-10-19 22:19:30 +02:00
if ( $action == 'editincoterm' && $usercancreate && $caneditfield ) {
2019-11-12 09:46:08 +01:00
print $form -> select_incoterms (( ! empty ( $object -> fk_incoterms ) ? $object -> fk_incoterms : '' ), ( ! empty ( $object -> location_incoterms ) ? $object -> location_incoterms : '' ), $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id );
2021-10-19 22:19:30 +02:00
} else {
print $form -> textwithpicto ( $object -> display_incoterms (), $object -> label_incoterms , 1 );
2015-02-10 11:46:35 +01:00
}
2017-10-07 13:09:31 +02:00
print '</td></tr>' ;
2015-02-10 11:46:35 +01:00
}
2014-10-14 17:00:06 +02:00
// Other attributes
2019-11-12 09:46:08 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php' ;
2014-07-07 18:40:18 +02:00
2016-09-19 10:43:30 +02:00
print '</table>' ;
2016-12-10 12:21:48 +01:00
2016-09-19 10:43:30 +02:00
print '</div>' ;
print '<div class="fichehalfright">' ;
print '<div class="underbanner clearboth"></div>' ;
2016-12-10 12:21:48 +01:00
2019-01-17 19:27:26 +01:00
print '<table class="border tableforfield centpercent">' ;
2016-12-10 12:21:48 +01:00
2021-03-02 02:42:04 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled ) && ( $object -> multicurrency_code && $object -> multicurrency_code != $conf -> currency )) {
2017-10-07 13:09:31 +02:00
// Multicurrency Amount HT
2019-11-12 09:46:08 +01:00
print '<tr><td class="titlefieldmiddle">' . $form -> editfieldkey ( 'MulticurrencyAmountHT' , 'multicurrency_total_ht' , '' , $object , 0 ) . '</td>' ;
2022-06-25 06:51:48 +02:00
print '<td class="nowrap right amountcard">' . price ( $object -> multicurrency_total_ht , '' , $langs , 0 , - 1 , - 1 , ( ! empty ( $object -> multicurrency_code ) ? $object -> multicurrency_code : $conf -> currency )) . '</td>' ;
2017-10-07 13:09:31 +02:00
print '</tr>' ;
2016-12-10 12:21:48 +01:00
2017-10-07 13:09:31 +02:00
// Multicurrency Amount VAT
2019-11-12 09:46:08 +01:00
print '<tr><td>' . $form -> editfieldkey ( 'MulticurrencyAmountVAT' , 'multicurrency_total_tva' , '' , $object , 0 ) . '</td>' ;
2022-06-25 06:51:48 +02:00
print '<td class="nowrap right amountcard">' . price ( $object -> multicurrency_total_tva , '' , $langs , 0 , - 1 , - 1 , ( ! empty ( $object -> multicurrency_code ) ? $object -> multicurrency_code : $conf -> currency )) . '</td>' ;
2017-10-07 13:09:31 +02:00
print '</tr>' ;
2016-12-10 12:21:48 +01:00
2017-10-07 13:09:31 +02:00
// Multicurrency Amount TTC
2019-11-12 09:46:08 +01:00
print '<tr><td>' . $form -> editfieldkey ( 'MulticurrencyAmountTTC' , 'multicurrency_total_ttc' , '' , $object , 0 ) . '</td>' ;
2022-06-25 06:51:48 +02:00
print '<td class="nowrap right amountcard">' . price ( $object -> multicurrency_total_ttc , '' , $langs , 0 , - 1 , - 1 , ( ! empty ( $object -> multicurrency_code ) ? $object -> multicurrency_code : $conf -> currency )) . '</td>' ;
2017-10-07 13:09:31 +02:00
print '</tr>' ;
}
2016-12-10 12:21:48 +01:00
2013-02-02 18:31:45 +01:00
// Amount HT
2019-11-12 09:46:08 +01:00
print '<tr><td class="titlefieldmiddle">' . $langs -> trans ( 'AmountHT' ) . '</td>' ;
2022-06-25 06:51:48 +02:00
print '<td class="nowrap right amountcard">' . price ( $object -> total_ht , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2013-02-02 18:31:45 +01:00
print '</tr>' ;
2016-12-10 12:21:48 +01:00
2013-02-02 18:31:45 +01:00
// Amount VAT
2019-11-12 09:46:08 +01:00
print '<tr><td>' . $langs -> trans ( 'AmountVAT' ) . '</td>' ;
2022-06-25 06:51:48 +02:00
print '<td class="nowrap right amountcard">' . price ( $object -> total_tva , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2015-03-10 19:31:04 +01:00
print '</tr>' ;
2016-12-10 12:21:48 +01:00
2013-02-02 18:31:45 +01:00
// Amount Local Taxes
2021-02-23 18:59:19 +01:00
if ( $mysoc -> localtax1_assuj == " 1 " || $object -> total_localtax1 != 0 ) { // Localtax1
2019-11-12 09:46:08 +01:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ) . '</td>' ;
2022-06-25 06:51:48 +02:00
print '<td class="nowrap right amountcard">' . price ( $object -> total_localtax1 , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2017-10-07 13:09:31 +02:00
print '</tr>' ;
2013-02-02 18:31:45 +01:00
}
2021-02-23 18:59:19 +01:00
if ( $mysoc -> localtax2_assuj == " 1 " || $object -> total_localtax2 != 0 ) { // Localtax2
2019-11-12 09:46:08 +01:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ) . '</td>' ;
2022-06-25 06:51:48 +02:00
print '<td class="nowrap right amountcard">' . price ( $object -> total_localtax2 , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2017-10-07 13:09:31 +02:00
print '</tr>' ;
2013-02-02 18:31:45 +01:00
}
2016-12-10 12:21:48 +01:00
2013-02-02 18:31:45 +01:00
// Amount TTC
2019-11-12 09:46:08 +01:00
print '<tr><td>' . $langs -> trans ( 'AmountTTC' ) . '</td>' ;
2022-06-25 06:51:48 +02:00
print '<td class="nowrap right amountcard">' . price ( $object -> total_ttc , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2015-03-10 19:31:04 +01:00
print '</tr>' ;
2016-12-10 12:21:48 +01:00
2013-02-02 18:31:45 +01:00
// Statut
2019-01-22 14:04:33 +01:00
//print '<tr><td height="10">' . $langs->trans('Status') . '</td><td class="left" colspan="2">' . $object->getLibStatut(4) . '</td></tr>';
2016-12-10 12:21:48 +01:00
2016-09-19 10:43:30 +02:00
print '</table>' ;
2016-12-10 12:21:48 +01:00
2016-09-19 10:43:30 +02:00
// Margin Infos
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> margin -> enabled )) {
2017-10-07 13:09:31 +02:00
$formmargin -> displayMarginInfos ( $object );
2016-09-19 10:43:30 +02:00
}
2016-12-10 12:21:48 +01:00
2016-09-19 10:43:30 +02:00
print '</div>' ;
print '</div>' ;
2016-12-10 12:21:48 +01:00
2016-09-19 10:43:30 +02:00
print '<div class="clearboth"></div><br>' ;
2013-02-12 17:08:21 +01:00
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_CONTACTS_TAB )) {
2013-02-02 18:31:45 +01:00
$blocname = 'contacts' ;
$title = $langs -> trans ( 'ContactsAddresses' );
2019-11-12 09:46:08 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/bloc_showhide.tpl.php' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_NOTES_TAB )) {
2013-02-02 18:31:45 +01:00
$blocname = 'notes' ;
$title = $langs -> trans ( 'Notes' );
2019-11-12 09:46:08 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/bloc_showhide.tpl.php' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01: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 ();
2021-07-04 21:14:46 +02:00
print ' <form name="addproduct" id="addproduct" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . (( $action != 'editline' ) ? '' : '#line_' . GETPOST ( 'lineid' , 'int' )) . ' " method= " POST " >
2020-03-24 13:10:35 +01:00
< input type = " hidden " name = " token " value = " ' . newToken().' " >
2019-11-12 09:46:08 +01:00
< input type = " hidden " name = " action " value = " ' . (( $action != 'editline') ? 'addline' : 'updateline').' " >
2013-11-17 23:25:25 +01:00
< input type = " hidden " name = " mode " value = " " >
2021-07-04 21:14:46 +02:00
< input type = " hidden " name = " page_y " value = " " >
2019-11-12 09:46:08 +01:00
< input type = " hidden " name = " id " value = " ' . $object->id .' " >
2013-11-17 23:25:25 +01:00
' ;
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> use_javascript_ajax ) && $object -> statut == Propal :: STATUS_DRAFT ) {
include DOL_DOCUMENT_ROOT . '/core/tpl/ajaxrow.tpl.php' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2017-10-13 12:14:57 +02:00
print '<div class="div-table-responsive-no-min">' ;
2021-02-23 18:59:19 +01:00
if ( ! empty ( $object -> lines ) || ( $object -> statut == Propal :: STATUS_DRAFT && $usercancreate && $action != 'selectlines' && $action != 'editline' )) {
2020-10-31 14:32:18 +01:00
print '<table id="tablelines" class="noborder noshadow" width="100%">' ;
2019-05-19 01:41:42 +02:00
}
2013-02-12 17:08:21 +01:00
2021-02-23 18:59:19 +01:00
if ( ! empty ( $object -> lines )) {
2014-02-23 17:01:51 +01:00
$ret = $object -> printObjectLines ( $action , $mysoc , $soc , $lineid , 1 );
2019-05-19 01:41:42 +02:00
}
2013-02-12 17:08:21 +01:00
2014-05-05 14:30:08 +02:00
// Form to add new line
2021-02-23 18:59:19 +01:00
if ( $object -> statut == Propal :: STATUS_DRAFT && $usercancreate && $action != 'selectlines' ) {
2020-10-02 13:46:44 +02:00
if ( $action != 'editline' ) {
2014-11-16 19:12:05 +01:00
// Add products/services form
2013-02-12 17:08:21 +01:00
2014-02-23 20:10:05 +01:00
$parameters = array ();
2014-05-05 14:30:08 +02:00
$reshook = $hookmanager -> executeHooks ( 'formAddObjectLine' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2021-04-29 15:32:15 +02:00
if ( $reshook < 0 ) setEventMessages ( $hookmanager -> error , $hookmanager -> errors , 'errors' );
if ( empty ( $reshook ))
2021-04-29 17:36:45 +02:00
$object -> formAddObjectLine ( 1 , $mysoc , $soc );
2020-10-02 13:46:44 +02:00
} else {
2020-10-02 08:42:48 +02:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'formEditObjectLine' , $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
2021-02-23 18:59:19 +01:00
if ( ! empty ( $object -> lines ) || ( $object -> statut == Propal :: STATUS_DRAFT && $usercancreate && $action != 'selectlines' && $action != 'editline' )) {
2020-10-31 14:32:18 +01:00
print '</table>' ;
2019-05-19 01:41:42 +02:00
}
2017-10-07 13:09:31 +02:00
print '</div>' ;
2016-12-10 12:21:48 +01:00
2013-11-17 23:25:25 +01:00
print " </form> \n " ;
2020-10-27 18:19:31 +01:00
print dol_get_fiche_end ();
2013-02-12 17:08:21 +01:00
2019-05-19 01:41:42 +02:00
2012-05-05 17:28:52 +02:00
/*
2019-05-19 01:41:42 +02:00
* Button Actions
2013-11-05 10:44:58 +01:00
*/
2019-05-19 01:41:42 +02:00
2014-02-23 17:01:51 +01:00
if ( $action != 'presend' ) {
2013-02-02 18:31:45 +01:00
print '<div class="tabsAction">' ;
2013-02-12 17:08:21 +01:00
2014-02-23 20:10:05 +01:00
$parameters = array ();
2014-02-23 17:01:51 +01:00
$reshook = $hookmanager -> executeHooks ( 'addMoreActionsButtons' , $parameters , $object , $action ); // Note that $action and $object may have been
2017-10-07 13:09:31 +02:00
// modified by hook
2021-02-23 18:59:19 +01:00
if ( empty ( $reshook )) {
if ( $action != 'editline' ) {
2014-01-24 11:15:25 +01:00
// Validate
2020-11-28 13:52:52 +01:00
if (( $object -> statut == Propal :: STATUS_DRAFT && $object -> total_ttc >= 0 && count ( $object -> lines ) > 0 )
2021-02-23 18:59:19 +01:00
|| ( $object -> statut == Propal :: STATUS_DRAFT && ! empty ( $conf -> global -> PROPAL_ENABLE_NEGATIVE ) && count ( $object -> lines ) > 0 )) {
if ( $usercanvalidate ) {
2022-02-10 21:03:10 +01:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=validate&token=' . newToken () . '">' . $langs -> trans ( 'Validate' ) . '</a>' ;
2021-02-23 18:59:19 +01:00
} else {
print '<a class="butActionRefused classfortooltip" href="#">' . $langs -> trans ( 'Validate' ) . '</a>' ;
}
2013-04-16 11:37:51 +02:00
}
2014-01-24 11:15:25 +01:00
// Create event
2017-12-07 00:28:43 +01:00
/* 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-04-16 11:37:51 +02:00
{
2019-10-16 14:14:32 +02:00
print '<a class="butAction" href="' . DOL_URL_ROOT . '/comm/action/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( " AddAction " ) . '</a></div>' ;
2017-12-07 00:28:43 +01:00
} */
2014-01-24 11:15:25 +01:00
// Edit
2018-07-01 11:06:47 +02:00
if ( $object -> statut == Propal :: STATUS_VALIDATED && $usercancreate ) {
2022-02-10 21:03:10 +01:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=modif&token=' . newToken () . '">' . $langs -> trans ( 'Modify' ) . '</a>' ;
2013-03-27 14:39:41 +01:00
}
2013-02-12 17:08:21 +01:00
2014-01-24 11:15:25 +01:00
// ReOpen
2021-08-03 11:24:21 +02:00
if ( (( ! empty ( $conf -> global -> PROPAL_REOPEN_UNSIGNED_ONLY ) && $object -> statut == Propal :: STATUS_NOTSIGNED ) || ( empty ( $conf -> global -> PROPAL_REOPEN_UNSIGNED_ONLY ) && ( $object -> statut == Propal :: STATUS_SIGNED || $object -> statut == Propal :: STATUS_NOTSIGNED || $object -> statut == Propal :: STATUS_BILLED ))) && $usercanclose ) {
2021-09-18 19:34:46 +02:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=reopen&token=' . newToken () . ( empty ( $conf -> global -> MAIN_JUMP_TAG ) ? '' : '#reopen' ) . '"' ;
2019-11-12 09:46:08 +01:00
print '>' . $langs -> trans ( 'ReOpen' ) . '</a>' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2014-01-24 11:15:25 +01:00
// Send
2020-04-10 01:37:04 +02:00
if ( empty ( $user -> socid )) {
if ( $object -> statut == Propal :: STATUS_VALIDATED || $object -> statut == Propal :: STATUS_SIGNED || ! empty ( $conf -> global -> PROPOSAL_SENDBYEMAIL_FOR_ALL_STATUS )) {
if ( $usercansend ) {
2021-09-18 19:34:46 +02:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=presend&token=' . newToken () . '&mode=init#formmailbeforetitle">' . $langs -> trans ( 'SendMail' ) . '</a>' ;
2021-02-23 18:59:19 +01:00
} else {
print '<a class="butActionRefused classfortooltip" href="#" title="' . $langs -> trans ( " NotEnoughPermissions " ) . '">' . $langs -> trans ( 'SendMail' ) . '</a>' ;
}
2020-04-10 01:37:04 +02:00
}
2013-02-02 18:31:45 +01:00
}
2013-03-27 14:39:41 +01:00
2019-10-24 13:40:32 +02:00
// Create a sale order
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> commande -> enabled ) && $object -> statut == Propal :: STATUS_SIGNED ) {
2018-07-01 11:06:47 +02:00
if ( $usercancreateorder ) {
2022-02-10 21:03:10 +01:00
print '<a class="butAction" href="' . DOL_URL_ROOT . '/commande/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( " AddOrder " ) . '</a>' ;
2014-01-24 11:15:25 +01:00
}
}
2013-03-27 14:39:41 +01:00
2019-10-24 13:40:32 +02:00
// Create a purchase order
2021-02-23 18:59:19 +01:00
if ( ! empty ( $conf -> global -> WORKFLOW_CAN_CREATE_PURCHASE_ORDER_FROM_PROPOSAL )) {
2021-04-11 22:25:45 +02:00
if ( $object -> statut == Propal :: STATUS_SIGNED && (( ! empty ( $conf -> fournisseur -> enabled ) && empty ( $conf -> global -> MAIN_USE_NEW_SUPPLIERMOD )) || ! empty ( $conf -> supplier_order -> enabled ))) {
2019-10-24 13:40:32 +02:00
if ( $usercancreatepurchaseorder ) {
2022-02-10 21:03:10 +01:00
print '<a class="butAction" href="' . DOL_URL_ROOT . '/fourn/commande/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( " AddPurchaseOrder " ) . '</a>' ;
2019-10-24 13:40:32 +02:00
}
}
}
2017-10-17 10:44:18 +02:00
// Create an intervention
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> service -> enabled ) && ! empty ( $conf -> ficheinter -> enabled ) && $object -> statut == Propal :: STATUS_SIGNED ) {
2018-07-01 11:06:47 +02:00
if ( $usercancreateintervention ) {
2017-10-17 10:44:18 +02:00
$langs -> load ( " interventions " );
2022-02-10 21:03:10 +01:00
print '<a class="butAction" href="' . DOL_URL_ROOT . '/fichinter/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( " AddIntervention " ) . '</a>' ;
2017-10-17 10:44:18 +02:00
}
}
2014-01-24 11:15:25 +01:00
// Create contract
2022-05-27 16:32:11 +02:00
if ( ! empty ( $conf -> contrat -> enabled ) && $object -> statut == Propal :: STATUS_SIGNED ) {
2014-01-24 11:15:25 +01:00
$langs -> load ( " contracts " );
2014-02-26 15:49:29 +01:00
2018-07-01 11:06:47 +02:00
if ( $usercancreatecontract ) {
2022-02-10 21:03:10 +01:00
print '<a class="butAction" href="' . DOL_URL_ROOT . '/contrat/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( 'AddContract' ) . '</a>' ;
2014-01-24 11:15:25 +01:00
}
}
2013-02-12 17:08:21 +01:00
2014-01-24 11:15:25 +01:00
// Create an invoice and classify billed
2021-08-03 15:40:01 +02:00
if ( $object -> statut == Propal :: STATUS_SIGNED && empty ( $conf -> global -> PROPOSAL_ARE_NOT_BILLABLE )) {
2022-06-11 09:46:28 +02:00
if ( isModEnabled ( 'facture' ) && $usercancreateinvoice ) {
2022-02-10 21:03:10 +01:00
print '<a class="butAction" href="' . DOL_URL_ROOT . '/compta/facture/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( " CreateBill " ) . '</a>' ;
2014-01-24 11:15:25 +01:00
}
2014-02-26 15:49:29 +01:00
2014-12-23 12:59:34 +01:00
$arrayofinvoiceforpropal = $object -> getInvoiceArrayList ();
2021-02-23 18:59:19 +01:00
if (( is_array ( $arrayofinvoiceforpropal ) && count ( $arrayofinvoiceforpropal ) > 0 ) || empty ( $conf -> global -> WORKFLOW_PROPAL_NEED_INVOICE_TO_BE_CLASSIFIED_BILLED )) {
if ( $usercanclose ) {
2021-09-18 19:43:38 +02:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=classifybilled&token=' . newToken () . '&socid=' . $object -> socid . '">' . $langs -> trans ( " ClassifyBilled " ) . '</a>' ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-12 09:46:08 +01:00
print '<a class="butActionRefused classfortooltip" href="#" title="' . $langs -> trans ( " NotEnoughPermissions " ) . '">' . $langs -> trans ( " ClassifyBilled " ) . '</a>' ;
2019-09-03 14:58:54 +02:00
}
2014-01-24 11:15:25 +01:00
}
}
2013-02-12 17:08:21 +01:00
2020-09-02 19:15:03 +02:00
// Close as accepted/refused
2021-07-01 03:06:40 +02:00
if ( $object -> statut == Propal :: STATUS_VALIDATED ) {
if ( $usercanclose ) {
2021-09-18 19:43:38 +02:00
print '<a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=closeas&token=' . newToken () . ( empty ( $conf -> global -> MAIN_JUMP_TAG ) ? '' : '#close' ) . '"' ;
2021-07-01 03:06:40 +02:00
print '>' . $langs -> trans ( 'SetAcceptedRefused' ) . '</a>' ;
} else {
print '<a class="butActionRefused classfortooltip" href="#" title="' . $langs -> trans ( " NotEnoughPermissions " ) . '"' ;
print '>' . $langs -> trans ( 'SetAcceptedRefused' ) . '</a>' ;
}
2014-01-24 11:15:25 +01:00
}
2013-02-12 17:08:21 +01:00
2014-01-24 11:15:25 +01:00
// Clone
2018-07-01 11:06:47 +02:00
if ( $usercancreate ) {
2021-09-18 19:43:38 +02:00
print '<a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '&socid=' . $object -> socid . '&action=clone&token=' . newToken () . '&object=' . $object -> element . '">' . $langs -> trans ( " ToClone " ) . '</a>' ;
2014-01-24 11:15:25 +01:00
}
2013-02-12 17:08:21 +01:00
2014-01-24 11:15:25 +01:00
// Delete
2018-07-01 11:06:47 +02:00
if ( $usercandelete ) {
2021-09-18 19:43:38 +02:00
print '<a class="butActionDelete" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=delete&token=' . newToken () . '"' ;
2019-11-12 09:46:08 +01:00
print '>' . $langs -> trans ( 'Delete' ) . '</a>' ;
2014-01-24 11:15:25 +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-02-12 17:08:21 +01:00
2015-07-04 03:28:52 +02:00
//Select mail models is same action as presend
2021-02-23 18:59:19 +01:00
if ( GETPOST ( 'modelselected' )) {
$action = 'presend' ;
}
2015-07-04 03:28:52 +02:00
2021-02-23 18:59:19 +01:00
if ( $action != 'presend' ) {
2013-04-16 01:13:20 +02:00
print '<div class="fichecenter"><div class="fichehalfleft">' ;
2017-02-03 20:11:06 +01:00
print '<a name="builddoc"></a>' ; // ancre
2013-02-02 18:31:45 +01:00
/*
2021-03-16 04:04:18 +01:00
* Generated documents
2013-11-05 10:44:58 +01:00
*/
2020-05-23 20:09:31 +02:00
$objref = dol_sanitizeFileName ( $object -> ref );
2019-11-12 09:46:08 +01:00
$filedir = $conf -> propal -> multidir_output [ $object -> entity ] . " / " . dol_sanitizeFileName ( $object -> ref );
$urlsource = $_SERVER [ " PHP_SELF " ] . " ?id= " . $object -> id ;
2018-07-01 11:06:47 +02:00
$genallowed = $usercanread ;
$delallowed = $usercancreate ;
2013-02-12 17:08:21 +01:00
2020-09-10 01:49:09 +02:00
print $formfile -> showdocuments ( 'propal' , $objref , $filedir , $urlsource , $genallowed , $delallowed , $object -> model_pdf , 1 , 0 , 0 , 28 , 0 , '' , 0 , '' , $soc -> default_lang , '' , $object );
2013-02-12 17:08:21 +01:00
2015-06-06 15:57:59 +02:00
// Show links to link elements
2016-08-04 11:57:37 +02:00
$linktoelem = $form -> showLinkToObjectBlock ( $object , null , array ( 'propal' ));
2019-01-17 19:27:26 +01:00
2018-10-25 21:39:22 +02:00
$compatibleImportElementsList = false ;
2021-02-23 18:59:19 +01:00
if ( $user -> rights -> propal -> creer && $object -> statut == Propal :: STATUS_DRAFT ) {
2020-10-31 14:32:18 +01:00
$compatibleImportElementsList = array ( 'commande' , 'propal' ); // import from linked elements
2018-10-25 21:39:22 +02:00
}
$somethingshown = $form -> showLinkedObjectBlock ( $object , $linktoelem , $compatibleImportElementsList );
2016-12-10 12:21:48 +01:00
2017-10-19 11:14:31 +02:00
// Show online signature link
2021-12-25 17:08:40 +01:00
$useonlinesignature = 1 ;
2017-10-19 11:14:31 +02:00
2021-02-23 18:59:19 +01:00
if ( $object -> statut != Propal :: STATUS_DRAFT && $useonlinesignature ) {
2017-11-04 17:11:58 +01:00
print '<br><!-- Link to sign -->' ;
2022-08-28 23:36:18 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/signature.lib.php' ;
2017-11-04 17:11:58 +01:00
print showOnlineSignatureUrl ( 'proposal' , $object -> ref ) . '<br>' ;
}
2021-10-23 17:18:35 +02:00
print '</div><div class="fichehalfright">' ;
2013-02-12 17:08:21 +01:00
2013-02-02 18:31:45 +01:00
// List of actions on element
2019-11-12 09:46:08 +01:00
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php' ;
2014-02-23 17:01:51 +01:00
$formactions = new FormActions ( $db );
2017-09-13 14:18:36 +02:00
$somethingshown = $formactions -> showactions ( $object , 'propal' , $socid , 1 );
2013-04-16 01:13:20 +02:00
2021-10-23 17:18:35 +02:00
print '</div></div>' ;
2013-02-02 18:31:45 +01:00
}
2013-02-12 17:08:21 +01:00
2017-09-17 15:38:50 +02:00
// Presend form
2019-11-12 09:46:08 +01:00
$modelmail = 'propal_send' ;
$defaulttopic = 'SendPropalRef' ;
2018-02-25 17:43:19 +01:00
$diroutput = $conf -> propal -> multidir_output [ $object -> entity ];
2017-09-17 15:38:50 +02:00
$trackid = 'pro' . $object -> id ;
2013-03-30 13:54:46 +01:00
2017-09-17 15:38:50 +02:00
include DOL_DOCUMENT_ROOT . '/core/tpl/card_presend.tpl.php' ;
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 ();