2012-06-09 19:16:31 +02:00
< ? php
/* Copyright ( C ) 2002 - 2006 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
* Copyright ( C ) 2004 Eric Seigne < eric . seigne @ ryxeo . com >
2016-02-09 11:56:12 +01:00
* Copyright ( C ) 2004 - 2016 Laurent Destailleur < eldy @ users . sourceforge . net >
2012-06-09 19:16:31 +02:00
* Copyright ( C ) 2005 Marc Barilley / Ocebo < marc @ ocebo . com >
2018-10-27 14:43:12 +02:00
* Copyright ( C ) 2005 - 2015 Regis Houssin < regis . houssin @ inodbox . com >
2012-06-09 19:16:31 +02:00
* Copyright ( C ) 2006 Andre Cianfarani < acianfa @ free . fr >
* Copyright ( C ) 2010 - 2012 Juanjo Menent < jmenent @ 2 byte . es >
* Copyright ( C ) 2012 Christophe Battarel < christophe . battarel @ altairis . fr >
2017-04-13 08:30:48 +02:00
* Copyright ( C ) 2013 Florian Henry < florian . henry @ open - concept . pro >
2013-09-10 16:43:06 +02:00
* Copyright ( C ) 2013 Cédric Salvador < csalvador @ gpcsolutions . fr >
2017-04-13 08:30:48 +02:00
* Copyright ( C ) 2015 Jean - François Ferry < jfefe @ aternatik . fr >
* Copyright ( C ) 2015 - 2016 Ferran Marcet < fmarcet @ 2 byte . es >
* Copyright ( C ) 2017 Josep Lluís Amador < joseplluis @ lliuretic . cat >
2018-12-01 23:44:24 +01:00
* Copyright ( C ) 2018 Charlene Benke < charlie @ patas - monkey . com >
2012-06-09 19:16:31 +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
2012-06-09 19:16:31 +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 />.
2012-06-09 19:16:31 +02:00
*/
/**
2012-06-11 19:28:04 +02:00
* \file htdocs / compta / facture / list . php
2012-06-09 19:16:31 +02:00
* \ingroup facture
2016-06-21 15:16:33 +02:00
* \brief List of customer invoices
2012-06-09 19:16:31 +02:00
*/
2012-08-22 23:24:21 +02:00
require '../../main.inc.php' ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formother.class.php' ;
2016-04-08 01:00:02 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formcompany.class.php' ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/modules/facture/modules_facture.php' ;
2016-06-21 15:16:33 +02:00
require_once DOL_DOCUMENT_ROOT . '/compta/bank/class/account.class.php' ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/compta/facture/class/facture.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/discount.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/compta/paiement/class/paiement.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/invoice.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php' ;
2016-04-08 02:39:57 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/company.lib.php' ;
2018-02-12 14:02:51 +01:00
require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php' ;
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> commande -> enabled )) require_once DOL_DOCUMENT_ROOT . '/commande/class/commande.class.php' ;
2018-02-12 14:02:51 +01:00
2018-05-27 09:27:09 +02:00
// Load translation files required by the page
2018-12-11 13:25:09 +01:00
$langs -> loadLangs ( array ( 'bills' , 'companies' , 'products' , 'categories' ));
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$sall = trim (( GETPOST ( 'search_all' , 'alphanohtml' ) != '' ) ? GETPOST ( 'search_all' , 'alphanohtml' ) : GETPOST ( 'sall' , 'alphanohtml' ));
$projectid = ( GETPOST ( 'projectid' ) ? GETPOST ( 'projectid' , 'int' ) : 0 );
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$id = ( GETPOST ( 'id' , 'int' ) ? GETPOST ( 'id' , 'int' ) : GETPOST ( 'facid' , 'int' )); // For backward compatibility
$ref = GETPOST ( 'ref' , 'alpha' );
$socid = GETPOST ( 'socid' , 'int' );
2016-07-25 19:43:07 +02:00
2019-11-12 09:46:08 +01:00
$action = GETPOST ( 'action' , 'alpha' );
$massaction = GETPOST ( 'massaction' , 'alpha' );
$show_files = GETPOST ( 'show_files' , 'int' );
$confirm = GETPOST ( 'confirm' , 'alpha' );
2016-07-25 19:43:07 +02:00
$toselect = GETPOST ( 'toselect' , 'array' );
2019-11-12 09:46:08 +01:00
$contextpage = GETPOST ( 'contextpage' , 'aZ' ) ? GETPOST ( 'contextpage' , 'aZ' ) : 'invoicelist' ;
2019-01-27 11:55:16 +01:00
2019-04-28 18:12:33 +02:00
if ( $contextpage == 'poslist' )
{
$_GET [ 'optioncss' ] = 'print' ;
}
2019-11-12 09:46:08 +01:00
$lineid = GETPOST ( 'lineid' , 'int' );
$userid = GETPOST ( 'userid' , 'int' );
$search_product_category = GETPOST ( 'search_product_category' , 'int' );
$search_ref = GETPOST ( 'sf_ref' ) ? GETPOST ( 'sf_ref' , 'alpha' ) : GETPOST ( 'search_ref' , 'alpha' );
$search_refcustomer = GETPOST ( 'search_refcustomer' , 'alpha' );
$search_type = GETPOST ( 'search_type' , 'int' );
$search_project_ref = GETPOST ( 'search_project_ref' , 'alpha' );
$search_project = GETPOST ( 'search_project' , 'alpha' );
$search_societe = GETPOST ( 'search_societe' , 'alpha' );
$search_montant_ht = GETPOST ( 'search_montant_ht' , 'alpha' );
$search_montant_vat = GETPOST ( 'search_montant_vat' , 'alpha' );
$search_montant_localtax1 = GETPOST ( 'search_montant_localtax1' , 'alpha' );
$search_montant_localtax2 = GETPOST ( 'search_montant_localtax2' , 'alpha' );
$search_montant_ttc = GETPOST ( 'search_montant_ttc' , 'alpha' );
$search_status = GETPOST ( 'search_status' , 'intcomma' );
$search_paymentmode = GETPOST ( 'search_paymentmode' , 'int' );
$search_paymentterms = GETPOST ( 'search_paymentterms' , 'int' );
$search_module_source = GETPOST ( 'search_module_source' , 'alpha' );
$search_pos_source = GETPOST ( 'search_pos_source' , 'alpha' );
$search_town = GETPOST ( 'search_town' , 'alpha' );
$search_zip = GETPOST ( 'search_zip' , 'alpha' );
$search_state = trim ( GETPOST ( " search_state " ));
$search_country = GETPOST ( " search_country " , 'int' );
$search_type_thirdparty = GETPOST ( " search_type_thirdparty " , 'int' );
2019-01-27 11:55:16 +01:00
$search_user = GETPOST ( 'search_user' , 'int' );
$search_sale = GETPOST ( 'search_sale' , 'int' );
2019-11-12 09:46:08 +01:00
$search_day = GETPOST ( 'search_day' , 'int' );
$search_month = GETPOST ( 'search_month' , 'int' );
2019-01-27 11:55:16 +01:00
$search_year = GETPOST ( 'search_year' , 'int' );
$search_day_lim = GETPOST ( 'search_day_lim' , 'int' );
2019-11-12 09:46:08 +01:00
$search_month_lim = GETPOST ( 'search_month_lim' , 'int' );
2019-01-27 11:55:16 +01:00
$search_year_lim = GETPOST ( 'search_year_lim' , 'int' );
2019-11-12 09:46:08 +01:00
$search_categ_cus = trim ( GETPOST ( " search_categ_cus " , 'int' ));
$search_btn = GETPOST ( 'button_search' , 'alpha' );
$search_remove_btn = GETPOST ( 'button_removefilter' , 'alpha' );
2016-06-21 15:16:33 +02:00
2018-03-09 17:23:43 +01:00
$option = GETPOST ( 'search_option' );
2017-09-26 11:55:19 +02:00
if ( $option == 'late' ) {
$search_status = '1' ;
}
2019-11-12 09:46:08 +01:00
$filtre = GETPOST ( 'filtre' , 'alpha' );
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$limit = GETPOST ( 'limit' , 'int' ) ? GETPOST ( 'limit' , 'int' ) : $conf -> liste_limit ;
2019-01-27 11:55:16 +01:00
$sortfield = GETPOST ( " sortfield " , 'alpha' );
$sortorder = GETPOST ( " sortorder " , 'alpha' );
$page = GETPOST ( " page " , 'int' );
2018-07-11 15:18:30 +02:00
if ( empty ( $page ) || $page == - 1 || ! empty ( $search_btn ) || ! empty ( $search_remove_btn ) || ( empty ( $toselect ) && $massaction === '0' )) { $page = 0 ; } // If $page is not defined, or '' or -1
2015-12-16 19:38:40 +01:00
$offset = $limit * $page ;
2019-11-12 09:46:08 +01:00
if ( ! $sortorder && ! empty ( $conf -> global -> INVOICE_DEFAULT_UNPAYED_SORT_ORDER ) && $search_status == '1' ) $sortorder = $conf -> global -> INVOICE_DEFAULT_UNPAYED_SORT_ORDER ;
if ( ! $sortorder ) $sortorder = 'DESC' ;
if ( ! $sortfield ) $sortfield = 'f.datef' ;
2012-06-09 19:16:31 +02:00
$pageprev = $page - 1 ;
$pagenext = $page + 1 ;
// Security check
2019-11-12 09:46:08 +01:00
$fieldid = ( ! empty ( $ref ) ? 'ref' : 'rowid' );
if ( ! empty ( $user -> socid )) $socid = $user -> socid ;
2019-01-27 11:55:16 +01:00
$result = restrictedArea ( $user , 'facture' , $id , '' , '' , 'fk_soc' , $fieldid );
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$diroutputmassaction = $conf -> facture -> dir_output . '/temp/massgeneration/' . $user -> id ;
2016-02-08 18:04:42 +01:00
2019-11-12 09:46:08 +01:00
$object = new Facture ( $db );
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$now = dol_now ();
2016-04-08 01:00:02 +02:00
2017-06-10 12:56:28 +02:00
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
2018-03-31 18:48:27 +02:00
$object = new Facture ( $db );
2013-05-28 18:35:15 +02:00
$hookmanager -> initHooks ( array ( 'invoicelist' ));
2016-04-08 01:00:02 +02:00
$extrafields = new ExtraFields ( $db );
2012-06-09 19:16:31 +02:00
2016-04-08 01:00:02 +02:00
// fetch optionals attributes and labels
2019-10-06 14:41:52 +02:00
$extrafields -> fetch_name_optionals_label ( 'facture' );
2019-11-12 09:46:08 +01:00
$search_array_options = $extrafields -> getOptionalsFromPost ( $object -> table_element , '' , 'search_' );
2012-06-09 19:16:31 +02:00
2015-10-17 02:41:09 +02:00
// List of fields to search into when doing a "search in all"
$fieldstosearchall = array (
2018-12-02 14:31:45 +01:00
'f.ref' => 'Ref' ,
2017-10-13 13:28:26 +02:00
'f.ref_client' => 'RefCustomer' ,
'pd.description' => 'Description' ,
's.nom' => " ThirdParty " ,
'f.note_public' => 'NotePublic' ,
2015-10-17 02:41:09 +02:00
);
2019-11-12 09:46:08 +01:00
if ( empty ( $user -> socid )) $fieldstosearchall [ " f.note_private " ] = " NotePrivate " ;
2015-10-17 02:41:09 +02:00
2019-11-12 09:46:08 +01:00
$checkedtypetiers = 0 ;
$arrayfields = array (
2019-10-10 15:10:41 +02:00
'f.ref' => array ( 'label' => " Ref " , 'checked' => 1 , 'position' => 5 ),
'f.ref_client' => array ( 'label' => " RefCustomer " , 'checked' => 1 , 'position' => 10 ),
'f.type' => array ( 'label' => " Type " , 'checked' => 0 , 'position' => 15 ),
'f.date' => array ( 'label' => " DateInvoice " , 'checked' => 1 , 'position' => 20 ),
'f.date_lim_reglement' => array ( 'label' => " DateDue " , 'checked' => 1 , 'position' => 25 ),
'f.date_closing' => array ( 'label' => " DateClosing " , 'checked' => 0 , 'position' => 30 ),
2019-11-12 09:46:08 +01:00
'p.ref' => array ( 'label' => " ProjectRef " , 'checked' => 1 , 'enabled' => ( empty ( $conf -> projet -> enabled ) ? 0 : 1 ), 'position' => 40 ),
'p.title' => array ( 'label' => " ProjectLabel " , 'checked' => 0 , 'enabled' => ( empty ( $conf -> projet -> enabled ) ? 0 : 1 ), 'position' => 40 ),
2019-10-10 15:10:41 +02:00
's.nom' => array ( 'label' => " ThirdParty " , 'checked' => 1 , 'position' => 50 ),
's.town' => array ( 'label' => " Town " , 'checked' => 1 , 'position' => 55 ),
's.zip' => array ( 'label' => " Zip " , 'checked' => 1 , 'position' => 60 ),
'state.nom' => array ( 'label' => " StateShort " , 'checked' => 0 , 'position' => 65 ),
'country.code_iso' => array ( 'label' => " Country " , 'checked' => 0 , 'position' => 70 ),
'typent.code' => array ( 'label' => " ThirdPartyType " , 'checked' => $checkedtypetiers , 'position' => 75 ),
'f.fk_mode_reglement' => array ( 'label' => " PaymentMode " , 'checked' => 1 , 'position' => 80 ),
'f.fk_cond_reglement' => array ( 'label' => " PaymentConditionsShort " , 'checked' => 1 , 'position' => 85 ),
2019-10-17 15:56:50 +02:00
'f.module_source' => array ( 'label' => " Module " , 'checked' => ( $contextpage == 'poslist' ? 1 : 0 ), 'enabled' => ( $conf -> cashdesk -> enabled || $conf -> takepos -> enabled || $conf -> global -> INVOICE_SHOW_POS ), 'position' => 90 ),
'f.pos_source' => array ( 'label' => " Terminal " , 'checked' => ( $contextpage == 'poslist' ? 1 : 0 ), 'enabled' => ( $conf -> cashdesk -> enabled || $conf -> takepos -> enabled || $conf -> global -> INVOICE_SHOW_POS ), 'position' => 91 ),
2019-10-10 15:10:41 +02:00
'f.total_ht' => array ( 'label' => " AmountHT " , 'checked' => 1 , 'position' => 95 ),
'f.total_vat' => array ( 'label' => " AmountVAT " , 'checked' => 0 , 'position' => 100 ),
2019-11-12 09:46:08 +01:00
'f.total_localtax1' => array ( 'label' => $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ), 'checked' => 0 , 'enabled' => ( $mysoc -> localtax1_assuj == " 1 " ), 'position' => 110 ),
'f.total_localtax2' => array ( 'label' => $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ), 'checked' => 0 , 'enabled' => ( $mysoc -> localtax2_assuj == " 1 " ), 'position' => 120 ),
2019-10-10 15:10:41 +02:00
'f.total_ttc' => array ( 'label' => " AmountTTC " , 'checked' => 0 , 'position' => 130 ),
'dynamount_payed' => array ( 'label' => " Received " , 'checked' => 0 , 'position' => 140 ),
2019-11-12 09:46:08 +01:00
'rtp' => array ( 'label' => " Rest " , 'checked' => 0 , 'position' => 150 ), // Not enabled by default because slow
2018-09-14 01:29:03 +02:00
'f.datec' => array ( 'label' => " DateCreation " , 'checked' => 0 , 'position' => 500 ),
'f.tms' => array ( 'label' => " DateModificationShort " , 'checked' => 0 , 'position' => 500 ),
'f.fk_statut' => array ( 'label' => " Status " , 'checked' => 1 , 'position' => 1000 ),
2016-04-08 01:00:02 +02:00
);
2018-09-27 15:38:43 +02:00
2019-11-12 09:46:08 +01:00
if ( $conf -> global -> INVOICE_USE_SITUATION && $conf -> global -> INVOICE_USE_SITUATION_RETAINED_WARRANTY )
2018-09-27 15:38:43 +02:00
{
2019-10-10 15:10:41 +02:00
$arrayfields [ 'f.retained_warranty' ] = array ( 'label' => $langs -> trans ( " RetainedWarranty " ), 'checked' => 0 , 'position' => 86 );
2018-09-27 15:38:43 +02:00
}
2016-04-08 01:00:02 +02:00
// Extra fields
2019-09-02 03:58:00 +02:00
if ( is_array ( $extrafields -> attributes [ $object -> table_element ][ 'label' ]) && count ( $extrafields -> attributes [ $object -> table_element ][ 'label' ]) > 0 )
2016-04-08 01:00:02 +02:00
{
2019-11-12 09:46:08 +01:00
foreach ( $extrafields -> attributes [ $object -> table_element ][ 'label' ] as $key => $val )
2017-10-13 13:28:26 +02:00
{
2019-11-12 09:46:08 +01:00
if ( ! empty ( $extrafields -> attributes [ $object -> table_element ][ 'list' ][ $key ]))
$arrayfields [ " ef. " . $key ] = array ( 'label' => $extrafields -> attributes [ $object -> table_element ][ 'label' ][ $key ], 'checked' => (( $extrafields -> attributes [ $object -> table_element ][ 'list' ][ $key ] < 0 ) ? 0 : 1 ), 'position' => $extrafields -> attributes [ $object -> table_element ][ 'pos' ][ $key ], 'enabled' => ( abs ( $extrafields -> attributes [ $object -> table_element ][ 'list' ][ $key ]) != 3 && $extrafields -> attributes [ $object -> table_element ][ 'perms' ][ $key ]));
2017-10-13 13:28:26 +02:00
}
2016-04-08 01:00:02 +02:00
}
2019-09-02 03:58:00 +02:00
$object -> fields = dol_sort_array ( $object -> fields , 'position' );
$arrayfields = dol_sort_array ( $arrayfields , 'position' );
2016-04-08 01:00:02 +02:00
2012-06-09 19:16:31 +02:00
/*
* Actions
*/
2019-11-12 09:46:08 +01:00
if ( GETPOST ( 'cancel' , 'alpha' )) { $action = 'list' ; $massaction = '' ; }
if ( ! GETPOST ( 'confirmmassaction' , 'alpha' ) && $massaction != 'presend' && $massaction != 'confirm_presend' ) { $massaction = '' ; }
2016-07-25 21:50:41 +02:00
2019-11-12 09:46:08 +01:00
$parameters = array ( 'socid' => $socid );
$reshook = $hookmanager -> executeHooks ( 'doActions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by some hooks
2014-09-28 03:41:32 +02:00
if ( $reshook < 0 ) setEventMessages ( $hookmanager -> error , $hookmanager -> errors , 'errors' );
2016-04-08 01:00:02 +02:00
include DOL_DOCUMENT_ROOT . '/core/actions_changeselectedfields.inc.php' ;
// Do we click on purge search criteria ?
2019-01-27 11:55:16 +01:00
if ( GETPOST ( 'button_removefilter_x' , 'alpha' ) || GETPOST ( 'button_removefilter' , 'alpha' ) || GETPOST ( 'button_removefilter.x' , 'alpha' )) // All tests are required to be compatible with all browsers
2016-04-08 01:00:02 +02:00
{
2019-11-12 09:46:08 +01:00
$search_user = '' ;
$search_sale = '' ;
$search_product_category = '' ;
$search_ref = '' ;
$search_refcustomer = '' ;
$search_type = '' ;
$search_project_ref = '' ;
$search_project = '' ;
$search_societe = '' ;
$search_montant_ht = '' ;
$search_montant_vat = '' ;
$search_montant_localtax1 = '' ;
$search_montant_localtax2 = '' ;
$search_montant_ttc = '' ;
$search_status = '' ;
$search_paymentmode = '' ;
$search_paymentterms = '' ;
$search_module_source = '' ;
$search_pos_source = '' ;
$search_town = '' ;
$search_zip = " " ;
$search_state = " " ;
$search_type = '' ;
$search_country = '' ;
$search_type_thirdparty = '' ;
$search_day = '' ;
$search_year = '' ;
$search_month = '' ;
$option = '' ;
$filter = '' ;
$search_day_lim = '' ;
$search_year_lim = '' ;
$search_month_lim = '' ;
$toselect = '' ;
$search_array_options = array ();
$search_categ_cus = 0 ;
2016-04-08 01:00:02 +02:00
}
2015-12-02 01:38:15 +01:00
if ( empty ( $reshook ))
{
2019-11-12 09:46:08 +01:00
$objectclass = 'Facture' ;
$objectlabel = 'Invoices' ;
2019-11-04 15:33:49 +01:00
$permissiontoread = $user -> rights -> facture -> lire ;
$permissiontoadd = $user -> rights -> facture -> creer ;
$permissiontodelete = $user -> rights -> facture -> supprimer ;
2016-07-25 21:50:41 +02:00
$uploaddir = $conf -> facture -> dir_output ;
include DOL_DOCUMENT_ROOT . '/core/actions_massactions.inc.php' ;
2015-12-02 01:38:15 +01:00
}
2012-06-09 19:16:31 +02:00
2017-01-27 01:21:20 +01:00
if ( $massaction == 'withdrawrequest' )
{
2017-10-13 13:28:26 +02:00
$langs -> load ( " withdrawals " );
if ( ! $user -> rights -> prelevement -> bons -> creer )
{
$error ++ ;
setEventMessages ( $langs -> trans ( " NotEnoughPermissions " ), null , 'errors' );
}
else
{
//Checking error
$error = 0 ;
2019-11-12 09:46:08 +01:00
$arrayofselected = is_array ( $toselect ) ? $toselect : array ();
$listofbills = array ();
foreach ( $arrayofselected as $toselectid )
2017-10-13 13:28:26 +02:00
{
2019-11-12 09:46:08 +01:00
$objecttmp = new Facture ( $db );
$result = $objecttmp -> fetch ( $toselectid );
2017-10-13 13:28:26 +02:00
if ( $result > 0 )
{
2019-11-12 09:46:08 +01:00
$totalpaye = $objecttmp -> getSommePaiement ();
2017-10-13 13:28:26 +02:00
$totalcreditnotes = $objecttmp -> getSumCreditNotesUsed ();
$totaldeposits = $objecttmp -> getSumDepositsUsed ();
2019-01-27 11:55:16 +01:00
$objecttmp -> resteapayer = price2num ( $objecttmp -> total_ttc - $totalpaye - $totalcreditnotes - $totaldeposits , 'MT' );
2019-11-12 09:46:08 +01:00
if ( $objecttmp -> paye || $objecttmp -> resteapayer == 0 ) {
2017-10-13 13:28:26 +02:00
$error ++ ;
setEventMessages ( $objecttmp -> ref . ' ' . $langs -> trans ( " AlreadyPaid " ), $objecttmp -> errors , 'errors' );
2019-11-12 09:46:08 +01:00
} elseif ( $objecttmp -> resteapayer < 0 ) {
2017-10-13 13:28:26 +02:00
$error ++ ;
setEventMessages ( $objecttmp -> ref . ' ' . $langs -> trans ( " AmountMustBePositive " ), $objecttmp -> errors , 'errors' );
}
2019-11-12 09:46:08 +01:00
if ( ! ( $objecttmp -> statut > Facture :: STATUS_DRAFT )) {
2017-10-13 13:28:26 +02:00
$error ++ ;
setEventMessages ( $objecttmp -> ref . ' ' . $langs -> trans ( " Draft " ), $objecttmp -> errors , 'errors' );
}
$rsql = " SELECT pfd.rowid, pfd.traite, pfd.date_demande as date_demande " ;
$rsql .= " , pfd.date_traite as date_traite " ;
$rsql .= " , pfd.amount " ;
$rsql .= " , u.rowid as user_id, u.lastname, u.firstname, u.login " ;
$rsql .= " FROM " . MAIN_DB_PREFIX . " prelevement_facture_demande as pfd " ;
$rsql .= " , " . MAIN_DB_PREFIX . " user as u " ;
$rsql .= " WHERE fk_facture = " . $objecttmp -> id ;
$rsql .= " AND pfd.fk_user_demande = u.rowid " ;
$rsql .= " AND pfd.traite = 0 " ;
$rsql .= " ORDER BY pfd.date_demande DESC " ;
$result_sql = $db -> query ( $rsql );
if ( $result_sql )
{
$numprlv = $db -> num_rows ( $result_sql );
}
2019-11-12 09:46:08 +01:00
if ( $numprlv > 0 ) {
2017-10-13 13:28:26 +02:00
$error ++ ;
2018-08-03 09:57:29 +02:00
setEventMessages ( $objecttmp -> ref . ' ' . $langs -> trans ( " RequestAlreadyDone " ), $objecttmp -> errors , 'warnings' );
2017-10-13 13:28:26 +02:00
}
2019-11-12 09:46:08 +01:00
elseif ( ! empty ( $objecttmp -> mode_reglement_code ) && $objecttmp -> mode_reglement_code != 'PRE' ) {
2017-10-13 13:28:26 +02:00
$error ++ ;
setEventMessages ( $objecttmp -> ref . ' ' . $langs -> trans ( " BadPaymentMethod " ), $objecttmp -> errors , 'errors' );
}
2018-08-03 09:57:29 +02:00
else {
2019-11-12 09:46:08 +01:00
$listofbills [] = $objecttmp ; // $listofbills will only contains invoices with good payment method and no request already done
2018-08-03 09:57:29 +02:00
}
2017-10-13 13:28:26 +02:00
}
}
2018-08-03 09:57:29 +02:00
//Massive withdraw request for request with no errors
2019-11-12 09:46:08 +01:00
if ( ! empty ( $listofbills ))
2017-10-13 13:28:26 +02:00
{
2019-11-12 09:46:08 +01:00
$nbwithdrawrequestok = 0 ;
foreach ( $listofbills as $aBill )
2017-10-13 13:28:26 +02:00
{
$db -> begin ();
$result = $aBill -> demande_prelevement ( $user , $aBill -> resteapayer );
if ( $result > 0 )
{
$db -> commit ();
$nbwithdrawrequestok ++ ;
}
else
{
$db -> rollback ();
setEventMessages ( $aBill -> error , $aBill -> errors , 'errors' );
}
}
if ( $nbwithdrawrequestok > 0 )
{
setEventMessages ( $langs -> trans ( " WithdrawRequestsDone " , $nbwithdrawrequestok ), null , 'mesgs' );
}
}
}
2017-01-27 01:21:20 +01:00
}
2017-06-13 18:50:31 +02:00
2012-06-09 19:16:31 +02:00
/*
* View
*/
$form = new Form ( $db );
2012-06-23 20:39:20 +02:00
$formother = new FormOther ( $db );
2012-06-09 19:16:31 +02:00
$formfile = new FormFile ( $db );
2019-11-12 09:46:08 +01:00
$bankaccountstatic = new Account ( $db );
$facturestatic = new Facture ( $db );
$formcompany = new FormCompany ( $db );
$thirdpartystatic = new Societe ( $db );
2012-06-09 19:16:31 +02:00
2015-07-02 22:07:13 +02:00
$sql = 'SELECT' ;
if ( $sall || $search_product_category > 0 ) $sql = 'SELECT DISTINCT' ;
2019-11-12 09:46:08 +01:00
$sql .= ' f.rowid as id, f.ref, f.ref_client, f.type, f.note_private, f.note_public, f.increment, f.fk_mode_reglement, f.fk_cond_reglement, f.total as total_ht, f.tva as total_vat, f.total_ttc,' ;
$sql .= ' f.localtax1 as total_localtax1, f.localtax2 as total_localtax2,' ;
$sql .= ' f.datef as df, f.date_lim_reglement as datelimite, f.module_source, f.pos_source,' ;
2020-01-29 17:27:31 +01:00
$sql .= ' f.paye as paye, f.fk_statut, f.close_code,' ;
2019-11-12 09:46:08 +01:00
$sql .= ' f.datec as date_creation, f.tms as date_update, f.date_closing as date_closing,' ;
$sql .= ' f.retained_warranty, f.retained_warranty_date_limit, f.situation_final, f.situation_cycle_ref, f.situation_counter,' ;
$sql .= ' s.rowid as socid, s.nom as name, s.email, s.town, s.zip, s.fk_pays, s.client, s.fournisseur, s.code_client, s.code_fournisseur, s.code_compta as code_compta_client, s.code_compta_fournisseur,' ;
$sql .= " typent.code as typent_code, " ;
$sql .= " state.code_departement as state_code, state.nom as state_name, " ;
$sql .= " country.code as country_code, " ;
$sql .= " p.rowid as project_id, p.ref as project_ref, p.title as project_label " ;
2016-11-30 15:19:16 +01:00
// We need dynamount_payed to be able to sort on status (value is surely wrong because we can count several lines several times due to other left join or link with contacts. But what we need is just 0 or > 0)
// TODO Better solution to be able to sort on already payed or remain to pay is to store amount_payed in a denormalized field.
2019-11-12 09:46:08 +01:00
if ( ! $sall ) $sql .= ', SUM(pf.amount) as dynamount_payed' ;
2018-05-02 15:01:32 +02:00
if ( $search_categ_cus ) $sql .= " , cc.fk_categorie, cc.fk_soc " ;
2016-04-08 01:00:02 +02:00
// Add fields from extrafields
2019-11-12 09:46:08 +01:00
if ( ! empty ( $extrafields -> attributes [ $object -> table_element ][ 'label' ])) {
foreach ( $extrafields -> attributes [ $object -> table_element ][ 'label' ] as $key => $val ) $sql .= ( $extrafields -> attributes [ $object -> table_element ][ 'type' ][ $key ] != 'separate' ? " , ef. " . $key . ' as options_' . $key : '' );
2019-10-26 18:13:20 +02:00
}
2016-04-08 01:00:02 +02:00
// Add fields from hooks
2019-11-12 09:46:08 +01:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'printFieldListSelect' , $parameters ); // Note that $action and $object may have been modified by hook
$sql .= $hookmanager -> resPrint ;
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'societe as s' ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " c_country as country on (country.rowid = s.fk_pays) " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " c_typent as typent on (typent.id = s.fk_typent) " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " c_departements as state on (state.rowid = s.fk_departement) " ;
if ( ! empty ( $search_categ_cus )) $sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . " categorie_societe as cc ON s.rowid = cc.fk_soc " ; // We'll need this table joined to the select in order to filter by categ
$sql .= ', ' . MAIN_DB_PREFIX . 'facture as f' ;
if ( is_array ( $extrafields -> attributes [ $object -> table_element ][ 'label' ]) && count ( $extrafields -> attributes [ $object -> table_element ][ 'label' ])) $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . $object -> table_element . " _extrafields as ef on (f.rowid = ef.fk_object) " ;
if ( ! $sall ) $sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'paiement_facture as pf ON pf.fk_facture = f.rowid' ;
if ( $sall || $search_product_category > 0 ) $sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'facturedet as pd ON f.rowid=pd.fk_facture' ;
if ( $search_product_category > 0 ) $sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'categorie_product as cp ON cp.fk_product=pd.fk_product' ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " projet as p ON p.rowid = f.fk_projet " ;
2012-06-23 20:39:20 +02:00
// We'll need this table joined to the select in order to filter by sale
2019-11-12 09:46:08 +01:00
if ( $search_sale > 0 || ( ! $user -> rights -> societe -> client -> voir && ! $socid )) $sql .= " , " . MAIN_DB_PREFIX . " societe_commerciaux as sc " ;
2012-06-09 19:16:31 +02:00
if ( $search_user > 0 )
{
2019-11-12 09:46:08 +01:00
$sql .= " , " . MAIN_DB_PREFIX . " element_contact as ec " ;
$sql .= " , " . MAIN_DB_PREFIX . " c_type_contact as tc " ;
2012-06-09 19:16:31 +02:00
}
2019-11-12 09:46:08 +01:00
$sql .= ' WHERE f.fk_soc = s.rowid' ;
$sql .= ' AND f.entity IN (' . getEntity ( 'invoice' ) . ')' ;
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . $user -> id ;
if ( $search_product_category > 0 ) $sql .= " AND cp.fk_categorie = " . $db -> escape ( $search_product_category );
if ( $socid > 0 ) $sql .= ' AND s.rowid = ' . $socid ;
2012-06-09 19:16:31 +02:00
if ( $userid )
{
2019-11-12 09:46:08 +01:00
if ( $userid == - 1 ) $sql .= ' AND f.fk_user_author IS NULL' ;
else $sql .= ' AND f.fk_user_author = ' . $userid ;
2012-06-09 19:16:31 +02:00
}
2012-07-23 21:40:34 +02:00
if ( $filtre )
2012-06-09 19:16:31 +02:00
{
2017-10-13 13:28:26 +02:00
$aFilter = explode ( ',' , $filtre );
foreach ( $aFilter as $filter )
{
$filt = explode ( ':' , $filter );
2019-11-12 09:46:08 +01:00
$sql .= ' AND ' . $db -> escape ( trim ( $filt [ 0 ])) . ' = ' . $db -> escape ( trim ( $filt [ 1 ]));
2017-10-13 13:28:26 +02:00
}
2012-06-09 19:16:31 +02:00
}
2018-12-02 14:31:45 +01:00
if ( $search_ref ) $sql .= natural_search ( 'f.ref' , $search_ref );
2015-06-30 14:32:17 +02:00
if ( $search_refcustomer ) $sql .= natural_search ( 'f.ref_client' , $search_refcustomer );
2019-11-12 09:46:08 +01:00
if ( $search_type != '' && $search_type != '-1' ) $sql .= " AND f.type IN ( " . $db -> escape ( $search_type ) . " ) " ;
2019-05-10 15:11:06 +02:00
if ( $search_project_ref ) $sql .= natural_search ( 'p.ref' , $search_project_ref );
if ( $search_project ) $sql .= natural_search ( 'p.title' , $search_project );
2015-06-30 14:32:17 +02:00
if ( $search_societe ) $sql .= natural_search ( 's.nom' , $search_societe );
2019-11-12 09:46:08 +01:00
if ( $search_town ) $sql .= natural_search ( 's.town' , $search_town );
if ( $search_zip ) $sql .= natural_search ( " s.zip " , $search_zip );
if ( $search_state ) $sql .= natural_search ( " state.nom " , $search_state );
2018-09-14 01:29:03 +02:00
if ( $search_country ) $sql .= " AND s.fk_pays IN ( " . $db -> escape ( $search_country ) . ')' ;
if ( $search_type_thirdparty ) $sql .= " AND s.fk_typent IN ( " . $db -> escape ( $search_type_thirdparty ) . ')' ;
2016-04-08 03:40:23 +02:00
if ( $search_company ) $sql .= natural_search ( 's.nom' , $search_company );
2019-11-12 09:46:08 +01:00
if ( $search_montant_ht != '' ) $sql .= natural_search ( 'f.total' , $search_montant_ht , 1 );
if ( $search_montant_vat != '' ) $sql .= natural_search ( 'f.tva' , $search_montant_vat , 1 );
if ( $search_montant_localtax1 != '' ) $sql .= natural_search ( 'f.localtax1' , $search_montant_localtax1 , 1 );
if ( $search_montant_localtax2 != '' ) $sql .= natural_search ( 'f.localtax2' , $search_montant_localtax2 , 1 );
if ( $search_montant_ttc != '' ) $sql .= natural_search ( 'f.total_ttc' , $search_montant_ttc , 1 );
if ( $search_categ_cus > 0 ) $sql .= " AND cc.fk_categorie = " . $db -> escape ( $search_categ_cus );
if ( $search_categ_cus == - 2 ) $sql .= " AND cc.fk_categorie IS NULL " ;
2018-07-06 16:06:15 +02:00
if ( $search_status != '-1' && $search_status != '' )
2016-07-05 18:33:13 +02:00
{
2018-06-26 11:18:31 +02:00
if ( is_numeric ( $search_status ) && $search_status >= 0 )
{
2019-11-12 09:46:08 +01:00
if ( $search_status == '0' ) $sql .= " AND f.fk_statut = 0 " ; // draft
if ( $search_status == '1' ) $sql .= " AND f.fk_statut = 1 " ; // unpayed
if ( $search_status == '2' ) $sql .= " AND f.fk_statut = 2 " ; // payed Not that some corrupted data may contains f.fk_statut = 1 AND f.paye = 1 (it means payed too but should not happend. If yes, reopen and reclassify billed)
if ( $search_status == '3' ) $sql .= " AND f.fk_statut = 3 " ; // abandonned
2018-06-26 11:18:31 +02:00
}
else
{
2019-11-12 09:46:08 +01:00
$sql .= " AND f.fk_statut IN ( " . $db -> escape ( $search_status ) . " ) " ; // When search_status is '1,2' for example
2018-06-26 11:18:31 +02:00
}
2016-07-05 18:33:13 +02:00
}
2019-10-10 15:10:41 +02:00
if ( $search_paymentmode > 0 ) $sql .= " AND f.fk_mode_reglement = " . $db -> escape ( $search_paymentmode );
2019-04-09 18:26:00 +02:00
if ( $search_paymentterms > 0 ) $sql .= " AND f.fk_cond_reglement = " . $db -> escape ( $search_paymentterms );
2019-10-10 15:10:41 +02:00
if ( $search_module_source ) $sql .= natural_search ( " f.module_source " , $search_module_source );
if ( $search_pos_source ) $sql .= natural_search ( " f.pos_source " , $search_pos_source );
2019-11-12 09:46:08 +01:00
$sql .= dolSqlDateFilter ( " f.datef " , $search_day , $search_month , $search_year );
$sql .= dolSqlDateFilter ( " f.date_lim_reglement " , $search_day_lim , $search_month_lim , $search_year_lim );
if ( $option == 'late' ) $sql .= " AND f.date_lim_reglement < ' " . $db -> idate ( dol_now () - $conf -> facture -> client -> warning_delay ) . " ' " ;
if ( $search_sale > 0 ) $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . ( int ) $search_sale ;
2012-06-09 19:16:31 +02:00
if ( $search_user > 0 )
{
2019-11-12 09:46:08 +01:00
$sql .= " AND ec.fk_c_type_contact = tc.rowid AND tc.element='facture' AND tc.source='internal' AND ec.element_id = f.rowid AND ec.fk_socpeople = " . $search_user ;
2012-06-09 19:16:31 +02:00
}
2016-04-08 01:00:02 +02:00
// Add where from extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_sql.tpl.php' ;
2016-04-08 01:00:02 +02:00
// Add where from hooks
2019-11-12 09:46:08 +01:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'printFieldListWhere' , $parameters ); // Note that $action and $object may have been modified by hook
$sql .= $hookmanager -> resPrint ;
2016-04-08 01:00:02 +02:00
2019-11-12 09:46:08 +01:00
if ( ! $sall )
2016-04-08 02:39:57 +02:00
{
2019-11-12 09:46:08 +01:00
$sql .= ' GROUP BY f.rowid, f.ref, ref_client, f.type, f.note_private, f.note_public, f.increment, f.fk_mode_reglement, f.fk_cond_reglement, f.total, f.tva, f.total_ttc,' ;
$sql .= ' f.localtax1, f.localtax2,' ;
$sql .= ' f.datef, f.date_lim_reglement, f.module_source, f.pos_source,' ;
2020-01-29 17:27:31 +01:00
$sql .= ' f.paye, f.fk_statut, f.close_code,' ;
2019-11-12 09:46:08 +01:00
$sql .= ' f.datec, f.tms, f.date_closing,' ;
$sql .= ' f.retained_warranty, f.retained_warranty_date_limit, f.situation_final, f.situation_cycle_ref, f.situation_counter,' ;
$sql .= ' s.rowid, s.nom, s.email, s.town, s.zip, s.fk_pays, s.client, s.fournisseur, s.code_client, s.code_fournisseur, s.code_compta, s.code_compta_fournisseur,' ;
$sql .= ' typent.code,' ;
$sql .= ' state.code_departement, state.nom,' ;
$sql .= ' country.code,' ;
$sql .= " p.rowid, p.ref, p.title " ;
2018-09-04 11:19:31 +02:00
if ( $search_categ_cus ) $sql .= " , cc.fk_categorie, cc.fk_soc " ;
// Add fields from extrafields
2019-11-12 09:46:08 +01:00
if ( ! empty ( $extrafields -> attributes [ $object -> table_element ][ 'label' ])) {
foreach ( $extrafields -> attributes [ $object -> table_element ][ 'label' ] as $key => $val ) $sql .= ( $extrafields -> attributes [ $object -> table_element ][ 'type' ][ $key ] != 'separate' ? " , ef. " . $key : '' );
2017-10-13 13:28:26 +02:00
}
2016-04-08 02:39:57 +02:00
}
else
{
2017-10-13 13:28:26 +02:00
$sql .= natural_search ( array_keys ( $fieldstosearchall ), $sall );
2016-04-08 02:39:57 +02:00
}
2019-11-12 09:46:08 +01:00
$sql .= ' ORDER BY ' ;
$listfield = explode ( ',' , $sortfield );
$listorder = explode ( ',' , $sortorder );
foreach ( $listfield as $key => $value ) $sql .= $listfield [ $key ] . ' ' . ( $listorder [ $key ] ? $listorder [ $key ] : 'DESC' ) . ',' ;
$sql .= ' f.rowid DESC ' ;
2016-04-08 02:39:57 +02:00
2017-01-15 20:49:20 +01:00
$nbtotalofrecords = '' ;
2014-05-12 11:00:58 +02:00
if ( empty ( $conf -> global -> MAIN_DISABLE_FULL_SCANLIST ))
{
$result = $db -> query ( $sql );
$nbtotalofrecords = $db -> num_rows ( $result );
2018-04-24 11:37:57 +02:00
if (( $page * $limit ) > $nbtotalofrecords ) // if total resultset is smaller then paging size (filtering), goto and load page 0
{
$page = 0 ;
$offset = 0 ;
}
2014-05-12 11:00:58 +02:00
}
2019-11-12 09:46:08 +01:00
$sql .= $db -> plimit ( $limit + 1 , $offset );
2012-06-09 19:16:31 +02:00
$resql = $db -> query ( $sql );
2018-11-22 11:36:30 +01:00
2012-06-09 19:16:31 +02:00
if ( $resql )
{
2017-10-13 13:28:26 +02:00
$num = $db -> num_rows ( $resql );
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$arrayofselected = is_array ( $toselect ) ? $toselect : array ();
2016-09-29 07:01:58 +02:00
2019-11-12 09:46:08 +01:00
if ( $num == 1 && ! empty ( $conf -> global -> MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE ) && $sall )
2018-11-22 11:36:30 +01:00
{
$obj = $db -> fetch_object ( $resql );
$id = $obj -> id ;
2018-11-27 11:09:47 +01:00
2018-11-22 11:36:30 +01:00
header ( " Location: " . DOL_URL_ROOT . '/compta/facture/card.php?facid=' . $id );
exit ;
}
2018-11-27 11:09:47 +01:00
2019-01-27 11:55:16 +01:00
llxHeader ( '' , $langs -> trans ( 'CustomersInvoices' ), 'EN:Customers_Invoices|FR:Factures_Clients|ES:Facturas_a_clientes' );
2018-11-27 11:09:47 +01:00
2017-10-13 13:28:26 +02:00
if ( $socid )
{
$soc = new Societe ( $db );
$soc -> fetch ( $socid );
2017-07-17 11:04:48 +02:00
if ( empty ( $search_societe )) $search_societe = $soc -> name ;
2017-10-13 13:28:26 +02:00
}
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$param = '&socid=' . $socid ;
if ( ! empty ( $contextpage ) && $contextpage != $_SERVER [ " PHP_SELF " ]) $param .= '&contextpage=' . urlencode ( $contextpage );
if ( $limit > 0 && $limit != $conf -> liste_limit ) $param .= '&limit=' . urlencode ( $limit );
if ( $sall ) $param .= '&sall=' . urlencode ( $sall );
if ( $search_day ) $param .= '&search_day=' . urlencode ( $search_day );
if ( $search_month ) $param .= '&search_month=' . urlencode ( $search_month );
if ( $search_year ) $param .= '&search_year=' . urlencode ( $search_year );
if ( $search_day_lim ) $param .= '&search_day_lim=' . urlencode ( $search_day_lim );
if ( $search_month_lim ) $param .= '&search_month_lim=' . urlencode ( $search_month_lim );
if ( $search_year_lim ) $param .= '&search_year_lim=' . urlencode ( $search_year_lim );
if ( $search_ref ) $param .= '&search_ref=' . urlencode ( $search_ref );
if ( $search_refcustomer ) $param .= '&search_refcustomer=' . urlencode ( $search_refcustomer );
if ( $search_project_ref ) $param .= '&search_project_ref=' . urlencode ( $search_project_ref );
if ( $search_project ) $param .= '&search_project=' . urlencode ( $search_project );
if ( $search_type != '' ) $param .= '&search_type=' . urlencode ( $search_type );
if ( $search_societe ) $param .= '&search_societe=' . urlencode ( $search_societe );
if ( $search_town ) $param .= '&search_town=' . urlencode ( $search_town );
if ( $search_zip ) $param .= '&search_zip=' . urlencode ( $search_zip );
if ( $search_sale > 0 ) $param .= '&search_sale=' . urlencode ( $search_sale );
if ( $search_user > 0 ) $param .= '&search_user=' . urlencode ( $search_user );
if ( $search_product_category > 0 ) $param .= '&search_product_category=' . urlencode ( $search_product_category );
if ( $search_montant_ht != '' ) $param .= '&search_montant_ht=' . urlencode ( $search_montant_ht );
if ( $search_montant_vat != '' ) $param .= '&search_montant_vat=' . urlencode ( $search_montant_vat );
if ( $search_montant_localtax1 != '' ) $param .= '&search_montant_localtax1=' . urlencode ( $search_montant_localtax1 );
if ( $search_montant_localtax2 != '' ) $param .= '&search_montant_localtax2=' . urlencode ( $search_montant_localtax2 );
if ( $search_montant_ttc != '' ) $param .= '&search_montant_ttc=' . urlencode ( $search_montant_ttc );
if ( $search_status != '' ) $param .= '&search_status=' . urlencode ( $search_status );
if ( $search_paymentmode > 0 ) $param .= '&search_paymentmode=' . urlencode ( $search_paymentmode );
if ( $search_paymentterms > 0 ) $param .= '&search_paymentterms=' . urlencode ( $search_paymentterms );
if ( $search_module_source ) $param .= '&search_module_source=' . urlencode ( $search_module_source );
if ( $search_pos_source ) $param .= '&search_pos_source=' . urlencode ( $search_pos_source );
if ( $show_files ) $param .= '&show_files=' . urlencode ( $show_files );
if ( $option ) $param .= " &search_option= " . urlencode ( $option );
if ( $optioncss != '' ) $param .= '&optioncss=' . urlencode ( $optioncss );
if ( $search_categ_cus > 0 ) $param .= '&search_categ_cus=' . urlencode ( $search_categ_cus );
2018-05-02 15:01:32 +02:00
2016-04-08 01:00:02 +02:00
// Add $param from extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_param.tpl.php' ;
2016-09-29 07:01:58 +02:00
2019-11-12 09:46:08 +01:00
$arrayofmassactions = array (
2017-10-13 13:28:26 +02:00
'validate' => $langs -> trans ( " Validate " ),
2019-01-10 01:54:06 +01:00
'generate_doc' => $langs -> trans ( " ReGeneratePDF " ),
2017-10-13 13:28:26 +02:00
'builddoc' => $langs -> trans ( " PDFMerge " ),
2018-12-22 11:32:27 +01:00
'presend' => $langs -> trans ( " SendByMail " ),
2016-07-23 12:17:47 +02:00
);
2018-05-05 14:25:44 +02:00
if ( $conf -> prelevement -> enabled ) {
$langs -> load ( " withdrawals " );
$arrayofmassactions [ 'withdrawrequest' ] = $langs -> trans ( " MakeWithdrawRequest " );
}
if ( $user -> rights -> facture -> supprimer ) {
if ( ! empty ( $conf -> global -> INVOICE_CAN_REMOVE_DRAFT_ONLY )) {
2019-02-03 14:29:45 +01:00
$arrayofmassactions [ 'predeletedraft' ] = $langs -> trans ( " Deletedraft " );
2018-05-05 14:25:44 +02:00
}
2019-02-03 14:29:45 +01:00
elseif ( ! empty ( $conf -> global -> INVOICE_CAN_ALWAYS_BE_REMOVED )) { // mass deletion never possible on invoices on such situation
$arrayofmassactions [ 'predelete' ] = $langs -> trans ( " Delete " );
}
}
2018-05-05 14:25:44 +02:00
if ( in_array ( $massaction , array ( 'presend' , 'predelete' ))) $arrayofmassactions = array ();
2019-11-12 09:46:08 +01:00
$massactionbutton = $form -> selectMassAction ( '' , $arrayofmassactions );
2016-09-29 07:01:58 +02:00
2019-11-12 09:46:08 +01:00
$newcardbutton = '' ;
if ( $user -> rights -> facture -> creer && $contextpage != 'poslist' )
2018-03-30 16:54:38 +02:00
{
2019-11-12 09:46:08 +01:00
$newcardbutton .= dolGetButtonTitle ( $langs -> trans ( 'NewBill' ), '' , 'fa fa-plus-circle' , DOL_URL_ROOT . '/compta/facture/card.php?action=create' );
2018-03-30 16:54:38 +02:00
}
2017-10-13 13:28:26 +02:00
$i = 0 ;
print '<form method="POST" name="searchFormList" action="' . $_SERVER [ " PHP_SELF " ] . '">' . " \n " ;
2017-07-07 19:06:25 +02:00
2017-10-13 13:28:26 +02:00
if ( $optioncss != '' ) print '<input type="hidden" name="optioncss" value="' . $optioncss . '">' ;
2019-12-01 10:20:11 +01:00
print '<input type="hidden" name="token" value="' . newToken () . '">' ;
2016-02-16 17:43:05 +01:00
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">' ;
2017-10-13 13:28:26 +02:00
print '<input type="hidden" name="action" value="list">' ;
print '<input type="hidden" name="sortfield" value="' . $sortfield . '">' ;
print '<input type="hidden" name="sortorder" value="' . $sortorder . '">' ;
print '<input type="hidden" name="page" value="' . $page . '">' ;
print '<input type="hidden" name="viewstatut" value="' . $viewstatut . '">' ;
print '<input type="hidden" name="contextpage" value="' . $contextpage . '">' ;
2016-09-29 07:01:58 +02:00
2019-11-12 09:46:08 +01:00
print_barre_liste ( $langs -> trans ( 'BillsCustomers' ) . ' ' . ( $socid ? ' ' . $soc -> name : '' ), $page , $_SERVER [ " PHP_SELF " ], $param , $sortfield , $sortorder , $massactionbutton , $num , $nbtotalofrecords , 'invoicing' , 0 , $newcardbutton , '' , $limit );
2015-12-02 01:38:15 +01:00
2019-11-12 09:46:08 +01:00
$topicmail = " SendBillRef " ;
$modelmail = " facture_send " ;
$objecttmp = new Facture ( $db );
$trackid = 'inv' . $object -> id ;
2017-11-11 16:03:22 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/massactions_pre.tpl.php' ;
2017-01-24 11:50:07 +01:00
2017-10-13 13:28:26 +02:00
if ( $sall )
{
2019-11-12 09:46:08 +01:00
foreach ( $fieldstosearchall as $key => $val ) $fieldstosearchall [ $key ] = $langs -> trans ( $val );
print '<div class="divsearchfieldfilter">' . $langs -> trans ( " FilterOnInto " , $sall ) . join ( ', ' , $fieldstosearchall ) . '</div>' ;
2017-10-13 13:28:26 +02:00
}
2017-06-13 18:50:31 +02:00
2012-06-23 20:39:20 +02:00
// If the user can view prospects other than his'
2019-11-12 09:46:08 +01:00
$moreforfilter = '' ;
2012-06-23 20:39:20 +02:00
if ( $user -> rights -> societe -> client -> voir || $socid )
{
2012-10-13 17:00:38 +02:00
$langs -> load ( " commercial " );
2019-11-12 09:46:08 +01:00
$moreforfilter .= '<div class="divsearchfield">' ;
$moreforfilter .= $langs -> trans ( 'ThirdPartiesOfSaleRepresentative' ) . ': ' ;
$moreforfilter .= $formother -> select_salesrepresentatives ( $search_sale , 'search_sale' , $user , 0 , 1 , 'maxwidth200' );
$moreforfilter .= '</div>' ;
2012-06-23 20:39:20 +02:00
}
2017-10-13 13:28:26 +02:00
// If the user can view prospects other than his'
if ( $user -> rights -> societe -> client -> voir || $socid )
{
2019-11-12 09:46:08 +01:00
$moreforfilter .= '<div class="divsearchfield">' ;
$moreforfilter .= $langs -> trans ( 'LinkedToSpecificUsers' ) . ': ' ;
$moreforfilter .= $form -> select_dolusers ( $search_user , 'search_user' , 1 , '' , 0 , '' , '' , 0 , 0 , 0 , '' , 0 , '' , 'maxwidth200' );
$moreforfilter .= '</div>' ;
2017-10-13 13:28:26 +02:00
}
2015-07-02 22:07:13 +02:00
// If the user can view prospects other than his'
2015-11-05 11:53:45 +01:00
if ( $conf -> categorie -> enabled && ( $user -> rights -> produit -> lire || $user -> rights -> service -> lire ))
2015-07-02 22:07:13 +02:00
{
include_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php' ;
2019-11-12 09:46:08 +01:00
$moreforfilter .= '<div class="divsearchfield">' ;
$moreforfilter .= $langs -> trans ( 'IncludingProductWithTag' ) . ': ' ;
2015-07-02 22:07:13 +02:00
$cate_arbo = $form -> select_all_categories ( Categorie :: TYPE_PRODUCT , null , 'parent' , null , null , 1 );
2019-11-12 09:46:08 +01:00
$moreforfilter .= $form -> selectarray ( 'search_product_category' , $cate_arbo , $search_product_category , 1 , 0 , 0 , '' , 0 , 0 , 0 , 0 , 'maxwidth300' , 1 );
$moreforfilter .= '</div>' ;
2015-07-02 22:07:13 +02:00
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> categorie -> enabled ))
2018-05-02 15:01:32 +02:00
{
2019-11-12 09:46:08 +01:00
require_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php' ;
$moreforfilter .= '<div class="divsearchfield">' ;
$moreforfilter .= $langs -> trans ( 'CustomersProspectsCategoriesShort' ) . ': ' ;
$moreforfilter .= $formother -> select_categories ( 'customer' , $search_categ_cus , 'search_categ_cus' , 1 );
$moreforfilter .= '</div>' ;
2018-05-02 15:01:32 +02:00
}
2019-11-12 09:46:08 +01:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'printFieldPreListTitle' , $parameters ); // Note that $action and $object may have been modified by hook
2015-11-18 18:15:02 +01:00
if ( empty ( $reshook )) $moreforfilter .= $hookmanager -> resPrint ;
else $moreforfilter = $hookmanager -> resPrint ;
2015-07-04 11:57:55 +02:00
2017-10-13 13:28:26 +02:00
if ( $moreforfilter )
{
2015-10-09 12:30:16 +02:00
print '<div class="liste_titre liste_titre_bydiv centpercent">' ;
2017-10-13 13:28:26 +02:00
print $moreforfilter ;
print '</div>' ;
}
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$varpage = empty ( $contextpage ) ? $_SERVER [ " PHP_SELF " ] : $contextpage ;
$selectedfields = $form -> multiSelectArrayWithCheckbox ( 'selectedfields' , $arrayfields , $varpage ); // This also change content of $arrayfields
if ( $massactionbutton && $contextpage != 'poslist' ) $selectedfields .= $form -> showCheckAddButtons ( 'checkforselect' , 1 );
2017-06-13 18:50:31 +02:00
2017-10-13 13:28:26 +02:00
print '<div class="div-table-responsive">' ;
2019-11-12 09:46:08 +01:00
print '<table class="tagtable liste' . ( $moreforfilter ? " listwithfilterbefore " : " " ) . '">' . " \n " ;
2016-09-29 07:01:58 +02:00
2017-10-13 13:28:26 +02:00
// Filters lines
print '<tr class="liste_titre_filter">' ;
2020-04-08 11:23:31 +02:00
if ( ! empty ( $conf -> global -> MAIN_VIEW_LINE_NUMBER_IN_LIST )) {
print '<td class="liste_titre">' ;
print '</td>' ;
}
2016-04-08 01:00:02 +02:00
// Ref
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.ref' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre" align="left">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat maxwidth50imp" type="text" name="search_ref" value="' . dol_escape_htmltag ( $search_ref ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Ref customer
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.ref_client' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat maxwidth50imp" type="text" name="search_refcustomer" value="' . dol_escape_htmltag ( $search_refcustomer ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
2016-09-29 07:01:58 +02:00
// Type
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.type' ][ 'checked' ]))
2016-09-29 07:01:58 +02:00
{
2016-09-29 10:38:15 +02:00
print '<td class="liste_titre maxwidthonsmartphone">' ;
2019-11-12 09:46:08 +01:00
$listtype = array (
2017-10-13 13:28:26 +02:00
Facture :: TYPE_STANDARD => $langs -> trans ( " InvoiceStandard " ),
Facture :: TYPE_REPLACEMENT => $langs -> trans ( " InvoiceReplacement " ),
Facture :: TYPE_CREDIT_NOTE => $langs -> trans ( " InvoiceAvoir " ),
Facture :: TYPE_DEPOSIT => $langs -> trans ( " InvoiceDeposit " ),
);
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> INVOICE_USE_SITUATION ))
2018-01-11 01:03:13 +01:00
{
$listtype [ Facture :: TYPE_SITUATION ] = $langs -> trans ( " InvoiceSituation " );
}
2016-09-29 10:38:15 +02:00
//$listtype[Facture::TYPE_PROFORMA]=$langs->trans("InvoiceProForma"); // A proformat invoice is not an invoice but must be an order.
print $form -> selectarray ( 'search_type' , $listtype , $search_type , 1 , 0 , 0 , '' , 0 , 0 , 0 , 'ASC' , 'maxwidth100' );
2016-09-29 07:01:58 +02:00
print '</td>' ;
}
2016-04-08 01:00:02 +02:00
// Date invoice
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.date' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2018-03-06 11:54:05 +01:00
print '<td class="liste_titre nowraponall" align="center">' ;
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> MAIN_LIST_FILTER_ON_DAY )) print '<input class="flat valignmiddle" type="text" size="1" maxlength="2" name="search_day" value="' . dol_escape_htmltag ( $search_day ) . '">' ;
2018-06-23 00:07:56 +02:00
print '<input class="flat valignmiddle width25" type="text" size="1" maxlength="2" name="search_month" value="' . dol_escape_htmltag ( $search_month ) . '">' ;
2019-11-12 09:46:08 +01:00
$formother -> select_year ( $search_year ? $search_year : - 1 , 'search_year' , 1 , 20 , 5 , 0 , 0 , '' , 'widthauto valignmiddle' );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Date due
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.date_lim_reglement' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2018-03-06 11:54:05 +01:00
print '<td class="liste_titre nowraponall" align="center">' ;
2019-11-12 09:46:08 +01:00
if ( ! empty ( $conf -> global -> MAIN_LIST_FILTER_ON_DAY )) print '<input class="flat valignmiddle" type="text" size="1" maxlength="2" name="search_day_lim" value="' . dol_escape_htmltag ( $search_day_lim ) . '">' ;
2018-06-23 00:07:56 +02:00
print '<input class="flat valignmiddle width25" type="text" size="1" maxlength="2" name="search_month_lim" value="' . dol_escape_htmltag ( $search_month_lim ) . '">' ;
2019-11-12 09:46:08 +01:00
$formother -> select_year ( $search_year_lim ? $search_year_lim : - 1 , 'search_year_lim' , 1 , 20 , 5 , 0 , 0 , '' , 'widthauto valignmiddle' );
print '<br><input type="checkbox" name="search_option" value="late"' . ( $option == 'late' ? ' checked' : '' ) . '> ' . $langs -> trans ( " Alert " );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
2019-05-10 15:11:06 +02:00
// Project ref
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'p.ref' ][ 'checked' ]))
2017-05-21 03:23:44 +02:00
{
2019-05-10 15:11:06 +02:00
print '<td class="liste_titre"><input class="flat maxwidth50imp" type="text" name="search_project_ref" value="' . $search_project_ref . '"></td>' ;
}
// Project label
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'p.title' ][ 'checked' ]))
2019-05-10 15:11:06 +02:00
{
print '<td class="liste_titre"><input class="flat maxwidth50imp" type="text" name="search_project" value="' . $search_project . '"></td>' ;
2017-05-21 03:23:44 +02:00
}
2016-04-08 01:00:02 +02:00
// Thirpdarty
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2019-03-17 00:32:39 +01:00
print '<td class="liste_titre"><input class="flat maxwidth75imp" type="text" name="search_societe" value="' . $search_societe . '"></td>' ;
2016-04-08 01:00:02 +02:00
}
// Town
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 's.town' ][ 'checked' ])) print '<td class="liste_titre"><input class="flat maxwidth75imp" type="text" name="search_town" value="' . dol_escape_htmltag ( $search_town ) . '"></td>' ;
2016-04-08 01:00:02 +02:00
// Zip
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 's.zip' ][ 'checked' ])) print '<td class="liste_titre"><input class="flat maxwidth50imp" type="text" name="search_zip" value="' . dol_escape_htmltag ( $search_zip ) . '"></td>' ;
2016-04-08 01:00:02 +02:00
// State
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'state.nom' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat maxwidth50imp" type="text" name="search_state" value="' . dol_escape_htmltag ( $search_state ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Country
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'country.code_iso' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre" align="center">' ;
2019-03-02 12:57:07 +01:00
print $form -> select_country ( $search_country , 'search_country' , '' , 0 , 'minwidth100imp maxwidth100' );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Company type
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'typent.code' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre maxwidthonsmartphone" align="center">' ;
2019-11-12 09:46:08 +01:00
print $form -> selectarray ( " search_type_thirdparty " , $formcompany -> typent_array ( 0 ), $search_type_thirdparty , 0 , 0 , 0 , '' , 0 , 0 , 0 , ( empty ( $conf -> global -> SOCIETE_SORT_ON_TYPEENT ) ? 'ASC' : $conf -> global -> SOCIETE_SORT_ON_TYPEENT ), 'maxwidth100' );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Payment mode
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_mode_reglement' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2019-10-10 15:10:41 +02:00
print '<td class="liste_titre">' ;
2018-03-07 19:00:38 +01:00
$form -> select_types_paiements ( $search_paymentmode , 'search_paymentmode' , '' , 0 , 1 , 1 , 10 );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
2019-04-09 18:26:00 +02:00
// Payment terms
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_cond_reglement' ][ 'checked' ]))
2019-04-09 18:26:00 +02:00
{
2019-10-10 15:10:41 +02:00
print '<td class="liste_titre">' ;
2019-04-09 18:32:00 +02:00
$form -> select_conditions_paiements ( $search_paymentterms , 'search_paymentterms' , - 1 , 1 , 1 );
2019-04-09 18:26:00 +02:00
print '</td>' ;
}
2019-10-10 15:10:41 +02:00
// Module source
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.module_source' ][ 'checked' ]))
2019-10-10 15:10:41 +02:00
{
print '<td class="liste_titre">' ;
print '<input class="flat maxwidth75" type="text" name="search_module_source" value="' . dol_escape_htmltag ( $search_module_source ) . '">' ;
print '</td>' ;
}
// POS Terminal
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.pos_source' ][ 'checked' ]))
2019-10-10 15:10:41 +02:00
{
print '<td class="liste_titre">' ;
print '<input class="flat maxwidth50" type="text" name="search_pos_source" value="' . dol_escape_htmltag ( $search_pos_source ) . '">' ;
print '</td>' ;
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.total_ht' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2017-10-13 13:28:26 +02:00
// Amount
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat" type="text" size="4" name="search_montant_ht" value="' . dol_escape_htmltag ( $search_montant_ht ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.total_vat' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2017-10-13 13:28:26 +02:00
// Amount
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat" type="text" size="4" name="search_montant_vat" value="' . dol_escape_htmltag ( $search_montant_vat ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.total_localtax1' ][ 'checked' ]))
2017-04-13 08:30:48 +02:00
{
2018-03-07 19:00:38 +01:00
// Localtax1
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat" type="text" size="4" name="search_montant_localtax1" value="' . $search_montant_localtax1 . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2017-04-13 08:30:48 +02:00
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.total_localtax2' ][ 'checked' ]))
2017-04-13 08:30:48 +02:00
{
2018-03-07 19:00:38 +01:00
// Localtax2
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat" type="text" size="4" name="search_montant_localtax2" value="' . $search_montant_localtax2 . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2017-04-13 08:30:48 +02:00
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.total_ttc' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2017-10-13 13:28:26 +02:00
// Amount
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat" type="text" size="4" name="search_montant_ttc" value="' . dol_escape_htmltag ( $search_montant_ttc ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
}
2019-09-02 03:58:00 +02:00
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.retained_warranty' ][ 'checked' ]))
2018-09-27 15:38:43 +02:00
{
print '<td class="liste_titre" align="right">' ;
print '</td>' ;
}
2019-09-02 03:58:00 +02:00
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'dynamount_payed' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'rtp' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.date_closing' ][ 'checked' ]))
2019-09-06 11:35:52 +02:00
{
print '<td class="liste_titre">' ;
print '</td>' ;
}
2017-10-13 13:28:26 +02:00
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_input.tpl.php' ;
2016-04-08 01:00:02 +02:00
// Fields from hook
2019-11-12 09:46:08 +01:00
$parameters = array ( 'arrayfields' => $arrayfields );
$reshook = $hookmanager -> executeHooks ( 'printFieldListOption' , $parameters ); // Note that $action and $object may have been modified by hook
2016-04-08 01:00:02 +02:00
print $hookmanager -> resPrint ;
// Date creation
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.datec' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Date modification
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.tms' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Status
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_statut' ][ 'checked' ]))
2016-04-08 01:00:02 +02:00
{
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre maxwidthonsmartphone right">' ;
2019-11-12 09:46:08 +01:00
$liststatus = array ( '0' => $langs -> trans ( " BillShortStatusDraft " ), '1' => $langs -> trans ( " BillShortStatusNotPaid " ), '2' => $langs -> trans ( " BillShortStatusPaid " ), '1,2' => $langs -> trans ( " BillShortStatusNotPaid " ) . '+' . $langs -> trans ( " BillShortStatusPaid " ), '3' => $langs -> trans ( " BillShortStatusCanceled " ));
2017-10-13 13:28:26 +02:00
print $form -> selectarray ( 'search_status' , $liststatus , $search_status , 1 );
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Action column
2016-04-08 02:39:57 +02:00
print '<td class="liste_titre" align="middle">' ;
2019-11-12 09:46:08 +01:00
$searchpicto = $form -> showFilterButtons ();
2017-05-14 21:06:33 +02:00
print $searchpicto ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
print " </tr> \n " ;
print '<tr class="liste_titre">' ;
2020-04-08 11:23:31 +02:00
if ( ! empty ( $conf -> global -> MAIN_VIEW_LINE_NUMBER_IN_LIST )) print_liste_field_titre ( '#' , $_SERVER [ 'PHP_SELF' ], '' , '' , $param , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.ref' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.ref' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.ref' , '' , $param , '' , $sortfield , $sortorder );
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.ref_client' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.ref_client' ][ 'label' ], $_SERVER [ " PHP_SELF " ], 'f.ref_client' , '' , $param , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.type' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.type' ][ 'label' ], $_SERVER [ " PHP_SELF " ], 'f.type' , '' , $param , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.date' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.date' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.datef' , '' , $param , 'align="center"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.date_lim_reglement' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.date_lim_reglement' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], " f.date_lim_reglement " , '' , $param , 'align="center"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'p.ref' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.ref' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], " p.ref " , '' , $param , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'p.title' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.title' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], " p.title " , '' , $param , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 's.nom' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 's.nom' , '' , $param , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 's.town' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 's.town' ][ 'label' ], $_SERVER [ " PHP_SELF " ], 's.town' , '' , $param , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 's.zip' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 's.zip' ][ 'label' ], $_SERVER [ " PHP_SELF " ], 's.zip' , '' , $param , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'state.nom' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'state.nom' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " state.nom " , " " , $param , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'country.code_iso' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'country.code_iso' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " country.code_iso " , " " , $param , 'align="center"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'typent.code' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'typent.code' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " typent.code " , " " , $param , 'align="center"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.fk_mode_reglement' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.fk_mode_reglement' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " f.fk_mode_reglement " , " " , $param , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.fk_cond_reglement' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.fk_cond_reglement' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " f.fk_cond_reglement " , " " , $param , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.module_source' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.module_source' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " f.module_source " , " " , $param , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.pos_source' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.pos_source' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " f.pos_source " , " " , $param , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.total_ht' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.total_ht' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.total' , '' , $param , 'class="right"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.total_vat' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.total_vat' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.tva' , '' , $param , 'class="right"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.total_localtax1' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.total_localtax1' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.localtax1' , '' , $param , 'class="right"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.total_localtax2' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.total_localtax2' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.localtax2' , '' , $param , 'class="right"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.total_ttc' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.total_ttc' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.total_ttc' , '' , $param , 'class="right"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.retained_warranty' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.retained_warranty' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], '' , '' , $param , 'align="right"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'dynamount_payed' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'dynamount_payed' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], '' , '' , $param , 'class="right"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'rtp' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'rtp' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], '' , '' , $param , 'class="right"' , $sortfield , $sortorder );
2017-10-13 13:28:26 +02:00
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_title.tpl.php' ;
2017-10-13 13:28:26 +02:00
// Hook fields
2019-11-12 09:46:08 +01:00
$parameters = array ( 'arrayfields' => $arrayfields , 'param' => $param , 'sortfield' => $sortfield , 'sortorder' => $sortorder );
$reshook = $hookmanager -> executeHooks ( 'printFieldListTitle' , $parameters ); // Note that $action and $object may have been modified by hook
2017-10-13 13:28:26 +02:00
print $hookmanager -> resPrint ;
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.datec' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.datec' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " f.datec " , " " , $param , 'align="center" class="nowrap"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.tms' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.tms' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " f.tms " , " " , $param , 'align="center" class="nowrap"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.date_closing' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.date_closing' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " f.date_closing " , " " , $param , 'align="center" class="nowrap"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'f.fk_statut' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'f.fk_statut' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " f.fk_statut,f.paye,f.type,dynamount_payed " , " " , $param , 'class="right"' , $sortfield , $sortorder );
2019-01-27 11:55:16 +01:00
print_liste_field_titre ( $selectedfields , $_SERVER [ " PHP_SELF " ], " " , '' , '' , 'align="center"' , $sortfield , $sortorder , 'maxwidthsearch ' );
2017-10-13 13:28:26 +02:00
print " </tr> \n " ;
2019-11-12 09:46:08 +01:00
$projectstatic = new Project ( $db );
2018-09-24 10:14:38 +02:00
$discount = new DiscountAbsolute ( $db );
2018-10-01 00:20:47 +02:00
2017-10-13 13:28:26 +02:00
if ( $num > 0 )
{
2019-11-12 09:46:08 +01:00
$i = 0 ;
$totalarray = array ();
2019-01-27 11:55:16 +01:00
while ( $i < min ( $num , $limit ))
2017-10-13 13:28:26 +02:00
{
$obj = $db -> fetch_object ( $resql );
2019-11-12 09:46:08 +01:00
$datelimit = $db -> jdate ( $obj -> datelimite );
$facturestatic -> id = $obj -> id ;
$facturestatic -> ref = $obj -> ref ;
2020-02-13 18:00:59 +01:00
$facturestatic -> ref_client = $obj -> ref_client ;
2019-11-12 09:46:08 +01:00
$facturestatic -> type = $obj -> type ;
$facturestatic -> total_ht = $obj -> total_ht ;
$facturestatic -> total_tva = $obj -> total_vat ;
$facturestatic -> total_ttc = $obj -> total_ttc ;
$facturestatic -> statut = $obj -> fk_statut ;
2020-01-29 17:27:31 +01:00
$facturestatic -> close_code = $obj -> close_code ;
2019-11-12 09:46:08 +01:00
$facturestatic -> total_ttc = $obj -> total_ttc ;
$facturestatic -> paye = $obj -> paye ;
$facturestatic -> fk_soc = $obj -> fk_soc ;
$facturestatic -> date_lim_reglement = $db -> jdate ( $obj -> datelimite );
$facturestatic -> note_public = $obj -> note_public ;
$facturestatic -> note_private = $obj -> note_private ;
if ( $conf -> global -> INVOICE_USE_SITUATION && $conf -> global -> INVOICE_USE_SITUATION_RETAINED_WARRANTY )
2018-10-04 12:01:24 +02:00
{
2019-11-12 09:46:08 +01:00
$facturestatic -> retained_warranty = $obj -> retained_warranty ;
$facturestatic -> retained_warranty_date_limit = $obj -> retained_warranty_date_limit ;
$facturestatic -> situation_final = $obj -> retained_warranty_date_limit ;
$facturestatic -> situation_final = $obj -> retained_warranty_date_limit ;
$facturestatic -> situation_cycle_ref = $obj -> situation_cycle_ref ;
$facturestatic -> situation_counter = $obj -> situation_counter ;
2018-10-04 12:01:24 +02:00
}
2019-11-12 09:46:08 +01:00
$thirdpartystatic -> id = $obj -> socid ;
$thirdpartystatic -> name = $obj -> name ;
$thirdpartystatic -> client = $obj -> client ;
$thirdpartystatic -> fournisseur = $obj -> fournisseur ;
$thirdpartystatic -> code_client = $obj -> code_client ;
$thirdpartystatic -> code_compta_client = $obj -> code_compta_client ;
$thirdpartystatic -> code_fournisseur = $obj -> code_fournisseur ;
$thirdpartystatic -> code_compta_fournisseur = $obj -> code_compta_fournisseur ;
$thirdpartystatic -> email = $obj -> email ;
$thirdpartystatic -> country_code = $obj -> country_code ;
$projectstatic -> id = $obj -> project_id ;
$projectstatic -> ref = $obj -> project_ref ;
$projectstatic -> title = $obj -> project_label ;
2019-05-10 15:11:06 +02:00
2017-10-13 13:28:26 +02:00
$paiement = $facturestatic -> getSommePaiement ();
$totalcreditnotes = $facturestatic -> getSumCreditNotesUsed ();
$totaldeposits = $facturestatic -> getSumDepositsUsed ();
$totalpay = $paiement + $totalcreditnotes + $totaldeposits ;
2019-06-18 17:42:45 +02:00
$remaintopay = price2num ( $facturestatic -> total_ttc - $totalpay );
2020-01-29 17:27:31 +01:00
if ( $facturestatic -> statut == Facture :: STATUS_CLOSED && $facturestatic -> close_code == 'discount_vat' ) { // If invoice closed with discount for anticipated payment
$remaintopay = 0 ;
}
if ( $facturestatic -> type == Facture :: TYPE_CREDIT_NOTE && $obj -> paye == 1 ) { // If credit note closed, we take into account the amount not yet consummed
2018-09-12 09:21:23 +02:00
$remaincreditnote = $discount -> getAvailableDiscounts ( $obj -> fk_soc , '' , 'rc.fk_facture_source=' . $facturestatic -> id );
$remaintopay = - $remaincreditnote ;
2019-06-18 17:42:45 +02:00
$totalpay = price2num ( $facturestatic -> total_ttc - $remaintopay );
2018-09-12 09:21:23 +02:00
}
2017-10-13 13:28:26 +02:00
2019-04-28 18:12:33 +02:00
print '<tr class="oddeven"' ;
if ( $contextpage == 'poslist' )
{
print ' onclick="parent.$(\'#poslines\').load(\'invoice.php?action=history&placeid=' . $obj -> id . '\', function() {parent.$.colorbox.close();});"' ;
}
print '>' ;
2020-04-08 11:23:31 +02:00
// No
if ( ! empty ( $conf -> global -> MAIN_VIEW_LINE_NUMBER_IN_LIST )) {
print '<td>' . (( $offset * $limit ) + $i ) . '</td>' ;
}
// Ref
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.ref' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
print '<td class="nowrap">' ;
print '<table class="nobordernopadding"><tr class="nocellnopadd">' ;
2018-10-01 00:20:47 +02:00
print '<td class="nobordernopadding nowraponall">' ;
2019-04-28 18:12:33 +02:00
if ( $contextpage == 'poslist' )
{
print $obj -> ref ;
}
else
{
print $facturestatic -> getNomUrl ( 1 , '' , 200 , 0 , '' , 0 , 1 );
}
2019-11-12 09:46:08 +01:00
print empty ( $obj -> increment ) ? '' : ' (' . $obj -> increment . ')' ;
2017-10-13 13:28:26 +02:00
2019-11-12 09:46:08 +01:00
$filename = dol_sanitizeFileName ( $obj -> ref );
$filedir = $conf -> facture -> dir_output . '/' . dol_sanitizeFileName ( $obj -> ref );
$urlsource = $_SERVER [ 'PHP_SELF' ] . '?id=' . $obj -> id ;
2017-10-13 13:28:26 +02:00
print $formfile -> getDocumentsLink ( $facturestatic -> element , $filename , $filedir );
print '</td>' ;
print '</tr>' ;
print '</table>' ;
print " </td> \n " ;
2019-11-12 09:46:08 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
2016-09-29 07:01:58 +02:00
2013-10-07 21:58:12 +02:00
// Customer ref
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.ref_client' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2020-02-13 18:00:59 +01:00
print '<td class="nowrap tdoverflowmax200">' ;
2017-10-13 13:28:26 +02:00
print $obj -> ref_client ;
print '</td>' ;
2019-11-12 09:46:08 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
// Type
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.type' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
print '<td class="nowrap">' ;
print $facturestatic -> getLibType ();
print " </td> " ;
2019-11-12 09:46:08 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
2016-09-29 07:01:58 +02:00
2013-10-07 21:58:12 +02:00
// Date
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.date' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
print '<td align="center" class="nowrap">' ;
2019-01-27 11:55:16 +01:00
print dol_print_date ( $db -> jdate ( $obj -> df ), 'day' );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2019-11-12 09:46:08 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
// Date limit
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'f.date_lim_reglement' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-01-27 11:55:16 +01:00
print '<td align="center" class="nowrap">' . dol_print_date ( $datelimit , 'day' );
2017-10-13 13:28:26 +02:00
if ( $facturestatic -> hasDelay ())
{
2019-01-16 17:44:39 +01:00
print img_warning ( $langs -> trans ( 'Alert' ) . ' - ' . $langs -> trans ( 'Late' ));
2017-10-13 13:28:26 +02:00
}
print '</td>' ;
2019-11-12 09:46:08 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
2019-05-10 15:11:06 +02:00
// Project ref
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'p.ref' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-05-10 14:39:05 +02:00
print '<td class="nocellnopadd nowrap">' ;
2017-10-13 13:28:26 +02:00
if ( $obj -> project_id > 0 )
{
print $projectstatic -> getNomUrl ( 1 );
}
print '</td>' ;
2019-11-12 09:46:08 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
2019-05-10 15:11:06 +02:00
// Project title
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 'p.title' ][ 'checked' ]))
2019-05-10 15:11:06 +02:00
{
print '<td class="nowrap">' ;
if ( $obj -> project_id > 0 )
{
print $projectstatic -> title ;
}
print '</td>' ;
2019-11-12 09:46:08 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2019-05-10 15:11:06 +02:00
}
2017-10-13 13:28:26 +02:00
// Third party
2019-11-12 09:46:08 +01:00
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
print '<td class="tdoverflowmax200">' ;
2019-10-10 15:10:41 +02:00
if ( $contextpage == 'poslist' )
{
print $thirdpartystatic -> name ;
}
else
{
print $thirdpartystatic -> getNomUrl ( 1 , 'customer' );
}
2017-10-13 13:28:26 +02:00
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
// Town
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 's.town' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-06-19 15:51:48 +02:00
print '<td>' ;
2017-10-13 13:28:26 +02:00
print $obj -> town ;
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
// Zip
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 's.zip' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-06-19 15:51:48 +02:00
print '<td>' ;
2017-10-13 13:28:26 +02:00
print $obj -> zip ;
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
// State
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'state.nom' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
print " <td> " . $obj -> state_name . " </td> \n " ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
// Country
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'country.code_iso' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-12-12 10:31:08 +01:00
print '<td class="center">' ;
2019-12-16 13:06:25 +01:00
$tmparray = getCountry ( $obj -> fk_pays , 'all' );
2017-10-13 13:28:26 +02:00
print $tmparray [ 'label' ];
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
// Type ent
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'typent.code' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-12-12 10:31:08 +01:00
print '<td class="center">' ;
2019-12-16 13:06:25 +01:00
if ( ! is_array ( $typenArray ) || count ( $typenArray ) == 0 ) $typenArray = $formcompany -> typent_array ( 1 );
2017-10-13 13:28:26 +02:00
print $typenArray [ $obj -> typent_code ];
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
2018-09-14 01:29:03 +02:00
// Staff
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'staff.code' ][ 'checked' ]))
2018-09-14 01:29:03 +02:00
{
2019-12-12 10:31:08 +01:00
print '<td class="center">' ;
2019-12-16 13:06:25 +01:00
if ( ! is_array ( $staffArray ) || count ( $staffArray ) == 0 ) $staffArray = $formcompany -> effectif_array ( 1 );
2018-09-14 01:29:03 +02:00
print $staffArray [ $obj -> staff_code ];
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2018-09-14 01:29:03 +02:00
}
2017-10-13 13:28:26 +02:00
// Payment mode
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_mode_reglement' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
print '<td>' ;
$form -> form_modes_reglement ( $_SERVER [ 'PHP_SELF' ], $obj -> fk_mode_reglement , 'none' , '' , - 1 );
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
2019-04-09 18:26:00 +02:00
// Payment terms
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_cond_reglement' ][ 'checked' ]))
2019-04-09 18:26:00 +02:00
{
print '<td>' ;
2019-04-09 18:37:36 +02:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ], $obj -> fk_cond_reglement , 'none' );
2019-04-09 18:26:00 +02:00
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2019-04-09 18:26:00 +02:00
}
2019-10-10 15:10:41 +02:00
// Module Source
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.module_source' ][ 'checked' ]))
2019-10-10 15:10:41 +02:00
{
print '<td>' ;
print $obj -> module_source ;
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2019-10-10 15:10:41 +02:00
}
// POS Terminal
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.pos_source' ][ 'checked' ]))
2019-10-10 15:10:41 +02:00
{
print '<td>' ;
print $obj -> pos_source ;
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2019-10-10 15:10:41 +02:00
}
2017-10-13 13:28:26 +02:00
// Amount HT
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.total_ht' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-07-02 12:01:50 +02:00
print '<td class="right nowrap">' . price ( $obj -> total_ht ) . " </td> \n " ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
if ( ! $i ) $totalarray [ 'pos' ][ $totalarray [ 'nbfield' ]] = 'f.total_ht' ;
2019-11-05 12:47:38 +01:00
$totalarray [ 'val' ][ 'f.total_ht' ] += $obj -> total_ht ;
2017-10-13 13:28:26 +02:00
}
// Amount VAT
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.total_vat' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-07-02 12:01:50 +02:00
print '<td class="right nowrap">' . price ( $obj -> total_vat ) . " </td> \n " ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
if ( ! $i ) $totalarray [ 'pos' ][ $totalarray [ 'nbfield' ]] = 'f.total_vat' ;
2019-11-05 12:47:38 +01:00
$totalarray [ 'val' ][ 'f.total_vat' ] += $obj -> total_vat ;
2017-10-13 13:28:26 +02:00
}
// Amount LocalTax1
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.total_localtax1' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-07-02 12:01:50 +02:00
print '<td class="right nowrap">' . price ( $obj -> total_localtax1 ) . " </td> \n " ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
if ( ! $i ) $totalarray [ 'pos' ][ $totalarray [ 'nbfield' ]] = 'f.total_localtax1' ;
2019-11-05 12:47:38 +01:00
$totalarray [ 'val' ][ 'f.total_localtax1' ] += $obj -> total_localtax1 ;
2017-10-13 13:28:26 +02:00
}
// Amount LocalTax2
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.total_localtax2' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-07-02 12:01:50 +02:00
print '<td class="right nowrap">' . price ( $obj -> total_localtax2 ) . " </td> \n " ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
if ( ! $i ) $totalarray [ 'pos' ][ $totalarray [ 'nbfield' ]] = 'f.total_localtax2' ;
2019-11-05 12:47:38 +01:00
$totalarray [ 'val' ][ 'f.total_localtax2' ] += $obj -> total_localtax2 ;
2017-10-13 13:28:26 +02:00
}
// Amount TTC
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.total_ttc' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-07-02 12:01:50 +02:00
print '<td class="right nowrap">' . price ( $obj -> total_ttc ) . " </td> \n " ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
if ( ! $i ) $totalarray [ 'pos' ][ $totalarray [ 'nbfield' ]] = 'f.total_ttc' ;
2019-11-05 12:47:38 +01:00
$totalarray [ 'val' ][ 'f.total_ttc' ] += $obj -> total_ttc ;
2017-10-13 13:28:26 +02:00
}
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.retained_warranty' ][ 'checked' ]))
2018-09-27 15:38:43 +02:00
{
2019-12-16 13:06:25 +01:00
print '<td align="right">' . ( ! empty ( $obj -> retained_warranty ) ? price ( $obj -> retained_warranty ) . '%' : ' ' ) . '</td>' ;
2018-09-27 15:38:43 +02:00
}
2017-10-13 13:28:26 +02:00
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'dynamount_payed' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-12-16 13:06:25 +01:00
print '<td class="right nowrap">' . ( ! empty ( $totalpay ) ? price ( $totalpay , 0 , $langs ) : ' ' ) . '</td>' ; // TODO Use a denormalized field
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
if ( ! $i ) $totalarray [ 'pos' ][ $totalarray [ 'nbfield' ]] = 'totalam' ;
2019-11-05 12:47:38 +01:00
$totalarray [ 'val' ][ 'totalam' ] += $totalpay ;
2017-10-13 13:28:26 +02:00
}
2020-01-29 17:27:31 +01:00
// Pending amount
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'rtp' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2020-01-29 17:27:31 +01:00
print '<td class="right nowrap">' ;
print ( ! empty ( $remaintopay ) ? price ( $remaintopay , 0 , $langs ) : ' ' );
print '</td>' ; // TODO Use a denormalized field
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
if ( ! $i ) $totalarray [ 'pos' ][ $totalarray [ 'nbfield' ]] = 'rtp' ;
2019-11-05 12:47:38 +01:00
$totalarray [ 'val' ][ 'rtp' ] += $remaintopay ;
2017-10-13 13:28:26 +02:00
}
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_print_fields.tpl.php' ;
2017-10-13 13:28:26 +02:00
// Fields from hook
2019-12-16 13:06:25 +01:00
$parameters = array ( 'arrayfields' => $arrayfields , 'obj' => $obj , 'i' => $i );
$reshook = $hookmanager -> executeHooks ( 'printFieldListValue' , $parameters ); // Note that $action and $object may have been modified by hook
2017-10-13 13:28:26 +02:00
print $hookmanager -> resPrint ;
// Date creation
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.datec' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
print '<td align="center" class="nowrap">' ;
print dol_print_date ( $db -> jdate ( $obj -> date_creation ), 'dayhour' , 'tzuser' );
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
// Date modification
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.tms' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
print '<td align="center" class="nowrap">' ;
print dol_print_date ( $db -> jdate ( $obj -> date_update ), 'dayhour' , 'tzuser' );
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
2019-09-29 15:42:39 +02:00
// Date closing
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.date_closing' ][ 'checked' ]))
2019-09-06 11:35:52 +02:00
{
print '<td align="center" class="nowrap">' ;
2019-09-29 15:42:39 +02:00
print dol_print_date ( $db -> jdate ( $obj -> date_closing ), 'dayhour' , 'tzuser' );
2019-09-06 11:35:52 +02:00
print '</td>' ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2019-09-06 11:35:52 +02:00
}
2017-10-13 13:28:26 +02:00
// Status
2019-12-16 13:06:25 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_statut' ][ 'checked' ]))
2017-10-13 13:28:26 +02:00
{
2019-02-10 10:21:54 +01:00
print '<td class="nowrap right">' ;
2019-01-27 11:55:16 +01:00
print $facturestatic -> LibStatut ( $obj -> paye , $obj -> fk_statut , 5 , $paiement , $obj -> type );
2017-10-13 13:28:26 +02:00
print " </td> " ;
2019-12-16 13:06:25 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
// Action column
print '<td class="nowrap" align="center">' ;
2019-08-24 15:54:14 +02:00
if (( $massactionbutton || $massaction ) && $contextpage != 'poslist' ) // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
2017-10-13 13:28:26 +02:00
{
2019-12-16 13:06:25 +01:00
$selected = 0 ;
if ( in_array ( $obj -> id , $arrayofselected )) $selected = 1 ;
print '<input id="cb' . $obj -> id . '" class="flat checkforselect" type="checkbox" name="toselect[]" value="' . $obj -> id . '"' . ( $selected ? ' checked="checked"' : '' ) . '>' ;
2017-10-13 13:28:26 +02:00
}
2019-12-16 13:06:25 +01:00
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
print " </tr> \n " ;
$i ++ ;
}
// Show total line
2019-11-05 12:47:38 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/list_print_total.tpl.php' ;
2017-10-13 13:28:26 +02:00
}
$db -> free ( $resql );
2017-06-13 18:50:31 +02:00
2019-11-12 09:46:08 +01:00
$parameters = array ( 'arrayfields' => $arrayfields , 'sql' => $sql );
$reshook = $hookmanager -> executeHooks ( 'printFieldListFooter' , $parameters ); // Note that $action and $object may have been modified by hook
2016-04-08 02:39:57 +02:00
print $hookmanager -> resPrint ;
2017-06-13 18:50:31 +02:00
2016-04-08 02:39:57 +02:00
print " </table> \n " ;
2017-10-13 13:28:26 +02:00
print '</div>' ;
print " </form> \n " ;
2019-11-12 09:46:08 +01:00
$hidegeneratedfilelistifempty = 1 ;
if ( $massaction == 'builddoc' || $action == 'remove_file' || $show_files ) $hidegeneratedfilelistifempty = 0 ;
2017-10-13 13:28:26 +02:00
2018-02-21 11:02:45 +01:00
// Show list of available documents
2019-11-12 09:46:08 +01:00
$urlsource = $_SERVER [ 'PHP_SELF' ] . '?sortfield=' . $sortfield . '&sortorder=' . $sortorder ;
$urlsource .= str_replace ( '&' , '&' , $param );
2017-10-13 13:28:26 +02:00
2019-11-12 09:46:08 +01:00
$filedir = $diroutputmassaction ;
$genallowed = $user -> rights -> facture -> lire ;
$delallowed = $user -> rights -> facture -> creer ;
2019-06-20 13:53:31 +02:00
$title = '' ;
2018-02-21 11:02:45 +01:00
2019-01-27 11:55:16 +01:00
print $formfile -> showdocuments ( 'massfilesarea_invoices' , '' , $filedir , $urlsource , 0 , $delallowed , '' , 1 , 1 , 0 , 48 , 1 , $param , $title , '' , '' , '' , null , $hidegeneratedfilelistifempty );
2012-06-09 19:16:31 +02:00
}
else
{
2017-10-13 13:28:26 +02:00
dol_print_error ( $db );
2012-06-09 19:16:31 +02:00
}
2018-07-30 17:28:44 +02:00
// End of page
2012-06-09 19:16:31 +02:00
llxFooter ();
$db -> close ();