2010-05-07 21:08:27 +02:00
< ? php
/* Copyright ( C ) 2003 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2015-03-09 19:13:19 +01:00
* Copyright ( C ) 2004 - 2015 Laurent Destailleur < eldy @ users . sourceforge . net >
2012-12-30 15:13:49 +01:00
* Copyright ( C ) 2005 - 2012 Regis Houssin < regis . houssin @ capnetworks . com >
2012-10-17 11:43:26 +02:00
* Copyright ( C ) 2012 Juanjo Menent < jmenent @ 2 byte . es >
2015-09-07 12:46:49 +02:00
* Copyright ( C ) 2013 - 2015 Philippe Grand < philippe . grand @ atoo - net . com >
2010-05-07 21:08:27 +02:00
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
2013-01-16 15:36:08 +01:00
* the Free Software Foundation ; either version 3 of the License , or
2010-05-07 21:08:27 +02:00
* ( 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
2011-08-01 01:24:38 +02:00
* along with this program . If not , see < http :// www . gnu . org / licenses />.
2010-05-07 21:08:27 +02:00
*/
2011-02-02 21:41:54 +01:00
/**
2015-09-07 12:46:49 +02:00
* \defgroup fournisseur suppliers Module
* \brief Module to manage companies and contacts of supplier type
2011-10-24 14:11:49 +02:00
* \file htdocs / core / modules / modFournisseur . class . php
2010-05-07 21:08:27 +02:00
* \ingroup fournisseur
2015-09-07 12:46:49 +02:00
* \brief Description and activation file for module Fournisseur
2010-05-07 21:08:27 +02:00
*/
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/modules/DolibarrModules.class.php' ;
2010-05-07 21:08:27 +02:00
2011-02-02 21:41:54 +01:00
/**
2015-09-07 12:46:49 +02:00
* Description and activation class for module Fournisseur
2010-05-07 21:08:27 +02:00
*/
class modFournisseur extends DolibarrModules
{
/**
2011-09-26 16:22:35 +02:00
* Constructor . Define names , constants , directories , boxes , permissions
*
2012-01-04 21:23:50 +01:00
* @ param DoliDB $db Database handler
2010-05-07 21:08:27 +02:00
*/
2012-07-30 17:17:33 +02:00
function __construct ( $db )
2010-05-07 21:08:27 +02:00
{
2016-06-06 17:51:39 +02:00
global $conf , $user ;
2010-05-07 21:08:27 +02:00
2012-01-04 21:23:50 +01:00
$this -> db = $db ;
$this -> numero = 40 ;
2010-05-07 21:08:27 +02:00
2016-02-19 19:20:21 +01:00
// Family can be 'crm','financial','hr','projects','product','ecm','technic','other'
// It is used to group modules in module setup page
$this -> family = " srm " ;
2015-11-17 00:58:12 +01:00
$this -> module_position = 10 ;
2010-05-07 21:08:27 +02:00
// Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
$this -> name = preg_replace ( '/^mod/i' , '' , get_class ( $this ));
$this -> description = " Gestion des fournisseurs " ;
// Possible values for version are: 'development', 'experimental', 'dolibarr' or version
$this -> version = 'dolibarr' ;
$this -> const_name = 'MAIN_MODULE_' . strtoupper ( $this -> name );
$this -> picto = 'company' ;
// Data directories to create when module is enabled
$this -> dirs = array ( " /fournisseur/temp " ,
" /fournisseur/commande " ,
" /fournisseur/commande/temp " ,
" /fournisseur/facture " ,
" /fournisseur/facture/temp "
);
2015-09-07 12:46:49 +02:00
// Dependencies
2015-04-02 15:17:07 +02:00
$this -> depends = array ( " modSociete " );
$this -> requiredby = array ();
2018-03-07 12:18:08 +01:00
$this -> langfiles = array ( 'bills' , 'companies' , 'suppliers' , 'orders' , 'sendings' );
2015-04-02 15:17:07 +02:00
// Config pages
$this -> config_page_url = array ( " supplier_order.php " );
2015-09-07 12:46:49 +02:00
// Constants
2015-04-02 15:17:07 +02:00
$this -> const = array ();
$r = 0 ;
$this -> const [ $r ][ 0 ] = " COMMANDE_SUPPLIER_ADDON_PDF " ;
$this -> const [ $r ][ 1 ] = " chaine " ;
$this -> const [ $r ][ 2 ] = " muscadet " ;
$this -> const [ $r ][ 3 ] = 'Nom du gestionnaire de generation des bons de commande en PDF' ;
$this -> const [ $r ][ 4 ] = 0 ;
$r ++ ;
$this -> const [ $r ][ 0 ] = " COMMANDE_SUPPLIER_ADDON_NUMBER " ;
$this -> const [ $r ][ 1 ] = " chaine " ;
$this -> const [ $r ][ 2 ] = " mod_commande_fournisseur_muguet " ;
$this -> const [ $r ][ 3 ] = 'Nom du gestionnaire de numerotation des commandes fournisseur' ;
$this -> const [ $r ][ 4 ] = 0 ;
$r ++ ;
2017-07-14 15:49:33 +02:00
/* For supplier invoice , we must not have default pdf template on . In most cases , we need to join PDF from supplier , not have a document generated .
2015-04-02 15:17:07 +02:00
$this -> const [ $r ][ 0 ] = " INVOICE_SUPPLIER_ADDON_PDF " ;
$this -> const [ $r ][ 1 ] = " chaine " ;
$this -> const [ $r ][ 2 ] = " canelle " ;
$this -> const [ $r ][ 3 ] = 'Nom du gestionnaire de generation des factures fournisseur en PDF' ;
$this -> const [ $r ][ 4 ] = 0 ;
$r ++ ;
2017-07-14 15:49:33 +02:00
*/
2015-04-02 15:17:07 +02:00
$this -> const [ $r ][ 0 ] = " INVOICE_SUPPLIER_ADDON_NUMBER " ;
$this -> const [ $r ][ 1 ] = " chaine " ;
$this -> const [ $r ][ 2 ] = " mod_facture_fournisseur_cactus " ;
$this -> const [ $r ][ 3 ] = 'Nom du gestionnaire de numerotation des factures fournisseur' ;
$this -> const [ $r ][ 4 ] = 0 ;
$r ++ ;
// Boxes
$this -> boxes = array (
0 => array ( 'file' => 'box_graph_invoices_supplier_permonth.php' , 'enabledbydefaulton' => 'Home' ),
1 => array ( 'file' => 'box_graph_orders_supplier_permonth.php' , 'enabledbydefaulton' => 'Home' ),
2 => array ( 'file' => 'box_fournisseurs.php' , 'enabledbydefaulton' => 'Home' ),
3 => array ( 'file' => 'box_factures_fourn_imp.php' , 'enabledbydefaulton' => 'Home' ),
4 => array ( 'file' => 'box_factures_fourn.php' , 'enabledbydefaulton' => 'Home' ),
5 => array ( 'file' => 'box_supplier_orders.php' , 'enabledbydefaulton' => 'Home' ),
);
// Permissions
$this -> rights = array ();
$this -> rights_class = 'fournisseur' ;
$r = 0 ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1181 ;
$this -> rights [ $r ][ 1 ] = 'Consulter les fournisseurs' ;
$this -> rights [ $r ][ 2 ] = 'r' ;
2016-06-04 12:16:30 +02:00
$this -> rights [ $r ][ 3 ] = 0 ;
2015-04-02 15:17:07 +02:00
$this -> rights [ $r ][ 4 ] = 'lire' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1182 ;
$this -> rights [ $r ][ 1 ] = 'Consulter les commandes fournisseur' ;
$this -> rights [ $r ][ 2 ] = 'r' ;
2016-06-04 12:16:30 +02:00
$this -> rights [ $r ][ 3 ] = 0 ;
2015-04-02 15:17:07 +02:00
$this -> rights [ $r ][ 4 ] = 'commande' ;
$this -> rights [ $r ][ 5 ] = 'lire' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1183 ;
$this -> rights [ $r ][ 1 ] = 'Creer une commande fournisseur' ;
$this -> rights [ $r ][ 2 ] = 'w' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'commande' ;
$this -> rights [ $r ][ 5 ] = 'creer' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1184 ;
$this -> rights [ $r ][ 1 ] = 'Valider une commande fournisseur' ;
$this -> rights [ $r ][ 2 ] = 'w' ;
$this -> rights [ $r ][ 3 ] = 0 ;
2015-04-02 16:58:36 +02:00
$this -> rights [ $r ][ 4 ] = 'supplier_order_advance' ;
$this -> rights [ $r ][ 5 ] = 'validate' ;
2015-04-02 15:17:07 +02:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1185 ;
$this -> rights [ $r ][ 1 ] = 'Approuver une commande fournisseur' ;
$this -> rights [ $r ][ 2 ] = 'w' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'commande' ;
$this -> rights [ $r ][ 5 ] = 'approuver' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1186 ;
$this -> rights [ $r ][ 1 ] = 'Commander une commande fournisseur' ;
$this -> rights [ $r ][ 2 ] = 'w' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'commande' ;
$this -> rights [ $r ][ 5 ] = 'commander' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1187 ;
$this -> rights [ $r ][ 1 ] = 'Receptionner une commande fournisseur' ;
$this -> rights [ $r ][ 2 ] = 'd' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'commande' ;
$this -> rights [ $r ][ 5 ] = 'receptionner' ;
2015-04-02 16:58:36 +02:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1189 ;
$this -> rights [ $r ][ 1 ] = 'Check/Uncheck a supplier order reception' ;
$this -> rights [ $r ][ 2 ] = 'w' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'commande_advance' ;
$this -> rights [ $r ][ 5 ] = 'check' ;
2015-04-02 15:17:07 +02:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1188 ;
$this -> rights [ $r ][ 1 ] = 'Supprimer une commande fournisseur' ;
$this -> rights [ $r ][ 2 ] = 'd' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'commande' ;
$this -> rights [ $r ][ 5 ] = 'supprimer' ;
2018-05-10 12:29:58 +02:00
if ( ! empty ( $conf -> global -> SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED ))
{
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1190 ;
$this -> rights [ $r ][ 1 ] = 'Approve supplier order (second level)' ; // $langs->trans("Permission1190");
$this -> rights [ $r ][ 2 ] = 'w' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'commande' ;
$this -> rights [ $r ][ 5 ] = 'approve2' ;
}
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1191 ;
$this -> rights [ $r ][ 1 ] = 'Exporter les commande fournisseurs, attributs' ;
$this -> rights [ $r ][ 2 ] = 'r' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'commande' ;
$this -> rights [ $r ][ 5 ] = 'export' ;
2015-04-02 16:58:36 +02:00
2015-04-02 15:17:07 +02:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1231 ;
$this -> rights [ $r ][ 1 ] = 'Consulter les factures fournisseur' ;
$this -> rights [ $r ][ 2 ] = 'r' ;
2016-06-04 12:16:30 +02:00
$this -> rights [ $r ][ 3 ] = 0 ;
2015-04-02 15:17:07 +02:00
$this -> rights [ $r ][ 4 ] = 'facture' ;
$this -> rights [ $r ][ 5 ] = 'lire' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1232 ;
$this -> rights [ $r ][ 1 ] = 'Creer une facture fournisseur' ;
$this -> rights [ $r ][ 2 ] = 'w' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'facture' ;
$this -> rights [ $r ][ 5 ] = 'creer' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1233 ;
$this -> rights [ $r ][ 1 ] = 'Valider une facture fournisseur' ;
$this -> rights [ $r ][ 2 ] = 'w' ;
$this -> rights [ $r ][ 3 ] = 0 ;
2015-04-02 16:58:36 +02:00
$this -> rights [ $r ][ 4 ] = 'supplier_invoice_advance' ;
$this -> rights [ $r ][ 5 ] = 'validate' ;
2015-04-02 15:17:07 +02:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1234 ;
$this -> rights [ $r ][ 1 ] = 'Supprimer une facture fournisseur' ;
$this -> rights [ $r ][ 2 ] = 'd' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'facture' ;
$this -> rights [ $r ][ 5 ] = 'supprimer' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1235 ;
$this -> rights [ $r ][ 1 ] = 'Envoyer les factures par mail' ;
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'supplier_invoice_advance' ;
$this -> rights [ $r ][ 5 ] = 'send' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1236 ;
$this -> rights [ $r ][ 1 ] = 'Exporter les factures fournisseurs, attributs et reglements' ;
$this -> rights [ $r ][ 2 ] = 'r' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'facture' ;
$this -> rights [ $r ][ 5 ] = 'export' ;
2017-07-14 15:49:33 +02:00
2016-09-30 13:02:13 +02:00
// Menus
//-------
$this -> menu = 1 ; // This module add menu entries. They are coded into menu manager.
2017-07-14 15:49:33 +02:00
2015-04-02 15:17:07 +02:00
// Exports
//--------
$r = 0 ;
$r ++ ;
$this -> export_code [ $r ] = $this -> rights_class . '_' . $r ;
$this -> export_label [ $r ] = 'Factures fournisseurs et lignes de facture' ;
$this -> export_icon [ $r ] = 'bill' ;
$this -> export_permission [ $r ] = array ( array ( " fournisseur " , " facture " , " export " ));
2018-05-27 15:04:12 +02:00
$this -> export_fields_array [ $r ] = array (
's.rowid' => " IdCompany " , 's.nom' => 'CompanyName' , 's.address' => 'Address' , 's.zip' => 'Zip' , 's.town' => 'Town' , 'c.code' => 'CountryCode' , 's.phone' => 'Phone' ,
's.siren' => 'ProfId1' , 's.siret' => 'ProfId2' , 's.ape' => 'ProfId3' , 's.idprof4' => 'ProfId4' , 's.idprof5' => 'ProfId5' , 's.idprof6' => 'ProfId6' , 's.tva_intra' => 'VATIntra' ,
'f.rowid' => " InvoiceId " , 'f.ref' => " InvoiceRef " , 'f.ref_supplier' => " RefSupplier " , 'f.datec' => " InvoiceDateCreation " , 'f.datef' => " DateInvoice " , 'f.date_lim_reglement' => 'DateMaxPayment' ,
'f.total_ht' => " TotalHT " , 'f.total_ttc' => " TotalTTC " , 'f.total_tva' => " TotalVAT " , 'f.paye' => " InvoicePaid " , 'f.fk_statut' => 'InvoiceStatus' , 'f.note_public' => " InvoiceNote " ,
'fd.rowid' => 'LineId' , 'fd.description' => " LineDescription " , 'fd.tva_tx' => " LineVATRate " , 'fd.qty' => " LineQty " , 'fd.remise_percent' => " Discount " , 'fd.total_ht' => " LineTotalHT " ,
'fd.total_ttc' => " LineTotalTTC " , 'fd.tva' => " LineTotalVAT " , 'fd.product_type' => 'TypeOfLineServiceOrProduct' , 'fd.fk_product' => 'ProductId' ,
'p.ref' => 'ProductRef' , 'p.label' => 'ProductLabel' , 'p.accountancy_code_buy' => 'ProductAccountancyBuyCode' , 'project.rowid' => 'ProjectId' ,
'project.ref' => 'ProjectRef' , 'project.title' => 'ProjectLabel'
);
//$this->export_TypeFields_array[$r]=array(
// 's.rowid'=>"List:societe:CompanyName",'s.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','c.code'=>'Text','s.phone'=>'Text','s.siren'=>'Text','s.siret'=>'Text',
// 's.ape'=>'Text','s.idprof4'=>'Text','s.tva_intra'=>'Text','f.ref'=>"Text",'f.datec'=>"Date",'f.datef'=>"Date",'f.total_ht'=>"Numeric",'f.total_ttc'=>"Numeric",'f.total_tva'=>"Numeric",
// 'f.paye'=>"Boolean",'f.fk_statut'=>'Status','f.note_public'=>"Text",'fd.description'=>"Text",'fd.tva_tx'=>"Text",'fd.qty'=>"Numeric",'fd.total_ht'=>"Numeric",'fd.total_ttc'=>"Numeric",
// 'fd.tva'=>"Numeric",'fd.product_type'=>'Numeric','fd.fk_product'=>'List:product:label','p.ref'=>'Text','p.label'=>'Text'
//);
$this -> export_TypeFields_array [ $r ] = array (
's.nom' => 'Text' , 's.address' => 'Text' , 's.zip' => 'Text' , 's.town' => 'Text' , 'c.code' => 'Text' , 's.phone' => 'Text' , 's.siren' => 'Text' , 's.siret' => 'Text' , 's.ape' => 'Text' , 's.idprof4' => 'Text' ,
's.tva_intra' => 'Text' , 'f.ref' => " Text " , 'f.ref_supplier' => " Text " , 'f.datec' => " Date " , 'f.datef' => " Date " , 'f.date_lim_reglement' => 'Date' , 'f.total_ht' => " Numeric " , 'f.total_ttc' => " Numeric " ,
'f.total_tva' => " Numeric " , 'f.paye' => " Boolean " , 'f.fk_statut' => 'Status' , 'f.note_public' => " Text " , 'fd.description' => " Text " , 'fd.tva_tx' => " Text " , 'fd.qty' => " Numeric " , 'fd.total_ht' => " Numeric " ,
'fd.total_ttc' => " Numeric " , 'fd.tva' => " Numeric " , 'fd.product_type' => 'Numeric' , 'fd.fk_product' => 'List:product:label' ,
'p.ref' => 'Text' , 'p.label' => 'Text' , 'project.ref' => 'Text' , 'project.title' => 'Text'
);
$this -> export_entities_array [ $r ] = array (
's.rowid' => " company " , 's.nom' => 'company' , 's.address' => 'company' , 's.zip' => 'company' , 's.town' => 'company' , 'c.code' => 'company' , 's.phone' => 'company' , 's.siren' => 'company' , 's.siret' => 'company' ,
's.ape' => 'company' , 's.idprof4' => 'company' , 's.idprof5' => 'company' , 's.idprof6' => 'company' , 's.tva_intra' => 'company' , 'f.rowid' => " invoice " , 'f.ref' => " invoice " , 'f.ref_supplier' => " invoice " ,
'f.datec' => " invoice " , 'f.datef' => " invoice " , 'f.date_lim_reglement' => 'invoice' , 'f.total_ht' => " invoice " , 'f.total_ttc' => " invoice " , 'f.total_tva' => " invoice " , 'f.paye' => " invoice " , 'f.fk_statut' => 'invoice' ,
'f.note_public' => " invoice " , 'fd.rowid' => 'invoice_line' , 'fd.description' => " invoice_line " , 'fd.tva_tx' => " invoice_line " , 'fd.qty' => " invoice_line " , 'fd.remise_percent' => " invoice_line " ,
'fd.total_ht' => " invoice_line " , 'fd.total_ttc' => " invoice_line " , 'fd.tva' => " invoice_line " , 'fd.product_type' => 'invoice_line' , 'fd.fk_product' => 'product' ,
'p.ref' => 'product' , 'p.label' => 'product' , 'p.accountancy_code_buy' => 'product' , 'project.rowid' => 'project' , 'project.ref' => 'project' , 'project.title' => 'project'
);
2015-04-02 15:17:07 +02:00
$this -> export_dependencies_array [ $r ] = array ( 'invoice_line' => 'fd.rowid' , 'product' => 'fd.rowid' ); // To add unique key if we ask a field of a child to avoid the DISTINCT to discard them
2015-04-02 16:58:36 +02:00
// Add extra fields object
2014-04-29 11:57:51 +02:00
$sql = " SELECT name, label, type, param FROM " . MAIN_DB_PREFIX . " extrafields WHERE elementtype = 'facture_fourn' " ;
$resql = $this -> db -> query ( $sql );
if ( $resql ) // This can fail when class is used on old database (during migration for example)
{
while ( $obj = $this -> db -> fetch_object ( $resql ))
{
$fieldname = 'extra.' . $obj -> name ;
$fieldlabel = ucfirst ( $obj -> label );
$typeFilter = " Text " ;
switch ( $obj -> type )
{
case 'int' :
case 'double' :
case 'price' :
$typeFilter = " Numeric " ;
break ;
case 'date' :
case 'datetime' :
$typeFilter = " Date " ;
break ;
case 'boolean' :
$typeFilter = " Boolean " ;
break ;
case 'sellist' :
2015-04-02 16:58:36 +02:00
$tmp = '' ;
$tmpparam = unserialize ( $obj -> param ); // $tmp ay be array 'options' => array 'c_currencies:code_iso:code_iso' => null
if ( $tmpparam [ 'options' ] && is_array ( $tmpparam [ 'options' ])) $tmp = array_shift ( array_keys ( $tmpparam [ 'options' ]));
if ( preg_match ( '/[a-z0-9_]+:[a-z0-9_]+:[a-z0-9_]+/' , $tmp )) $typeFilter = " List: " . $tmp ;
2014-04-29 11:57:51 +02:00
break ;
}
$this -> export_fields_array [ $r ][ $fieldname ] = $fieldlabel ;
$this -> export_TypeFields_array [ $r ][ $fieldname ] = $typeFilter ;
2015-04-02 16:58:36 +02:00
$this -> export_entities_array [ $r ][ $fieldname ] = 'invoice' ;
2014-04-29 11:57:51 +02:00
}
}
2015-04-02 16:58:36 +02:00
// End add extra fields
// Add extra fields line
$sql = " SELECT name, label, type, param FROM " . MAIN_DB_PREFIX . " extrafields WHERE elementtype = 'facture_fourn_det' " ;
$resql = $this -> db -> query ( $sql );
if ( $resql ) // This can fail when class is used on old database (during migration for example)
{
while ( $obj = $this -> db -> fetch_object ( $resql ))
2015-03-09 19:13:19 +01:00
{
2015-04-02 16:58:36 +02:00
$fieldname = 'extraline.' . $obj -> name ;
$fieldlabel = ucfirst ( $obj -> label );
$typeFilter = " Text " ;
switch ( $obj -> type )
2015-03-09 19:13:19 +01:00
{
2015-04-02 16:58:36 +02:00
case 'int' :
case 'double' :
case 'price' :
$typeFilter = " Numeric " ;
break ;
case 'date' :
case 'datetime' :
$typeFilter = " Date " ;
break ;
case 'boolean' :
$typeFilter = " Boolean " ;
break ;
case 'sellist' :
$tmp = '' ;
$tmpparam = unserialize ( $obj -> param ); // $tmp ay be array 'options' => array 'c_currencies:code_iso:code_iso' => null
if ( $tmpparam [ 'options' ] && is_array ( $tmpparam [ 'options' ])) $tmp = array_shift ( array_keys ( $tmpparam [ 'options' ]));
if ( preg_match ( '/[a-z0-9_]+:[a-z0-9_]+:[a-z0-9_]+/' , $tmp )) $typeFilter = " List: " . $tmp ;
break ;
2015-03-09 19:13:19 +01:00
}
2015-04-02 16:58:36 +02:00
$this -> export_fields_array [ $r ][ $fieldname ] = $fieldlabel ;
$this -> export_TypeFields_array [ $r ][ $fieldname ] = $typeFilter ;
$this -> export_entities_array [ $r ][ $fieldname ] = 'invoice_line' ;
2015-03-09 19:13:19 +01:00
}
2015-04-02 16:58:36 +02:00
}
// End add extra fields line
2015-04-02 15:17:07 +02:00
$this -> export_sql_start [ $r ] = 'SELECT DISTINCT ' ;
$this -> export_sql_end [ $r ] = ' FROM ' . MAIN_DB_PREFIX . 'societe as s' ;
2017-01-15 23:32:14 +01:00
if ( is_object ( $user ) && empty ( $user -> rights -> societe -> client -> voir )) $this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'societe_commerciaux as sc ON sc.fk_soc = s.rowid' ;
2015-04-02 15:17:07 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'c_country as c ON s.fk_pays = c.rowid,' ;
$this -> export_sql_end [ $r ] .= ' ' . MAIN_DB_PREFIX . 'facture_fourn as f' ;
2015-06-03 16:40:02 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'projet as project on (f.fk_projet = project.rowid)' ;
2015-04-02 15:17:07 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'facture_fourn_extrafields as extra ON f.rowid = extra.fk_object' ;
$this -> export_sql_end [ $r ] .= ' , ' . MAIN_DB_PREFIX . 'facture_fourn_det as fd' ;
2015-04-02 16:58:36 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'facture_fourn_det_extrafields as extraline ON fd.rowid = extraline.fk_object' ;
2015-04-02 15:17:07 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'product as p on (fd.fk_product = p.rowid)' ;
$this -> export_sql_end [ $r ] .= ' WHERE f.fk_soc = s.rowid AND f.rowid = fd.fk_facture_fourn' ;
2017-05-30 18:50:54 +02:00
$this -> export_sql_end [ $r ] .= ' AND f.entity IN (' . getEntity ( 'supplier_invoice' ) . ')' ;
2017-01-15 23:32:14 +01:00
if ( is_object ( $user ) && empty ( $user -> rights -> societe -> client -> voir )) $this -> export_sql_end [ $r ] .= ' AND sc.fk_user = ' . $user -> id ;
2015-04-02 15:17:07 +02:00
$r ++ ;
$this -> export_code [ $r ] = $this -> rights_class . '_' . $r ;
$this -> export_label [ $r ] = 'Factures fournisseurs et reglements' ;
$this -> export_icon [ $r ] = 'bill' ;
$this -> export_permission [ $r ] = array ( array ( " fournisseur " , " facture " , " export " ));
2018-05-27 15:04:12 +02:00
$this -> export_fields_array [ $r ] = array (
's.rowid' => " IdCompany " , 's.nom' => 'CompanyName' , 's.address' => 'Address' , 's.zip' => 'Zip' , 's.town' => 'Town' , 'c.code' => 'CountryCode' , 's.phone' => 'Phone' ,
's.siren' => 'ProfId1' , 's.siret' => 'ProfId2' , 's.ape' => 'ProfId3' , 's.idprof4' => 'ProfId4' , 's.idprof5' => 'ProfId5' , 's.idprof6' => 'ProfId6' ,
's.tva_intra' => 'VATIntra' , 'f.rowid' => " InvoiceId " , 'f.ref' => " InvoiceRef " , 'f.ref_supplier' => " RefSupplier " , 'f.datec' => " InvoiceDateCreation " ,
'f.datef' => " DateInvoice " , 'f.total_ht' => " TotalHT " , 'f.total_ttc' => " TotalTTC " , 'f.total_tva' => " TotalVAT " , 'f.paye' => " InvoicePaid " ,
'f.fk_statut' => 'InvoiceStatus' , 'f.note_public' => " InvoiceNote " , 'p.rowid' => 'PaymentId' , 'pf.amount' => 'AmountPayment' ,
'p.datep' => 'DatePayment' , 'p.num_paiement' => 'PaymentNumber' , 'project.rowid' => 'ProjectId' , 'project.ref' => 'ProjectRef' , 'project.title' => 'ProjectLabel'
);
//$this->export_TypeFields_array[$r]=array(
// 's.rowid'=>"List:societe:CompanyName",'s.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','c.code'=>'Text','s.phone'=>'Text',
// 's.siren'=>'Text','s.siret'=>'Text','s.ape'=>'Text','s.idprof4'=>'Text','s.tva_intra'=>'Text','f.ref'=>"Text",'f.datec'=>"Date",'f.datef'=>"Date",
// 'f.total_ht'=>"Numeric",'f.total_ttc'=>"Numeric",'f.total_tva'=>"Numeric",'f.paye'=>"Boolean",'f.fk_statut'=>'Status','f.note_public'=>"Text",
// 'pf.amount'=>'Numeric','p.datep'=>'Date','p.num_paiement'=>'Numeric'
//);
$this -> export_TypeFields_array [ $r ] = array (
's.nom' => 'Text' , 's.address' => 'Text' , 's.zip' => 'Text' , 's.town' => 'Text' , 'c.code' => 'Text' , 's.phone' => 'Text' , 's.siren' => 'Text' , 's.siret' => 'Text' , 's.ape' => 'Text' ,
's.idprof4' => 'Text' , 's.tva_intra' => 'Text' , 'f.ref' => " Text " , 'f.ref_supplier' => " Text " , 'f.datec' => " Date " , 'f.datef' => " Date " , 'f.total_ht' => " Numeric " ,
'f.total_ttc' => " Numeric " , 'f.total_tva' => " Numeric " , 'f.paye' => " Boolean " , 'f.fk_statut' => 'Status' , 'f.note_public' => " Text " , 'pf.amount' => 'Numeric' ,
'p.datep' => 'Date' , 'p.num_paiement' => 'Numeric' , 'project.ref' => 'Text' , 'project.title' => 'Text'
);
$this -> export_entities_array [ $r ] = array (
's.rowid' => " company " , 's.nom' => 'company' , 's.address' => 'company' , 's.zip' => 'company' , 's.town' => 'company' , 'c.code' => 'company' , 's.phone' => 'company' ,
's.siren' => 'company' , 's.siret' => 'company' , 's.ape' => 'company' , 's.idprof4' => 'company' , 's.idprof5' => 'company' , 's.idprof6' => 'company' , 's.tva_intra' => 'company' ,
'f.rowid' => " invoice " , 'f.ref' => " invoice " , 'f.ref_supplier' => " invoice " , 'f.datec' => " invoice " , 'f.datef' => " invoice " , 'f.total_ht' => " invoice " ,
'f.total_ttc' => " invoice " , 'f.total_tva' => " invoice " , 'f.paye' => " invoice " , 'f.fk_statut' => 'invoice' , 'f.note_public' => " invoice " , 'p.rowid' => 'payment' , 'pf.amount' => 'payment' ,
'p.datep' => 'payment' , 'p.num_paiement' => 'payment' , 'project.rowid' => 'project' , 'project.ref' => 'project' , 'project.title' => 'project' );
2015-04-02 15:17:07 +02:00
$this -> export_dependencies_array [ $r ] = array ( 'payment' => 'p.rowid' ); // To add unique key if we ask a field of a child to avoid the DISTINCT to discard them
2015-04-02 16:58:36 +02:00
// Add extra fields object
2014-04-29 11:57:51 +02:00
$sql = " SELECT name, label, type, param FROM " . MAIN_DB_PREFIX . " extrafields WHERE elementtype = 'facture_fourn' " ;
$resql = $this -> db -> query ( $sql );
if ( $resql ) // This can fail when class is used on old database (during migration for example)
{
while ( $obj = $this -> db -> fetch_object ( $resql ))
{
$fieldname = 'extra.' . $obj -> name ;
$fieldlabel = ucfirst ( $obj -> label );
$typeFilter = " Text " ;
switch ( $obj -> type )
{
case 'int' :
case 'double' :
case 'price' :
$typeFilter = " Numeric " ;
break ;
case 'date' :
case 'datetime' :
$typeFilter = " Date " ;
break ;
case 'boolean' :
$typeFilter = " Boolean " ;
break ;
case 'sellist' :
2015-04-02 16:58:36 +02:00
$tmp = '' ;
$tmpparam = unserialize ( $obj -> param ); // $tmp ay be array 'options' => array 'c_currencies:code_iso:code_iso' => null
if ( $tmpparam [ 'options' ] && is_array ( $tmpparam [ 'options' ])) $tmp = array_shift ( array_keys ( $tmpparam [ 'options' ]));
if ( preg_match ( '/[a-z0-9_]+:[a-z0-9_]+:[a-z0-9_]+/' , $tmp )) $typeFilter = " List: " . $tmp ;
2014-04-29 11:57:51 +02:00
break ;
}
$this -> export_fields_array [ $r ][ $fieldname ] = $fieldlabel ;
$this -> export_TypeFields_array [ $r ][ $fieldname ] = $typeFilter ;
2015-04-02 16:58:36 +02:00
$this -> export_entities_array [ $r ][ $fieldname ] = 'invoice' ;
2014-04-29 11:57:51 +02:00
}
}
2015-04-02 16:58:36 +02:00
// End add extra fields object
2015-04-02 15:17:07 +02:00
$this -> export_sql_start [ $r ] = 'SELECT DISTINCT ' ;
$this -> export_sql_end [ $r ] = ' FROM ' . MAIN_DB_PREFIX . 'societe as s' ;
2017-01-15 23:32:14 +01:00
if ( is_object ( $user ) && empty ( $user -> rights -> societe -> client -> voir )) $this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'societe_commerciaux as sc ON sc.fk_soc = s.rowid' ;
2015-04-02 15:17:07 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'c_country as c ON s.fk_pays = c.rowid,' ;
$this -> export_sql_end [ $r ] .= ' ' . MAIN_DB_PREFIX . 'facture_fourn as f' ;
2015-06-03 16:40:02 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'projet as project on (f.fk_projet = project.rowid)' ;
2015-04-02 15:17:07 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'facture_fourn_extrafields as extra ON f.rowid = extra.fk_object' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'paiementfourn_facturefourn as pf ON pf.fk_facturefourn = f.rowid' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'paiementfourn as p ON pf.fk_paiementfourn = p.rowid' ;
$this -> export_sql_end [ $r ] .= ' WHERE f.fk_soc = s.rowid' ;
2017-05-30 18:50:54 +02:00
$this -> export_sql_end [ $r ] .= ' AND f.entity IN (' . getEntity ( 'supplier_invoice' ) . ')' ;
2017-01-15 23:32:14 +01:00
if ( is_object ( $user ) && empty ( $user -> rights -> societe -> client -> voir )) $this -> export_sql_end [ $r ] .= ' AND sc.fk_user = ' . $user -> id ;
2015-04-02 16:58:36 +02:00
2015-04-02 17:35:07 +02:00
// Order
2015-04-02 15:17:07 +02:00
$r ++ ;
$this -> export_code [ $r ] = $this -> rights_class . '_' . $r ;
$this -> export_label [ $r ] = 'Commandes fournisseurs et lignes de commandes' ;
$this -> export_icon [ $r ] = 'order' ;
$this -> export_permission [ $r ] = array ( array ( " fournisseur " , " commande " , " export " ));
2018-05-27 15:04:12 +02:00
$this -> export_fields_array [ $r ] = array (
's.rowid' => " IdCompany " , 's.nom' => 'CompanyName' , 's.address' => 'Address' , 's.zip' => 'Zip' , 's.town' => 'Town' , 'c.code' => 'CountryCode' , 's.phone' => 'Phone' ,
's.siren' => 'ProfId1' , 's.siret' => 'ProfId2' , 's.ape' => 'ProfId3' , 's.idprof4' => 'ProfId4' , 's.idprof5' => 'ProfId5' , 's.idprof6' => 'ProfId6' , 's.tva_intra' => 'VATIntra' ,
'f.rowid' => " OrderId " , 'f.ref' => " Ref " , 'f.ref_supplier' => " RefSupplier " , 'f.date_creation' => " DateCreation " , 'f.date_commande' => " OrderDate " , 'f.date_livraison' => " DateDeliveryPlanned " ,
'f.total_ht' => " TotalHT " , 'f.total_ttc' => " TotalTTC " , 'f.tva' => " TotalVAT " , 'f.fk_statut' => 'Status' , 'f.date_approve' => 'DateApprove' , 'f.date_approve2' => 'DateApprove2' ,
'f.note_public' => " NotePublic " , 'f.note_private' => " NotePrivate " , 'ua1.login' => 'ApprovedBy' , 'ua2.login' => 'ApprovedBy2' , 'fd.rowid' => 'LineId' , 'fd.description' => " LineDescription " ,
'fd.tva_tx' => " LineVATRate " , 'fd.qty' => " LineQty " , 'fd.remise_percent' => " Discount " , 'fd.total_ht' => " LineTotalHT " , 'fd.total_ttc' => " LineTotalTTC " ,
2018-06-18 11:23:36 +02:00
'fd.total_tva' => " LineTotalVAT " , 'fd.product_type' => 'TypeOfLineServiceOrProduct' , 'fd.ref' => 'RefSupplier' , 'fd.fk_product' => 'ProductId' ,
'p.ref' => 'ProductRef' , 'p.label' => 'ProductLabel' , 'project.rowid' => 'ProjectId' , 'project.ref' => 'ProjectRef' , 'project.title' => 'ProjectLabel'
2018-05-27 15:04:12 +02:00
);
2016-08-04 15:46:31 +02:00
if ( empty ( $conf -> global -> SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED ))
2015-04-02 17:35:07 +02:00
{
unset ( $this -> export_fields_array [ 'f.date_approve2' ]);
unset ( $this -> export_fields_array [ 'ua2.login' ]);
}
2018-05-27 15:04:12 +02:00
$this -> export_TypeFields_array [ $r ] = array (
's.rowid' => " company " , 's.nom' => 'Text' , 's.address' => 'Text' , 's.cp' => 'Text' , 's.ville' => 'Text' , 'c.code' => 'Text' , 's.tel' => 'Text' , 's.siren' => 'Text' ,
's.siret' => 'Text' , 's.ape' => 'Text' , 's.idprof4' => 'Text' , 's.idprof5' => 'Text' , 's.idprof6' => 'Text' , 's.tva_intra' => 'Text' , 'f.ref' => " Text " , 'f.ref_supplier' => " Text " ,
'f.date_creation' => " Date " , 'f.date_commande' => " Date " , 'f.date_livraison' => " Date " , 'f.total_ht' => " Numeric " , 'f.total_ttc' => " Numeric " , 'f.tva' => " Numeric " ,
'f.fk_statut' => 'Status' , 'f.date_approve' => 'Date' , 'f.date_approve2' => 'Date' , 'f.note_public' => " Text " , 'f.note_private' => " Text " , 'fd.description' => " Text " ,
2018-06-18 11:24:58 +02:00
'fd.tva_tx' => " Numeric " , 'fd.qty' => " Numeric " , 'fd.remise_percent' => " Numeric " , 'fd.total_ht' => " Numeric " , 'fd.total_ttc' => " Numeric " , 'fd.total_tva' => " Numeric " ,
'fd.product_type' => 'Numeric' , 'fd.ref' => 'Text' , 'fd.fk_product' => 'List:product:label' , 'p.ref' => 'Text' , 'p.label' => 'Text' , 'project.ref' => 'Text' , 'project.title' => 'Text'
2018-05-27 15:04:12 +02:00
);
$this -> export_entities_array [ $r ] = array (
's.rowid' => " company " , 's.nom' => 'company' , 's.address' => 'company' , 's.zip' => 'company' , 's.town' => 'company' , 'c.code' => 'company' , 's.phone' => 'company' , 's.siren' => 'company' ,
's.siret' => 'company' , 's.ape' => 'company' , 's.idprof4' => 'company' , 's.idprof5' => 'company' , 's.idprof6' => 'company' , 's.tva_intra' => 'company' , 'ua1.login' => 'user' ,
'ua2.login' => 'user' , 'fd.rowid' => 'order_line' , 'fd.description' => " order_line " , 'fd.tva_tx' => " order_line " , 'fd.qty' => " order_line " , 'fd.remise_percent' => " order_line " ,
2018-06-18 11:26:03 +02:00
'fd.total_ht' => " order_line " , 'fd.total_ttc' => " order_line " , 'fd.total_tva' => " order_line " , 'fd.product_type' => 'order_line' , 'fd.ref' => 'order_line' , 'fd.fk_product' => 'product' ,
'p.ref' => 'product' , 'p.label' => 'product' , 'project.rowid' => 'project' , 'project.ref' => 'project' , 'project.title' => 'project'
2018-05-27 15:04:12 +02:00
);
2015-04-02 15:17:07 +02:00
$this -> export_dependencies_array [ $r ] = array ( 'order_line' => 'fd.rowid' , 'product' => 'fd.rowid' ); // To add unique key if we ask a field of a child to avoid the DISTINCT to discard them
2015-04-02 16:58:36 +02:00
// Add extra fields object
$sql = " SELECT name, label, type, param FROM " . MAIN_DB_PREFIX . " extrafields WHERE elementtype = 'commande_fournisseur' " ;
$resql = $this -> db -> query ( $sql );
if ( $resql ) // This can fail when class is used on old database (during migration for example)
{
while ( $obj = $this -> db -> fetch_object ( $resql ))
2015-03-04 02:08:51 +01:00
{
2015-04-02 16:58:36 +02:00
$fieldname = 'extra.' . $obj -> name ;
$fieldlabel = ucfirst ( $obj -> label );
$typeFilter = " Text " ;
switch ( $obj -> type )
2015-03-04 02:08:51 +01:00
{
2015-04-02 16:58:36 +02:00
case 'int' :
case 'double' :
case 'price' :
$typeFilter = " Numeric " ;
break ;
case 'date' :
case 'datetime' :
$typeFilter = " Date " ;
break ;
case 'boolean' :
$typeFilter = " Boolean " ;
break ;
case 'sellist' :
$tmp = '' ;
$tmpparam = unserialize ( $obj -> param ); // $tmp ay be array 'options' => array 'c_currencies:code_iso:code_iso' => null
2015-04-22 21:48:59 +02:00
$tmpkey = array_keys ( $tmpparam [ 'options' ]);
if ( $tmpparam [ 'options' ] && is_array ( $tmpparam [ 'options' ])) $tmp = array_shift ( $tmpkey );
2015-04-02 16:58:36 +02:00
if ( preg_match ( '/[a-z0-9_]+:[a-z0-9_]+:[a-z0-9_]+/' , $tmp )) $typeFilter = " List: " . $tmp ;
break ;
2015-03-04 02:08:51 +01:00
}
2015-04-02 16:58:36 +02:00
$this -> export_fields_array [ $r ][ $fieldname ] = $fieldlabel ;
$this -> export_TypeFields_array [ $r ][ $fieldname ] = $typeFilter ;
$this -> export_entities_array [ $r ][ $fieldname ] = 'order' ;
2015-03-04 02:08:51 +01:00
}
2015-04-02 16:58:36 +02:00
}
// End add extra fields object
// Add extra fields line
$sql = " SELECT name, label, type, param FROM " . MAIN_DB_PREFIX . " extrafields WHERE elementtype = 'commande_fournisseurdet' " ;
$resql = $this -> db -> query ( $sql );
if ( $resql ) // This can fail when class is used on old database (during migration for example)
{
while ( $obj = $this -> db -> fetch_object ( $resql ))
2015-03-09 19:13:19 +01:00
{
2015-04-02 16:58:36 +02:00
$fieldname = 'extraline.' . $obj -> name ;
$fieldlabel = ucfirst ( $obj -> label );
$typeFilter = " Text " ;
switch ( $obj -> type )
2015-03-09 19:13:19 +01:00
{
2015-04-02 16:58:36 +02:00
case 'int' :
case 'double' :
case 'price' :
$typeFilter = " Numeric " ;
break ;
case 'date' :
case 'datetime' :
$typeFilter = " Date " ;
break ;
case 'boolean' :
$typeFilter = " Boolean " ;
break ;
case 'sellist' :
$tmp = '' ;
$tmpparam = unserialize ( $obj -> param ); // $tmp ay be array 'options' => array 'c_currencies:code_iso:code_iso' => null
2018-03-09 11:37:23 +01:00
if ( $tmpparam [ 'options' ] && is_array ( $tmpparam [ 'options' ])) {
$tmpparam_param_key = array_keys ( $tmpparam [ 'options' ]);
$tmp = array_shift ( $tmpparam_param_key );
}
2015-04-02 16:58:36 +02:00
if ( preg_match ( '/[a-z0-9_]+:[a-z0-9_]+:[a-z0-9_]+/' , $tmp )) $typeFilter = " List: " . $tmp ;
break ;
2015-03-09 19:13:19 +01:00
}
2015-04-02 16:58:36 +02:00
$this -> export_fields_array [ $r ][ $fieldname ] = $fieldlabel ;
$this -> export_TypeFields_array [ $r ][ $fieldname ] = $typeFilter ;
$this -> export_entities_array [ $r ][ $fieldname ] = 'order_line' ;
2015-03-09 19:13:19 +01:00
}
2015-04-02 16:58:36 +02:00
}
// End add extra fields line
2015-04-02 15:17:07 +02:00
$this -> export_sql_start [ $r ] = 'SELECT DISTINCT ' ;
$this -> export_sql_end [ $r ] = ' FROM ' . MAIN_DB_PREFIX . 'societe as s' ;
2017-01-15 23:32:14 +01:00
if ( is_object ( $user ) && empty ( $user -> rights -> societe -> client -> voir )) $this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'societe_commerciaux as sc ON sc.fk_soc = s.rowid' ;
2015-04-02 15:17:07 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'c_country as c ON s.fk_pays = c.rowid,' ;
2015-04-02 16:58:36 +02:00
$this -> export_sql_end [ $r ] .= ' ' . MAIN_DB_PREFIX . 'commande_fournisseur as f' ;
2015-06-03 16:40:02 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'projet as project on (f.fk_projet = project.rowid)' ;
2015-04-02 17:35:07 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'user as ua1 ON ua1.rowid = f.fk_user_approve' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'user as ua2 ON ua2.rowid = f.fk_user_approve2' ;
2015-04-02 16:58:36 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'commande_fournisseur_extrafields as extra ON f.rowid = extra.fk_object,' ;
$this -> export_sql_end [ $r ] .= ' ' . MAIN_DB_PREFIX . 'commande_fournisseurdet as fd' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'commande_fournisseurdet_extrafields as extraline ON fd.rowid = extraline.fk_object' ;
2015-04-02 15:17:07 +02:00
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'product as p on (fd.fk_product = p.rowid)' ;
$this -> export_sql_end [ $r ] .= ' WHERE f.fk_soc = s.rowid AND f.rowid = fd.fk_commande' ;
2017-05-30 18:50:54 +02:00
$this -> export_sql_end [ $r ] .= ' AND f.entity IN (' . getEntity ( 'supplier_order' ) . ')' ;
2017-01-15 23:32:14 +01:00
if ( is_object ( $user ) && empty ( $user -> rights -> societe -> client -> voir )) $this -> export_sql_end [ $r ] .= ' AND sc.fk_user = ' . $user -> id ;
2010-05-07 21:08:27 +02:00
}
/**
2012-01-04 21:23:50 +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
2010-05-07 21:08:27 +02:00
*/
2012-01-04 21:23:50 +01:00
function init ( $options = '' )
2010-05-07 21:08:27 +02:00
{
2010-07-10 01:15:06 +02:00
global $conf ;
2012-03-03 17:37:45 +01:00
$this -> remove ( $options );
2010-05-07 21:08:27 +02:00
2010-07-10 01:15:06 +02:00
$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 = 'order_supplier' AND entity = " . $conf -> entity ,
" INSERT INTO " . MAIN_DB_PREFIX . " document_model (nom, type, entity) VALUES(' " . $this -> db -> escape ( $this -> const [ 0 ][ 2 ]) . " ','order_supplier', " . $conf -> entity . " ) " ,
2010-07-10 01:15:06 +02:00
);
2010-05-07 21:08:27 +02:00
2012-01-04 21:23:50 +01:00
return $this -> _init ( $sql , $options );
2010-05-07 21:08:27 +02:00
}
}