2016-08-22 13:43:49 +02:00
< ? php
2022-06-14 09:14:56 +02:00
/* Copyright ( C ) 2001 - 2003 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
* Copyright ( C ) 2004 - 2016 Laurent Destailleur < eldy @ users . sourceforge . net >
* Copyright ( C ) 2005 - 2010 Regis Houssin < regis . houssin @ inodbox . com >
* Copyright ( C ) 2011 - 2022 Alexandre Spangaro < aspangaro @ open - dsi . fr >
* Copyright ( C ) 2011 - 2014 Juanjo Menent < jmenent @ 2 byte . es >
* Copyright ( C ) 2015 Jean - François Ferry < jfefe @ aternatik . fr >
* Copyright ( C ) 2019 Nicolas ZABOURI < info @ inovea - conseil . com >
* Copyright ( C ) 2021 Gauthier VERDOL < gauthier . verdol @ atm - consulting . fr >
2016-08-22 13:43:49 +02:00
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
2019-09-23 21:55:30 +02:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2016-08-22 13:43:49 +02:00
*/
/**
2020-11-03 14:52:04 +01:00
* \file htdocs / compta / charges / index . php
2016-08-22 13:43:49 +02:00
* \ingroup compta
* \brief Page to list payments of special expenses
*/
require '../../main.inc.php' ;
require_once DOL_DOCUMENT_ROOT . '/compta/tva/class/tva.class.php' ;
2021-03-26 16:14:00 +01:00
require_once DOL_DOCUMENT_ROOT . '/user/class/user.class.php' ;
2016-08-22 13:43:49 +02:00
require_once DOL_DOCUMENT_ROOT . '/compta/sociales/class/chargesociales.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/compta/sociales/class/paymentsocialcontribution.class.php' ;
2021-02-04 17:21:08 +01:00
require_once DOL_DOCUMENT_ROOT . '/salaries/class/salary.class.php' ;
2016-08-22 13:43:49 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php' ;
2020-11-03 14:52:04 +01:00
require_once DOL_DOCUMENT_ROOT . '/compta/bank/class/account.class.php' ;
2020-12-14 11:28:18 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formsocialcontrib.class.php' ;
2022-08-29 11:33:55 +02:00
if ( isModEnabled ( 'accounting' )) {
2022-06-14 09:14:56 +02:00
include_once DOL_DOCUMENT_ROOT . '/accountancy/class/accountingjournal.class.php' ;
}
2020-11-03 14:52:04 +01:00
$hookmanager = new HookManager ( $db );
// Initialize technical object to manage hooks. Note that conf->hooks_modules contains array
$hookmanager -> initHooks ( array ( 'specialexpensesindex' ));
2016-08-22 13:43:49 +02:00
2018-05-27 09:27:09 +02:00
// Load translation files required by the page
2021-03-26 16:14:00 +01:00
$langs -> loadLangs ( array ( 'compta' , 'bills' , 'hrm' ));
2016-08-22 13:43:49 +02:00
2019-11-13 19:35:02 +01:00
$year = GETPOST ( " year " , 'int' );
2020-12-14 11:28:18 +01:00
$search_sc_type = GETPOST ( 'search_sc_type' , 'int' );
2022-06-14 09:14:56 +02:00
$optioncss = GETPOST ( 'optioncss' , 'alpha' );
2016-08-22 13:43:49 +02:00
2019-11-13 19:35:02 +01:00
$limit = GETPOST ( 'limit' , 'int' ) ? GETPOST ( 'limit' , 'int' ) : $conf -> liste_limit ;
2022-01-13 11:09:37 +01:00
$sortfield = GETPOST ( 'sortfield' , 'aZ09comma' );
$sortorder = GETPOST ( 'sortorder' , 'aZ09comma' );
2020-03-13 13:07:11 +01:00
$page = GETPOSTISSET ( 'pageplusone' ) ? ( GETPOST ( 'pageplusone' ) - 1 ) : GETPOST ( " page " , 'int' );
2021-04-03 02:11:16 +02:00
if ( empty ( $page ) || $page < 0 ) {
2021-02-23 21:09:01 +01:00
$page = 0 ;
} // If $page is not defined, or '' or -1
2016-08-22 13:43:49 +02:00
$offset = $limit * $page ;
$pageprev = $page - 1 ;
$pagenext = $page + 1 ;
2021-02-23 21:09:01 +01:00
if ( ! $sortfield ) {
$sortfield = " cs.date_ech " ;
}
if ( ! $sortorder ) {
$sortorder = " DESC " ;
}
2016-08-22 13:43:49 +02:00
2022-02-07 15:07:03 +01:00
// Security check
2021-04-03 02:11:16 +02:00
if ( $user -> socid ) {
$socid = $user -> socid ;
2020-12-14 11:28:18 +01:00
}
2021-04-03 02:11:16 +02:00
$result = restrictedArea ( $user , 'tax' , '' , 'chargesociales' , 'charges' );
2020-12-14 11:28:18 +01:00
/*
* Actions
*/
// Purge search criteria
2021-02-23 21:09:01 +01:00
if ( GETPOST ( 'button_removefilter_x' , 'alpha' ) || GETPOST ( 'button_removefilter.x' , 'alpha' ) || GETPOST ( 'button_removefilter' , 'alpha' )) { // All tests are required to be compatible with all browsers
2020-12-14 11:28:18 +01:00
$search_sc_type = '' ;
2022-05-08 18:25:22 +02:00
//$toselect = array();
2020-12-14 11:28:18 +01:00
//$search_array_options = array();
}
2016-08-22 13:43:49 +02:00
/*
* View
*/
$tva_static = new Tva ( $db );
2019-11-13 19:35:02 +01:00
$socialcontrib = new ChargeSociales ( $db );
$payment_sc_static = new PaymentSocialContribution ( $db );
2021-03-26 16:14:00 +01:00
$userstatic = new User ( $db );
2021-02-04 17:21:08 +01:00
$sal_static = new Salary ( $db );
2020-11-03 14:52:04 +01:00
$accountstatic = new Account ( $db );
2021-03-26 16:14:00 +01:00
$accountlinestatic = new AccountLine ( $db );
2020-12-14 11:28:18 +01:00
$formsocialcontrib = new FormSocialContrib ( $db );
2016-08-22 13:43:49 +02:00
2020-11-03 14:52:04 +01:00
$title = $langs -> trans ( " SocialContributionsPayments " );
2021-04-03 02:11:16 +02:00
$help_url = '' ;
2016-08-22 13:43:49 +02:00
2021-04-03 02:11:16 +02:00
llxHeader ( '' , $title , $help_url );
2020-12-14 11:28:18 +01:00
2016-08-22 13:43:49 +02:00
2020-12-14 11:28:18 +01:00
$param = '' ;
2021-02-23 21:09:01 +01:00
if ( ! empty ( $contextpage ) && $contextpage != $_SERVER [ " PHP_SELF " ]) {
$param .= '&contextpage=' . urlencode ( $contextpage );
}
if ( $limit > 0 && $limit != $conf -> liste_limit ) {
$param .= '&limit=' . urlencode ( $limit );
}
if ( $sortfield ) {
$param .= '&sortfield=' . urlencode ( $sortfield );
}
if ( $sortorder ) {
$param .= '&sortorder=' . urlencode ( $sortorder );
}
if ( $year ) {
$param .= '&year=' . urlencode ( $year );
}
if ( $search_sc_type ) {
$param .= '&search_sc_type=' . urlencode ( $search_sc_type );
}
2022-06-14 09:14:56 +02:00
if ( $optioncss != '' ) {
$param .= '&optioncss=' . urlencode ( $optioncss );
}
2020-11-03 14:52:04 +01:00
$num = 0 ;
2016-08-22 13:43:49 +02:00
print '<form method="POST" action="' . $_SERVER [ " PHP_SELF " ] . '">' ;
2021-02-23 21:09:01 +01:00
if ( $optioncss != '' ) {
print '<input type="hidden" name="optioncss" value="' . $optioncss . '">' ;
}
2019-12-18 23:12:31 +01:00
print '<input type="hidden" name="token" value="' . newToken () . '">' ;
2016-08-22 13:43:49 +02:00
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">' ;
print '<input type="hidden" name="sortfield" value="' . $sortfield . '">' ;
print '<input type="hidden" name="sortorder" value="' . $sortorder . '">' ;
2017-05-21 02:43:51 +02:00
print '<input type="hidden" name="page" value="' . $page . '">' ;
2020-12-14 11:28:18 +01:00
2022-01-05 22:23:25 +01:00
$sql = " SELECT c.id, c.libelle as type_label, " ;
$sql .= " cs.rowid, cs.libelle as label_sc, cs.fk_type as type, cs.periode, cs.date_ech, cs.amount as total, cs.paye, " ;
2022-05-22 17:09:08 +02:00
$sql .= " pc.rowid as pid, pc.datep, pc.amount as totalpaid, pc.num_paiement as num_payment, pc.fk_bank, " ;
2020-12-14 11:28:18 +01:00
$sql .= " pct.code as payment_code, " ;
2022-06-14 09:14:56 +02:00
$sql .= " u.rowid as uid, u.lastname, u.firstname, u.email, u.login, u.admin, u.statut, " ;
2022-06-19 21:29:45 +02:00
$sql .= " ba.rowid as bid, ba.ref as bref, ba.number as bnumber, ba.account_number, ba.fk_accountancy_journal, ba.label as blabel, ba.iban_prefix as iban, ba.bic, ba.currency_code, ba.clos, " ;
$sql .= " aj.label as account_journal " ;
2020-12-14 11:28:18 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " c_chargesociales as c, " ;
$sql .= " " . MAIN_DB_PREFIX . " chargesociales as cs " ;
2021-03-26 10:23:44 +01:00
$sql .= " INNER JOIN " . MAIN_DB_PREFIX . " paiementcharge as pc ON pc.fk_charge = cs.rowid " ;
2020-12-14 11:28:18 +01:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " c_paiement as pct ON pc.fk_typepaiement = pct.id " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " bank as b ON pc.fk_bank = b.rowid " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " bank_account as ba ON b.fk_account = ba.rowid " ;
2022-06-19 21:29:45 +02:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " accounting_journal as aj ON ba.fk_accountancy_journal = aj.rowid " ;
2021-03-26 16:14:00 +01:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " user as u ON u.rowid = cs.fk_user " ;
2020-12-14 11:28:18 +01:00
$sql .= " WHERE cs.fk_type = c.id " ;
$sql .= " AND cs.entity IN ( " . getEntity ( " tax " ) . " ) " ;
if ( $search_sc_type > 0 ) {
2020-12-14 11:30:39 +01:00
$sql .= " AND cs.fk_type = " . (( int ) $search_sc_type );
2020-12-14 11:28:18 +01:00
}
if ( $year > 0 ) {
$sql .= " AND ( " ;
// Si period renseignee on l'utilise comme critere de date, sinon on prend date echeance,
// ceci afin d'etre compatible avec les cas ou la periode n'etait pas obligatoire
$sql .= " (cs.periode IS NOT NULL AND cs.periode between ' " . $db -> idate ( dol_get_first_day ( $year )) . " ' AND ' " . $db -> idate ( dol_get_last_day ( $year )) . " ') " ;
$sql .= " OR (cs.periode IS NULL AND cs.date_ech between ' " . $db -> idate ( dol_get_first_day ( $year )) . " ' AND ' " . $db -> idate ( dol_get_last_day ( $year )) . " ') " ;
$sql .= " ) " ;
}
2021-03-26 16:14:00 +01:00
if ( preg_match ( '/^cs\./' , $sortfield )
|| preg_match ( '/^c\./' , $sortfield )
|| preg_match ( '/^pc\./' , $sortfield )
|| preg_match ( '/^pct\./' , $sortfield )
2021-03-30 17:23:05 +02:00
|| preg_match ( '/^u\./' , $sortfield )
|| preg_match ( '/^ba\./' , $sortfield )) {
2020-12-14 11:28:18 +01:00
$sql .= $db -> order ( $sortfield , $sortorder );
}
// Count total nb of records
$nbtotalofrecords = '' ;
if ( empty ( $conf -> global -> MAIN_DISABLE_FULL_SCANLIST )) {
$resql = $db -> query ( $sql );
$nbtotalofrecords = $db -> num_rows ( $resql );
if (( $page * $limit ) > $nbtotalofrecords ) { // if total of record found is smaller than page * limit, goto and load page 0
$page = 0 ;
$offset = 0 ;
}
}
// if total of record found is smaller than limit, no need to do paging and to restart another select with limits set.
if ( is_numeric ( $nbtotalofrecords ) && ( $limit > $nbtotalofrecords || empty ( $limit ))) {
$num = $nbtotalofrecords ;
} else {
2021-02-23 21:09:01 +01:00
if ( $limit ) {
$sql .= $db -> plimit ( $limit + 1 , $offset );
}
2020-12-14 11:28:18 +01:00
$resql = $db -> query ( $sql );
if ( ! $resql ) {
dol_print_error ( $db );
exit ;
}
$num = $db -> num_rows ( $resql );
}
//$sql.= $db->plimit($limit+1,$offset);
//print $sql;
2016-08-22 13:43:49 +02:00
2020-11-03 14:52:04 +01:00
$nav = '' ;
2020-12-14 11:28:18 +01:00
print_barre_liste ( $title , $page , $_SERVER [ " PHP_SELF " ], $param , $sortfield , $sortorder , '' , $num , $nbtotalofrecords , 'object_payment' , 0 , $nav , '' , $limit , 0 );
print '<table class="noborder centpercent">' ;
print '<tr class="liste_titre">' ;
print '<td class="liste_titre"></td>' ;
print '<td class="liste_titre"></td>' ;
print '<td class="liste_titre">' ;
$formsocialcontrib -> select_type_socialcontrib ( GETPOSTISSET ( " search_sc_type " ) ? $search_sc_type : '' , 'search_sc_type' , 1 , 0 , 0 , 'minwidth200 maxwidth300' );
print '</td>' ;
print '<td class="liste_titre"></td>' ;
print '<td class="liste_titre"></td>' ;
print '<td class="liste_titre"></td>' ;
print '<td class="liste_titre"></td>' ;
2021-03-26 16:14:00 +01:00
print '<td class="liste_titre"></td>' ;
print '<td class="liste_titre"></td>' ;
2022-08-29 11:33:55 +02:00
if ( isModEnabled ( 'banque' )) {
2021-02-23 21:09:01 +01:00
print '<td class="liste_titre"></td>' ;
2021-03-26 16:14:00 +01:00
print '<td class="liste_titre"></td>' ;
2021-02-23 21:09:01 +01:00
}
2020-12-14 11:28:18 +01:00
print '<td class="liste_titre"></td>' ;
print '<td class="liste_titre center">' ;
$searchpicto = $form -> showFilterButtons ();
print $searchpicto ;
print '</td>' ;
print " </tr> \n " ;
2016-08-22 13:43:49 +02:00
2020-12-14 11:28:18 +01:00
print '<tr class="liste_titre">' ;
print_liste_field_titre ( " RefPayment " , $_SERVER [ " PHP_SELF " ], " pc.rowid " , " " , $param , '' , $sortfield , $sortorder );
2021-03-26 16:14:00 +01:00
print_liste_field_titre ( " SocialContribution " , $_SERVER [ " PHP_SELF " ], " c.libelle " , " " , $param , '' , $sortfield , $sortorder );
2021-03-30 17:23:05 +02:00
print_liste_field_titre ( " TypeContrib " , $_SERVER [ " PHP_SELF " ], " cs.fk_type " , " " , $param , '' , $sortfield , $sortorder );
2022-01-05 22:07:58 +01:00
print_liste_field_titre ( " PeriodEndDate " , $_SERVER [ " PHP_SELF " ], " cs.periode " , " " , $param , '' , $sortfield , $sortorder , 'center ' );
print_liste_field_titre ( " DatePayment " , $_SERVER [ " PHP_SELF " ], " pc.datep " , " " , $param , '' , $sortfield , $sortorder , 'center ' );
2021-03-26 16:14:00 +01:00
print_liste_field_titre ( " Employee " , $_SERVER [ " PHP_SELF " ], " u.rowid " , " " , $param , " " , $sortfield , $sortorder );
print_liste_field_titre ( " PaymentMode " , $_SERVER [ " PHP_SELF " ], " pct.code " , " " , $param , '' , $sortfield , $sortorder );
print_liste_field_titre ( " Numero " , $_SERVER [ " PHP_SELF " ], " pc.num_paiement " , " " , $param , '' , $sortfield , $sortorder , '' , 'ChequeOrTransferNumber' );
2022-08-29 11:33:55 +02:00
if ( isModEnabled ( 'banque' )) {
2021-03-29 17:22:19 +02:00
print_liste_field_titre ( " BankTransactionLine " , $_SERVER [ " PHP_SELF " ], " pc.fk_bank " , " " , $param , '' , $sortfield , $sortorder );
2021-02-23 21:09:01 +01:00
print_liste_field_titre ( " Account " , $_SERVER [ " PHP_SELF " ], " ba.label " , " " , $param , " " , $sortfield , $sortorder );
}
2021-03-26 16:14:00 +01:00
print_liste_field_titre ( " ExpectedToPay " , $_SERVER [ " PHP_SELF " ], " cs.amount " , " " , $param , 'class="right"' , $sortfield , $sortorder );
2020-12-14 11:28:18 +01:00
print_liste_field_titre ( " PayedByThisPayment " , $_SERVER [ " PHP_SELF " ], " pc.amount " , " " , $param , 'class="right"' , $sortfield , $sortorder );
print_liste_field_titre ( '' );
print " </tr> \n " ;
2016-08-22 13:43:49 +02:00
2021-02-23 21:09:01 +01:00
if ( ! $resql ) {
2020-12-14 11:28:18 +01:00
dol_print_error ( $db );
exit ;
}
2016-08-22 13:43:49 +02:00
2020-12-14 11:28:18 +01:00
$i = 0 ;
$total = 0 ;
$totalnb = 0 ;
2022-05-22 17:09:08 +02:00
$totalpaid = 0 ;
2016-08-22 13:43:49 +02:00
2020-12-14 11:28:18 +01:00
while ( $i < min ( $num , $limit )) {
$obj = $db -> fetch_object ( $resql );
2022-01-05 22:07:58 +01:00
2021-03-26 16:14:00 +01:00
$payment_sc_static -> id = $obj -> pid ;
$payment_sc_static -> ref = $obj -> pid ;
2022-01-05 22:23:25 +01:00
$payment_sc_static -> date = $db -> jdate ( $obj -> datep );
2022-01-05 22:07:58 +01:00
2020-12-14 11:28:18 +01:00
$socialcontrib -> id = $obj -> rowid ;
2022-01-05 22:23:25 +01:00
$socialcontrib -> ref = empty ( $obj -> label_sc ) ? $obj -> type_label : $obj -> label_sc ;
$socialcontrib -> paye = $obj -> paye ;
2022-01-05 22:07:58 +01:00
// $obj->label_sc is label of social contribution (may be empty)
2022-01-05 22:23:25 +01:00
// $obj->type_label is label of type of social contribution
$socialcontrib -> label = empty ( $obj -> label_sc ) ? $obj -> type_label : $obj -> label_sc ;
$socialcontrib -> type_label = $obj -> type_label ;
2022-01-05 22:07:58 +01:00
print '<tr class="oddeven">' ;
// Ref payment
print '<td class="nowraponall">' . $payment_sc_static -> getNomUrl ( 1 ) . " </td> \n " ;
// Label
print '<td class="tdoverflowmax250">' ;
print $socialcontrib -> getNomUrl ( 1 , '' );
2020-12-14 11:28:18 +01:00
print '</td>' ;
// Type
2022-06-14 09:14:56 +02:00
print '<td title="' . dol_escape_htmltag ( $obj -> label_sc ) . '" class="tdoverflowmax300">' . $obj -> label_sc . '</td>' ;
2021-03-26 16:14:00 +01:00
// Date
$date = $obj -> periode ;
if ( empty ( $date )) {
$date = $obj -> date_ech ;
}
2022-01-05 22:07:58 +01:00
print '<td class="center">' . dol_print_date ( $date , 'day' ) . '</td>' ;
2020-12-14 11:28:18 +01:00
// Date payment
print '<td class="center">' . dol_print_date ( $db -> jdate ( $obj -> datep ), 'day' ) . '</td>' ;
2021-03-26 16:14:00 +01:00
// Employee
print " <td> " ;
2021-03-26 16:26:05 +01:00
if ( ! empty ( $obj -> uid )) {
2021-03-26 16:14:00 +01:00
$userstatic -> id = $obj -> uid ;
$userstatic -> lastname = $obj -> lastname ;
$userstatic -> firstname = $obj -> firstname ;
$userstatic -> admin = $obj -> admin ;
$userstatic -> login = $obj -> login ;
$userstatic -> email = $obj -> email ;
2022-06-14 09:14:56 +02:00
$userstatic -> statut = $obj -> statut ;
2021-03-26 16:14:00 +01:00
print $userstatic -> getNomUrl ( 1 );
print " </td> \n " ;
}
2020-12-14 11:28:18 +01:00
// Type payment
2021-04-03 02:11:16 +02:00
$labelpayment = '' ;
2021-02-23 21:09:01 +01:00
if ( $obj -> payment_code ) {
2021-04-03 02:11:16 +02:00
$labelpayment = $langs -> trans ( " PaymentTypeShort " . $obj -> payment_code );
2021-02-23 21:09:01 +01:00
}
2021-04-03 02:11:16 +02:00
print '<td class="tdoverflowmax150" title="' . $labelpayment . '">' ;
print $labelpayment ;
2021-03-26 16:14:00 +01:00
print '</td>' ;
print '<td>' . $obj -> num_payment . '</td>' ;
2020-12-14 11:28:18 +01:00
// Account
2022-08-29 11:33:55 +02:00
if ( isModEnabled ( 'banque' )) {
2021-03-26 16:14:00 +01:00
// Bank transaction
2021-04-03 02:11:16 +02:00
print '<td class="nowraponall">' ;
2021-03-26 16:14:00 +01:00
$accountlinestatic -> id = $obj -> fk_bank ;
print $accountlinestatic -> getNomUrl ( 1 );
print '</td>' ;
2021-04-03 02:11:16 +02:00
print '<td class="nowraponall">' ;
2021-03-30 17:23:05 +02:00
if ( $obj -> bid > 0 ) {
2020-12-14 11:28:18 +01:00
$accountstatic -> id = $obj -> bid ;
$accountstatic -> ref = $obj -> bref ;
$accountstatic -> number = $obj -> bnumber ;
$accountstatic -> label = $obj -> blabel ;
2021-03-29 16:22:22 +02:00
$accountstatic -> iban = $obj -> iban ;
$accountstatic -> bic = $obj -> bic ;
$accountstatic -> currency_code = $langs -> trans ( " Currency " . $obj -> currency_code );
$accountstatic -> clos = $obj -> clos ;
2022-06-14 09:14:56 +02:00
2022-08-29 11:33:55 +02:00
if ( isModEnabled ( 'accounting' )) {
2022-06-14 09:14:56 +02:00
$accountstatic -> account_number = $obj -> account_number ;
2022-06-19 21:29:45 +02:00
$accountstatic -> accountancy_journal = $obj -> account_journal ;
2022-06-14 09:14:56 +02:00
}
2020-12-14 11:28:18 +01:00
print $accountstatic -> getNomUrl ( 1 );
2021-02-23 21:09:01 +01:00
} else {
print ' ' ;
}
2020-12-14 11:28:18 +01:00
print '</td>' ;
2016-08-22 13:43:49 +02:00
}
2021-04-03 02:11:16 +02:00
2021-03-26 16:14:00 +01:00
// Expected to pay
2021-04-03 02:11:16 +02:00
print '<td class="right"><span class="amount">' . price ( $obj -> total ) . '</span></td>' ;
2020-12-14 11:28:18 +01:00
// Paid
print '<td class="right">' ;
2022-05-22 17:09:08 +02:00
if ( $obj -> totalpaid ) {
print '<span class="amount">' . price ( $obj -> totalpaid ) . '</span>' ;
2021-02-23 21:09:01 +01:00
}
2020-12-14 11:28:18 +01:00
print '</td>' ;
print '<td></td>' ;
print '</tr>' ;
$total = $total + $obj -> total ;
2022-05-22 17:09:08 +02:00
$totalpaid = $totalpaid + $obj -> totalpaid ;
2020-12-14 11:28:18 +01:00
$i ++ ;
2016-08-22 13:43:49 +02:00
}
2020-12-14 11:28:18 +01:00
// Total
print '<tr class="liste_total"><td colspan="3" class="liste_total">' . $langs -> trans ( " Total " ) . '</td>' ;
print '<td class="liste_total right"></td>' ; // A total here has no sense
print '<td align="center" class="liste_total"> </td>' ;
print '<td align="center" class="liste_total"> </td>' ;
print '<td align="center" class="liste_total"> </td>' ;
2021-03-26 16:14:00 +01:00
print '<td align="center" class="liste_total"> </td>' ;
print '<td align="center" class="liste_total"> </td>' ;
2022-08-29 11:33:55 +02:00
if ( isModEnabled ( 'banque' )) {
2021-02-23 21:09:01 +01:00
print '<td></td>' ;
2021-03-26 16:14:00 +01:00
print '<td></td>' ;
2021-02-23 21:09:01 +01:00
}
2022-05-22 17:09:08 +02:00
print '<td class="liste_total right">' . price ( $totalpaid ) . " </td> " ;
2020-12-14 11:28:18 +01:00
print '<td></td>' ;
print " </tr> " ;
print '</table>' ;
2016-08-22 13:43:49 +02:00
print '</form>' ;
2020-11-03 14:52:04 +01:00
$parameters = array ( 'user' => $user );
$reshook = $hookmanager -> executeHooks ( 'dashboardSpecialBills' , $parameters , $object ); // Note that $action and $object may have been modified by hook
2018-08-08 12:29:36 +02:00
// End of page
2016-08-22 13:43:49 +02:00
llxFooter ();
$db -> close ();