2004-10-20 00:24:10 +02:00
< ? php
2012-08-25 15:21:34 +02:00
/* Copyright ( C ) 2003 - 2004 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2018-07-21 12:56:18 +02:00
* Copyright ( C ) 2004 - 2018 Laurent Destailleur < eldy @ users . sourceforge . net >
2012-08-25 15:21:34 +02: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 >
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
2013-01-16 15:36:08 +01:00
* the Free Software Foundation ; either version 3 of the License , or
2003-04-12 17:56:59 +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
2019-09-23 21:55:30 +02:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2003-04-12 17:56:59 +02:00
*/
2004-08-14 14:21:24 +02:00
2011-02-02 21:41:54 +01:00
/**
2011-01-30 11:00:10 +01:00
* \defgroup facture Module invoices
2009-03-30 18:02:02 +02:00
* \brief Module pour gerer les factures clients et / ou fournisseurs
2011-10-24 14:11:49 +02:00
* \file htdocs / core / modules / modFacture . class . php
2009-03-30 18:02:02 +02:00
* \ingroup facture
* \brief Fichier de la classe de description et activation du module Facture
*/
2017-09-04 12:42:51 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/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
/**
2013-06-30 23:01:28 +02:00
* Class to describe module customer invoices
2009-03-30 18:02:02 +02:00
*/
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
2009-05-04 13:40:00 +02:00
/**
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
2009-05-04 13:40:00 +02:00
*/
2019-02-25 20:35:59 +01:00
public function __construct ( $db )
2009-05-04 13:40:00 +02:00
{
2016-06-06 17:51:39 +02:00
global $conf , $user ;
2009-05-04 13:40:00 +02:00
2012-01-04 21:23:50 +01:00
$this -> db = $db ;
2009-05-04 13:40:00 +02:00
$this -> numero = 30 ;
$this -> family = " financial " ;
2020-05-02 00:41:27 +02:00
$this -> module_position = '11' ;
2009-05-04 13:40:00 +02:00
// Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
2017-09-04 12:42:51 +02:00
$this -> name = preg_replace ( '/^mod/i' , '' , get_class ( $this ));
2009-05-04 13:40:00 +02:00
$this -> description = " Gestion des factures " ;
// Possible values for version are: 'development', 'experimental', 'dolibarr' or version
$this -> version = 'dolibarr' ;
$this -> const_name = 'MAIN_MODULE_' . strtoupper ( $this -> name );
2017-09-04 12:42:51 +02:00
$this -> picto = 'bill' ;
2009-05-04 13:40:00 +02:00
// Data directories to create when module is enabled
$this -> dirs = array ( " /facture/temp " );
// Dependencies
2017-06-17 11:43:00 +02:00
$this -> depends = array ( 'always' => " modSociete " );
2017-09-04 12:42:51 +02:00
$this -> requiredby = array ( " modComptabilite " , " modAccounting " );
2009-05-04 13:40:00 +02:00
$this -> conflictwith = array ();
2017-09-04 12:42:51 +02:00
$this -> langfiles = array ( " bills " , " companies " , " compta " , " products " );
$this -> warnings_activation = array (); // Warning to show when we activate module. array('always'='text') or array('FR'='text')
$this -> warnings_activation_ext = array (); // Warning to show when we activate an external module. array('always'='text') or array('FR'='text')
2017-06-09 09:25:15 +02:00
2009-05-04 13:40:00 +02:00
// Config pages
$this -> config_page_url = array ( " facture.php " );
2015-09-07 15:40:55 +02:00
// Constants
2009-05-04 13:40:00 +02:00
$this -> const = array ();
2017-09-04 12:42:51 +02:00
$r = 0 ;
2009-05-04 13:40:00 +02:00
2017-05-18 12:40:20 +02:00
$this -> const [ $r ][ 0 ] = " FACTURE_ADDON " ;
2009-05-04 13:40:00 +02:00
$this -> const [ $r ][ 1 ] = " chaine " ;
2017-05-18 12:40:20 +02:00
$this -> const [ $r ][ 2 ] = " mod_facture_terre " ;
$this -> const [ $r ][ 3 ] = 'Name of numbering numerotation rules of invoice' ;
2013-03-03 21:23:18 +01:00
$this -> const [ $r ][ 4 ] = 0 ;
2009-05-04 13:40:00 +02:00
$r ++ ;
2017-05-18 12:40:20 +02:00
$this -> const [ $r ][ 0 ] = " FACTURE_ADDON_PDF " ;
2009-05-04 13:40:00 +02:00
$this -> const [ $r ][ 1 ] = " chaine " ;
2017-05-18 12:40:20 +02:00
$this -> const [ $r ][ 2 ] = " crabe " ;
$this -> const [ $r ][ 3 ] = 'Name of PDF model of invoice' ;
2013-03-03 21:23:18 +01:00
$this -> const [ $r ][ 4 ] = 0 ;
2009-05-04 13:40:00 +02:00
$r ++ ;
2010-04-28 17:31:49 +02:00
$this -> const [ $r ][ 0 ] = " FACTURE_ADDON_PDF_ODT_PATH " ;
$this -> const [ $r ][ 1 ] = " chaine " ;
2010-05-09 15:45:27 +02:00
$this -> const [ $r ][ 2 ] = " DOL_DATA_ROOT/doctemplates/invoices " ;
2010-04-28 17:31:49 +02:00
$this -> const [ $r ][ 3 ] = " " ;
$this -> const [ $r ][ 4 ] = 0 ;
2009-05-04 13:40:00 +02:00
$r ++ ;
2017-06-09 09:25:15 +02:00
2017-04-17 13:02:40 +02:00
/* $this -> const [ $r ][ 0 ] = " FACTURE_DRAFT_WATERMARK " ;
$this -> const [ $r ][ 1 ] = " chaine " ;
$this -> const [ $r ][ 2 ] = " __(Draft)__ " ;
$this -> const [ $r ][ 3 ] = 'Watermark to show on draft invoices' ;
$this -> const [ $r ][ 4 ] = 0 ;
$r ++ ; */
2017-06-09 09:25:15 +02:00
2010-04-28 17:31:49 +02:00
// Boxes
2013-04-23 16:18:26 +02:00
//$this->boxes = array(0=>array(1=>'box_factures_imp.php'),1=>array(1=>'box_factures.php'));
2013-07-16 18:42:43 +02:00
$this -> boxes = array (
2017-09-04 12:42:51 +02:00
0 => array ( 'file' => 'box_factures_imp.php' , 'enabledbydefaulton' => 'Home' ),
1 => array ( 'file' => 'box_factures.php' , 'enabledbydefaulton' => 'Home' ),
2 => array ( 'file' => 'box_graph_invoices_permonth.php' , 'enabledbydefaulton' => 'Home' )
2013-07-16 18:42:43 +02:00
);
2009-05-04 13:40:00 +02:00
2018-09-05 22:46:08 +02:00
// Cronjobs
2020-04-10 10:59:32 +02:00
$arraydate = dol_getdate ( dol_now ());
$datestart = dol_mktime ( 23 , 0 , 0 , $arraydate [ 'mon' ], $arraydate [ 'mday' ], $arraydate [ 'year' ]);
2018-09-05 22:46:08 +02:00
$this -> cronjobs = array (
2018-09-16 09:50:13 +02:00
0 => array ( 'label' => 'RecurringInvoices' , 'jobtype' => 'method' , 'class' => 'compta/facture/class/facture-rec.class.php' , 'objectname' => 'FactureRec' , 'method' => 'createRecurringInvoices' , 'parameters' => '' , 'comment' => 'Generate recurring invoices' , 'frequency' => 1 , 'unitfrequency' => 3600 * 24 , 'priority' => 50 , 'status' => 1 , 'test' => '$conf->facture->enabled' , 'datestart' => $datestart ),
2018-09-05 22:46:08 +02:00
);
2016-01-18 11:35:45 +01:00
2018-09-05 22:46:08 +02:00
// Permissions
2009-05-04 13:40:00 +02:00
$this -> rights = array ();
$this -> rights_class = 'facture' ;
2017-09-04 12:42:51 +02:00
$r = 0 ;
2009-05-04 13:40:00 +02:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 11 ;
2017-11-22 23:16:15 +01:00
$this -> rights [ $r ][ 1 ] = 'Read invoices' ;
2009-05-04 13:40:00 +02:00
$this -> rights [ $r ][ 2 ] = 'a' ;
2016-06-04 12:16:30 +02:00
$this -> rights [ $r ][ 3 ] = 0 ;
2009-05-04 13:40:00 +02:00
$this -> rights [ $r ][ 4 ] = 'lire' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 12 ;
2017-11-22 23:16:15 +01:00
$this -> rights [ $r ][ 1 ] = 'Create and update invoices' ;
2009-05-04 13:40:00 +02:00
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'creer' ;
2010-07-15 22:48:40 +02:00
// There is a particular permission for unvalidate because this may be not forbidden by some laws
2009-05-04 13:40:00 +02:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 13 ;
2017-11-22 23:16:15 +01:00
$this -> rights [ $r ][ 1 ] = 'Devalidate invoices' ;
2009-05-04 13:40:00 +02:00
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
2011-05-12 23:50:53 +02:00
$this -> rights [ $r ][ 4 ] = 'invoice_advance' ;
$this -> rights [ $r ][ 5 ] = 'unvalidate' ;
2009-05-04 13:40:00 +02:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 14 ;
2017-11-22 23:16:15 +01:00
$this -> rights [ $r ][ 1 ] = 'Validate invoices' ;
2009-05-04 13:40:00 +02:00
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
2015-01-25 21:32:40 +01:00
$this -> rights [ $r ][ 4 ] = 'invoice_advance' ;
$this -> rights [ $r ][ 5 ] = 'validate' ;
2009-05-04 13:40:00 +02:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 15 ;
2017-11-22 23:16:15 +01:00
$this -> rights [ $r ][ 1 ] = 'Send invoices by email' ;
2009-05-04 13:40:00 +02:00
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
2011-05-05 09:25:31 +02:00
$this -> rights [ $r ][ 4 ] = 'invoice_advance' ;
$this -> rights [ $r ][ 5 ] = 'send' ;
2009-05-04 13:40:00 +02:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 16 ;
2017-11-22 23:16:15 +01:00
$this -> rights [ $r ][ 1 ] = 'Issue payments on invoices' ;
2009-05-04 13:40:00 +02:00
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'paiement' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 19 ;
2017-11-22 23:16:15 +01:00
$this -> rights [ $r ][ 1 ] = 'Delete invoices' ;
2009-05-04 13:40:00 +02:00
$this -> rights [ $r ][ 2 ] = 'a' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'supprimer' ;
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1321 ;
2017-11-22 23:16:15 +01:00
$this -> rights [ $r ][ 1 ] = 'Export customer invoices, attributes and payments' ;
2009-05-04 13:40:00 +02:00
$this -> rights [ $r ][ 2 ] = 'r' ;
$this -> rights [ $r ][ 3 ] = 0 ;
$this -> rights [ $r ][ 4 ] = 'facture' ;
$this -> rights [ $r ][ 5 ] = 'export' ;
2016-09-22 15:06:39 +02:00
$r ++ ;
$this -> rights [ $r ][ 0 ] = 1322 ;
2017-11-22 23:16:15 +01:00
$this -> rights [ $r ][ 1 ] = 'Re-open a fully paid invoice' ;
2016-09-22 15:06:39 +02:00
$this -> rights [ $r ][ 2 ] = 'r' ;
2016-09-29 10:15:34 +02:00
$this -> rights [ $r ][ 3 ] = 0 ;
2016-09-26 17:39:46 +02:00
$this -> rights [ $r ][ 4 ] = 'invoice_advance' ;
$this -> rights [ $r ][ 5 ] = 'reopen' ;
2016-09-22 15:06:39 +02:00
2009-05-04 13:40:00 +02:00
2016-09-30 13:02:13 +02:00
// Menus
//-------
2017-09-04 12:42:51 +02:00
$this -> menu = 1 ; // This module add menu entries. They are coded into menu manager.
2017-06-09 09:25:15 +02:00
2009-05-04 13:40:00 +02:00
// Exports
//--------
2017-09-04 12:42:51 +02:00
$r = 1 ;
$this -> export_code [ $r ] = $this -> rights_class . '_' . $r ;
$this -> export_label [ $r ] = 'CustomersInvoicesAndInvoiceLines' ; // Translation key (used only if key ExportDataset_xxx_z not found)
$this -> export_icon [ $r ] = 'invoice' ;
$this -> export_permission [ $r ] = array ( array ( " facture " , " facture " , " export " , " other " ));
2018-05-27 15:04:12 +02:00
$this -> export_fields_array [ $r ] = array (
2019-02-01 22:55:28 +01:00
's.rowid' => " IdCompany " , 's.nom' => 'CompanyName' , 's.code_client' => 'CustomerCode' , 's.address' => 'Address' , 's.zip' => 'Zip' , 's.town' => 'Town' , 'c.code' => 'CountryCode' , 'cd.nom' => 'State' ,
's.phone' => 'Phone' ,
2020-05-21 17:14:42 +02:00
's.siren' => 'ProfId1' , 's.siret' => 'ProfId2' , 's.ape' => 'ProfId3' , 's.idprof4' => 'ProfId4' ,
's.code_compta' => 'CustomerAccountancyCode' ,
's.code_compta_fournisseur' => 'SupplierAccountancyCode' ,
's.tva_intra' => 'VATIntra' ,
2018-12-02 14:31:45 +01:00
'f.rowid' => " InvoiceId " , 'f.ref' => " InvoiceRef " , 'f.ref_client' => 'RefCustomer' ,
2018-05-27 15:04:12 +02:00
'f.type' => " Type " , 'f.datec' => " InvoiceDateCreation " , 'f.datef' => " DateInvoice " , 'f.date_lim_reglement' => " DateDue " , 'f.total' => " TotalHT " ,
2020-03-18 14:06:15 +01:00
'f.total_ttc' => " TotalTTC " , 'f.tva' => " TotalVAT " , 'f.localtax1' => 'LT1' , 'f.localtax2' => 'LT2' , 'f.paye' => " InvoicePaidCompletely " , 'f.fk_statut' => 'InvoiceStatus' , 'f.close_code' => 'EarlyClosingReason' , 'f.close_note' => 'EarlyClosingComment' ,
2020-01-29 17:27:31 +01:00
'none.rest' => 'Rest' ,
2018-05-27 15:04:12 +02:00
'f.note_private' => " NotePrivate " , 'f.note_public' => " NotePublic " , 'f.fk_user_author' => 'CreatedById' , 'uc.login' => 'CreatedByLogin' ,
2019-06-21 13:25:40 +02:00
'f.fk_user_valid' => 'ValidatedById' , 'uv.login' => 'ValidatedByLogin' , 'pj.ref' => 'ProjectRef' , 'pj.title' => 'ProjectLabel' , 'fd.rowid' => 'LineId' , 'fd.description' => " LineDescription " ,
2018-05-27 15:04:12 +02:00
'fd.subprice' => " LineUnitPrice " , 'fd.tva_tx' => " LineVATRate " , 'fd.qty' => " LineQty " , 'fd.total_ht' => " LineTotalHT " , 'fd.total_tva' => " LineTotalVAT " ,
'fd.total_ttc' => " LineTotalTTC " , 'fd.date_start' => " DateStart " , 'fd.date_end' => " DateEnd " , 'fd.special_code' => 'SpecialCode' ,
'fd.product_type' => " TypeOfLineServiceOrProduct " , 'fd.fk_product' => 'ProductId' , 'p.ref' => 'ProductRef' , 'p.label' => 'ProductLabel' ,
'p.accountancy_code_sell' => 'ProductAccountancySellCode'
);
2020-04-10 10:59:32 +02:00
if ( ! empty ( $conf -> multicurrency -> enabled ))
2019-01-21 02:43:08 +01:00
{
$this -> export_fields_array [ $r ][ 'f.multicurrency_code' ] = 'Currency' ;
$this -> export_fields_array [ $r ][ 'f.multicurrency_tx' ] = 'CurrencyRate' ;
$this -> export_fields_array [ $r ][ 'f.multicurrency_total_ht' ] = 'MulticurrencyAmountHT' ;
$this -> export_fields_array [ $r ][ 'f.multicurrency_total_tva' ] = 'MulticurrencyAmountVAT' ;
$this -> export_fields_array [ $r ][ 'f.multicurrency_total_ttc' ] = 'MulticurrencyAmountTTC' ;
}
2020-04-10 10:59:32 +02:00
if ( ! empty ( $conf -> cashdesk -> enabled ) || ! empty ( $conf -> takepos -> enabled ) || ! empty ( $conf -> global -> INVOICE_SHOW_POS ))
2019-06-21 13:25:40 +02:00
{
2020-04-10 10:59:32 +02:00
$this -> export_fields_array [ $r ][ 'f.module_source' ] = 'Module' ;
$this -> export_fields_array [ $r ][ 'f.pos_source' ] = 'POSTerminal' ;
2019-06-21 13:25:40 +02:00
}
2018-05-27 15:04:12 +02:00
$this -> export_TypeFields_array [ $r ] = array (
2019-02-01 22:55:28 +01:00
's.rowid' => 'Numeric' , 's.nom' => 'Text' , 's.code_client' => 'Text' , 's.address' => 'Text' , 's.zip' => 'Text' , 's.town' => 'Text' , 'c.code' => 'Text' , 'cd.nom' => 'Text' , 's.phone' => 'Text' , 's.siren' => 'Text' ,
2018-05-27 15:04:12 +02:00
's.siret' => 'Text' , 's.ape' => 'Text' , 's.idprof4' => 'Text' , 's.code_compta' => 'Text' , 's.code_compta_fournisseur' => 'Text' , 's.tva_intra' => 'Text' ,
2018-12-02 14:31:45 +01:00
'f.rowid' => 'Numeric' , 'f.ref' => " Text " , 'f.ref_client' => 'Text' , 'f.type' => " Numeric " , 'f.datec' => " Date " , 'f.datef' => " Date " , 'f.date_lim_reglement' => " Date " ,
2020-01-29 17:27:31 +01:00
'f.total' => " Numeric " , 'f.total_ttc' => " Numeric " , 'f.tva' => " Numeric " , 'f.localtax1' => 'Numeric' , 'f.localtax2' => 'Numeric' , 'f.paye' => " Boolean " , 'f.fk_statut' => 'Numeric' , 'f.close_code' => 'Text' , 'f.close_note' => 'Text' ,
'none.rest' => " NumericCompute " ,
2018-05-27 15:04:12 +02:00
'f.note_private' => " Text " , 'f.note_public' => " Text " , 'f.fk_user_author' => 'Numeric' , 'uc.login' => 'Text' , 'f.fk_user_valid' => 'Numeric' , 'uv.login' => 'Text' ,
2019-06-21 13:25:40 +02:00
'pj.ref' => 'Text' , 'pj.title' => 'Text' , 'fd.rowid' => 'Numeric' , 'fd.label' => 'Text' , 'fd.description' => " Text " , 'fd.subprice' => " Numeric " , 'fd.tva_tx' => " Numeric " ,
2018-05-27 15:04:12 +02:00
'fd.qty' => " Numeric " , 'fd.total_ht' => " Numeric " , 'fd.total_tva' => " Numeric " , 'fd.total_ttc' => " Numeric " , 'fd.date_start' => " Date " , 'fd.date_end' => " Date " ,
'fd.special_code' => 'Numeric' , 'fd.product_type' => " Numeric " , 'fd.fk_product' => 'List:product:label' , 'p.ref' => 'Text' , 'p.label' => 'Text' ,
'p.accountancy_code_sell' => 'Text'
);
2020-04-10 10:59:32 +02:00
if ( ! empty ( $conf -> cashdesk -> enabled ) || ! empty ( $conf -> takepos -> enabled ) || ! empty ( $conf -> global -> INVOICE_SHOW_POS ))
2019-06-21 13:25:40 +02:00
{
2020-04-10 10:59:32 +02:00
$this -> export_TypeFields_array [ $r ][ 'f.module_source' ] = 'Text' ;
$this -> export_TypeFields_array [ $r ][ 'f.pos_source' ] = 'Text' ;
2019-06-21 13:25:40 +02:00
}
2018-05-27 15:04:12 +02:00
$this -> export_entities_array [ $r ] = array (
2019-06-21 13:25:40 +02:00
's.rowid' => " company " , 's.nom' => 'company' , 's.code_client' => 'company' , 's.address' => 'company' , 's.zip' => 'company' , 's.town' => 'company' , 'c.code' => 'company' , 'cd.nom' => 'company' , 's.phone' => 'company' ,
2018-05-27 15:04:12 +02:00
's.siren' => 'company' , 's.siret' => 'company' , 's.ape' => 'company' , 's.idprof4' => 'company' , 's.code_compta' => 'company' , 's.code_compta_fournisseur' => 'company' ,
2019-06-21 13:25:40 +02:00
's.tva_intra' => 'company' , 'pj.ref' => 'project' , 'pj.title' => 'project' , 'fd.rowid' => 'invoice_line' , 'fd.label' => " invoice_line " , 'fd.description' => " invoice_line " ,
2019-01-17 11:58:25 +01:00
'fd.subprice' => " invoice_line " , 'fd.total_ht' => " invoice_line " , 'fd.total_tva' => " invoice_line " , 'fd.total_ttc' => " invoice_line " , 'fd.tva_tx' => " invoice_line " ,
2018-05-27 15:04:12 +02:00
'fd.qty' => " invoice_line " , 'fd.date_start' => " invoice_line " , 'fd.date_end' => " invoice_line " , 'fd.special_code' => 'invoice_line' ,
'fd.product_type' => 'invoice_line' , 'fd.fk_product' => 'product' , 'p.ref' => 'product' , 'p.label' => 'product' , 'p.accountancy_code_sell' => 'product' ,
'f.fk_user_author' => 'user' , 'uc.login' => 'user' , 'f.fk_user_valid' => 'user' , 'uv.login' => 'user'
);
2017-09-04 12:42:51 +02:00
$this -> export_special_array [ $r ] = array ( 'none.rest' => 'getRemainToPay' );
2020-01-29 17:27:31 +01:00
$this -> export_dependencies_array [ $r ] = array ( 'invoice_line' => 'fd.rowid' , 'product' => 'fd.rowid' , 'none.rest' => array ( 'f.rowid' , 'f.total_ttc' , 'f.close_code' )); // To add unique key if we ask a field of a child to avoid the DISTINCT to discard them
2017-09-04 12:42:51 +02:00
$keyforselect = 'facture' ; $keyforelement = 'invoice' ; $keyforaliasextra = 'extra' ;
2015-12-17 20:40:33 +01:00
include DOL_DOCUMENT_ROOT . '/core/extrafieldsinexport.inc.php' ;
2017-09-04 12:42:51 +02:00
$keyforselect = 'facturedet' ; $keyforelement = 'invoice_line' ; $keyforaliasextra = 'extra2' ;
2015-12-17 20:40:33 +01:00
include DOL_DOCUMENT_ROOT . '/core/extrafieldsinexport.inc.php' ;
2017-09-04 12:42:51 +02:00
$keyforselect = 'product' ; $keyforelement = 'product' ; $keyforaliasextra = 'extra3' ;
2015-12-17 20:40:33 +01:00
include DOL_DOCUMENT_ROOT . '/core/extrafieldsinexport.inc.php' ;
2017-09-04 12:42:51 +02:00
$this -> export_sql_start [ $r ] = 'SELECT DISTINCT ' ;
$this -> export_sql_end [ $r ] = ' FROM ' . MAIN_DB_PREFIX . 'societe as s' ;
if ( 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' ;
2019-02-01 22:55:28 +01: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 ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'c_departements as cd on s.fk_departement = cd.rowid,' ;
2017-09-04 12:42:51 +02:00
$this -> export_sql_end [ $r ] .= ' ' . MAIN_DB_PREFIX . 'facture as f' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'projet as pj ON f.fk_projet = pj.rowid' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'user as uc ON f.fk_user_author = uc.rowid' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'user as uv ON f.fk_user_valid = uv.rowid' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'facture_extrafields as extra ON f.rowid = extra.fk_object' ;
$this -> export_sql_end [ $r ] .= ' , ' . MAIN_DB_PREFIX . 'facturedet as fd' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'facturedet_extrafields as extra2 on fd.rowid = extra2.fk_object' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'product as p on (fd.fk_product = p.rowid)' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'product_extrafields as extra3 on p.rowid = extra3.fk_object' ;
$this -> export_sql_end [ $r ] .= ' WHERE f.fk_soc = s.rowid AND f.rowid = fd.fk_facture' ;
2018-11-15 17:27:49 +01:00
$this -> export_sql_end [ $r ] .= ' AND f.entity IN (' . getEntity ( 'invoice' ) . ')' ;
2017-09-04 12:42:51 +02:00
if ( isset ( $user ) && empty ( $user -> rights -> societe -> client -> voir )) $this -> export_sql_end [ $r ] .= ' AND sc.fk_user = ' . $user -> id ;
2009-05-04 13:40:00 +02:00
$r ++ ;
2020-01-29 17:27:31 +01:00
2017-09-04 12:42:51 +02:00
$this -> export_code [ $r ] = $this -> rights_class . '_' . $r ;
$this -> export_label [ $r ] = 'CustomersInvoicesAndPayments' ; // Translation key (used only if key ExportDataset_xxx_z not found)
$this -> export_icon [ $r ] = 'invoice' ;
$this -> export_permission [ $r ] = array ( array ( " facture " , " facture " , " export " ));
2018-05-27 15:04:12 +02:00
$this -> export_fields_array [ $r ] = array (
2019-02-01 22:55:28 +01:00
's.rowid' => " IdCompany " , 's.nom' => 'CompanyName' , 's.code_client' => 'CustomerCode' , 's.address' => 'Address' , 's.zip' => 'Zip' , 's.town' => 'Town' , 'c.code' => 'CountryCode' , 'cd.nom' => 'State' ,
's.phone' => 'Phone' ,
2018-05-27 15:04:12 +02:00
's.siren' => 'ProfId1' , 's.siret' => 'ProfId2' , 's.ape' => 'ProfId3' , 's.idprof4' => 'ProfId4' , 's.code_compta' => 'CustomerAccountancyCode' ,
2018-07-21 20:26:19 +02:00
's.code_compta_fournisseur' => 'SupplierAccountancyCode' , 's.tva_intra' => 'VATIntra' ,
2020-04-10 10:59:32 +02:00
'f.rowid' => " InvoiceId " , 'f.ref' => " InvoiceRef " , 'f.ref_client' => 'RefCustomer' ,
2018-05-27 15:04:12 +02:00
'f.type' => " Type " , 'f.datec' => " InvoiceDateCreation " , 'f.datef' => " DateInvoice " , 'f.date_lim_reglement' => " DateDue " , 'f.total' => " TotalHT " ,
2020-03-18 14:06:15 +01:00
'f.total_ttc' => " TotalTTC " , 'f.tva' => " TotalVAT " , 'f.localtax1' => 'LT1' , 'f.localtax2' => 'LT2' , 'f.paye' => " InvoicePaidCompletely " , 'f.fk_statut' => 'InvoiceStatus' , 'f.close_code' => 'EarlyClosingReason' , 'f.close_note' => 'EarlyClosingComment' ,
2020-01-29 17:27:31 +01:00
'none.rest' => 'Rest' ,
2018-05-27 15:04:12 +02:00
'f.note_private' => " NotePrivate " , 'f.note_public' => " NotePublic " , 'f.fk_user_author' => 'CreatedById' , 'uc.login' => 'CreatedByLogin' ,
2019-06-21 13:25:40 +02:00
'f.fk_user_valid' => 'ValidatedById' , 'uv.login' => 'ValidatedByLogin' , 'pj.ref' => 'ProjectRef' , 'pj.title' => 'ProjectLabel' , 'p.rowid' => 'PaymentId' , 'p.ref' => 'PaymentRef' ,
2018-05-27 15:04:12 +02:00
'p.amount' => 'AmountPayment' , 'pf.amount' => 'AmountPaymentDistributedOnInvoice' , 'p.datep' => 'DatePayment' , 'p.num_paiement' => 'PaymentNumber' ,
'pt.code' => 'CodePaymentMode' , 'pt.libelle' => 'LabelPaymentMode' , 'p.note' => 'PaymentNote' , 'p.fk_bank' => 'IdTransaction' , 'ba.ref' => 'AccountRef'
);
2019-12-23 12:24:27 +01:00
$this -> export_help_array [ $r ] = array ( 'f.paye' => 'InvoicePaidCompletelyHelp' );
2020-04-10 10:59:32 +02:00
if ( ! empty ( $conf -> multicurrency -> enabled ))
2019-01-21 02:43:08 +01:00
{
$this -> export_fields_array [ $r ][ 'f.multicurrency_code' ] = 'Currency' ;
$this -> export_fields_array [ $r ][ 'f.multicurrency_tx' ] = 'CurrencyRate' ;
$this -> export_fields_array [ $r ][ 'f.multicurrency_total_ht' ] = 'MulticurrencyAmountHT' ;
$this -> export_fields_array [ $r ][ 'f.multicurrency_total_tva' ] = 'MulticurrencyAmountVAT' ;
$this -> export_fields_array [ $r ][ 'f.multicurrency_total_ttc' ] = 'MulticurrencyAmountTTC' ;
2019-12-23 12:24:27 +01:00
$this -> export_examplevalues_array [ $r ][ 'f.multicurrency_code' ] = 'EUR' ;
2019-01-21 02:43:08 +01:00
}
2020-04-10 10:59:32 +02:00
if ( ! empty ( $conf -> cashdesk -> enabled ) || ! empty ( $conf -> takepos -> enabled ) || ! empty ( $conf -> global -> INVOICE_SHOW_POS ))
2019-06-21 13:25:40 +02:00
{
2020-04-10 10:59:32 +02:00
$this -> export_fields_array [ $r ][ 'f.module_source' ] = 'POSModule' ;
$this -> export_fields_array [ $r ][ 'f.pos_source' ] = 'POSTerminal' ;
2019-06-21 13:25:40 +02:00
}
2018-05-27 15:04:12 +02:00
$this -> export_TypeFields_array [ $r ] = array (
2019-02-01 22:55:28 +01:00
's.rowid' => 'Numeric' , 's.nom' => 'Text' , 's.code_client' => 'Text' , 's.address' => 'Text' , 's.zip' => 'Text' , 's.town' => 'Text' , 'c.code' => 'Text' , 'cd.nom' => 'Text' , 's.phone' => 'Text' , 's.siren' => 'Text' ,
2018-05-27 15:04:12 +02:00
's.siret' => 'Text' , 's.ape' => 'Text' , 's.idprof4' => 'Text' , 's.code_compta' => 'Text' , 's.code_compta_fournisseur' => 'Text' , 's.tva_intra' => 'Text' ,
2018-12-02 14:31:45 +01:00
'f.rowid' => " Numeric " , 'f.ref' => " Text " , 'f.ref_client' => 'Text' , 'f.type' => " Numeric " , 'f.datec' => " Date " , 'f.datef' => " Date " , 'f.date_lim_reglement' => " Date " ,
2020-01-29 17:27:31 +01:00
'f.total' => " Numeric " , 'f.total_ttc' => " Numeric " , 'f.tva' => " Numeric " , 'f.localtax1' => 'Numeric' , 'f.localtax2' => 'Numeric' , 'f.paye' => " Boolean " , 'f.fk_statut' => 'Status' , 'f.close_code' => 'Text' , 'f.close_note' => 'Text' ,
'none.rest' => 'NumericCompute' ,
2018-05-27 15:04:12 +02:00
'f.note_private' => " Text " , 'f.note_public' => " Text " , 'f.fk_user_author' => 'Numeric' , 'uc.login' => 'Text' , 'f.fk_user_valid' => 'Numeric' , 'uv.login' => 'Text' ,
2020-01-29 17:27:31 +01:00
'pj.ref' => 'Text' , 'pj.title' => 'Text' , 'p.amount' => 'Numeric' , 'pf.amount' => 'Numeric' , 'p.rowid' => 'Numeric' , 'p.ref' => 'Text' , 'p.title' => 'Text' , 'p.datep' => 'Date' , 'p.num_paiement' => 'Numeric' ,
2018-05-27 15:04:12 +02:00
'p.fk_bank' => 'Numeric' , 'p.note' => 'Text' , 'pt.code' => 'Text' , 'pt.libelle' => 'text' , 'ba.ref' => 'Text'
);
2020-04-10 10:59:32 +02:00
if ( ! empty ( $conf -> cashdesk -> enabled ) || ! empty ( $conf -> takepos -> enabled ) || ! empty ( $conf -> global -> INVOICE_SHOW_POS ))
2019-06-21 13:25:40 +02:00
{
2020-04-10 10:59:32 +02:00
$this -> export_fields_array [ $r ][ 'f.module_source' ] = 'POSModule' ;
$this -> export_fields_array [ $r ][ 'f.pos_source' ] = 'POSTerminal' ;
2019-06-21 13:25:40 +02:00
}
2018-05-27 15:04:12 +02:00
$this -> export_entities_array [ $r ] = array (
2019-06-21 13:25:40 +02:00
's.rowid' => " company " , 's.nom' => 'company' , 's.code_client' => 'company' , 's.address' => 'company' , 's.zip' => 'company' , 's.town' => 'company' , 'c.code' => 'company' , 'cd.nom' => 'company' , 's.phone' => 'company' ,
2018-05-27 15:04:12 +02:00
's.siren' => 'company' , 's.siret' => 'company' , 's.ape' => 'company' , 's.idprof4' => 'company' , 's.code_compta' => 'company' , 's.code_compta_fournisseur' => 'company' ,
2020-01-29 17:27:31 +01:00
's.tva_intra' => 'company' , 'pj.ref' => 'project' , 'pj.title' => 'project' , 'p.rowid' => 'payment' , 'p.ref' => 'payment' , 'p.amount' => 'payment' , 'pf.amount' => 'payment' , 'p.datep' => 'payment' ,
2018-05-27 15:04:12 +02:00
'p.num_paiement' => 'payment' , 'pt.code' => 'payment' , 'pt.libelle' => 'payment' , 'p.note' => 'payment' , 'f.fk_user_author' => 'user' , 'uc.login' => 'user' ,
'f.fk_user_valid' => 'user' , 'uv.login' => 'user' , 'p.fk_bank' => 'account' , 'ba.ref' => 'account'
);
2017-09-04 12:42:51 +02:00
$this -> export_special_array [ $r ] = array ( 'none.rest' => 'getRemainToPay' );
2020-01-29 17:27:31 +01:00
$this -> export_dependencies_array [ $r ] = array ( 'payment' => 'p.rowid' , 'none.rest' => array ( 'f.rowid' , 'f.total_ttc' , 'f.close_code' )); // To add unique key if we ask a field of a child to avoid the DISTINCT to discard them, or just to have field we need
2017-09-04 12:42:51 +02:00
$keyforselect = 'facture' ; $keyforelement = 'invoice' ; $keyforaliasextra = 'extra' ;
2015-12-17 20:40:33 +01:00
include DOL_DOCUMENT_ROOT . '/core/extrafieldsinexport.inc.php' ;
2020-04-10 10:59:32 +02:00
$this -> export_sql_start [ $r ] = 'SELECT DISTINCT ' ;
$this -> export_sql_end [ $r ] = ' FROM ' . MAIN_DB_PREFIX . 'societe as s' ;
if ( 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' ;
$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 ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'c_departements as cd on s.fk_departement = cd.rowid,' ;
$this -> export_sql_end [ $r ] .= ' ' . MAIN_DB_PREFIX . 'facture as f' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'projet as pj ON f.fk_projet = pj.rowid' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'user as uc ON f.fk_user_author = uc.rowid' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'user as uv ON f.fk_user_valid = uv.rowid' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'facture_extrafields as extra ON f.rowid = extra.fk_object' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'paiement_facture as pf ON pf.fk_facture = f.rowid' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'paiement as p ON pf.fk_paiement = p.rowid' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'c_paiement as pt ON pt.id = p.fk_paiement' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'bank as b ON b.rowid = p.fk_bank' ;
$this -> export_sql_end [ $r ] .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'bank_account as ba ON ba.rowid = b.fk_account' ;
$this -> export_sql_end [ $r ] .= ' WHERE f.fk_soc = s.rowid' ;
$this -> export_sql_end [ $r ] .= ' AND f.entity IN (' . getEntity ( 'invoice' ) . ')' ;
if ( isset ( $user ) && empty ( $user -> rights -> societe -> client -> voir )) $this -> export_sql_end [ $r ] .= ' AND sc.fk_user = ' . $user -> id ;
2009-05-04 13:40:00 +02:00
$r ++ ;
}
/**
2019-02-26 21:13:07 +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
2012-01-04 21:23:50 +01:00
*
2019-02-26 21:13:07 +01:00
* @ param string $options Options when enabling module ( '' , 'newboxdefonly' , 'noboxes' )
* @ return int 1 if OK , 0 if KO
2009-05-04 13:40:00 +02:00
*/
2019-02-26 21:13:07 +01:00
public function init ( $options = '' )
2009-05-04 13:40:00 +02:00
{
2017-09-04 12:42:51 +02:00
global $conf , $langs ;
2009-05-04 13:40:00 +02:00
2010-04-28 17:31:49 +02:00
// Remove permissions and default values
2010-10-27 22:53:23 +02:00
$this -> remove ( $options );
2009-05-04 13:40:00 +02:00
2012-08-01 14:42:24 +02:00
//ODT template
2017-09-04 12:42:51 +02:00
$src = DOL_DOCUMENT_ROOT . '/install/doctemplates/invoices/template_invoice.odt' ;
$dirodt = DOL_DATA_ROOT . '/doctemplates/invoices' ;
$dest = $dirodt . '/template_invoice.odt' ;
2012-08-01 14:42:24 +02:00
2017-09-04 12:42:51 +02:00
if ( file_exists ( $src ) && ! file_exists ( $dest ))
2012-02-05 19:37:52 +01:00
{
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php' ;
2012-08-01 14:42:24 +02:00
dol_mkdir ( $dirodt );
2017-09-04 12:42:51 +02:00
$result = dol_copy ( $src , $dest , 0 , 0 );
2012-08-01 14:42:24 +02:00
if ( $result < 0 )
{
$langs -> load ( " errors " );
2017-09-04 12:42:51 +02:00
$this -> error = $langs -> trans ( 'ErrorFailToCopyFile' , $src , $dest );
2012-08-01 14:42:24 +02:00
return 0 ;
}
2012-02-05 19:37:52 +01:00
}
2010-04-28 17:31:49 +02:00
2009-05-04 13:40:00 +02:00
$sql = array (
2017-05-18 12:40:20 +02:00
" DELETE FROM " . MAIN_DB_PREFIX . " document_model WHERE nom = ' " . $this -> db -> escape ( $this -> const [ 1 ][ 2 ]) . " ' AND type = 'invoice' AND entity = " . $conf -> entity ,
" INSERT INTO " . MAIN_DB_PREFIX . " document_model (nom, type, entity) VALUES(' " . $this -> db -> escape ( $this -> const [ 1 ][ 2 ]) . " ','invoice', " . $conf -> entity . " ) "
2009-05-04 13:40:00 +02:00
);
2009-01-15 00:47:43 +01:00
2017-09-04 12:42:51 +02:00
return $this -> _init ( $sql , $options );
2009-05-04 13:40:00 +02:00
}
2003-04-12 17:56:59 +02:00
}