2015-01-27 16:53:27 +01:00
< ? php
/* Copyright ( C ) 2001 - 2007 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2017-05-05 12:33:49 +02:00
* Copyright ( C ) 2004 - 2017 Laurent Destailleur < eldy @ users . sourceforge . net >
2015-01-27 16:53:27 +01:00
* Copyright ( C ) 2004 Eric Seigne < eric . seigne @ ryxeo . com >
* Copyright ( C ) 2005 Marc Barilley / Ocebo < marc @ ocebo . com >
* Copyright ( C ) 2005 - 2012 Regis Houssin < regis . houssin @ capnetworks . com >
* Copyright ( C ) 2006 Andre Cianfarani < acianfa @ free . fr >
* Copyright ( C ) 2010 - 2014 Juanjo Menent < jmenent @ 2 byte . es >
* Copyright ( C ) 2010 - 2011 Philippe Grand < philippe . grand @ atoo - net . com >
* Copyright ( C ) 2012 - 2013 Christophe Battarel < christophe . battarel @ altairis . fr >
* Copyright ( C ) 2013 - 2014 Florian Henry < florian . henry @ open - concept . pro >
* Copyright ( C ) 2014 Ferran Marcet < fmarcet @ 2 byte . es >
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < http :// www . gnu . org / licenses />.
*/
2016-09-11 16:05:38 +02:00
/**
* \file htdocs / supplier_proposal / card . php
* \ingroup supplier_proposal
* \brief Card supplier proposal
*/
2015-11-15 18:23:42 +01:00
require '../main.inc.php' ;
2015-01-27 16:53:27 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formother.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php' ;
2015-09-24 21:05:58 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formmargin.class.php' ;
2015-11-15 18:23:42 +01:00
require_once DOL_DOCUMENT_ROOT . '/supplier_proposal/class/supplier_proposal.class.php' ;
2015-01-27 16:53:27 +01:00
require_once DOL_DOCUMENT_ROOT . '/comm/action/class/actioncomm.class.php' ;
2015-11-15 18:23:42 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/modules/supplier_proposal/modules_supplier_proposal.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/supplier_proposal.lib.php' ;
2015-01-27 16:53:27 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php' ;
if ( ! empty ( $conf -> projet -> enabled )) {
require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formprojet.class.php' ;
}
2018-05-26 16:35:29 +02:00
// Load translation files required by the page
$langs -> loadLangs ( array ( 'companies' , 'supplier_proposal' , 'compta' , 'bills' , 'propal' , 'orders' , 'products' , 'deliveries' , 'sendings' ));
2015-01-27 16:53:27 +01:00
if ( ! empty ( $conf -> margin -> enabled ))
$langs -> load ( 'margins' );
$error = 0 ;
$id = GETPOST ( 'id' , 'int' );
$ref = GETPOST ( 'ref' , 'alpha' );
$socid = GETPOST ( 'socid' , 'int' );
$action = GETPOST ( 'action' , 'alpha' );
$origin = GETPOST ( 'origin' , 'alpha' );
$originid = GETPOST ( 'originid' , 'int' );
$confirm = GETPOST ( 'confirm' , 'alpha' );
2018-05-01 14:15:11 +02:00
$projectid = GETPOST ( 'projectid' , 'int' );
2015-01-27 16:53:27 +01:00
$lineid = GETPOST ( 'lineid' , 'int' );
$contactid = GETPOST ( 'contactid' , 'int' );
// PDF
$hidedetails = ( GETPOST ( 'hidedetails' , 'int' ) ? GETPOST ( 'hidedetails' , 'int' ) : ( ! empty ( $conf -> global -> MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS ) ? 1 : 0 ));
$hidedesc = ( GETPOST ( 'hidedesc' , 'int' ) ? GETPOST ( 'hidedesc' , 'int' ) : ( ! empty ( $conf -> global -> MAIN_GENERATE_DOCUMENTS_HIDE_DESC ) ? 1 : 0 ));
$hideref = ( GETPOST ( 'hideref' , 'int' ) ? GETPOST ( 'hideref' , 'int' ) : ( ! empty ( $conf -> global -> MAIN_GENERATE_DOCUMENTS_HIDE_REF ) ? 1 : 0 ));
// Nombre de ligne pour choix de produit/service predefinis
$NBLINES = 4 ;
// Security check
if ( ! empty ( $user -> societe_id )) $socid = $user -> societe_id ;
2015-11-15 18:23:42 +01:00
$result = restrictedArea ( $user , 'supplier_proposal' , $id );
2015-01-27 16:53:27 +01:00
2015-11-15 18:23:42 +01:00
$object = new SupplierProposal ( $db );
2015-01-27 16:53:27 +01:00
$extrafields = new ExtraFields ( $db );
// fetch optionals attributes and labels
$extralabels = $extrafields -> fetch_name_optionals_label ( $object -> table_element );
// Load object
if ( $id > 0 || ! empty ( $ref )) {
$ret = $object -> fetch ( $id , $ref );
if ( $ret > 0 )
$ret = $object -> fetch_thirdparty ();
if ( $ret < 0 )
dol_print_error ( '' , $object -> error );
}
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
2015-11-15 18:23:42 +01:00
$hookmanager -> initHooks ( array ( 'supplier_proposalcard' , 'globalcard' ));
2015-01-27 16:53:27 +01:00
2015-11-15 18:23:42 +01:00
$permissionnote = $user -> rights -> supplier_proposal -> creer ; // Used by the include of actions_setnotes.inc.php
2016-09-11 16:05:38 +02:00
$permissiondellink = $user -> rights -> supplier_proposal -> creer ; // Used by the include of actions_dellink.inc.php
$permissiontoedit = $user -> rights -> supplier_proposal -> creer ; // Used by the include of actions_lineupdown.inc.php
2015-01-27 16:53:27 +01:00
/*
* Actions
*/
$parameters = array ( 'socid' => $socid );
$reshook = $hookmanager -> executeHooks ( 'doActions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by some hooks
if ( $reshook < 0 ) setEventMessages ( $hookmanager -> error , $hookmanager -> errors , 'errors' );
if ( empty ( $reshook ))
{
2017-09-17 15:38:50 +02:00
if ( $cancel )
{
if ( ! empty ( $backtopage ))
{
header ( " Location: " . $backtopage );
exit ;
}
$action = '' ;
}
2016-08-10 09:47:25 +02:00
2016-05-13 14:28:37 +02:00
include DOL_DOCUMENT_ROOT . '/core/actions_setnotes.inc.php' ; // Must be include, not include_once
2016-08-10 09:47:25 +02:00
2016-05-13 14:28:37 +02:00
include DOL_DOCUMENT_ROOT . '/core/actions_dellink.inc.php' ; // Must be include, not include_once
2016-08-10 09:47:25 +02:00
2016-05-13 14:28:37 +02:00
include DOL_DOCUMENT_ROOT . '/core/actions_lineupdown.inc.php' ; // Must be include, not include_once
2016-08-10 09:47:25 +02:00
2015-01-27 16:53:27 +01:00
// Action clone object
if ( $action == 'confirm_clone' && $confirm == 'yes' )
{
if ( 1 == 0 && ! GETPOST ( 'clone_content' ) && ! GETPOST ( 'clone_receivers' ))
{
2015-10-31 17:21:48 +01:00
setEventMessages ( $langs -> trans ( " NoCloneOptionsSpecified " ), null , 'errors' );
2015-01-27 16:53:27 +01:00
}
else
{
if ( $object -> id > 0 ) {
$result = $object -> createFromClone ( $socid );
if ( $result > 0 ) {
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . '?id=' . $result );
exit ();
2016-08-10 09:47:25 +02:00
}
else
2015-10-31 17:21:48 +01:00
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-27 16:53:27 +01:00
$action = '' ;
}
}
}
}
2015-02-04 15:39:57 +01:00
// Delete askprice
2015-11-15 18:23:42 +01:00
else if ( $action == 'confirm_delete' && $confirm == 'yes' && $user -> rights -> supplier_proposal -> supprimer )
2015-01-27 16:53:27 +01:00
{
$result = $object -> delete ( $user );
if ( $result > 0 ) {
2015-11-15 18:23:42 +01:00
header ( 'Location: ' . DOL_URL_ROOT . '/supplier_proposal/list.php' );
2015-01-27 16:53:27 +01:00
exit ();
} else {
$langs -> load ( " errors " );
2015-10-31 17:21:48 +01:00
setEventMessages ( $langs -> trans ( $object -> error ), null , 'errors' );
2015-01-27 16:53:27 +01:00
}
}
// Remove line
2015-11-15 18:23:42 +01:00
else if ( $action == 'confirm_deleteline' && $confirm == 'yes' && $user -> rights -> supplier_proposal -> creer )
2015-01-27 16:53:27 +01:00
{
$result = $object -> deleteline ( $lineid );
// reorder lines
if ( $result )
$object -> line_order ( true );
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
// Define output language
$outputlangs = $langs ;
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS )) {
$outputlangs = new Translate ( " " , $conf );
2017-06-27 17:27:01 +02:00
$newlang = ( GETPOST ( 'lang_id' , 'aZ09' ) ? GETPOST ( 'lang_id' , 'aZ09' ) : $object -> thirdparty -> default_lang );
2015-01-27 16:53:27 +01:00
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
$object -> generateDocument ( $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
}
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
exit ();
}
// Validation
else if ( $action == 'confirm_validate' && $confirm == 'yes' &&
2017-10-16 08:47:05 +02:00
(( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> supplier_proposal -> creer ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> supplier_proposal -> validate_advance )))
2015-01-27 16:53:27 +01:00
)
2015-03-04 17:54:43 +01:00
{
2015-01-27 16:53:27 +01:00
$result = $object -> valid ( $user );
if ( $result >= 0 )
{
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
// Define output language
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
$outputlangs = $langs ;
$newlang = '' ;
2017-06-27 17:27:01 +02:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang ) && GETPOST ( 'lang_id' , 'aZ09' )) $newlang = GETPOST ( 'lang_id' , 'aZ09' );
2015-01-27 16:53:27 +01:00
if ( $conf -> global -> MAIN_MULTILANGS && empty ( $newlang )) $newlang = $object -> thirdparty -> default_lang ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$model = $object -> modelpdf ;
$ret = $object -> fetch ( $id ); // Reload to get new records
$object -> generateDocument ( $model , $outputlangs , $hidedetails , $hidedesc , $hideref );
}
}
} else {
$langs -> load ( " errors " );
2015-10-31 17:21:48 +01:00
if ( count ( $object -> errors ) > 0 ) setEventMessages ( $object -> error , $object -> errors , 'errors' );
else setEventMessages ( $langs -> trans ( $object -> error ), null , 'errors' );
2015-01-27 16:53:27 +01:00
}
}
2015-11-15 18:23:42 +01:00
else if ( $action == 'setdate_livraison' && $user -> rights -> supplier_proposal -> creer )
2015-01-27 16:53:27 +01:00
{
$result = $object -> set_date_livraison ( $user , dol_mktime ( 12 , 0 , 0 , $_POST [ 'liv_month' ], $_POST [ 'liv_day' ], $_POST [ 'liv_year' ]));
if ( $result < 0 )
dol_print_error ( $db , $object -> error );
}
2015-02-04 15:39:57 +01:00
// Create askprice
2015-11-15 18:23:42 +01:00
else if ( $action == 'add' && $user -> rights -> supplier_proposal -> creer )
2015-01-27 16:53:27 +01:00
{
$object -> socid = $socid ;
$object -> fetch_thirdparty ();
$date_delivery = dol_mktime ( 12 , 0 , 0 , GETPOST ( 'liv_month' ), GETPOST ( 'liv_day' ), GETPOST ( 'liv_year' ));
if ( $socid < 1 ) {
2016-02-11 20:40:33 +01:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Supplier " )), null , 'errors' );
2015-01-27 16:53:27 +01:00
$action = 'create' ;
$error ++ ;
}
if ( ! $error )
{
$db -> begin ();
2015-02-04 15:39:57 +01:00
// Si on a selectionne une demande a copier, on realise la copie
2015-11-15 18:23:42 +01:00
if ( GETPOST ( 'createmode' ) == 'copy' && GETPOST ( 'copie_supplier_proposal' ))
2015-01-27 16:53:27 +01:00
{
2015-11-15 18:23:42 +01:00
if ( $object -> fetch ( GETPOST ( 'copie_supplier_proposal' )) > 0 ) {
2015-01-27 16:53:27 +01:00
$object -> ref = GETPOST ( 'ref' );
$object -> date_livraison = $date_delivery ;
2017-10-16 08:47:05 +02:00
$object -> shipping_method_id = GETPOST ( 'shipping_method_id' , 'int' );
2015-01-27 16:53:27 +01:00
$object -> cond_reglement_id = GETPOST ( 'cond_reglement_id' );
$object -> mode_reglement_id = GETPOST ( 'mode_reglement_id' );
2015-02-04 15:39:57 +01:00
$object -> fk_account = GETPOST ( 'fk_account' , 'int' );
2015-01-27 16:53:27 +01:00
$object -> remise_percent = GETPOST ( 'remise_percent' );
$object -> remise_absolue = GETPOST ( 'remise_absolue' );
$object -> socid = GETPOST ( 'socid' );
2018-05-01 14:15:11 +02:00
$object -> fk_project = GETPOST ( 'projectid' , 'int' );
2015-01-27 16:53:27 +01:00
$object -> modelpdf = GETPOST ( 'model' );
$object -> author = $user -> id ; // deprecated
2017-09-25 00:16:52 +02:00
$object -> note = GETPOST ( 'note' , 'none' );
2017-05-05 13:43:43 +02:00
$object -> statut = SupplierProposal :: STATUS_DRAFT ;
2015-01-27 16:53:27 +01:00
$id = $object -> create_from ( $user );
} else {
2015-11-15 18:23:42 +01:00
setEventMessages ( $langs -> trans ( " ErrorFailedToCopyProposal " , GETPOST ( 'copie_supplier_proposal' )), null , 'errors' );
2015-01-27 16:53:27 +01:00
}
} else {
$object -> ref = GETPOST ( 'ref' );
$object -> date_livraison = $date_delivery ;
$object -> demand_reason_id = GETPOST ( 'demand_reason_id' );
2017-10-16 08:47:05 +02:00
$object -> shipping_method_id = GETPOST ( 'shipping_method_id' , 'int' );
2015-01-27 16:53:27 +01:00
$object -> cond_reglement_id = GETPOST ( 'cond_reglement_id' );
$object -> mode_reglement_id = GETPOST ( 'mode_reglement_id' );
2015-02-04 15:39:57 +01:00
$object -> fk_account = GETPOST ( 'fk_account' , 'int' );
2018-05-01 14:15:11 +02:00
$object -> fk_project = GETPOST ( 'projectid' , 'int' );
2015-01-27 16:53:27 +01:00
$object -> modelpdf = GETPOST ( 'model' );
$object -> author = $user -> id ; // deprecated
2017-09-25 00:16:52 +02:00
$object -> note = GETPOST ( 'note' , 'none' );
2015-01-27 16:53:27 +01:00
$object -> origin = GETPOST ( 'origin' );
$object -> origin_id = GETPOST ( 'originid' );
2016-02-16 23:58:21 +01:00
// Multicurrency
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
$object -> multicurrency_code = GETPOST ( 'multicurrency_code' , 'alpha' );
}
2015-01-27 16:53:27 +01:00
// Fill array 'array_options' with data from add form
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object );
if ( $ret < 0 ) {
$error ++ ;
$action = 'create' ;
}
}
if ( ! $error )
{
if ( $origin && $originid )
{
2015-11-15 18:23:42 +01:00
$element = 'supplier_proposal' ;
$subelement = 'supplier_proposal' ;
2015-03-04 17:54:43 +01:00
2015-01-27 16:53:27 +01:00
$object -> origin = $origin ;
$object -> origin_id = $originid ;
// Possibility to add external linked objects with hooks
$object -> linked_objects [ $object -> origin ] = $object -> origin_id ;
if ( is_array ( $_POST [ 'other_linked_objects' ]) && ! empty ( $_POST [ 'other_linked_objects' ])) {
$object -> linked_objects = array_merge ( $object -> linked_objects , $_POST [ 'other_linked_objects' ]);
}
$id = $object -> create ( $user );
if ( $id > 0 )
{
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
$classname = ucfirst ( $subelement );
$srcobject = new $classname ( $db );
dol_syslog ( " Try to find source object origin= " . $object -> origin . " originid= " . $object -> origin_id . " to add lines " );
$result = $srcobject -> fetch ( $object -> origin_id );
if ( $result > 0 )
{
$lines = $srcobject -> lines ;
if ( empty ( $lines ) && method_exists ( $srcobject , 'fetch_lines' ))
{
$srcobject -> fetch_lines ();
$lines = $srcobject -> lines ;
}
$fk_parent_line = 0 ;
$num = count ( $lines );
for ( $i = 0 ; $i < $num ; $i ++ )
{
$label = ( ! empty ( $lines [ $i ] -> label ) ? $lines [ $i ] -> label : '' );
$desc = ( ! empty ( $lines [ $i ] -> desc ) ? $lines [ $i ] -> desc : $lines [ $i ] -> libelle );
2015-02-04 15:39:57 +01:00
// Positive line
$product_type = ( $lines [ $i ] -> product_type ? $lines [ $i ] -> product_type : 0 );
// 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 ;
}
// Extrafields
if ( empty ( $conf -> global -> MAIN_EXTRAFIELDS_DISABLED ) && method_exists ( $lines [ $i ], 'fetch_optionals' )) {
2018-02-21 14:48:25 +01:00
$lines [ $i ] -> fetch_optionals ();
2016-09-11 16:05:38 +02:00
$array_options = $lines [ $i ] -> array_options ;
2015-02-04 15:39:57 +01:00
}
2018-05-27 15:04:12 +02:00
$result = $object -> addline (
$desc , $lines [ $i ] -> subprice , $lines [ $i ] -> qty , $lines [ $i ] -> tva_tx ,
$lines [ $i ] -> localtax1_tx , $lines [ $i ] -> localtax2_tx ,
$lines [ $i ] -> fk_product , $lines [ $i ] -> remise_percent ,
'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 , $array_options ,
$lines [ $i ] -> ref_supplier , $lines [ $i ] -> fk_unit
);
2015-02-04 15:39:57 +01:00
if ( $result > 0 ) {
$lineid = $result ;
} else {
$lineid = 0 ;
$error ++ ;
break ;
}
// Defined the new fk_parent_line
if ( $result > 0 && $lines [ $i ] -> product_type == 9 ) {
$fk_parent_line = $result ;
}
2015-01-27 16:53:27 +01:00
}
// Hooks
$parameters = array ( 'objFrom' => $srcobject );
$reshook = $hookmanager -> executeHooks ( 'createFrom' , $parameters , $object , $action ); // Note that $action and $object may have been
2017-10-16 08:47:05 +02:00
// modified by hook
2015-01-27 16:53:27 +01:00
if ( $reshook < 0 )
$error ++ ;
} else {
setEventMessages ( $srcobject -> error , $srcobject -> errors , 'errors' );
$error ++ ;
}
} else {
setEventMessages ( $object -> error , $object -> errors , 'errors' );
$error ++ ;
}
} // Standard creation
else
{
$id = $object -> create ( $user );
}
if ( $id > 0 )
{
if ( ! $error )
{
$db -> commit ();
2017-10-16 08:47:05 +02:00
// Define output language
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
$outputlangs = $langs ;
$newlang = '' ;
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 ;
if ( ! empty ( $newlang )) {
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
$model = $object -> modelpdf ;
$ret = $object -> fetch ( $id ); // Reload to get new records
$result = $object -> generateDocument ( $model , $outputlangs , $hidedetails , $hidedesc , $hideref );
if ( $result < 0 ) dol_print_error ( $db , $result );
}
2015-01-27 16:53:27 +01:00
header ( 'Location: ' . $_SERVER [ " PHP_SELF " ] . '?id=' . $id );
exit ();
}
else
{
$db -> rollback ();
$action = 'create' ;
}
}
else
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
$db -> rollback ();
$action = 'create' ;
}
}
}
}
// Reopen proposal
2017-09-15 10:50:50 +02:00
else if ( $action == 'confirm_reopen' && $user -> rights -> supplier_proposal -> cloturer && ! GETPOST ( 'cancel' , 'alpha' )) {
2015-01-27 16:53:27 +01:00
// prevent browser refresh from reopening proposal several times
2017-05-05 13:43:43 +02:00
if ( $object -> statut == SupplierProposal :: STATUS_SIGNED || $object -> statut == SupplierProposal :: STATUS_NOTSIGNED || $object -> statut == SupplierProposal :: STATUS_CLOSE ) {
$object -> reopen ( $user , SupplierProposal :: STATUS_VALIDATED );
2015-01-27 16:53:27 +01:00
}
}
2017-05-05 12:41:31 +02:00
// Close proposal
2017-09-15 10:50:50 +02:00
else if ( $action == 'close' && $user -> rights -> supplier_proposal -> cloturer && ! GETPOST ( 'cancel' , 'alpha' )) {
2017-10-16 08:47:05 +02:00
// prevent browser refresh from reopening proposal several times
if ( $object -> statut == SupplierProposal :: STATUS_SIGNED ) {
2017-05-05 13:43:43 +02:00
$object -> setStatut ( SupplierProposal :: STATUS_CLOSE );
2017-05-05 12:41:31 +02:00
}
}
2016-01-25 12:33:38 +01:00
// Set accepted/refused
2017-09-15 10:50:50 +02:00
else if ( $action == 'setstatut' && $user -> rights -> supplier_proposal -> cloturer && ! GETPOST ( 'cancel' , 'alpha' )) {
2015-01-27 16:53:27 +01:00
if ( ! GETPOST ( 'statut' )) {
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentities ( " CloseAs " )), null , 'errors' );
2015-01-27 16:53:27 +01:00
$action = 'statut' ;
} else {
// prevent browser refresh from closing proposal several times
2017-05-05 13:43:43 +02:00
if ( $object -> statut == SupplierProposal :: STATUS_VALIDATED ) {
2017-10-16 08:47:05 +02:00
$object -> cloture ( $user , GETPOST ( 'statut' ), GETPOST ( 'note' , 'none' ));
2015-01-27 16:53:27 +01:00
}
}
}
2017-09-17 15:38:50 +02:00
// Actions when printing a doc from card
2015-01-27 16:53:27 +01:00
include DOL_DOCUMENT_ROOT . '/core/actions_printing.inc.php' ;
// Actions to send emails
2017-09-17 17:19:18 +02:00
$trigger_name = 'PROPOSAL_SUPPLIER_SENTBYMAIL' ;
2017-09-17 15:38:50 +02:00
$autocopy = 'MAIN_MAIL_AUTOCOPY_SUPPLIER_PROPOSAL_TO' ;
2016-10-03 00:38:28 +02:00
$trackid = 'spr' . $object -> id ;
2015-01-27 16:53:27 +01:00
include DOL_DOCUMENT_ROOT . '/core/actions_sendmails.inc.php' ;
2017-09-17 15:38:50 +02:00
// Actions to build doc
$upload_dir = $conf -> supplier_proposal -> dir_output ;
$permissioncreate = $user -> rights -> supplier_proposal -> creer ;
include DOL_DOCUMENT_ROOT . '/core/actions_builddoc.inc.php' ;
2015-01-27 16:53:27 +01:00
// Go back to draft
2015-11-15 18:23:42 +01:00
if ( $action == 'modif' && $user -> rights -> supplier_proposal -> creer )
2015-01-27 16:53:27 +01:00
{
$object -> set_draft ( $user );
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
// Define output language
$outputlangs = $langs ;
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS )) {
$outputlangs = new Translate ( " " , $conf );
2017-06-27 17:27:01 +02:00
$newlang = ( GETPOST ( 'lang_id' , 'aZ09' ) ? GETPOST ( 'lang_id' , 'aZ09' ) : $object -> thirdparty -> default_lang );
2015-01-27 16:53:27 +01:00
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
$object -> generateDocument ( $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
}
}
2015-11-15 18:23:42 +01:00
else if ( $action == " setabsolutediscount " && $user -> rights -> supplier_proposal -> creer ) {
2015-01-27 16:53:27 +01:00
if ( $_POST [ " remise_id " ]) {
if ( $object -> id > 0 ) {
$result = $object -> insert_discount ( $_POST [ " remise_id " ]);
if ( $result < 0 ) {
2015-10-31 17:21:48 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-27 16:53:27 +01:00
}
}
}
}
2016-09-11 16:05:38 +02:00
// Add a product line
2017-06-07 16:44:04 +02:00
if ( $action == 'addline' && $user -> rights -> supplier_proposal -> creer )
2016-09-11 16:05:38 +02:00
{
2017-10-16 08:47:05 +02:00
$langs -> load ( 'errors' );
$error = 0 ;
2015-01-27 16:53:27 +01:00
// Set if we used free entry or predefined product
2017-10-16 08:47:05 +02:00
$predef = '' ;
2015-01-27 16:53:27 +01:00
$product_desc = ( GETPOST ( 'dp_desc' ) ? GETPOST ( 'dp_desc' ) : '' );
2016-09-11 16:05:38 +02: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' ));
2017-11-12 16:06:08 +01:00
$ref_supplier = GETPOST ( 'fourn_ref' , 'alpha' );
2018-04-24 12:57:31 +02:00
$prod_entry_mode = GETPOST ( 'prod_entry_mode' );
if ( $prod_entry_mode == 'free' )
2015-01-27 16:53:27 +01:00
{
$idprod = 0 ;
2016-09-11 16:05:38 +02:00
$price_ht = GETPOST ( 'price_ht' );
2015-01-27 16:53:27 +01:00
$tva_tx = ( GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : 0 );
}
else
{
$idprod = GETPOST ( 'idprod' , 'int' );
2016-09-11 16:05:38 +02:00
$price_ht = '' ;
2015-01-27 16:53:27 +01:00
$tva_tx = '' ;
}
$qty = GETPOST ( 'qty' . $predef );
$remise_percent = GETPOST ( 'remise_percent' . $predef );
2018-04-24 12:57:31 +02:00
$price_ht_devise = GETPOST ( 'multicurrency_price_ht' );
2015-01-27 16:53:27 +01:00
// Extrafields
$extrafieldsline = new ExtraFields ( $db );
$extralabelsline = $extrafieldsline -> fetch_name_optionals_label ( $object -> table_element_line );
2016-09-11 16:05:38 +02:00
$array_options = $extrafieldsline -> getOptionalsFromPost ( $extralabelsline , $predef );
2015-01-27 16:53:27 +01:00
// Unset extrafield
if ( is_array ( $extralabelsline )) {
// Get extra fields
foreach ( $extralabelsline as $key => $value ) {
unset ( $_POST [ " options_ " . $key ]);
}
}
2018-04-24 12:57:31 +02:00
if ( $prod_entry_mode == 'free' && empty ( $idprod ) && GETPOST ( 'type' ) < 0 ) {
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )), null , 'errors' );
2015-01-27 16:53:27 +01:00
$error ++ ;
}
2018-04-24 12:57:31 +02:00
if ( $prod_entry_mode == 'free' && empty ( $idprod ) && $price_ht == '' ) // Unit price can be 0 but not ''. Also price can be negative for proposal.
2015-01-27 16:53:27 +01:00
{
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " UnitPriceHT " )), null , 'errors' );
2015-01-27 16:53:27 +01:00
$error ++ ;
}
2018-04-24 12:57:31 +02:00
if ( $prod_entry_mode == 'free' && empty ( $idprod ) && empty ( $product_desc )) {
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Description " )), null , 'errors' );
2015-01-27 16:53:27 +01:00
$error ++ ;
}
2016-09-11 16:05:38 +02:00
if ( ! $error && ( $qty >= 0 )) {
2015-01-27 16:53: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 ();
// Ecrase $pu par celui du produit
// Ecrase $desc par celui du produit
// Ecrase $txtva par celui du produit
2018-04-24 12:57:31 +02:00
if ( $prod_entry_mode != 'free' && empty ( $error )) // With combolist mode idprodfournprice is > 0 or -1. With autocomplete, idprodfournprice is > 0 or ''
2016-09-11 16:05:38 +02:00
{
2017-10-16 08:47:05 +02:00
$productsupplier = new ProductFournisseur ( $db );
2018-04-24 12:57:31 +02:00
$idprod = 0 ;
2018-06-16 14:47:33 +02:00
if ( GETPOST ( 'idprodfournprice' , 'alpha' ) == - 1 || GETPOST ( 'idprodfournprice' , 'alpha' ) == '' ) $idprod =- 99 ; // Same behaviour than with combolist. When not select idprodfournprice is now -99 (to avoid conflict with next action that may return -1, -2, ...)
2018-04-24 12:57:31 +02:00
2018-06-16 14:47:33 +02:00
if ( preg_match ( '/^idprod_([0-9]+)$/' , GETPOST ( 'idprodfournprice' , 'alpha' ), $reg ))
2017-10-16 08:47:05 +02:00
{
$idprod = $reg [ 1 ];
$res = $productsupplier -> fetch ( $idprod );
2018-06-16 14:47:33 +02:00
// Call to init some price properties of $productsupplier
2017-10-16 08:47:05 +02:00
// So if a supplier price already exists for another thirdparty (first one found), we use it as reference price
2018-06-16 14:47:33 +02:00
if ( ! empty ( $conf -> global -> SUPPLIER_TAKE_FIRST_PRICE_IF_NO_PRICE_FOR_CURRENT_SUPPLIER ))
{
$fksoctosearch = 0 ;
$productsupplier -> get_buyprice ( 0 , - 1 , $idprod , 'none' , $fksoctosearch ); // We force qty to -1 to be sure to find if a supplier price exist
if ( $productsupplier -> fourn_socid != $socid ) // The price we found is for another supplier, so we clear supplier price
{
$productsupplier -> ref_supplier = '' ;
}
}
else
{
$fksoctosearch = $object -> thirdparty -> id ;
$productsupplier -> get_buyprice ( 0 , - 1 , $idprod , 'none' , $fksoctosearch ); // We force qty to -1 to be sure to find if a supplier price exist
}
2017-10-16 08:47:05 +02:00
}
2018-06-16 14:47:33 +02:00
elseif ( GETPOST ( 'idprodfournprice' , 'alpha' ) > 0 )
2017-10-16 08:47:05 +02:00
{
//$qtytosearch=$qty; // Just to see if a price exists for the quantity. Not used to found vat.
$qtytosearch =- 1 ; // We force qty to -1 to be sure to find if a supplier price exist
2018-06-16 14:47:33 +02:00
$idprod = $productsupplier -> get_buyprice ( GETPOST ( 'idprodfournprice' , 'alpha' ), $qtytosearch );
2017-10-16 08:47:05 +02:00
$res = $productsupplier -> fetch ( $idprod );
}
if ( $idprod > 0 )
{
$label = $productsupplier -> label ;
2018-04-24 12:57:31 +02:00
2017-10-16 08:47:05 +02:00
$desc = $productsupplier -> description ;
if ( trim ( $product_desc ) != trim ( $desc )) $desc = dol_concatdesc ( $desc , $product_desc );
2018-04-24 12:57:31 +02:00
$pu_ht = $productsupplier -> fourn_pu ;
$type = $productsupplier -> type ;
$price_base_type = ( $productsupplier -> fourn_price_base_type ? $productsupplier -> fourn_price_base_type : 'HT' );
2017-11-12 16:06:08 +01:00
$ref_supplier = $productsupplier -> ref_supplier ;
2017-10-16 08:47:05 +02:00
2018-06-16 14:47:33 +02:00
$tva_tx = get_default_tva ( $object -> thirdparty , $mysoc , $productsupplier -> id , GETPOST ( 'idprodfournprice' , 'alpha' ));
$tva_npr = get_default_npr ( $object -> thirdparty , $mysoc , $productsupplier -> id , GETPOST ( 'idprodfournprice' , 'alpha' ));
2017-10-16 08:47:05 +02:00
if ( empty ( $tva_tx )) $tva_npr = 0 ;
$localtax1_tx = get_localtax ( $tva_tx , 1 , $mysoc , $object -> thirdparty , $tva_npr );
$localtax2_tx = get_localtax ( $tva_tx , 2 , $mysoc , $object -> thirdparty , $tva_npr );
$result = $object -> addline (
$desc ,
$pu_ht ,
$qty ,
$tva_tx ,
$localtax1_tx ,
$localtax2_tx ,
$productsupplier -> id ,
$remise_percent ,
$price_base_type ,
$pu_ttc ,
$tva_npr ,
$type ,
- 1 ,
0 ,
GETPOST ( 'fk_parent_line' ),
$fournprice ,
$buyingprice ,
$label ,
$array_options ,
2017-11-12 16:06:08 +01:00
$ref_supplier ,
2018-02-23 11:06:07 +01:00
$fk_unit ,
'' ,
0 ,
$productsupplier -> fourn_multicurrency_unitprice
);
2017-10-16 08:47:05 +02:00
//var_dump($tva_tx);var_dump($productsupplier->fourn_pu);var_dump($price_base_type);exit;
}
if ( $idprod == - 99 || $idprod == 0 )
{
// Product not selected
$error ++ ;
$langs -> load ( " errors " );
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " ProductOrService " )) . ' ' . $langs -> trans ( " or " ) . ' ' . $langs -> trans ( " NoPriceDefinedForThisSupplier " ), null , 'errors' );
}
if ( $idprod == - 1 )
{
// Quantity too low
$error ++ ;
$langs -> load ( " errors " );
setEventMessages ( $langs -> trans ( " ErrorQtyTooLowForThisSupplier " ), null , 'errors' );
}
2016-09-11 16:05:38 +02:00
}
2018-04-24 12:57:31 +02:00
else if (( GETPOST ( 'price_ht' ) !== '' || GETPOST ( 'price_ttc' ) !== '' ) && empty ( $error )) // Free product. // $price_ht is already set
2016-09-11 16:05:38 +02:00
{
2017-10-16 08:47:05 +02:00
$pu_ht = price2num ( $price_ht , 'MU' );
$pu_ttc = price2num ( GETPOST ( 'price_ttc' ), 'MU' );
$tva_npr = ( preg_match ( '/\*/' , $tva_tx ) ? 1 : 0 );
$tva_tx = str_replace ( '*' , '' , $tva_tx );
$label = ( GETPOST ( 'product_label' ) ? GETPOST ( 'product_label' ) : '' );
$desc = $product_desc ;
$type = GETPOST ( 'type' );
$fk_unit = GETPOST ( 'units' , 'alpha' );
$tva_tx = price2num ( $tva_tx ); // When vat is text input field
// Local Taxes
$localtax1_tx = get_localtax ( $tva_tx , 1 , $mysoc , $object -> thirdparty );
$localtax2_tx = get_localtax ( $tva_tx , 2 , $mysoc , $object -> thirdparty );
2018-04-24 12:57:31 +02:00
if ( $price_ht !== '' )
2017-10-16 08:47:05 +02:00
{
2018-04-24 12:57:31 +02:00
$pu_ht = price2num ( $price_ht , 'MU' ); // $pu_ht must be rounded according to settings
2017-10-16 08:47:05 +02:00
}
else
{
2018-04-24 12:57:31 +02:00
$pu_ttc = price2num ( GETPOST ( 'price_ttc' ), 'MU' );
$pu_ht = price2num ( $pu_ttc / ( 1 + ( $tva_tx / 100 )), 'MU' ); // $pu_ht must be rounded according to settings
2017-10-16 08:47:05 +02:00
}
2018-04-24 12:57:31 +02:00
$price_base_type = 'HT' ;
$pu_ht_devise = price2num ( $price_ht_devise , 'MU' );
2017-06-07 16:44:04 +02:00
2018-04-24 12:57:31 +02: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 , - 1 , 0 , GETPOST ( 'fk_parent_line' ), $fournprice , $buyingprice , $label , $array_options , $ref_supplier , $fk_unit );
2017-10-16 08:47:05 +02:00
//$result = $object->addline($desc, $ht, $qty, $tva_tx, $localtax1_tx, $localtax2_tx, 0, 0, '', $remise_percent, $price_base_type, $ttc, $type,'','', $date_start, $date_end, $array_options, $fk_unit);
2015-01-27 16:53:27 +01:00
}
2017-06-07 16:44:04 +02:00
if ( ! $error && $result > 0 )
2016-09-11 16:05:38 +02:00
{
2015-01-27 16:53:27 +01:00
$db -> commit ();
2016-09-11 16:05:38 +02:00
// Define output language
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE ))
{
2015-01-27 16:53:27 +01:00
$outputlangs = $langs ;
2016-09-11 16:05:38 +02:00
$newlang = '' ;
2017-10-16 08:47:05 +02: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 ;
if ( ! empty ( $newlang )) {
2015-01-27 16:53:27 +01:00
$outputlangs = new Translate ( " " , $conf );
$outputlangs -> setDefaultLang ( $newlang );
}
2016-09-11 16:05:38 +02:00
$model = $object -> modelpdf ;
2015-01-27 16:53:27 +01:00
$ret = $object -> fetch ( $id ); // Reload to get new records
2017-06-07 16:44:04 +02:00
2016-09-11 16:05:38 +02:00
$result = $object -> generateDocument ( $model , $outputlangs , $hidedetails , $hidedesc , $hideref );
2017-10-16 08:47:05 +02:00
if ( $result < 0 ) dol_print_error ( $db , $result );
2015-01-27 16:53:27 +01:00
}
unset ( $_POST [ 'prod_entry_mode' ]);
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
unset ( $_POST [ 'remise_percent' ]);
2017-06-07 16:44:04 +02:00
unset ( $_POST [ 'pu' ]);
2015-01-27 16:53:27 +01:00
unset ( $_POST [ 'price_ht' ]);
2016-04-12 14:10:27 +02:00
unset ( $_POST [ 'multicurrency_price_ht' ]);
2015-01-27 16:53:27 +01:00
unset ( $_POST [ 'price_ttc' ]);
unset ( $_POST [ 'tva_tx' ]);
2017-10-16 08:47:05 +02:00
unset ( $_POST [ 'label' ]);
2015-01-27 16:53:27 +01:00
unset ( $_POST [ 'product_ref' ]);
unset ( $_POST [ 'product_label' ]);
unset ( $_POST [ 'product_desc' ]);
unset ( $_POST [ 'fournprice' ]);
unset ( $_POST [ 'buying_price' ]);
2016-09-11 16:05:38 +02:00
unset ( $localtax1_tx );
unset ( $localtax2_tx );
2015-01-27 16:53:27 +01:00
unset ( $_POST [ 'np_marginRate' ]);
unset ( $_POST [ 'np_markRate' ]);
unset ( $_POST [ 'dp_desc' ]);
2016-09-11 16:05:38 +02:00
unset ( $_POST [ 'idprodfournprice' ]);
2015-01-27 16:53:27 +01:00
unset ( $_POST [ 'idprod' ]);
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' ]);
2017-06-07 16:44:04 +02:00
}
else
2016-09-11 16:05:38 +02:00
{
$db -> rollback ();
2015-01-27 16:53:27 +01:00
2016-09-11 16:05:38 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-27 16:53:27 +01:00
}
2016-09-11 16:05:38 +02:00
//}
2015-01-27 16:53:27 +01:00
}
}
2015-02-04 15:39:57 +01:00
// Mise a jour d'une ligne dans la demande de prix
2015-11-15 18:23:42 +01:00
else if ( $action == 'updateligne' && $user -> rights -> supplier_proposal -> creer && GETPOST ( 'save' ) == $langs -> trans ( " Save " )) {
2018-04-24 13:22:34 +02:00
2015-01-27 16:53:27 +01:00
// Define info_bits
$info_bits = 0 ;
if ( preg_match ( '/\*/' , GETPOST ( 'tva_tx' )))
$info_bits |= 0x01 ;
// Clean parameters
2017-09-25 00:16:52 +02:00
$description = dol_htmlcleanlastbr ( GETPOST ( 'product_desc' , 'none' ));
2015-01-27 16:53:27 +01:00
// Define vat_rate
$vat_rate = ( GETPOST ( 'tva_tx' ) ? GETPOST ( 'tva_tx' ) : 0 );
$vat_rate = str_replace ( '*' , '' , $vat_rate );
$localtax1_rate = get_localtax ( $vat_rate , 1 , $object -> thirdparty );
$localtax2_rate = get_localtax ( $vat_rate , 2 , $object -> thirdparty );
2015-02-04 15:39:57 +01:00
$pu_ht = GETPOST ( 'price_ht' ) ? GETPOST ( 'price_ht' ) : 0 ;
2015-01-27 16:53:27 +01:00
// Add buying price
$fournprice = ( GETPOST ( 'fournprice' ) ? GETPOST ( 'fournprice' ) : '' );
2016-08-10 09:47:25 +02:00
$buyingprice = ( GETPOST ( 'buying_price' ) != '' ? GETPOST ( 'buying_price' ) : '' ); // If buying_price is '0', we muste keep this value
2015-01-27 16:53:27 +01:00
// Extrafields
$extrafieldsline = new ExtraFields ( $db );
$extralabelsline = $extrafieldsline -> fetch_name_optionals_label ( $object -> table_element_line );
2016-09-11 16:05:38 +02:00
$array_options = $extrafieldsline -> getOptionalsFromPost ( $extralabelsline );
2015-01-27 16:53:27 +01:00
// Unset extrafield
if ( is_array ( $extralabelsline )) {
// Get extra fields
foreach ( $extralabelsline as $key => $value ) {
unset ( $_POST [ " options_ " . $key ]);
}
}
// Define special_code for special lines
$special_code = GETPOST ( 'special_code' );
if ( ! GETPOST ( 'qty' )) $special_code = 3 ;
// Check minimum price
$productid = GETPOST ( 'productid' , 'int' );
if ( ! empty ( $productid )) {
2018-04-24 13:22:34 +02:00
$productsupplier = new ProductFournisseur ( $db );
if ( ! empty ( $conf -> global -> SUPPLIER_PROPOSAL_WITH_PREDEFINED_PRICES_ONLY ))
{
if ( $productid > 0 && $productsupplier -> get_buyprice ( 0 , price2num ( $_POST [ 'qty' ]), $productid , 'none' , GETPOST ( 'socid' , 'int' )) < 0 )
{
setEventMessages ( $langs -> trans ( " ErrorQtyTooLowForThisSupplier " ), null , 'warnings' );
}
}
2015-01-27 16:53:27 +01:00
$product = new Product ( $db );
$res = $product -> fetch ( $productid );
$type = $product -> type ;
$price_min = $product -> price_min ;
if ( ! empty ( $conf -> global -> PRODUIT_MULTIPRICES ) && ! empty ( $object -> thirdparty -> price_level ))
$price_min = $product -> multiprices_min [ $object -> thirdparty -> price_level ];
$label = (( GETPOST ( 'update_label' ) && GETPOST ( 'product_label' )) ? GETPOST ( 'product_label' ) : '' );
} else {
$type = GETPOST ( 'type' );
$label = ( GETPOST ( 'product_label' ) ? GETPOST ( 'product_label' ) : '' );
// Check parameters
if ( GETPOST ( 'type' ) < 0 ) {
2015-10-17 16:18:33 +02:00
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )), null , 'errors' );
2015-01-27 16:53:27 +01:00
$error ++ ;
}
}
if ( ! $error ) {
$db -> begin ();
2017-11-12 16:06:08 +01:00
$ref_supplier = GETPOST ( 'fourn_ref' , 'alpha' );
2017-03-22 16:43:12 +01:00
$fk_unit = GETPOST ( 'units' );
2017-11-12 16:06:08 +01:00
$result = $object -> updateline ( GETPOST ( 'lineid' ), $pu_ht , GETPOST ( 'qty' ), GETPOST ( 'remise_percent' ), $vat_rate , $localtax1_rate , $localtax2_rate , $description , 'HT' , $info_bits , $special_code , GETPOST ( 'fk_parent_line' ), 0 , $fournprice , $buyingprice , $label , $type , $array_options , $ref_supplier , $fk_unit );
2015-01-27 16:53:27 +01:00
if ( $result >= 0 ) {
$db -> commit ();
if ( empty ( $conf -> global -> MAIN_DISABLE_PDF_AUTOUPDATE )) {
// Define output language
$outputlangs = $langs ;
if ( ! empty ( $conf -> global -> MAIN_MULTILANGS )) {
$outputlangs = new Translate ( " " , $conf );
2017-06-27 17:27:01 +02:00
$newlang = ( GETPOST ( 'lang_id' , 'aZ09' ) ? GETPOST ( 'lang_id' , 'aZ09' ) : $object -> thirdparty -> default_lang );
2015-01-27 16:53:27 +01:00
$outputlangs -> setDefaultLang ( $newlang );
}
$ret = $object -> fetch ( $id ); // Reload to get new records
$object -> generateDocument ( $object -> modelpdf , $outputlangs , $hidedetails , $hidedesc , $hideref );
}
unset ( $_POST [ 'qty' ]);
unset ( $_POST [ 'type' ]);
unset ( $_POST [ 'productid' ]);
unset ( $_POST [ 'remise_percent' ]);
unset ( $_POST [ 'price_ht' ]);
2016-04-12 14:10:27 +02:00
unset ( $_POST [ 'multicurrency_price_ht' ]);
2015-01-27 16:53:27 +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' ]);
2015-01-27 16:53:27 +01:00
} else {
$db -> rollback ();
2015-10-31 17:21:48 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-27 16:53:27 +01:00
}
}
}
2017-09-15 10:50:50 +02:00
else if ( $action == 'updateligne' && $user -> rights -> supplier_proposal -> creer && GETPOST ( 'cancel' , 'alpha' ) == $langs -> trans ( 'Cancel' )) {
2015-01-27 16:53:27 +01:00
header ( 'Location: ' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id ); // Pour reaffichage de la fiche en cours d'edition
exit ();
}
// Set project
2015-11-15 18:23:42 +01:00
else if ( $action == 'classin' && $user -> rights -> supplier_proposal -> creer ) {
2018-05-01 14:15:11 +02:00
$object -> setProject ( GETPOST ( 'projectid' ), 'int' );
2015-01-27 16:53:27 +01:00
}
// Delai de livraison
2015-11-15 18:23:42 +01:00
else if ( $action == 'setavailability' && $user -> rights -> supplier_proposal -> creer ) {
2015-01-27 16:53:27 +01:00
$result = $object -> availability ( $_POST [ 'availability_id' ]);
}
// Conditions de reglement
2015-11-15 18:23:42 +01:00
else if ( $action == 'setconditions' && $user -> rights -> supplier_proposal -> creer ) {
2015-01-27 16:53:27 +01:00
$result = $object -> setPaymentTerms ( GETPOST ( 'cond_reglement_id' , 'int' ));
}
2015-11-15 18:23:42 +01:00
else if ( $action == 'setremisepercent' && $user -> rights -> supplier_proposal -> creer ) {
2015-01-27 16:53:27 +01:00
$result = $object -> set_remise_percent ( $user , $_POST [ 'remise_percent' ]);
}
2015-11-15 18:23:42 +01:00
else if ( $action == 'setremiseabsolue' && $user -> rights -> supplier_proposal -> creer ) {
2015-01-27 16:53:27 +01:00
$result = $object -> set_remise_absolue ( $user , $_POST [ 'remise_absolue' ]);
}
// Mode de reglement
2015-11-15 18:23:42 +01:00
else if ( $action == 'setmode' && $user -> rights -> supplier_proposal -> creer ) {
2015-01-27 16:53:27 +01:00
$result = $object -> setPaymentMethods ( GETPOST ( 'mode_reglement_id' , 'int' ));
}
2016-08-10 09:47:25 +02:00
2016-02-16 23:58:21 +01:00
// Multicurrency Code
else if ( $action == 'setmulticurrencycode' && $user -> rights -> supplier_proposal -> creer ) {
$result = $object -> setMulticurrencyCode ( GETPOST ( 'multicurrency_code' , 'alpha' ));
}
// Multicurrency rate
else if ( $action == 'setmulticurrencyrate' && $user -> rights -> supplier_proposal -> creer ) {
2016-08-10 09:47:25 +02:00
$result = $object -> setMulticurrencyRate ( price2num ( GETPOST ( 'multicurrency_tx' )));
2016-02-16 23:58:21 +01:00
}
2015-01-27 16:53:27 +01:00
2016-05-13 14:28:37 +02:00
else if ( $action == 'update_extras' ) {
2018-02-23 16:11:00 +01:00
$object -> oldcopy = dol_clone ( $object );
2015-01-27 16:53:27 +01:00
// Fill array 'array_options' with data from update form
$extralabels = $extrafields -> fetch_name_optionals_label ( $object -> table_element );
2018-02-23 16:11:00 +01:00
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object , GETPOST ( 'attribute' , 'none' ));
2017-06-07 16:44:04 +02:00
if ( $ret < 0 ) $error ++ ;
2017-10-24 19:04:40 +02:00
2017-06-07 16:44:04 +02:00
if ( ! $error )
{
2018-02-20 18:09:38 +01:00
$result = $object -> insertExtraFields ( 'SUPPLIER_PROPOSAL_MODIFY' );
2017-10-24 19:04:40 +02:00
if ( $result < 0 )
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
$error ++ ;
}
2015-01-27 16:53:27 +01:00
}
2017-10-24 19:04:40 +02:00
2017-06-07 16:44:04 +02:00
if ( $error ) $action = 'edit_extras' ;
2015-01-27 16:53:27 +01:00
}
}
/*
* View
*/
2015-02-04 15:39:57 +01:00
llxHeader ( '' , $langs -> trans ( 'CommRequests' ), 'EN:Ask_Price_Supplier|FR:Demande_de_prix_fournisseur' );
2015-01-27 16:53:27 +01:00
$form = new Form ( $db );
$formother = new FormOther ( $db );
$formfile = new FormFile ( $db );
2015-10-03 19:05:13 +02:00
$formmargin = new FormMargin ( $db );
2015-01-27 16:53:27 +01:00
$companystatic = new Societe ( $db );
2016-09-19 13:57:50 +02:00
if ( ! empty ( $conf -> projet -> enabled )) { $formproject = new FormProjets ( $db ); }
2015-01-27 16:53:27 +01:00
$now = dol_now ();
2015-02-04 15:39:57 +01:00
// Add new askprice
2015-01-27 16:53:27 +01:00
if ( $action == 'create' )
{
2017-10-16 08:47:05 +02:00
$currency_code = $conf -> currency ;
2017-07-13 10:16:40 +02:00
2017-10-16 08:47:05 +02:00
print load_fiche_titre ( $langs -> trans ( " NewAskPrice " ));
2015-01-27 16:53:27 +01:00
$soc = new Societe ( $db );
if ( $socid > 0 )
$res = $soc -> fetch ( $socid );
// Load objectsrc
if ( ! empty ( $origin ) && ! empty ( $originid ))
{
2015-11-15 18:23:42 +01:00
$element = 'supplier_proposal' ;
$subelement = 'supplier_proposal' ;
2015-01-27 16:53:27 +01:00
2015-02-04 15:39:57 +01:00
dol_include_once ( '/' . $element . '/class/' . $subelement . '.class.php' );
2015-01-27 16:53:27 +01:00
2015-02-04 15:39:57 +01:00
$classname = ucfirst ( $subelement );
$objectsrc = new $classname ( $db );
$objectsrc -> fetch ( $originid );
if ( empty ( $objectsrc -> lines ) && method_exists ( $objectsrc , 'fetch_lines' ))
{
$objectsrc -> fetch_lines ();
}
$objectsrc -> fetch_thirdparty ();
2015-01-27 16:53:27 +01:00
2015-02-04 15:39:57 +01:00
$projectid = ( ! empty ( $objectsrc -> fk_project ) ? $objectsrc -> fk_project : '' );
$soc = $objectsrc -> thirdparty ;
2015-01-27 16:53:27 +01:00
2018-03-09 09:37:23 +01:00
$cond_reglement_id = ( ! empty ( $objectsrc -> cond_reglement_id ) ? $objectsrc -> cond_reglement_id : ( ! empty ( $soc -> cond_reglement_id ) ? $soc -> cond_reglement_id : 0 )); // TODO maybe add default value option
2015-02-04 15:39:57 +01:00
$mode_reglement_id = ( ! empty ( $objectsrc -> mode_reglement_id ) ? $objectsrc -> mode_reglement_id : ( ! empty ( $soc -> mode_reglement_id ) ? $soc -> mode_reglement_id : 0 ));
2018-02-27 16:30:39 +01:00
$remise_percent = ( ! empty ( $objectsrc -> remise_percent ) ? $objectsrc -> remise_percent : ( ! empty ( $soc -> remise_supplier_percent ) ? $soc -> remise_supplier_percent : 0 ));
2015-02-04 15:39:57 +01:00
$remise_absolue = ( ! empty ( $objectsrc -> remise_absolue ) ? $objectsrc -> remise_absolue : ( ! empty ( $soc -> remise_absolue ) ? $soc -> remise_absolue : 0 ));
2015-01-27 16:53:27 +01:00
2015-02-04 15:39:57 +01:00
// Replicate extrafields
$objectsrc -> fetch_optionals ( $originid );
$object -> array_options = $objectsrc -> array_options ;
2015-03-04 17:54:43 +01:00
2017-03-23 12:23:32 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
2017-10-16 08:47:05 +02:00
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
}
}
else
{
2017-03-25 12:06:02 +01:00
$cond_reglement_id = $soc -> cond_reglement_supplier_id ;
$mode_reglement_id = $soc -> mode_reglement_supplier_id ;
if ( ! empty ( $conf -> multicurrency -> enabled ) && ! empty ( $soc -> multicurrency_code )) $currency_code = $soc -> multicurrency_code ;
2015-01-27 16:53:27 +01:00
}
2015-11-15 18:23:42 +01:00
$object = new SupplierProposal ( $db );
2015-01-27 16:53:27 +01:00
print '<form name="addprop" action="' . $_SERVER [ " PHP_SELF " ] . '" method="POST">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="add">' ;
if ( $origin != 'project' && $originid ) {
print '<input type="hidden" name="origin" value="' . $origin . '">' ;
print '<input type="hidden" name="originid" value="' . $originid . '">' ;
}
dol_fiche_head ();
print '<table class="border" width="100%">' ;
// Reference
2016-04-10 20:50:55 +02:00
print '<tr><td class="titlefieldcreate fieldrequired">' . $langs -> trans ( 'Ref' ) . '</td><td colspan="2">' . $langs -> trans ( " Draft " ) . '</td></tr>' ;
2015-01-27 16:53:27 +01:00
// Third party
print '<tr>' ;
2015-01-28 15:37:52 +01:00
print '<td class="fieldrequired">' . $langs -> trans ( 'Supplier' ) . '</td>' ;
2015-01-27 16:53:27 +01:00
if ( $socid > 0 ) {
print '<td colspan="2">' ;
print $soc -> getNomUrl ( 1 );
print '<input type="hidden" name="socid" value="' . $soc -> id . '">' ;
print '</td>' ;
} else {
print '<td colspan="2">' ;
2017-06-21 11:37:34 +02:00
print $form -> select_company ( '' , 'socid' , 's.fournisseur = 1' , 'SelectThirdParty' , 0 , 0 , null , 0 , 'minwidth300' );
2017-10-16 08:47:05 +02:00
print ' <a href="' . DOL_URL_ROOT . '/societe/card.php?action=create&client=0&fournisseur=1&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?action=create' ) . '">' . $langs -> trans ( " AddThirdParty " ) . '</a>' ;
2015-01-27 16:53:27 +01:00
print '</td>' ;
}
print '</tr>' . " \n " ;
2018-03-05 10:58:19 +01:00
if ( $soc -> id > 0 )
2018-02-16 11:45:57 +01:00
{
// Discounts for third party
2018-03-09 09:37:23 +01:00
print '<tr><td>' . $langs -> trans ( 'Discounts' ) . '</td><td>' ;
2018-02-27 16:30:39 +01:00
2018-02-16 11:45:57 +01:00
$absolute_discount = $soc -> getAvailableDiscounts ( '' , '' , 0 , 1 );
2018-03-02 16:48:25 +01:00
$thirdparty = $soc ;
$discount_type = 1 ;
$backtopage = urlencode ( $_SERVER [ " PHP_SELF " ] . '?socid=' . $thirdparty -> id . '&action=' . $action . '&origin=' . GETPOST ( 'origin' ) . '&originid=' . GETPOST ( 'originid' ));
include DOL_DOCUMENT_ROOT . '/core/tpl/object_discounts.tpl.php' ;
2018-02-16 11:45:57 +01:00
print '</td></tr>' ;
}
2015-01-27 16:53:27 +01:00
// Terms of payment
2015-03-04 17:54:43 +01:00
print '<tr><td class="nowrap">' . $langs -> trans ( 'PaymentConditionsShort' ) . '</td><td colspan="2">' ;
2017-03-25 12:06:02 +01:00
$form -> select_conditions_paiements ( GETPOST ( 'cond_reglement_id' ) > 0 ? GETPOST ( 'cond_reglement_id' ) : $cond_reglement_id , 'cond_reglement_id' , - 1 , 1 );
2015-01-27 16:53:27 +01:00
print '</td></tr>' ;
// Mode of payment
print '<tr><td>' . $langs -> trans ( 'PaymentMode' ) . '</td><td colspan="2">' ;
2017-03-25 12:06:02 +01:00
$form -> select_types_paiements ( GETPOST ( 'mode_reglement_id' ) > 0 ? GETPOST ( 'mode_reglement_id' ) : $mode_reglement_id , 'mode_reglement_id' );
2015-01-27 16:53:27 +01:00
print '</td></tr>' ;
2017-10-16 08:47:05 +02:00
// Bank Account
if ( ! empty ( $conf -> global -> BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL ) && ! empty ( $conf -> banque -> enabled )) {
print '<tr><td>' . $langs -> trans ( 'BankAccount' ) . '</td><td colspan="2">' ;
$form -> select_comptes ( GETPOST ( 'fk_account' ) > 0 ? GETPOST ( 'fk_account' , 'int' ) : $fk_account , 'fk_account' , 0 , '' , 1 );
print '</td></tr>' ;
}
2015-03-04 17:54:43 +01:00
2017-10-16 08:47:05 +02:00
// Shipping Method
if ( ! empty ( $conf -> expedition -> enabled )) {
print '<tr><td>' . $langs -> trans ( 'SendingMethod' ) . '</td><td colspan="2">' ;
print $form -> selectShippingMethod ( GETPOST ( 'shipping_method_id' ) > 0 ? GETPOST ( 'shipping_method_id' , 'int' ) : $shipping_method_id , 'shipping_method_id' , '' , 1 );
print '</td></tr>' ;
}
2015-01-27 16:53:27 +01:00
// Delivery date (or manufacturing)
print '<tr><td>' . $langs -> trans ( " DeliveryDate " ) . '</td>' ;
print '<td colspan="2">' ;
2016-06-04 02:39:13 +02:00
$datedelivery = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'liv_month' ), GETPOST ( 'liv_day' ), GETPOST ( 'liv_year' ));
2015-01-27 16:53:27 +01:00
if ( $conf -> global -> DATE_LIVRAISON_WEEK_DELAY != " " ) {
$tmpdte = time () + (( 7 * $conf -> global -> DATE_LIVRAISON_WEEK_DELAY ) * 24 * 60 * 60 );
$syear = date ( " Y " , $tmpdte );
$smonth = date ( " m " , $tmpdte );
$sday = date ( " d " , $tmpdte );
2016-03-25 15:53:44 +01:00
$form -> select_date ( $syear . " - " . $smonth . " - " . $sday , 'liv_' , '' , '' , '' , " addask " );
2015-01-27 16:53:27 +01:00
} else {
2016-06-04 02:39:13 +02:00
$form -> select_date ( $datedelivery ? $datedelivery : - 1 , 'liv_' , '' , '' , '' , " addask " , 1 , 1 );
2015-01-27 16:53:27 +01:00
}
print '</td></tr>' ;
2015-03-04 17:54:43 +01:00
2015-01-27 16:53:27 +01:00
// Model
print '<tr>' ;
print '<td>' . $langs -> trans ( " DefaultModel " ) . '</td>' ;
print '<td colspan="2">' ;
2015-11-15 18:23:42 +01:00
$liste = ModelePDFSupplierProposal :: liste_modeles ( $db );
2016-03-25 15:34:37 +01:00
print $form -> selectarray ( 'model' , $liste , ( $conf -> global -> SUPPLIER_PROPOSAL_ADDON_PDF_ODT_DEFAULT ? $conf -> global -> SUPPLIER_PROPOSAL_ADDON_PDF_ODT_DEFAULT : $conf -> global -> SUPPLIER_PROPOSAL_ADDON_PDF ));
2015-01-27 16:53:27 +01:00
print " </td></tr> " ;
// Project
2017-12-12 10:37:51 +01:00
if ( ! empty ( $conf -> projet -> enabled ))
{
$langs -> load ( " projects " );
2015-01-27 16:53:27 +01:00
$formproject = new FormProjets ( $db );
2018-05-01 14:15:11 +02:00
if ( $origin == 'project' ) $projectid = ( $originid ? $originid : 0 );
2015-01-27 16:53:27 +01:00
print '<tr>' ;
2017-12-20 21:14:22 +01:00
print '<td>' . $langs -> trans ( " Project " ) . '</td><td colspan="2">' ;
2015-01-27 16:53:27 +01:00
2017-12-12 10:37:51 +01:00
$numprojet = $formproject -> select_projects (( $soc -> id > 0 ? $soc -> id : - 1 ), $projectid , 'projectid' , 0 , 0 , 1 , 1 );
print ' <a href="' . DOL_URL_ROOT . '/projet/card.php?socid=' . $soc -> id . '&action=create&status=1&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?action=create&socid=' . $soc -> id ) . '">' . $langs -> trans ( " AddProject " ) . '</a>' ;
2015-01-27 16:53:27 +01:00
print '</td>' ;
print '</tr>' ;
}
2016-08-10 09:47:25 +02:00
2016-02-16 23:58:21 +01:00
// Multicurrency
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
print '<tr>' ;
print '<td>' . fieldLabel ( 'Currency' , 'multicurrency_code' ) . '</td>' ;
2017-10-16 08:47:05 +02:00
print '<td colspan="3" class="maxwidthonsmartphone">' ;
print $form -> selectMultiCurrency ( $currency_code , 'multicurrency_code' );
2016-02-16 23:58:21 +01:00
print '</td></tr>' ;
}
2015-03-04 17:54:43 +01:00
2015-01-27 16:53:27 +01:00
// Other attributes
$parameters = array ( 'colspan' => ' colspan="3"' );
2017-06-07 16:44:04 +02:00
$reshook = $hookmanager -> executeHooks ( 'formObjectOptions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2017-10-16 08:47:05 +02:00
print $hookmanager -> resPrint ;
2018-04-13 13:28:48 +02:00
if ( empty ( $reshook )) {
2015-01-27 16:53:27 +01:00
print $object -> showOptionals ( $extrafields , 'edit' );
}
// Lines from source
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc ))
{
// TODO for compatibility
if ( $origin == 'contrat' ) {
// Calcul contrat->price (HT), contrat->total (TTC), contrat->tva
$objectsrc -> remise_absolue = $remise_absolue ;
$objectsrc -> remise_percent = $remise_percent ;
$objectsrc -> update_price ( 1 , - 1 , 1 );
}
print " \n <!-- " . $classname . " info --> " ;
print " \n " ;
print '<input type="hidden" name="amount" value="' . $objectsrc -> total_ht . '">' . " \n " ;
print '<input type="hidden" name="total" value="' . $objectsrc -> total_ttc . '">' . " \n " ;
print '<input type="hidden" name="tva" value="' . $objectsrc -> total_tva . '">' . " \n " ;
print '<input type="hidden" name="origin" value="' . $objectsrc -> element . '">' ;
print '<input type="hidden" name="originid" value="' . $objectsrc -> id . '">' ;
2015-02-04 15:39:57 +01:00
print '<tr><td>' . $langs -> trans ( 'CommRequest' ) . '</td><td colspan="2">' . $objectsrc -> getNomUrl ( 1 ) . '</td></tr>' ;
2015-01-27 16:53:27 +01:00
print '<tr><td>' . $langs -> trans ( 'TotalHT' ) . '</td><td colspan="2">' . price ( $objectsrc -> total_ht ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'TotalVAT' ) . '</td><td colspan="2">' . price ( $objectsrc -> total_tva ) . " </td></tr> " ;
if ( $mysoc -> localtax1_assuj == " 1 " || $objectsrc -> total_localtax1 != 0 ) // Localtax1
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ) . '</td><td colspan="2">' . price ( $objectsrc -> total_localtax1 ) . " </td></tr> " ;
}
if ( $mysoc -> localtax2_assuj == " 1 " || $objectsrc -> total_localtax2 != 0 ) // Localtax2
{
print '<tr><td>' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ) . '</td><td colspan="2">' . price ( $objectsrc -> total_localtax2 ) . " </td></tr> " ;
}
print '<tr><td>' . $langs -> trans ( 'TotalTTC' ) . '</td><td colspan="2">' . price ( $objectsrc -> total_ttc ) . " </td></tr> " ;
2017-03-23 12:23:32 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled ))
{
print '<tr><td>' . $langs -> trans ( 'MulticurrencyTotalHT' ) . '</td><td colspan="2">' . price ( $objectsrc -> multicurrency_total_ht ) . '</td></tr>' ;
print '<tr><td>' . $langs -> trans ( 'MulticurrencyTotalVAT' ) . '</td><td colspan="2">' . price ( $objectsrc -> multicurrency_total_tva ) . " </td></tr> " ;
print '<tr><td>' . $langs -> trans ( 'MulticurrencyTotalTTC' ) . '</td><td colspan="2">' . price ( $objectsrc -> multicurrency_total_ttc ) . " </td></tr> " ;
}
2015-01-27 16:53:27 +01:00
}
print " </table> \n " ;
/*
* Combobox pour la fonction de copie
*/
2015-11-15 18:23:42 +01:00
if ( empty ( $conf -> global -> SUPPLIER_PROPOSAL_CLONE_ON_CREATE_PAGE )) print '<input type="hidden" name="createmode" value="empty">' ;
2015-01-27 16:53:27 +01:00
2015-11-15 18:23:42 +01:00
if ( ! empty ( $conf -> global -> SUPPLIER_PROPOSAL_CLONE_ON_CREATE_PAGE ))
2015-01-27 16:53:27 +01:00
{
2017-10-16 08:47:05 +02:00
print '<br><table>' ;
2016-09-10 18:19:54 +02:00
2015-01-27 16:53:27 +01:00
// For backward compatibility
print '<tr>' ;
print '<td><input type="radio" name="createmode" value="copy"></td>' ;
print '<td>' . $langs -> trans ( " CopyAskFrom " ) . ' </td>' ;
print '<td>' ;
$liste_ask = array ();
$liste_ask [ 0 ] = '' ;
$sql = " SELECT p.rowid as id, p.ref, s.nom " ;
2015-11-15 18:23:42 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " supplier_proposal p " ;
2015-01-27 16:53:27 +01:00
$sql .= " , " . MAIN_DB_PREFIX . " societe s " ;
$sql .= " WHERE s.rowid = p.fk_soc " ;
$sql .= " AND p.entity = " . $conf -> entity ;
2017-05-05 13:43:43 +02:00
$sql .= " AND p.fk_statut <> " . SupplierProposal :: STATUS_DRAFT ;
2015-01-27 16:53:27 +01:00
$sql .= " ORDER BY Id " ;
$resql = $db -> query ( $sql );
if ( $resql ) {
$num = $db -> num_rows ( $resql );
$i = 0 ;
while ( $i < $num ) {
$row = $db -> fetch_row ( $resql );
2015-01-28 14:48:59 +01:00
$askPriceSupplierRefAndSocName = $row [ 1 ] . " - " . $row [ 2 ];
$liste_ask [ $row [ 0 ]] = $askPriceSupplierRefAndSocName ;
2015-01-27 16:53:27 +01:00
$i ++ ;
}
2016-03-25 15:34:37 +01:00
print $form -> selectarray ( " copie_supplier_proposal " , $liste_ask , 0 );
2015-01-27 16:53:27 +01:00
} else {
dol_print_error ( $db );
}
print '</td></tr>' ;
2017-01-22 12:13:32 +01:00
print '<tr><td class="tdtop"><input type="radio" name="createmode" value="empty" checked></td>' ;
2015-01-27 16:53:27 +01:00
print '<td valign="top" colspan="2">' . $langs -> trans ( " CreateEmptyAsk " ) . '</td></tr>' ;
}
2016-09-10 18:19:54 +02:00
if ( ! empty ( $conf -> global -> SUPPLIER_PROPOSAL_CLONE_ON_CREATE_PAGE )) print '</table>' ;
2015-01-27 16:53:27 +01:00
dol_fiche_end ();
print '<div class="center">' ;
print '<input type="submit" class="button" value="' . $langs -> trans ( " CreateDraft " ) . '">' ;
print ' ' ;
print '<input type="button" class="button" value="' . $langs -> trans ( " Cancel " ) . '" onClick="javascript:history.go(-1)">' ;
print '</div>' ;
print " </form> " ;
// Show origin lines
if ( ! empty ( $origin ) && ! empty ( $originid ) && is_object ( $objectsrc )) {
print '<br>' ;
$title = $langs -> trans ( 'ProductsAndServices' );
2015-09-24 18:27:13 +02:00
print load_fiche_titre ( $title );
2015-01-27 16:53:27 +01:00
print '<table class="noborder" width="100%">' ;
$objectsrc -> printOriginLinesList ();
print '</table>' ;
}
} else {
/*
* Show object in view mode
*/
$soc = new Societe ( $db );
$soc -> fetch ( $object -> socid );
2015-11-15 18:23:42 +01:00
$head = supplier_proposal_prepare_head ( $object );
2017-03-21 10:54:47 +01:00
dol_fiche_head ( $head , 'comm' , $langs -> trans ( 'CommRequest' ), - 1 , 'supplier_proposal' );
2015-01-27 16:53:27 +01:00
$formconfirm = '' ;
// Clone confirmation
if ( $action == 'clone' ) {
// Create an array for form
$formquestion = array (
// 'text' => $langs->trans("ConfirmClone"),
// array('type' => 'checkbox', 'name' => 'clone_content', 'label' => $langs->trans("CloneMainAttributes"), 'value' => 1),
// array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans("PuttingPricesUpToDate"), 'value' =>
// 1),
2015-02-04 15:39:57 +01:00
array ( 'type' => 'other' , 'name' => 'socid' , 'label' => $langs -> trans ( " SelectThirdParty " ), 'value' => $form -> select_company ( GETPOST ( 'socid' , 'int' ), 'socid' , 's.fournisseur=1' )));
2015-01-27 16:53:27 +01:00
// Paiement incomplet. On demande si motif = escompte ou autre
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'CloneAsk' ), $langs -> trans ( 'ConfirmCloneAsk' , $object -> ref ), 'confirm_clone' , $formquestion , 'yes' , 1 );
2015-01-27 16:53:27 +01:00
}
// Confirm delete
else if ( $action == 'delete' ) {
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'DeleteAsk' ), $langs -> trans ( 'ConfirmDeleteAsk' , $object -> ref ), 'confirm_delete' , '' , 0 , 1 );
2015-01-27 16:53:27 +01:00
}
// Confirm reopen
else if ( $action == 'reopen' ) {
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ReOpen' ), $langs -> trans ( 'ConfirmReOpenAsk' , $object -> ref ), 'confirm_reopen' , '' , 0 , 1 );
2015-01-27 16:53:27 +01:00
}
// Confirmation delete product/service line
else if ( $action == 'ask_deleteline' ) {
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&lineid=' . $lineid , $langs -> trans ( 'DeleteProductLine' ), $langs -> trans ( 'ConfirmDeleteProductLine' ), 'confirm_deleteline' , '' , 0 , 1 );
2015-01-27 16:53:27 +01:00
}
2015-02-04 15:39:57 +01:00
// Confirm validate askprice
2015-01-27 16:53:27 +01:00
else if ( $action == 'validate' ) {
$error = 0 ;
// on verifie si l'objet est en numerotation provisoire
$ref = substr ( $object -> ref , 1 , 4 );
if ( $ref == 'PROV' ) {
$numref = $object -> getNextNumRef ( $soc );
if ( empty ( $numref )) {
$error ++ ;
2015-10-31 17:21:48 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2015-01-27 16:53:27 +01:00
}
} else {
$numref = $object -> ref ;
}
$text = $langs -> trans ( 'ConfirmValidateAsk' , $numref );
if ( ! empty ( $conf -> notification -> enabled )) {
require_once DOL_DOCUMENT_ROOT . '/core/class/notify.class.php' ;
$notify = new Notify ( $db );
$text .= '<br>' ;
2015-11-15 18:23:42 +01:00
$text .= $notify -> confirmMessage ( 'SUPPLIER_PROPOSAL_VALIDATE' , $object -> socid , $object );
2015-01-27 16:53:27 +01:00
}
if ( ! $error )
2016-03-25 15:53:44 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id , $langs -> trans ( 'ValidateAsk' ), $text , 'confirm_validate' , '' , 0 , 1 );
2015-01-27 16:53:27 +01:00
}
if ( ! $formconfirm ) {
$parameters = array ( 'lineid' => $lineid );
2015-03-18 14:31:37 +01:00
$reshook = $hookmanager -> executeHooks ( 'formConfirm' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
if ( empty ( $reshook )) $formconfirm .= $hookmanager -> resPrint ;
elseif ( $reshook > 0 ) $formconfirm = $hookmanager -> resPrint ;
2015-01-27 16:53:27 +01:00
}
// Print form confirm
print $formconfirm ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
// Supplier proposal card
2017-10-03 14:50:52 +02:00
$linkback = '<a href="' . DOL_URL_ROOT . '/supplier_proposal/list.php?restore_lastsearch_values=1' . ( ! empty ( $socid ) ? '&socid=' . $socid : '' ) . '">' . $langs -> trans ( " BackToList " ) . '</a>' ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
$morehtmlref = '<div class="refidno">' ;
// Ref supplier
//$morehtmlref.=$form->editfieldkey("RefSupplier", 'ref_supplier', $object->ref_supplier, $object, $user->rights->fournisseur->commande->creer, 'string', '', 0, 1);
//$morehtmlref.=$form->editfieldval("RefSupplier", 'ref_supplier', $object->ref_supplier, $object, $user->rights->fournisseur->commande->creer, 'string', '', null, null, '', 1);
// Thirdparty
$morehtmlref .= $langs -> trans ( 'ThirdParty' ) . ' : ' . $object -> thirdparty -> getNomUrl ( 1 );
2018-09-16 12:27:56 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_OTHER_LINK ) && $object -> thirdparty -> id > 0 ) $morehtmlref .= ' (<a href="' . DOL_URL_ROOT . '/supplier_proposal/list.php?socid=' . $object -> thirdparty -> id . '&search_societe=' . urlencode ( $object -> thirdparty -> name ) . '">' . $langs -> trans ( " OtherProposals " ) . '</a>)' ;
2016-09-19 13:57:50 +02:00
// Project
if ( ! empty ( $conf -> projet -> enabled ))
{
2017-10-16 08:47:05 +02:00
$langs -> load ( " projects " );
$morehtmlref .= '<br>' . $langs -> trans ( 'Project' ) . ' ' ;
if ( $user -> rights -> supplier_proposal -> creer )
{
if ( $action != 'classify' )
$morehtmlref .= '<a href="' . $_SERVER [ 'PHP_SELF' ] . '?action=classify&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetProject' )) . '</a> : ' ;
if ( $action == 'classify' ) {
//$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
$morehtmlref .= '<form method="post" action="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '">' ;
$morehtmlref .= '<input type="hidden" name="action" value="classin">' ;
$morehtmlref .= '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
$morehtmlref .= $formproject -> select_projects (( empty ( $conf -> global -> PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS ) ? $object -> socid :- 1 ), $object -> fk_project , 'projectid' , $maxlength , 0 , 1 , 0 , 1 , 0 , 0 , '' , 1 );
$morehtmlref .= '<input type="submit" class="button valignmiddle" value="' . $langs -> trans ( " Modify " ) . '">' ;
$morehtmlref .= '</form>' ;
} else {
$morehtmlref .= $form -> form_project ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> socid , $object -> fk_project , 'none' , 0 , 0 , 0 , 1 );
}
} else {
if ( ! empty ( $object -> fk_project )) {
$proj = new Project ( $db );
$proj -> fetch ( $object -> fk_project );
$morehtmlref .= '<a href="' . DOL_URL_ROOT . '/projet/card.php?id=' . $object -> fk_project . '" title="' . $langs -> trans ( 'ShowProject' ) . '">' ;
$morehtmlref .= $proj -> ref ;
$morehtmlref .= '</a>' ;
} else {
$morehtmlref .= '' ;
}
}
2016-09-19 13:57:50 +02:00
}
$morehtmlref .= '</div>' ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
dol_banner_tab ( $object , 'ref' , $linkback , 1 , 'ref' , 'ref' , $morehtmlref );
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
print '<div class="fichecenter">' ;
print '<div class="fichehalfleft">' ;
print '<div class="underbanner clearboth"></div>' ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
print '<table class="border" width="100%">' ;
2015-01-27 16:53:27 +01:00
2018-03-05 10:58:19 +01:00
// Relative and absolute discounts
if ( ! empty ( $conf -> global -> FACTURE_DEPOSITS_ARE_JUST_PAYMENTS )) {
$filterabsolutediscount = " fk_invoice_supplier_source IS NULL " ; // If we want deposit to be substracted to payments only and not to total of final invoice
$filtercreditnote = " fk_invoice_supplier_source IS NOT NULL " ; // If we want deposit to be substracted to payments only and not to total of final invoice
} else {
$filterabsolutediscount = " fk_invoice_supplier_source IS NULL OR (description LIKE '(DEPOSIT)%' AND description NOT LIKE '(EXCESS PAID)%') " ;
$filtercreditnote = " fk_invoice_supplier_source IS NOT NULL AND (description NOT LIKE '(DEPOSIT)%' OR description LIKE '(EXCESS PAID)%') " ;
}
2018-02-16 11:45:57 +01:00
2018-03-05 10:58:19 +01:00
print '<tr><td class="titlefield">' . $langs -> trans ( 'Discounts' ) . '</td><td>' ;
2018-02-27 16:30:39 +01:00
2018-03-05 10:58:19 +01:00
$absolute_discount = $soc -> getAvailableDiscounts ( '' , $filterabsolutediscount , 0 , 1 );
$absolute_creditnote = $soc -> getAvailableDiscounts ( '' , $filtercreditnote , 0 , 1 );
$absolute_discount = price2num ( $absolute_discount , 'MT' );
$absolute_creditnote = price2num ( $absolute_creditnote , 'MT' );
2018-02-27 16:30:39 +01:00
2018-03-05 10:58:19 +01:00
$thirdparty = $soc ;
$discount_type = 1 ;
$backtopage = urlencode ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id );
include DOL_DOCUMENT_ROOT . '/core/tpl/object_discounts.tpl.php' ;
2018-03-02 16:48:25 +01:00
2018-03-05 10:58:19 +01:00
print '</td></tr>' ;
2018-02-16 11:45:57 +01:00
2015-01-27 16:53:27 +01:00
// Payment term
2016-09-19 13:57:50 +02:00
print '<tr><td class="titlefield">' ;
2015-01-27 16:53:27 +01:00
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'PaymentConditionsShort' );
print '</td>' ;
if ( $action != 'editconditions' && ! empty ( $object -> brouillon ))
print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editconditions&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetConditions' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'editconditions' ) {
2015-03-04 17:54:43 +01:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'cond_reglement_id' , 1 );
2015-01-27 16:53:27 +01:00
} else {
2015-03-04 17:54:43 +01:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> cond_reglement_id , 'none' , 1 );
2015-01-27 16:53:27 +01:00
}
print '</td>' ;
print '</tr>' ;
// Delivery date
$langs -> load ( 'deliveries' );
print '<tr><td>' ;
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'DeliveryDate' );
print '</td>' ;
if ( $action != 'editdate_livraison' && ! empty ( $object -> brouillon ))
print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editdate_livraison&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetDeliveryDate' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'editdate_livraison' ) {
print '<form name="editdate_livraison" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="setdate_livraison">' ;
2016-03-25 15:53:44 +01:00
$form -> select_date ( $object -> date_livraison , 'liv_' , '' , '' , '' , " editdate_livraison " );
2015-01-27 16:53:27 +01:00
print '<input type="submit" class="button" value="' . $langs -> trans ( 'Modify' ) . '">' ;
print '</form>' ;
} else {
print dol_print_date ( $object -> date_livraison , 'daytext' );
}
print '</td>' ;
print '</tr>' ;
2015-03-04 17:54:43 +01:00
2015-01-27 16:53:27 +01:00
// Payment mode
print '<tr>' ;
2016-04-10 20:50:55 +02:00
print '<td>' ;
2015-01-27 16:53:27 +01:00
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print $langs -> trans ( 'PaymentMode' );
print '</td>' ;
if ( $action != 'editmode' && ! empty ( $object -> brouillon ))
print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editmode&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetMode' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
if ( $action == 'editmode' ) {
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> mode_reglement_id , 'mode_reglement_id' );
} else {
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> mode_reglement_id , 'none' );
}
print '</td></tr>' ;
2016-02-16 23:58:21 +01:00
// Multicurrency
2016-07-30 16:41:10 +02:00
if ( ! empty ( $conf -> multicurrency -> enabled ))
2016-02-16 23:58:21 +01:00
{
// Multicurrency code
print '<tr>' ;
2016-04-10 20:50:55 +02:00
print '<td>' ;
2016-02-16 23:58:21 +01:00
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
print fieldLabel ( 'Currency' , 'multicurrency_code' );
print '</td>' ;
if ( $action != 'editmulticurrencycode' && ! empty ( $object -> brouillon ))
print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editmulticurrencycode&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetMultiCurrencyCode' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
2016-04-10 20:50:55 +02:00
print '</td><td colspan="3">' ;
2016-02-16 23:58:21 +01:00
if ( $action == 'editmulticurrencycode' ) {
$form -> form_multicurrency_code ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_code , 'multicurrency_code' );
} else {
$form -> form_multicurrency_code ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_code , 'none' );
}
print '</td></tr>' ;
2016-08-10 09:47:25 +02:00
2016-02-16 23:58:21 +01:00
// Multicurrency rate
print '<tr>' ;
2016-04-10 20:50:55 +02:00
print '<td>' ;
2016-02-16 23:58:21 +01:00
print '<table class="nobordernopadding" width="100%"><tr><td>' ;
2016-07-30 16:41:10 +02:00
print fieldLabel ( 'CurrencyRate' , 'multicurrency_tx' );
2016-02-16 23:58:21 +01:00
print '</td>' ;
2017-03-23 12:23:32 +01:00
if ( $action != 'editmulticurrencyrate' && ! empty ( $object -> brouillon ) && $object -> multicurrency_code && $object -> multicurrency_code != $conf -> currency )
2016-02-16 23:58:21 +01:00
print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editmulticurrencyrate&id=' . $object -> id . '">' . img_edit ( $langs -> transnoentitiesnoconv ( 'SetMultiCurrencyCode' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
2016-04-10 20:50:55 +02:00
print '</td><td colspan="3">' ;
2017-03-23 12:23:32 +01:00
if ( $action == 'editmulticurrencyrate' || $action == 'actualizemulticurrencyrate' ) {
2017-10-16 08:47:05 +02:00
if ( $action == 'actualizemulticurrencyrate' ) {
2017-03-23 12:23:32 +01:00
list ( $object -> fk_multicurrency , $object -> multicurrency_tx ) = MultiCurrency :: getIdAndTxFromCode ( $object -> db , $object -> multicurrency_code );
2017-10-16 08:47:05 +02:00
}
$form -> form_multicurrency_rate ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_tx , 'multicurrency_tx' , $object -> multicurrency_code );
2016-02-16 23:58:21 +01:00
} else {
2017-10-16 08:47:05 +02:00
$form -> form_multicurrency_rate ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id , $object -> multicurrency_tx , 'none' , $object -> multicurrency_code );
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-02-16 23:58:21 +01:00
}
print '</td></tr>' ;
}
2015-03-04 17:54:43 +01:00
2017-05-05 12:33:49 +02:00
/* Not for supplier proposals
2015-01-27 16:53:27 +01:00
if ( $soc -> outstanding_limit )
{
// Outstanding Bill
print '<tr><td>' ;
print $langs -> trans ( 'OutstandingBill' );
2016-04-10 20:50:55 +02:00
print '</td><td align=right colspan="3">' ;
2015-01-27 16:53:27 +01:00
print price ( $soc -> get_OutstandingBill ()) . ' / ' ;
print price ( $soc -> outstanding_limit , 0 , '' , 1 , - 1 , - 1 , $conf -> currency );
print '</td>' ;
print '</tr>' ;
2017-05-05 12:33:49 +02:00
} */
2015-01-27 16:53:27 +01:00
2016-07-27 20:24:30 +02:00
if ( ! empty ( $conf -> global -> BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL ) && ! empty ( $conf -> banque -> enabled ))
2015-01-27 16:53:27 +01:00
{
2017-10-16 08:47:05 +02:00
// Bank Account
print '<tr><td>' ;
print '<table width="100%" class="nobordernopadding"><tr><td>' ;
print $langs -> trans ( 'BankAccount' );
print '</td>' ;
if ( $action != 'editbankaccount' && $user -> rights -> supplier_proposal -> creer )
print '<td align="right"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=editbankaccount&id=' . $object -> id . '">' . img_edit ( $langs -> trans ( 'SetBankAccount' ), 1 ) . '</a></td>' ;
print '</tr></table>' ;
print '</td><td colspan="3">' ;
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>' ;
2015-01-27 16:53:27 +01:00
}
// Other attributes
2016-04-10 20:50:55 +02:00
$cols = 2 ;
2015-01-27 16:53:27 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php' ;
2016-09-19 13:57:50 +02:00
print '</table>' ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
print '</div>' ;
print '<div class="fichehalfright">' ;
print '<div class="ficheaddleft">' ;
print '<div class="underbanner clearboth"></div>' ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
print '<table class="border centpercent">' ;
2017-06-07 16:44:04 +02:00
2016-11-03 20:55:55 +01:00
if ( ! empty ( $conf -> multicurrency -> enabled ) && ( $object -> multicurrency_code != $conf -> currency ))
{
// Multicurrency Amount HT
print '<tr><td height="10" class="titlefieldmiddle">' . fieldLabel ( 'MulticurrencyAmountHT' , 'multicurrency_total_ht' ) . '</td>' ;
print '<td>' . price ( $object -> multicurrency_total_ht , '' , $langs , 0 , - 1 , - 1 , ( ! empty ( $object -> multicurrency_code ) ? $object -> multicurrency_code : $conf -> currency )) . '</td>' ;
print '</tr>' ;
// Multicurrency Amount VAT
print '<tr><td height="10">' . fieldLabel ( 'MulticurrencyAmountVAT' , 'multicurrency_total_tva' ) . '</td>' ;
print '<td>' . price ( $object -> multicurrency_total_tva , '' , $langs , 0 , - 1 , - 1 , ( ! empty ( $object -> multicurrency_code ) ? $object -> multicurrency_code : $conf -> currency )) . '</td>' ;
print '</tr>' ;
// Multicurrency Amount TTC
print '<tr><td height="10">' . fieldLabel ( 'MulticurrencyAmountTTC' , 'multicurrency_total_ttc' ) . '</td>' ;
print '<td>' . price ( $object -> multicurrency_total_ttc , '' , $langs , 0 , - 1 , - 1 , ( ! empty ( $object -> multicurrency_code ) ? $object -> multicurrency_code : $conf -> currency )) . '</td>' ;
print '</tr>' ;
}
2017-06-07 16:44:04 +02:00
2015-01-27 16:53:27 +01:00
// Amount HT
2016-11-03 20:55:55 +01:00
print '<tr><td class="titlefieldmiddle">' . $langs -> trans ( 'AmountHT' ) . '</td>' ;
print '<td>' . price ( $object -> total_ht , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2015-01-27 16:53:27 +01:00
print '</tr>' ;
// Amount VAT
2016-09-19 13:57:50 +02:00
print '<tr><td>' . $langs -> trans ( 'AmountVAT' ) . '</td>' ;
2016-11-03 20:55:55 +01:00
print '<td>' . price ( $object -> total_tva , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2016-04-10 20:50:55 +02:00
print '</tr>' ;
2015-01-27 16:53:27 +01:00
// Amount Local Taxes
if ( $mysoc -> localtax1_assuj == " 1 " || $object -> total_localtax1 != 0 ) // Localtax1
{
2016-09-19 13:57:50 +02:00
print '<tr><td>' . $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ) . '</td>' ;
print '<td class="nowrap">' . price ( $object -> total_localtax1 , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2016-04-10 20:50:55 +02:00
print '</tr>' ;
2015-01-27 16:53:27 +01:00
}
if ( $mysoc -> localtax2_assuj == " 1 " || $object -> total_localtax2 != 0 ) // Localtax2
{
print '<tr><td height="10">' . $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ) . '</td>' ;
2016-09-19 13:57:50 +02:00
print '<td class="nowrap">' . price ( $object -> total_localtax2 , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2016-04-10 20:50:55 +02:00
print '</tr>' ;
2015-01-27 16:53:27 +01:00
}
// Amount TTC
print '<tr><td height="10">' . $langs -> trans ( 'AmountTTC' ) . '</td>' ;
2016-09-19 13:57:50 +02:00
print '<td class="nowrap">' . price ( $object -> total_ttc , '' , $langs , 0 , - 1 , - 1 , $conf -> currency ) . '</td>' ;
2016-04-10 20:50:55 +02:00
print '</tr>' ;
2015-01-27 16:53:27 +01:00
2016-09-19 13:57:50 +02:00
print '</table>' ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
// Margin Infos
/* if ( ! empty ( $conf -> margin -> enabled )) {
$formmargin -> displayMarginInfos ( $object );
2017-06-07 16:44:04 +02:00
} */
2015-01-27 16:53:27 +01:00
2016-09-19 13:57:50 +02:00
print '</div>' ;
print '</div>' ;
print '</div>' ;
2017-06-07 16:44:04 +02:00
2016-09-19 13:57:50 +02:00
print '<div class="clearboth"></div><br>' ;
2017-06-07 16:44:04 +02:00
2015-01-27 16:53:27 +01:00
if ( ! empty ( $conf -> global -> MAIN_DISABLE_CONTACTS_TAB )) {
$blocname = 'contacts' ;
$title = $langs -> trans ( 'ContactsAddresses' );
include DOL_DOCUMENT_ROOT . '/core/tpl/bloc_showhide.tpl.php' ;
}
if ( ! empty ( $conf -> global -> MAIN_DISABLE_NOTES_TAB )) {
$blocname = 'notes' ;
$title = $langs -> trans ( 'Notes' );
include DOL_DOCUMENT_ROOT . '/core/tpl/bloc_showhide.tpl.php' ;
}
/*
* Lines
*/
// Show object lines
$result = $object -> getLinesArray ();
print ' <form name="addproduct" id="addproduct" action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . (( $action != 'editline' ) ? '#add' : '#line_' . GETPOST ( 'lineid' )) . ' " method= " POST " >
< input type = " hidden " name = " token " value = " ' . $_SESSION ['newtoken'] . ' " >
< input type = " hidden " name = " action " value = " ' . (( $action != 'editline') ? 'addline' : 'updateligne') . ' " >
< input type = " hidden " name = " mode " value = " " >
< input type = " hidden " name = " id " value = " ' . $object->id . ' " >
' ;
2017-05-05 13:43:43 +02:00
if ( ! empty ( $conf -> use_javascript_ajax ) && $object -> statut == SupplierProposal :: STATUS_DRAFT ) {
2015-01-27 16:53:27 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/ajaxrow.tpl.php' ;
}
2017-10-16 08:47:05 +02:00
print '<div class="div-table-responsive-no-min">' ;
2015-01-27 16:53:27 +01:00
print '<table id="tablelines" class="noborder noshadow" width="100%">' ;
2016-09-11 16:05:38 +02:00
// Add free products/services form
global $forceall , $senderissupplier , $dateSelector ;
2018-04-24 12:57:31 +02:00
$forceall = 1 ; $dateSelector = 0 ;
$senderissupplier = 2 ; // $senderissupplier=2 is same than 1 but disable test on minimum qty.
if ( ! empty ( $conf -> global -> SUPPLIER_PROPOSAL_WITH_PREDEFINED_PRICES_ONLY )) $senderissupplier = 1 ;
2017-06-07 16:44:04 +02:00
2015-01-27 16:53:27 +01:00
if ( ! empty ( $object -> lines ))
2016-09-11 13:48:05 +02:00
$ret = $object -> printObjectLines ( $action , $soc , $mysoc , $lineid , 1 );
2015-01-27 16:53:27 +01:00
// Form to add new line
2017-05-05 13:43:43 +02:00
if ( $object -> statut == SupplierProposal :: STATUS_DRAFT && $user -> rights -> supplier_proposal -> creer )
2015-01-27 16:53:27 +01:00
{
if ( $action != 'editline' )
{
// Add products/services form
2016-09-11 13:48:05 +02:00
$object -> formAddObjectLine ( 1 , $soc , $mysoc );
2015-01-27 16:53:27 +01:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'formAddObjectLine' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
}
}
2015-03-04 17:54:43 +01:00
2015-01-27 16:53:27 +01:00
print '</table>' ;
2017-10-16 08:47:05 +02:00
print '</div>' ;
2015-01-27 16:53:27 +01:00
print " </form> \n " ;
dol_fiche_end ();
if ( $action == 'statut' )
{
2016-01-25 12:33:38 +01:00
// Form to set proposal accepted/refused
2015-01-27 16:53:27 +01:00
$form_close = '<form action="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '" method="post">' ;
2016-01-25 12:33:38 +01:00
if ( ! empty ( $conf -> global -> SUPPLIER_PROPOSAL_UPDATE_PRICE_ON_SUPPlIER_PROPOSAL )) $form_close .= '<p class="notice">' . $langs -> trans ( 'SupplierProposalRefFournNotice' ) . '</p>' ; // TODO Suggest a permanent checkbox instead of option
2015-01-27 16:53:27 +01:00
$form_close .= '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
$form_close .= '<table class="border" width="100%">' ;
$form_close .= '<tr><td width="150" align="left">' . $langs -> trans ( " CloseAs " ) . '</td><td align="left">' ;
$form_close .= '<input type="hidden" name="action" value="setstatut">' ;
$form_close .= '<select id="statut" name="statut" class="flat">' ;
$form_close .= '<option value="0"> </option>' ;
2015-11-28 20:25:50 +01:00
$form_close .= '<option value="2">' . $langs -> trans ( 'SupplierProposalStatusSigned' ) . '</option>' ;
$form_close .= '<option value="3">' . $langs -> trans ( 'SupplierProposalStatusNotSigned' ) . '</option>' ;
2015-01-27 16:53:27 +01:00
$form_close .= '</select>' ;
$form_close .= '</td></tr>' ;
$form_close .= '<tr><td width="150" align="left">' . $langs -> trans ( 'Note' ) . '</td><td align="left"><textarea cols="70" rows="' . ROWS_3 . '" wrap="soft" name="note">' ;
$form_close .= $object -> note ;
$form_close .= '</textarea></td></tr>' ;
$form_close .= '<tr><td align="center" colspan="2">' ;
2016-01-25 12:33:38 +01:00
$form_close .= '<input type="submit" class="button" name="validate" value="' . $langs -> trans ( 'Save' ) . '">' ;
2015-01-27 16:53:27 +01:00
$form_close .= ' <input type="submit" class="button" name="cancel" value="' . $langs -> trans ( 'Cancel' ) . '">' ;
2016-01-25 12:33:38 +01:00
$form_close .= '<a name="acceptedrefused"> </a>' ;
2015-01-27 16:53:27 +01:00
$form_close .= '</td>' ;
$form_close .= '</tr></table></form>' ;
print $form_close ;
}
/*
* Boutons Actions
*/
if ( $action != 'presend' ) {
print '<div class="tabsAction">' ;
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'addMoreActionsButtons' , $parameters , $object , $action ); // Note that $action and $object may have been
2017-10-16 08:47:05 +02:00
// modified by hook
2015-01-27 16:53:27 +01:00
if ( empty ( $reshook ))
{
if ( $action != 'statut' && $action != 'editline' )
{
// Validate
2017-05-05 13:43:43 +02:00
if ( $object -> statut == SupplierProposal :: STATUS_DRAFT && $object -> total_ttc >= 0 && count ( $object -> lines ) > 0 &&
2017-10-16 08:47:05 +02:00
(( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> supplier_proposal -> creer ))
|| ( ! empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) && ! empty ( $user -> rights -> supplier_proposal -> validate_advance )))
2015-01-27 16:53:27 +01:00
) {
if ( count ( $object -> lines ) > 0 )
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=validate">' . $langs -> trans ( 'Validate' ) . '</a></div>' ;
// else print '<a class="butActionRefused" href="#">'.$langs->trans('Validate').'</a>';
}
2015-03-04 17:54:43 +01:00
2015-01-27 16:53:27 +01:00
// Edit
2017-05-05 13:43:43 +02:00
if ( $object -> statut == SupplierProposal :: STATUS_VALIDATED && $user -> rights -> supplier_proposal -> creer ) {
2015-01-27 16:53:27 +01:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=modif">' . $langs -> trans ( 'Modify' ) . '</a></div>' ;
}
// ReOpen
2017-05-05 13:43:43 +02:00
if (( $object -> statut == SupplierProposal :: STATUS_SIGNED || $object -> statut == SupplierProposal :: STATUS_NOTSIGNED || $object -> statut == SupplierProposal :: STATUS_CLOSE ) && $user -> rights -> supplier_proposal -> cloturer ) {
2015-01-27 16:53:27 +01:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=reopen' . ( empty ( $conf -> global -> MAIN_JUMP_TAG ) ? '' : '#reopen' ) . '"' ;
print '>' . $langs -> trans ( 'ReOpen' ) . '</a></div>' ;
}
// Send
2017-05-05 13:43:43 +02:00
if ( $object -> statut == SupplierProposal :: STATUS_VALIDATED || $object -> statut == SupplierProposal :: STATUS_SIGNED ) {
2016-01-25 12:33:38 +01:00
if ( empty ( $conf -> global -> MAIN_USE_ADVANCED_PERMS ) || $user -> rights -> supplier_proposal -> send_advance ) {
2018-03-11 21:34:38 +01:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=presend&mode=init#formmailbeforetitle">' . $langs -> trans ( 'SendMail' ) . '</a></div>' ;
2015-01-27 16:53:27 +01:00
} else
2018-03-11 21:34:38 +01:00
print '<div class="inline-block divButAction"><a class="butActionRefused" href="#">' . $langs -> trans ( 'SendMail' ) . '</a></div>' ;
2015-01-27 16:53:27 +01:00
}
// Create an order
2017-05-05 13:43:43 +02:00
if ( ! empty ( $conf -> commande -> enabled ) && $object -> statut == SupplierProposal :: STATUS_SIGNED ) {
2015-09-02 11:07:30 +02:00
if ( $user -> rights -> fournisseur -> commande -> creer ) {
2015-01-29 17:36:12 +01:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/fourn/commande/card.php?action=create&origin=' . $object -> element . '&originid=' . $object -> id . '&socid=' . $object -> socid . '">' . $langs -> trans ( " AddOrder " ) . '</a></div>' ;
2015-01-27 16:53:27 +01:00
}
}
2016-01-25 12:33:38 +01:00
// Set accepted/refused
2017-05-05 13:43:43 +02:00
if ( $object -> statut == SupplierProposal :: STATUS_VALIDATED && $user -> rights -> supplier_proposal -> cloturer ) {
2016-01-25 12:33:38 +01:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=statut' . ( empty ( $conf -> global -> MAIN_JUMP_TAG ) ? '' : '#acceptedrefused' ) . '"' ;
print '>' . $langs -> trans ( 'SetAcceptedRefused' ) . '</a></div>' ;
2015-01-27 16:53:27 +01:00
}
2017-05-05 12:41:31 +02:00
// Close
2017-05-05 13:43:43 +02:00
if ( $object -> statut == SupplierProposal :: STATUS_SIGNED && $user -> rights -> supplier_proposal -> cloturer ) {
2017-10-16 08:47:05 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=close' . ( empty ( $conf -> global -> MAIN_JUMP_TAG ) ? '' : '#close' ) . '"' ;
print '>' . $langs -> trans ( 'Close' ) . '</a></div>' ;
2017-05-05 12:41:31 +02:00
}
2015-01-27 16:53:27 +01:00
// Clone
2015-11-15 18:23:42 +01:00
if ( $user -> rights -> supplier_proposal -> creer ) {
2015-01-27 16:53:27 +01:00
print '<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER [ 'PHP_SELF' ] . '?id=' . $object -> id . '&socid=' . $object -> socid . '&action=clone&object=' . $object -> element . '">' . $langs -> trans ( " ToClone " ) . '</a></div>' ;
}
// Delete
2017-05-05 13:43:43 +02:00
if (( $object -> statut == SupplierProposal :: STATUS_DRAFT && $user -> rights -> supplier_proposal -> creer ) || $user -> rights -> supplier_proposal -> supprimer ) {
2015-01-27 16:53:27 +01:00
print '<div class="inline-block divButAction"><a class="butActionDelete" href="' . $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id . '&action=delete"' ;
print '>' . $langs -> trans ( 'Delete' ) . '</a></div>' ;
}
}
}
print '</div>' ;
}
if ( $action != 'presend' )
{
print '<div class="fichecenter"><div class="fichehalfleft">' ;
/*
* Documents generes
*/
$filename = dol_sanitizeFileName ( $object -> ref );
2015-11-15 18:23:42 +01:00
$filedir = $conf -> supplier_proposal -> dir_output . " / " . dol_sanitizeFileName ( $object -> ref );
2015-01-27 16:53:27 +01:00
$urlsource = $_SERVER [ " PHP_SELF " ] . " ?id= " . $object -> id ;
2017-10-18 17:21:30 +02:00
$genallowed = $user -> rights -> supplier_proposal -> lire ;
$delallowed = $user -> rights -> supplier_proposal -> creer ;
2015-01-27 16:53:27 +01:00
2016-10-24 11:27:39 +02:00
print $formfile -> showdocuments ( 'supplier_proposal' , $filename , $filedir , $urlsource , $genallowed , $delallowed , $object -> modelpdf , 1 , 0 , 0 , 28 , 0 , '' , 0 , '' , $soc -> default_lang );
2015-01-27 16:53:27 +01:00
2017-06-07 16:44:04 +02:00
2015-06-06 15:57:59 +02:00
// Show links to link elements
2016-08-04 11:57:37 +02:00
$linktoelem = $form -> showLinkToObjectBlock ( $object , null , array ( 'supplier_proposal' ));
2016-08-05 15:30:28 +02:00
$somethingshown = $form -> showLinkedObjectBlock ( $object , $linktoelem );
2015-06-06 15:57:59 +02:00
2017-06-07 16:44:04 +02:00
2015-01-27 16:53:27 +01:00
print '</div><div class="fichehalfright"><div class="ficheaddleft">' ;
// List of actions on element
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php' ;
$formactions = new FormActions ( $db );
2017-09-13 14:18:36 +02:00
$somethingshown = $formactions -> showactions ( $object , 'supplier_proposal' , $socid , 1 );
2015-01-27 16:53:27 +01:00
print '</div></div></div>' ;
}
2017-09-17 15:38:50 +02:00
// Select mail models is same action as presend
2015-04-18 22:59:20 +02:00
if ( GETPOST ( 'modelselected' )) {
2015-04-18 17:15:36 +02:00
$action = 'presend' ;
}
2015-01-27 16:53:27 +01:00
2017-09-17 15:38:50 +02:00
// Presend form
$modelmail = 'supplier_proposal_send' ;
$defaulttopic = 'SendAskRef' ;
$diroutput = $conf -> supplier_proposal -> dir_output ;
$trackid = 'spr' . $object -> id ;
2016-10-13 16:44:17 +02:00
2017-09-17 15:38:50 +02:00
include DOL_DOCUMENT_ROOT . '/core/tpl/card_presend.tpl.php' ;
2015-01-27 16:53:27 +01:00
}
// End of page
llxFooter ();
$db -> close ();