2015-01-26 17:21:35 +01:00
< ? php
/* Copyright ( C ) 2003 - 2004 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2015-03-09 21:20:56 +01:00
* Copyright ( C ) 2004 - 2015 Laurent Destailleur < eldy @ users . sourceforge . net >
2015-01-26 17:21:35 +01:00
* Copyright ( C ) 2004 Sebastien Di Cintio < sdicintio @ ressource - toi . org >
* Copyright ( C ) 2004 Benoit Mortier < benoit . mortier @ opensides . be >
2018-10-27 14:43:12 +02:00
* Copyright ( C ) 2005 - 2012 Regis Houssin < regis . houssin @ inodbox . com >
2015-01-26 17:21:35 +01:00
* Copyright ( C ) 2012 Juanjo Menent < jmenent @ 2 byte . es >
2024-09-23 01:59:14 +02:00
* Copyright ( C ) 2024 Frédéric France < frederic . france @ free . fr >
2015-01-26 17:21:35 +01:00
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
2019-09-23 21:55:30 +02:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2015-01-26 17:21:35 +01:00
*/
/**
2015-11-15 18:23:42 +01:00
* \defgroup supplier_proposal Module supplier_proposal
2015-03-09 21:20:56 +01:00
* \brief Module to request supplier price proposals
2016-01-25 13:31:43 +01:00
*
2015-11-15 18:23:42 +01:00
* \file htdocs / core / modules / modSupplierProposal . class . php
* \ingroup supplier_proposal
2021-03-20 13:55:43 +01:00
* \brief Description and activation file for the module supplier proposal
2015-01-26 17:21:35 +01:00
*/
2020-04-10 10:59:32 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/modules/DolibarrModules.class.php' ;
2015-01-26 17:21:35 +01:00
/**
2018-07-01 23:57:54 +02:00
* Class to describe and enable module SupplierProposal
2015-01-26 17:21:35 +01:00
*/
2015-11-15 18:23:42 +01:00
class modSupplierProposal extends DolibarrModules
2015-01-26 17:21:35 +01:00
{
/**
* Constructor . Define names , constants , directories , boxes , permissions
*
* @ param DoliDB $db Database handler
*/
2019-02-25 20:35:59 +01:00
public function __construct ( $db )
2015-01-26 17:21:35 +01:00
{
global $conf ;
$this -> db = $db ;
2015-03-04 17:54:43 +01:00
$this -> numero = 1120 ;
2015-01-26 17:21:35 +01:00
2016-02-19 19:20:21 +01:00
$this -> family = " srm " ;
2019-06-21 13:25:40 +02:00
$this -> module_position = '35' ;
2019-01-27 11:55:16 +01:00
$this -> name = preg_replace ( '/^mod/i' , '' , get_class ( $this ));
2015-11-15 18:23:42 +01:00
$this -> description = " supplier_proposalDESC " ;
2015-01-26 17:21:35 +01:00
2016-01-25 12:33:38 +01:00
$this -> version = 'dolibarr' ;
2015-01-26 17:21:35 +01:00
$this -> const_name = 'MAIN_MODULE_' . strtoupper ( $this -> name );
2020-04-10 10:59:32 +02:00
$this -> picto = 'supplier_proposal' ;
2019-02-25 20:35:59 +01:00
2018-07-10 14:57:23 +02:00
// Data directories to create when module is enabled.
2015-01-26 17:21:35 +01:00
$this -> dirs = array ();
2019-02-25 20:35:59 +01:00
2023-12-04 12:07:31 +01:00
// Config pages. Put here list of php page names stored in admin directory used to setup module.
2020-10-31 14:32:18 +01:00
$this -> config_page_url = array ( " supplier_proposal.php " );
2018-07-10 14:57:23 +02:00
// Dependencies
2020-04-10 10:59:32 +02:00
$this -> hidden = false ; // A condition to hide module
$this -> depends = array ( 'modFournisseur' ); // List of module class names as string that must be enabled if this module is enabled
$this -> requiredby = array (); // List of module ids to disable if this one is disabled
$this -> conflictwith = array (); // List of module class names as string this module is in conflict with
2022-09-27 20:48:47 +02:00
$this -> phpmin = array ( 7 , 0 ); // Minimum version of PHP required by module
2015-11-15 18:23:42 +01:00
$this -> langfiles = array ( " supplier_proposal " );
2015-01-26 17:21:35 +01:00
// Constants
$this -> const = array ();
2020-04-10 10:59:32 +02:00
$r = 0 ;
2015-01-26 17:21:35 +01:00
2015-11-15 18:23:42 +01:00
$this -> const [ $r ][ 0 ] = " SUPPLIER_PROPOSAL_ADDON_PDF " ;
2015-01-26 17:21:35 +01:00
$this -> const [ $r ][ 1 ] = " chaine " ;
2015-01-28 17:27:26 +01:00
$this -> const [ $r ][ 2 ] = " aurore " ;
2015-03-04 17:54:43 +01:00
$this -> const [ $r ][ 3 ] = 'Name of submodule to generate PDF for supplier quotation request' ;
2015-01-27 16:53:27 +01:00
$this -> const [ $r ][ 4 ] = 0 ;
$r ++ ;
2015-11-15 18:23:42 +01:00
$this -> const [ $r ][ 0 ] = " SUPPLIER_PROPOSAL_ADDON " ;
2015-01-27 16:53:27 +01:00
$this -> const [ $r ][ 1 ] = " chaine " ;
2015-11-15 18:23:42 +01:00
$this -> const [ $r ][ 2 ] = " mod_supplier_proposal_marbre " ;
2015-03-04 17:54:43 +01:00
$this -> const [ $r ][ 3 ] = 'Name of submodule to number supplier quotation request' ;
2015-01-27 16:53:27 +01:00
$this -> const [ $r ][ 4 ] = 0 ;
$r ++ ;
2015-11-15 18:23:42 +01:00
$this -> const [ $r ][ 0 ] = " SUPPLIER_PROPOSAL_ADDON_PDF_ODT_PATH " ;
2015-01-27 16:53:27 +01:00
$this -> const [ $r ][ 1 ] = " chaine " ;
2025-02-13 18:20:47 +01:00
$this -> const [ $r ][ 2 ] = " DOL_DATA_ROOT " . ( $conf -> entity > 1 ? '/' . $conf -> entity : '' ) . " /doctemplates/supplier_proposals " ;
2015-01-27 16:53:27 +01:00
$this -> const [ $r ][ 3 ] = " " ;
2015-01-26 17:21:35 +01:00
$this -> const [ $r ][ 4 ] = 0 ;
// Boxes
$this -> boxes = array ();
// Permissions
$this -> rights = array ();
2015-11-15 18:23:42 +01:00
$this -> rights_class = 'supplier_proposal' ;
2020-04-10 10:59:32 +02:00
$r = 0 ;
2015-01-26 17:21:35 +01:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = $this -> numero + $r ; // id de la permission
2015-03-04 17:54:43 +01:00
$this -> rights [ $r ][ 1 ] = 'Read supplier proposals' ; // libelle de la permission
2024-01-13 19:48:20 +01:00
$this -> rights [ $r ][ 3 ] = 0 ; // La permission est-elle une permission par default
2015-01-27 16:53:27 +01:00
$this -> rights [ $r ][ 4 ] = 'lire' ;
2015-03-04 17:54:43 +01:00
2015-01-26 17:21:35 +01:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = $this -> numero + $r ; // id de la permission
2015-03-04 17:54:43 +01:00
$this -> rights [ $r ][ 1 ] = 'Create/modify supplier proposals' ; // libelle de la permission
2024-01-13 19:48:20 +01:00
$this -> rights [ $r ][ 3 ] = 0 ; // La permission est-elle une permission par default
2015-01-27 16:53:27 +01:00
$this -> rights [ $r ][ 4 ] = 'creer' ;
2015-03-04 17:54:43 +01:00
2015-01-26 17:21:35 +01:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = $this -> numero + $r ; // id de la permission
2015-03-04 17:54:43 +01:00
$this -> rights [ $r ][ 1 ] = 'Validate supplier proposals' ; // libelle de la permission
2024-01-13 19:48:20 +01:00
$this -> rights [ $r ][ 3 ] = 0 ; // La permission est-elle une permission par default
2016-01-25 12:33:38 +01:00
$this -> rights [ $r ][ 4 ] = 'validate_advance' ;
2015-03-04 17:54:43 +01:00
2015-01-26 17:21:35 +01:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = $this -> numero + $r ; // id de la permission
$this -> rights [ $r ][ 1 ] = 'Envoyer les demandes fournisseurs' ; // libelle de la permission
2024-01-13 19:48:20 +01:00
$this -> rights [ $r ][ 3 ] = 0 ; // La permission est-elle une permission par default
2020-10-31 14:32:18 +01:00
$this -> rights [ $r ][ 4 ] = 'send_advance' ;
2015-03-04 17:54:43 +01:00
2015-01-26 17:21:35 +01:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = $this -> numero + $r ; // id de la permission
2015-03-04 17:54:43 +01:00
$this -> rights [ $r ][ 1 ] = 'Delete supplier proposals' ; // libelle de la permission
2024-01-13 19:48:20 +01:00
$this -> rights [ $r ][ 3 ] = 0 ; // La permission est-elle une permission par default
2015-01-27 16:53:27 +01:00
$this -> rights [ $r ][ 4 ] = 'supprimer' ;
2015-03-04 17:54:43 +01:00
2015-01-29 10:44:23 +01:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = $this -> numero + $r ; // id de la permission
2015-03-04 17:54:43 +01:00
$this -> rights [ $r ][ 1 ] = 'Close supplier price requests' ; // libelle de la permission
2024-01-13 19:48:20 +01:00
$this -> rights [ $r ][ 3 ] = 0 ; // La permission est-elle une permission par default
2015-01-29 10:44:23 +01:00
$this -> rights [ $r ][ 4 ] = 'cloturer' ;
2015-03-04 17:54:43 +01:00
2021-02-23 22:03:23 +01:00
// Main menu entries
2020-04-10 10:59:32 +02:00
$this -> menu = array (); // List of menus to add
$r = 0 ;
2015-01-26 17:21:35 +01:00
}
/**
* Function called when module is enabled .
* The init function add constants , boxes , permissions and menus ( defined in constructor ) into Dolibarr database .
* It also creates data directories
*
2020-10-31 14:32:18 +01:00
* @ param string $options Options when enabling module ( '' , 'noboxes' )
2015-01-26 17:21:35 +01:00
* @ return int 1 if OK , 0 if KO
*/
2020-10-31 14:32:18 +01:00
public function init ( $options = '' )
2015-01-26 17:21:35 +01:00
{
2020-04-10 10:59:32 +02:00
global $conf , $langs ;
2015-01-28 15:37:52 +01:00
// Remove permissions and default values
$this -> remove ( $options );
//ODT template
2020-04-10 10:59:32 +02:00
$src = DOL_DOCUMENT_ROOT . '/install/doctemplates/supplier_proposals/template_supplier_proposal.odt' ;
2025-02-13 18:20:47 +01:00
$dirodt = DOL_DATA_ROOT . ( $conf -> entity > 1 ? '/' . $conf -> entity : '' ) . '/doctemplates/supplier_proposals' ;
2020-04-10 10:59:32 +02:00
$dest = $dirodt . '/template_supplier_proposal.odt' ;
2015-01-28 15:37:52 +01:00
2021-02-23 22:03:23 +01:00
if ( file_exists ( $src ) && ! file_exists ( $dest )) {
2015-01-28 15:37:52 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
dol_mkdir ( $dirodt );
2024-09-23 01:59:14 +02:00
$result = dol_copy ( $src , $dest , '0' , 0 );
2021-02-23 22:03:23 +01:00
if ( $result < 0 ) {
2015-01-28 15:37:52 +01:00
$langs -> load ( " errors " );
2020-04-10 10:59:32 +02:00
$this -> error = $langs -> trans ( 'ErrorFailToCopyFile' , $src , $dest );
2015-01-28 15:37:52 +01:00
return 0 ;
}
}
$sql = array (
2021-08-27 22:42:04 +02:00
" DELETE FROM " . MAIN_DB_PREFIX . " document_model WHERE nom = ' " . $this -> db -> escape ( $this -> const [ 0 ][ 2 ]) . " ' AND type = 'supplier_proposal' AND entity = " . (( int ) $conf -> entity ),
" INSERT INTO " . MAIN_DB_PREFIX . " document_model (nom, type, entity) VALUES(' " . $this -> db -> escape ( $this -> const [ 0 ][ 2 ]) . " ','supplier_proposal', " . (( int ) $conf -> entity ) . " ) " ,
2015-01-28 15:37:52 +01:00
);
2015-01-26 17:21:35 +01:00
return $this -> _init ( $sql , $options );
}
2018-02-25 10:55:02 +01:00
2015-11-15 18:23:42 +01:00
/**
* Function called when module is disabled .
* Remove from database constants , boxes and permissions from Dolibarr database .
* Data directories are not deleted
*
* @ param string $options Options when enabling module ( '' , 'noboxes' )
* @ return int 1 if OK , 0 if KO
*/
public function remove ( $options = '' )
{
2020-10-31 14:32:18 +01:00
$sql = array (
" DELETE FROM " . MAIN_DB_PREFIX . " rights_def WHERE module = 'askpricesupplier' " // To delete/clean deprecated entries
);
2018-02-25 10:55:02 +01:00
2020-10-31 14:32:18 +01:00
return $this -> _remove ( $sql , $options );
2018-02-25 10:55:02 +01:00
}
2019-02-03 15:21:21 +01:00
}