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 >
* Copyright ( C ) 2005 - 2012 Regis Houssin < regis . houssin @ capnetworks . com >
* Copyright ( C ) 2012 Juanjo Menent < jmenent @ 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 />.
*/
/**
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
* \brief File to describe and activate module SupplierProposal
2015-01-26 17:21:35 +01:00
*/
include_once DOL_DOCUMENT_ROOT . '/core/modules/DolibarrModules.class.php' ;
/**
2015-09-07 15:55:26 +02:00
* Class to describe and enable module AskPriceSupllier
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
*/
function __construct ( $db )
{
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 " ;
2015-01-26 17:21:35 +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 );
2015-11-15 18:23:42 +01:00
$this -> picto = 'supplier_proposal' ;
2015-01-26 17:21:35 +01:00
$this -> dirs = array ();
// Dependancies
2015-03-04 17:54:43 +01:00
$this -> depends = array ( 'modFournisseur' );
2015-01-26 17:21:35 +01:00
$this -> requiredby = array ();
2015-11-15 18:23:42 +01:00
$this -> config_page_url = array ( " supplier_proposal.php " );
$this -> langfiles = array ( " supplier_proposal " );
2015-01-26 17:21:35 +01:00
// Constants
$this -> const = array ();
$r = 0 ;
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 " ;
2015-11-15 18:23:42 +01:00
$this -> const [ $r ][ 2 ] = " DOL_DATA_ROOT/doctemplates/supplier_proposal " ;
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' ;
2015-01-26 17:21:35 +01:00
$r = 0 ;
$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
2016-06-04 12:16:30 +02:00
$this -> rights [ $r ][ 3 ] = 0 ; // La permission est-elle une permission par defaut
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
2016-06-04 12:16:30 +02:00
$this -> rights [ $r ][ 3 ] = 0 ; // La permission est-elle une permission par defaut
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
2015-01-26 17:21:35 +01:00
$this -> rights [ $r ][ 3 ] = 0 ; // La permission est-elle une permission par defaut
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
$this -> rights [ $r ][ 3 ] = 0 ; // La permission est-elle une permission par defaut
2016-01-25 12:33:38 +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
2015-01-26 17:21:35 +01:00
$this -> rights [ $r ][ 3 ] = 0 ; // La permission est-elle une permission par defaut
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
2015-01-29 10:44:23 +01:00
$this -> rights [ $r ][ 3 ] = 0 ; // La permission est-elle une permission par defaut
$this -> rights [ $r ][ 4 ] = 'cloturer' ;
2015-03-04 17:54:43 +01:00
2015-01-26 17:21:35 +01:00
// Main menu entries
$this -> menu = array (); // List of menus to add
$r = 0 ;
$this -> menu [ $r ] = array (
'fk_menu' => 'fk_mainmenu=commercial' , // Use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode
'type' => 'left' , // This is a Left menu entry
2016-07-02 11:32:06 +02:00
'titre' => 'SupplierProposalsShort' ,
2015-11-15 18:23:42 +01:00
'leftmenu' => 'supplier_proposalsubmenu' ,
'url' => '/supplier_proposal/index.php' ,
'langs' => 'supplier_proposal' , // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
'enabled' => '$conf->supplier_proposal->enabled' , // Define condition to show or hide menu entry. Use '$conf->mymodule->enabled' if entry must be visible if module is enabled. Use '$leftmenu==\'system\'' to show if leftmenu system is selected.
'perms' => '$user->rights->supplier_proposal->lire' , // Use 'perms'=>'$user->rights->mymodule->level1->level2' if you want your menu with a permission rules
2015-07-02 22:43:51 +02:00
'user' => 2 , // 0=Menu for internal users, 1=external users, 2=both
2015-11-15 18:23:42 +01:00
'position' => 300
2015-03-04 17:54:43 +01:00
);
2015-01-26 17:21:35 +01:00
$r ++ ;
2015-03-04 17:54:43 +01:00
2015-01-26 17:21:35 +01:00
$this -> menu [ $r ] = array (
2015-11-15 18:23:42 +01:00
'fk_menu' => 'fk_mainmenu=commercial,fk_leftmenu=supplier_proposalsubmenu' ,
2015-01-26 17:21:35 +01:00
'type' => 'left' ,
2015-12-21 13:56:11 +01:00
'titre' => 'SupplierProposalNew' ,
2016-07-02 11:44:46 +02:00
'url' => '/supplier_proposal/card.php?action=create&leftmenu=supplier_proposals' ,
2015-11-15 18:23:42 +01:00
'langs' => 'supplier_proposal' ,
'enabled' => '$conf->supplier_proposal->enabled' ,
'perms' => '$user->rights->supplier_proposal->creer' ,
2015-07-02 22:43:51 +02:00
'user' => 2 ,
2015-11-15 18:23:42 +01:00
'position' => 301
2015-01-26 17:21:35 +01:00
);
$r ++ ;
2015-03-04 17:54:43 +01:00
2015-01-26 17:21:35 +01:00
$this -> menu [ $r ] = array (
2015-11-15 18:23:42 +01:00
'fk_menu' => 'fk_mainmenu=commercial,fk_leftmenu=supplier_proposalsubmenu' ,
2015-01-26 17:21:35 +01:00
'type' => 'left' ,
2015-12-21 13:56:11 +01:00
'titre' => 'List' ,
2016-01-25 13:31:43 +01:00
'url' => '/supplier_proposal/list.php?leftmenu=supplier_proposals' ,
2015-11-15 18:23:42 +01:00
'langs' => 'supplier_proposal' ,
'enabled' => '$conf->supplier_proposal->enabled' ,
'perms' => '$user->rights->supplier_proposal->lire' ,
2015-07-02 22:43:51 +02:00
'user' => 2 ,
2015-11-15 18:23:42 +01:00
'position' => 302
2015-01-26 17:21:35 +01:00
);
2015-03-04 17:54:43 +01:00
$r ++ ;
2018-02-25 10:55:02 +01:00
2016-01-25 12:33:38 +01:00
$this -> menu [ $r ] = array (
'fk_menu' => 'fk_mainmenu=commercial,fk_leftmenu=supplier_proposalsubmenu' ,
'type' => 'left' ,
'titre' => 'Statistics' ,
2016-07-02 11:44:46 +02:00
'url' => '/comm/propal/stats/index.php?leftmenu=supplier_proposals&mode=supplier' ,
2016-01-25 12:33:38 +01:00
'langs' => 'supplier_proposal' ,
'enabled' => '$conf->supplier_proposal->enabled' ,
'perms' => '$user->rights->supplier_proposal->lire' ,
'user' => 2 ,
'position' => 303
);
$r ++ ;
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
*
* @ param string $options Options when enabling module ( '' , 'noboxes' )
* @ return int 1 if OK , 0 if KO
*/
function init ( $options = '' )
{
2015-01-28 15:37:52 +01:00
global $conf , $langs ;
// Remove permissions and default values
$this -> remove ( $options );
//ODT template
2015-11-15 18:23:42 +01:00
$src = DOL_DOCUMENT_ROOT . '/install/doctemplates/supplier_proposal/template_supplier_proposal.odt' ;
$dirodt = DOL_DATA_ROOT . '/doctemplates/supplier_proposal' ;
$dest = $dirodt . '/template_supplier_proposal.odt' ;
2015-01-28 15:37:52 +01:00
if ( file_exists ( $src ) && ! file_exists ( $dest ))
{
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
dol_mkdir ( $dirodt );
$result = dol_copy ( $src , $dest , 0 , 0 );
if ( $result < 0 )
{
$langs -> load ( " errors " );
$this -> error = $langs -> trans ( 'ErrorFailToCopyFile' , $src , $dest );
return 0 ;
}
}
$sql = array (
2017-05-12 16:55:11 +02:00
" DELETE FROM " . MAIN_DB_PREFIX . " document_model WHERE nom = ' " . $this -> db -> escape ( $this -> const [ 0 ][ 2 ]) . " ' AND type = 'supplier_proposal' AND entity = " . $conf -> entity ,
" INSERT INTO " . MAIN_DB_PREFIX . " document_model (nom, type, entity) VALUES(' " . $this -> db -> escape ( $this -> const [ 0 ][ 2 ]) . " ','supplier_proposal', " . $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 = '' )
{
$sql = array (
2018-07-03 20:08:55 +02:00
" DELETE FROM " . MAIN_DB_PREFIX . " rights_def WHERE module = 'askpricesupplier' " // To delete/clean deprecated entries
2015-11-15 18:23:42 +01:00
);
2018-02-25 10:55:02 +01:00
2015-11-15 18:23:42 +01:00
return $this -> _remove ( $sql , $options );
2018-02-25 10:55:02 +01:00
}
2015-02-04 15:39:57 +01:00
}