2004-10-20 00:24:10 +02:00
< ? php
2004-12-06 11:16:56 +01:00
/* Copyright ( C ) 2003 - 2004 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2007-10-10 01:15:25 +02:00
* Copyright ( C ) 2004 - 2007 Laurent Destailleur < eldy @ users . sourceforge . net >
2005-05-14 16:22:08 +02:00
* Copyright ( C ) 2004 Sebastien Di Cintio < sdicintio @ ressource - toi . org >
* Copyright ( C ) 2004 Benoit Mortier < benoit . mortier @ opensides . be >
2007-11-01 21:39:36 +01:00
* Copyright ( C ) 2005 - 2007 Regis Houssin < regis @ dolibarr . fr >
2003-04-12 17:56:59 +02:00
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 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 , write to the Free Software
* Foundation , Inc . , 59 Temple Place - Suite 330 , Boston , MA 02111 - 1307 , USA .
*/
2004-08-14 14:21:24 +02:00
2005-01-14 19:46:23 +01:00
/** \defgroup facture Module facture
2008-05-24 03:13:59 +02:00
\brief Module pour gerer les factures clients et / ou fournisseurs
2008-03-16 18:31:31 +01:00
\version $Id $
2004-08-14 14:21:24 +02:00
*/
2004-08-15 14:40:18 +02:00
2006-01-22 18:43:27 +01:00
/**
\file htdocs / includes / modules / modFacture . class . php
2004-10-20 00:24:10 +02:00
\ingroup facture
\brief Fichier de la classe de description et activation du module Facture
2004-08-14 14:21:24 +02:00
*/
2007-10-10 01:15:25 +02:00
include_once ( DOL_DOCUMENT_ROOT . " /includes/modules/DolibarrModules.class.php " );
2003-04-12 17:56:59 +02:00
2004-08-15 14:40:18 +02:00
2006-01-22 18:43:27 +01:00
/**
\class modFacture
2004-08-15 14:40:18 +02:00
\brief Classe de description et activation du module Facture
*/
2003-11-13 16:09:12 +01:00
class modFacture extends DolibarrModules
2003-05-16 14:48:12 +02:00
{
2003-04-12 17:56:59 +02:00
2004-11-23 21:04:19 +01:00
/**
* \brief Constructeur . Definit les noms , constantes et boites
2008-01-13 23:47:50 +01:00
* \param DB handler d ' acc<EFBFBD> s base
2004-08-15 14:40:18 +02:00
*/
2006-01-22 18:43:27 +01:00
function modFacture ( $DB )
{
2008-03-16 18:31:31 +01:00
$this -> db = $DB ;
$this -> numero = 30 ;
2006-01-22 18:43:27 +01:00
$this -> family = " financial " ;
2008-10-01 21:10:17 +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 = eregi_replace ( '^mod' , '' , get_class ( $this ));
2006-01-22 18:43:27 +01:00
$this -> description = " Gestion des factures " ;
2008-12-15 23:25:59 +01:00
// Possible values for version are: 'development', 'experimental', 'dolibarr' or version
$this -> version = 'dolibarr' ;
2008-10-06 09:39:52 +02:00
$this -> const_name = 'MAIN_MODULE_' . strtoupper ( $this -> name );
2006-01-22 18:43:27 +01:00
$this -> special = 0 ;
$this -> picto = 'bill' ;
// Dir
$this -> dirs = array ();
2008-10-13 18:39:53 +02:00
// Dependencies
2006-05-20 12:10:41 +02:00
$this -> depends = array ( " modSociete " );
$this -> requiredby = array ( " modComptabilite " , " modComptabiliteExpert " );
$this -> conflictwith = array ();
2007-08-08 04:20:32 +02:00
$this -> langfiles = array ( " bills " , " companies " , " compta " , " products " );
2006-01-22 18:43:27 +01:00
// Config pages
2006-12-06 00:20:18 +01:00
$this -> config_page_url = array ( " facture.php " );
2006-01-22 18:43:27 +01:00
// Constantes
$this -> const = array ();
2006-06-10 23:31:10 +02:00
$r = 0 ;
$this -> const [ $r ][ 0 ] = " FACTURE_ADDON_PDF " ;
$this -> const [ $r ][ 1 ] = " chaine " ;
2007-01-03 23:19:20 +01:00
$this -> const [ $r ][ 2 ] = " crabe " ;
2006-06-10 23:31:10 +02:00
$r ++ ;
2006-01-22 18:43:27 +01:00
2006-06-10 23:31:10 +02:00
$this -> const [ $r ][ 0 ] = " FACTURE_ADDON " ;
$this -> const [ $r ][ 1 ] = " chaine " ;
2007-01-03 23:19:20 +01:00
$this -> const [ $r ][ 2 ] = " terre " ;
2006-06-10 23:31:10 +02:00
$r ++ ;
2006-01-22 18:43:27 +01:00
2006-06-10 23:31:10 +02:00
$this -> const [ $r ][ 0 ] = " FAC_FORCE_DATE_VALIDATION " ;
$this -> const [ $r ][ 1 ] = " yesno " ;
$this -> const [ $r ][ 2 ] = " 0 " ;
$r ++ ;
2006-02-11 17:24:55 +01:00
2006-01-22 18:43:27 +01:00
// Boites
$this -> boxes = array ();
2006-05-20 14:16:18 +02:00
$r = 0 ;
$this -> boxes [ $r ][ 1 ] = " box_factures_imp.php " ;
$r ++ ;
$this -> boxes [ $r ][ 1 ] = " box_factures.php " ;
$r ++ ;
2006-01-22 18:43:27 +01:00
// Permissions
$this -> rights = array ();
$this -> rights_class = 'facture' ;
2006-02-09 22:44:25 +01:00
$r = 0 ;
2006-01-22 18:43:27 +01:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 11 ;
$this -> rights [ $r ][ 1 ] = 'Lire les factures' ;
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 1 ;
$this -> rights [ $r ][ 4 ] = 'lire' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 12 ;
2008-07-20 19:04:48 +02:00
$this -> rights [ $r ][ 1 ] = 'Creer les factures' ;
2006-01-22 18:43:27 +01:00
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'creer' ;
2006-07-11 08:42:44 +02:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 13 ;
$this -> rights [ $r ][ 1 ] = 'Modifier les factures' ;
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'modifier' ;
2006-01-22 18:43:27 +01:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 14 ;
$this -> rights [ $r ][ 1 ] = 'Valider les factures' ;
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'valider' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 15 ;
$this -> rights [ $r ][ 1 ] = 'Envoyer les factures par mail' ;
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'envoyer' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 16 ;
$this -> rights [ $r ][ 1 ] = 'Emettre des paiements sur les factures' ;
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'paiement' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 19 ;
$this -> rights [ $r ][ 1 ] = 'Supprimer les factures' ;
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'supprimer' ;
$r ++ ;
2007-04-20 00:27:41 +02:00
$this -> rights [ $r ][ 0 ] = 1321 ;
2008-10-28 21:37:30 +01:00
$this -> rights [ $r ][ 1 ] = 'Exporter les factures clients, attributs et reglements' ;
2006-01-22 18:43:27 +01:00
$this -> rights [ $r ][ 2 ] = 'r' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'facture' ;
$this -> rights [ $r ][ 5 ] = 'export' ;
2007-05-21 22:28:24 +02:00
// Exports
2006-01-22 18:43:27 +01:00
//--------
2008-05-24 03:13:59 +02:00
$r = 1 ;
2006-01-22 18:43:27 +01:00
2008-01-17 22:37:46 +01:00
$this -> export_code [ $r ] = $this -> rights_class . '_' . $r ;
2007-10-29 12:54:02 +01:00
$this -> export_label [ $r ] = 'CustomersInvoicesAndInvoiceLines' ; // Translation key (used only if key ExportDataset_xxx_z not found)
2008-01-10 23:21:18 +01:00
$this -> export_permission [ $r ] = array ( array ( " facture " , " facture " , " export " ));
2007-10-29 13:11:33 +01:00
$this -> export_fields_array [ $r ] = array ( 's.rowid' => " IdCompany " , 's.nom' => 'CompanyName' , 's.address' => 'Address' , 's.cp' => 'Zip' , 's.ville' => 'Town' , 's.fk_pays' => 'Country' , 's.tel' => 'Phone' , 's.siren' => 'ProfId1' , 's.siret' => 'ProfId2' , 's.ape' => 'ProfId3' , 's.idprof4' => 'ProfId4' , 's.code_compta' => 'CustomerAccountancyCode' , 's.code_compta_fournisseur' => 'SupplierAccountancyCode' , 'f.rowid' => " InvoiceId " , 'f.facnumber' => " InvoiceRef " , 'f.datec' => " InvoiceDateCreation " , 'f.datef' => " DateInvoice " , 'f.total' => " TotalHT " , 'f.total_ttc' => " TotalTTC " , 'f.tva' => " TotalVAT " , 'f.paye' => " InvoicePayed " , 'f.fk_statut' => 'InvoiceStatus' , 'f.note' => " InvoiceNote " , 'fd.rowid' => 'LineId' , 'fd.description' => " LineDescription " , 'fd.price' => " LineUnitPrice " , 'fd.tva_taux' => " LineVATRate " , 'fd.qty' => " LineQty " , 'fd.total_ht' => " LineTotalHT " , 'fd.total_tva' => " LineTotalTVA " , 'fd.total_ttc' => " LineTotalTTC " , 'fd.date_start' => " DateStart " , 'fd.date_end' => " DateEnd " , 'fd.fk_product' => 'ProductId' , 'p.ref' => 'ProductRef' );
2007-08-08 04:20:32 +02:00
$this -> export_entities_array [ $r ] = array ( 's.rowid' => " company " , 's.nom' => 'company' , 's.address' => 'company' , 's.cp' => 'company' , 's.ville' => 'company' , 's.fk_pays' => 'company' , 's.tel' => 'company' , 's.siren' => 'company' , 's.siret' => 'company' , 's.ape' => 'company' , 's.idprof4' => 'company' , 's.code_compta' => 'company' , 's.code_compta_fournisseur' => 'company' , 'f.rowid' => " invoice " , 'f.facnumber' => " invoice " , 'f.datec' => " invoice " , 'f.datef' => " invoice " , 'f.total' => " invoice " , 'f.total_ttc' => " invoice " , 'f.tva' => " invoice " , 'f.paye' => " invoice " , 'f.fk_statut' => 'invoice' , 'f.note' => " invoice " , 'fd.rowid' => 'invoice_line' , 'fd.description' => " invoice_line " , 'fd.price' => " invoice_line " , 'fd.total_ht' => " invoice_line " , 'fd.total_tva' => " invoice_line " , 'fd.total_ttc' => " invoice_line " , 'fd.tva_taux' => " invoice_line " , 'fd.qty' => " invoice_line " , 'fd.date_start' => " invoice_line " , 'fd.date_end' => " invoice_line " , 'fd.fk_product' => 'product' , 'p.ref' => 'product' );
$this -> export_alias_array [ $r ] = array ( 's.rowid' => " socid " , 's.nom' => 'soc_name' , 's.address' => 'soc_adres' , 's.cp' => 'soc_zip' , 's.ville' => 'soc_ville' , 's.fk_pays' => 'soc_pays' , 's.tel' => 'soc_tel' , 's.siren' => 'soc_siren' , 's.siret' => 'soc_siret' , 's.ape' => 'soc_ape' , 's.idprof4' => 'soc_idprof4' , 's.code_compta' => 'soc_customer_accountancy' , 's.code_compta_fournisseur' => 'soc_supplier_accountancy' , 'f.rowid' => " invoiceid " , 'f.facnumber' => " ref " , 'f.datec' => " datecreation " , 'f.datef' => " dateinvoice " , 'f.total' => " totalht " , 'f.total_ttc' => " totalttc " , 'f.tva' => " totalvat " , 'f.paye' => " paid " , 'f.fk_statut' => 'status' , 'f.note' => " note " , 'fd.rowid' => 'lineid' , 'fd.description' => " linedescription " , 'fd.price' => " lineprice " , 'fd.total_ht' => " linetotalht " , 'fd.total_tva' => " linetotaltva " , 'fd.total_ttc' => " linetotalttc " , 'fd.tva_taux' => " linevatrate " , 'fd.qty' => " lineqty " , 'fd.date_start' => " linedatestart " , 'fd.date_end' => " linedateend " , 'fd.fk_product' => 'productid' , 'p.ref' => 'productref' );
2008-01-10 23:21:18 +01:00
$this -> export_sql_start [ $r ] = 'SELECT DISTINCT ' ;
$this -> export_sql_end [ $r ] = ' FROM (' . MAIN_DB_PREFIX . 'facture as f, ' . MAIN_DB_PREFIX . 'facturedet as fd, ' . MAIN_DB_PREFIX . 'societe as s)' ;
$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' ;
2007-05-21 22:28:24 +02:00
$r ++ ;
2008-05-24 03:13:59 +02:00
2008-01-17 22:37:46 +01:00
$this -> export_code [ $r ] = $this -> rights_class . '_' . $r ;
2007-10-29 12:54:02 +01:00
$this -> export_label [ $r ] = 'CustomersInvoicesAndPayments' ; // Translation key (used only if key ExportDataset_xxx_z not found)
2008-01-10 23:21:18 +01:00
$this -> export_permission [ $r ] = array ( array ( " facture " , " facture " , " export " ));
2007-10-29 13:11:33 +01:00
$this -> export_fields_array [ $r ] = array ( 's.rowid' => " IdCompany " , 's.nom' => 'CompanyName' , 's.address' => 'Address' , 's.cp' => 'Zip' , 's.ville' => 'Town' , 's.fk_pays' => 'Country' , 's.tel' => 'Phone' , 's.siren' => 'ProfId1' , 's.siret' => 'ProfId2' , 's.ape' => 'ProfId3' , 's.idprof4' => 'ProfId4' , 's.code_compta' => 'CustomerAccountancyCode' , 's.code_compta_fournisseur' => 'SupplierAccountancyCode' , 'f.rowid' => " InvoiceId " , 'f.facnumber' => " InvoiceRef " , 'f.datec' => " InvoiceDateCreation " , 'f.datef' => " DateInvoice " , 'f.total' => " TotalHT " , 'f.total_ttc' => " TotalTTC " , 'f.tva' => " TotalVAT " , 'f.paye' => " InvoicePayed " , 'f.fk_statut' => 'InvoiceStatus' , 'f.note' => " InvoiceNote " , 'pf.amount' => 'AmountPayment' , 'p.datep' => 'DatePayment' , 'p.num_paiement' => 'PaymentNumber' );
2007-08-08 04:20:32 +02:00
$this -> export_entities_array [ $r ] = array ( 's.rowid' => " company " , 's.nom' => 'company' , 's.address' => 'company' , 's.cp' => 'company' , 's.ville' => 'company' , 's.fk_pays' => 'company' , 's.tel' => 'company' , 's.siren' => 'company' , 's.siret' => 'company' , 's.ape' => 'company' , 's.idprof4' => 'company' , 's.code_compta' => 'company' , 's.code_compta_fournisseur' => 'company' , 'f.rowid' => " invoice " , 'f.facnumber' => " invoice " , 'f.datec' => " invoice " , 'f.datef' => " invoice " , 'f.total' => " invoice " , 'f.total_ttc' => " invoice " , 'f.tva' => " invoice " , 'f.paye' => " invoice " , 'f.fk_statut' => 'invoice' , 'f.note' => " invoice " , 'pf.amount' => 'payment' , 'p.datep' => 'payment' , 'p.num_paiement' => 'payment' );
$this -> export_alias_array [ $r ] = array ( 's.rowid' => " socid " , 's.nom' => 'soc_name' , 's.address' => 'soc_adres' , 's.cp' => 'soc_zip' , 's.ville' => 'soc_ville' , 's.fk_pays' => 'soc_pays' , 's.tel' => 'soc_tel' , 's.siren' => 'soc_siren' , 's.siret' => 'soc_siret' , 's.ape' => 'soc_ape' , 's.idprof4' => 'soc_idprof4' , 's.code_compta' => 'soc_customer_accountancy' , 's.code_compta_fournisseur' => 'soc_supplier_accountancy' , 'f.rowid' => " invoiceid " , 'f.facnumber' => " ref " , 'f.datec' => " datecreation " , 'f.datef' => " dateinvoice " , 'f.total' => " totalht " , 'f.total_ttc' => " totalttc " , 'f.tva' => " totalvat " , 'f.paye' => " paid " , 'f.fk_statut' => 'status' , 'f.note' => " note " , 'pf.amount' => 'amount_payment' , 'p.datep' => 'date_payment' , 'p.num_paiement' => 'num_payment' );
2008-01-10 23:21:18 +01:00
$this -> export_sql_start [ $r ] = 'SELECT DISTINCT ' ;
$this -> export_sql_end [ $r ] = ' FROM (' . MAIN_DB_PREFIX . 'facture as f, ' . MAIN_DB_PREFIX . 'societe as s) LEFT JOIN ' . MAIN_DB_PREFIX . 'paiement_facture as pf ON pf.fk_facture = f.rowid LEFT JOIN ' . MAIN_DB_PREFIX . 'paiement as p ON pf.fk_paiement = p.rowid' ;
$this -> export_sql_end [ $r ] .= ' WHERE f.fk_soc = s.rowid' ;
2008-05-24 03:13:59 +02:00
$r ++ ;
2006-01-22 18:43:27 +01:00
}
2005-05-14 16:22:08 +02:00
/**
2008-01-13 23:47:50 +01:00
* \brief Fonction appel<EFBFBD> e lors de l ' activation du module . Ins<EFBFBD> re en base les constantes , boites , permissions du module .
* D<EFBFBD> finit <EFBFBD> galement les r<EFBFBD> pertoires de donn<EFBFBD> es <EFBFBD> cr<EFBFBD> er pour ce module .
2005-05-14 16:22:08 +02:00
*/
2006-01-22 18:43:27 +01:00
function init ()
{
global $conf ;
2005-05-14 16:22:08 +02:00
2006-01-22 18:43:27 +01:00
// Permissions
$this -> remove ();
2005-01-12 21:42:01 +01:00
2006-01-22 18:43:27 +01:00
// Dir
$this -> dirs [ 0 ] = $conf -> facture -> dir_output ;
2007-01-03 23:19:20 +01:00
$sql = array (
" DELETE FROM " . MAIN_DB_PREFIX . " document_model WHERE nom = ' " . $this -> const [ 0 ][ 2 ] . " ' " ,
" INSERT INTO " . MAIN_DB_PREFIX . " document_model (nom, type) VALUES(' " . $this -> const [ 0 ][ 2 ] . " ','invoice') " ,
);
2006-01-22 18:43:27 +01:00
return $this -> _init ( $sql );
}
/**
2008-01-13 23:47:50 +01:00
* \brief Fonction appel<EFBFBD> e lors de la d<EFBFBD> sactivation d ' un module .
2006-01-22 18:43:27 +01:00
* Supprime de la base les constantes , boites et permissions du module .
*/
function remove ()
{
$sql = array ();
return $this -> _remove ( $sql );
}
2003-04-12 17:56:59 +02:00
}
?>