* Copyright (C) 2004-2022 Laurent Destailleur * Copyright (C) 2005-2015 Regis Houssin * Copyright (C) 2015-2020 Juanjo Menent * Copyright (C) 2015 Jean-François Ferry * Copyright (C) 2015 Raphaël Doursenaud * Copyright (C) 2016 Marcos García * Copyright (C) 2019 Nicolas ZABOURI * Copyright (C) 2020 Tobias Sekan * Copyright (C) 2020 Josep Lluís Amador * Copyright (C) 2021-2024 Frédéric France * Copyright (C) 2024 Rafael San José * Copyright (C) 2024 MDW * * 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 * along with this program. If not, see . */ /** * \file htdocs/compta/index.php * \ingroup compta * \brief Main page of accountancy area */ // Load Dolibarr environment require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php'; require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php'; require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php'; require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php'; require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.class.php'; require_once DOL_DOCUMENT_ROOT.'/compta/sociales/class/chargesociales.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/invoice.lib.php'; // L'espace compta/treso doit toujours etre actif car c'est un espace partage // par de nombreux modules (banque, facture, commande a facturer, etc...) independamment // de l'utilisation de la compta ou non. C'est au sein de cet espace que chaque sous fonction // est protegee par le droit qui va bien du module concerne. // Load translation files required by the page $langs->loadLangs(array('compta', 'bills')); if (isModEnabled('order')) { $langs->load("orders"); } // Get parameters $action = GETPOST('action', 'aZ09'); $bid = GETPOSTINT('bid'); // Security check $socid = ''; if ($user->socid > 0) { $action = ''; $socid = $user->socid; } // Maximum elements of the tables $max = getDolGlobalInt('MAIN_SIZE_SHORTLIST_LIMIT', 5); $maxDraftCount = !getDolGlobalString('MAIN_MAXLIST_OVERLOAD') ? 500 : $conf->global->MAIN_MAXLIST_OVERLOAD; $maxLatestEditCount = 5; $maxOpenCount = !getDolGlobalString('MAIN_MAXLIST_OVERLOAD') ? 500 : $conf->global->MAIN_MAXLIST_OVERLOAD; // Initialize a technical object to manage hooks. Note that conf->hooks_modules contains array $hookmanager->initHooks(array('invoiceindex')); $maxofloop = (!getDolGlobalString('MAIN_MAXLIST_OVERLOAD') ? 500 : $conf->global->MAIN_MAXLIST_OVERLOAD); /* * Actions */ // None /* * View */ $now = dol_now(); $form = new Form($db); $formfile = new FormFile($db); $thirdpartystatic = new Societe($db); llxHeader("", $langs->trans("InvoicesArea")); print load_fiche_titre($langs->trans("InvoicesArea"), '', 'bill'); print '
'; print '
'; print '
'; if (isModEnabled('invoice')) { print getNumberInvoicesPieChart('customers'); print '
'; } if (isModEnabled('fournisseur') || isModEnabled('supplier_invoice')) { print getNumberInvoicesPieChart('suppliers'); print '
'; } if (isModEnabled('invoice')) { print getCustomerInvoiceDraftTable($max, $socid); print '
'; } if (isModEnabled('fournisseur') || isModEnabled('supplier_invoice')) { print getDraftSupplierTable($max, $socid); print '
'; } print '
'; // Latest modified customer invoices if (isModEnabled('invoice') && $user->hasRight('facture', 'lire')) { $langs->load("boxes"); $tmpinvoice = new Facture($db); $sql = "SELECT f.rowid, f.ref, f.fk_statut as status, f.type, f.total_ht, f.total_tva, f.total_ttc, f.paye, f.tms"; $sql .= ", f.date_lim_reglement as datelimite"; $sql .= ", s.nom as name"; $sql .= ", s.rowid as socid"; $sql .= ", s.code_client, s.code_compta as code_compta_client, s.email"; $sql .= ", cc.rowid as country_id, cc.code as country_code"; $sql .= ", (SELECT SUM(pf.amount) FROM ".$db->prefix()."paiement_facture as pf WHERE pf.fk_facture = f.rowid) as am"; $sql .= " FROM ".MAIN_DB_PREFIX."facture as f"; $sql .= " INNER JOIN ".MAIN_DB_PREFIX."societe as s ON s.rowid = f.fk_soc"; $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_country as cc ON cc.rowid = s.fk_pays"; $sql .= " WHERE f.entity IN (".getEntity('invoice').")"; if ($socid > 0) { $sql .= " AND f.fk_soc = ".((int) $socid); } // Filter on sale representative if (!$user->hasRight('societe', 'client', 'voir')) { $sql .= " AND EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX."societe_commerciaux as sc WHERE sc.fk_soc = f.fk_soc AND sc.fk_user = ".((int) $user->id).")"; } // Add where from hooks $parameters = array(); $reshook = $hookmanager->executeHooks('printFieldListWhereCustomerLastModified', $parameters); $sql .= $hookmanager->resPrint; $sql .= " ORDER BY f.tms DESC"; $sql .= $db->plimit($max, 0); $resql = $db->query($sql); if ($resql) { $num = $db->num_rows($resql); $i = 0; $othernb = 0; print '
'; print ''; print ''; if (getDolGlobalString('MAIN_SHOW_HT_ON_SUMMARY')) { print ''; } print ''; print ''; print ''; print ''; if ($num) { $total_ttc = $totalam = $total_ht = 0; while ($i < $num && $i < $conf->liste_limit) { $obj = $db->fetch_object($resql); if ($i >= $max) { $othernb += 1; $i++; $total_ht += $obj->total_ht; $total_ttc += $obj->total_ttc; continue; } $tmpinvoice->ref = $obj->ref; $tmpinvoice->id = $obj->rowid; $tmpinvoice->total_ht = $obj->total_ht; $tmpinvoice->total_tva = $obj->total_tva; $tmpinvoice->total_ttc = $obj->total_ttc; $tmpinvoice->statut = $obj->status; $tmpinvoice->status = $obj->status; $tmpinvoice->paye = $obj->paye; $tmpinvoice->date_lim_reglement = $db->jdate($obj->datelimite); $tmpinvoice->type = $obj->type; $thirdpartystatic->id = $obj->socid; $thirdpartystatic->name = $obj->name; $thirdpartystatic->email = $obj->email; $thirdpartystatic->country_id = $obj->country_id; $thirdpartystatic->country_code = $obj->country_code; $thirdpartystatic->email = $obj->email; $thirdpartystatic->client = 1; $thirdpartystatic->code_client = $obj->code_client; //$thirdpartystatic->code_fournisseur = $obj->code_fournisseur; $thirdpartystatic->code_compta_client = $obj->code_compta_client; //$thirdpartystatic->code_compta_fournisseur = $obj->code_compta_fournisseur; print ''; print ''; print ''; if (getDolGlobalString('MAIN_SHOW_HT_ON_SUMMARY')) { print ''; } print ''; print ''; print ''; print ''; $total_ttc += $obj->total_ttc; $total_ht += $obj->total_ht; $totalam += $obj->am; $i++; } if ($othernb) { print ''; print ''; print "\n"; } } else { $colspan = 5; if (getDolGlobalString('MAIN_SHOW_HT_ON_SUMMARY')) { $colspan++; } print ''; } print '
'.$langs->trans("BoxTitleLastCustomerBills", $max); print '...'; print ''.$langs->trans("AmountHT").''.$langs->trans("AmountTTC").''.$langs->trans("DateModificationShort").' 
'; print ''; print ''; if ($tmpinvoice->hasDelay()) { print ''; } print '
'; print $tmpinvoice->getNomUrl(1, ''); print ''; print img_warning($langs->trans("Late")); print ''; $filename = dol_sanitizeFileName($obj->ref); $filedir = $conf->facture->dir_output.'/'.dol_sanitizeFileName($obj->ref); $urlsource = $_SERVER['PHP_SELF'].'?facid='.$obj->rowid; print $formfile->getDocumentsLink($tmpinvoice->element, $filename, $filedir); print '
'; print '
'; print $thirdpartystatic->getNomUrl(1, 'customer', 44); print ''.price($obj->total_ht).''.price($obj->total_ttc).'jdate($obj->tms), 'dayhour', 'tzuserrel')).'">'.dol_print_date($db->jdate($obj->tms), 'day', 'tzuserrel').''.$tmpinvoice->getLibStatut(3, $obj->am).'
'; print ''.$langs->trans("More").'... ('.$othernb.')'; print '
'.$langs->trans("NoInvoice").'

'; $db->free($resql); } else { dol_print_error($db); } } // Last modified supplier invoices if ((isModEnabled('fournisseur') && !getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD') && $user->hasRight("fournisseur", "facture", "lire")) || (isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) { $langs->load("boxes"); $facstatic = new FactureFournisseur($db); $sql = "SELECT ff.rowid, ff.ref, ff.fk_statut as status, ff.type, ff.libelle, ff.total_ht, ff.total_tva, ff.total_ttc, ff.tms, ff.paye, ff.ref_supplier"; $sql .= ", s.nom as name"; $sql .= ", s.rowid as socid"; $sql .= ", s.code_fournisseur, s.code_compta_fournisseur, s.email"; $sql .= ", (SELECT SUM(pf.amount) FROM ".$db->prefix()."paiementfourn_facturefourn as pf WHERE pf.fk_facturefourn = ff.rowid) as am"; $sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."facture_fourn as ff"; $sql .= " WHERE s.rowid = ff.fk_soc"; $sql .= " AND ff.entity IN (".getEntity('facture_fourn').")"; if ($socid > 0) { $sql .= " AND ff.fk_soc = ".((int) $socid); } // Filter on sale representative if (!$user->hasRight('societe', 'client', 'voir')) { $sql .= " AND EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX."societe_commerciaux as sc WHERE sc.fk_soc = ff.fk_soc AND sc.fk_user = ".((int) $user->id).")"; } // Add where from hooks $parameters = array(); $reshook = $hookmanager->executeHooks('printFieldListWhereSupplierLastModified', $parameters); $sql .= $hookmanager->resPrint; $sql .= " ORDER BY ff.tms DESC"; $sql .= $db->plimit($max, 0); $resql = $db->query($sql); if ($resql) { $num = $db->num_rows($resql); print '
'; print ''; print ''; if (getDolGlobalString('MAIN_SHOW_HT_ON_SUMMARY')) { print ''; } print ''; print ''; print ''; print "\n"; if ($num) { $i = 0; $total_ht = $total_ttc = $totalam = 0; $othernb = 0; while ($i < $num) { $obj = $db->fetch_object($resql); if ($i >= $max) { $othernb += 1; $i++; $total_ht += $obj->total_ht; $total_ttc += $obj->total_ttc; continue; } $facstatic->ref = $obj->ref; $facstatic->id = $obj->rowid; $facstatic->total_ht = $obj->total_ht; $facstatic->total_tva = $obj->total_tva; $facstatic->total_ttc = $obj->total_ttc; $facstatic->statut = $obj->status; $facstatic->status = $obj->status; $facstatic->paye = $obj->paye; $facstatic->paid = $obj->paye; $facstatic->type = $obj->type; $facstatic->ref_supplier = $obj->ref_supplier; $thirdpartystatic->id = $obj->socid; $thirdpartystatic->name = $obj->name; $thirdpartystatic->email = $obj->email; $thirdpartystatic->country_id = 0; $thirdpartystatic->country_code = ''; $thirdpartystatic->client = 0; $thirdpartystatic->fournisseur = 1; $thirdpartystatic->code_client = ''; $thirdpartystatic->code_fournisseur = $obj->code_fournisseur; $thirdpartystatic->code_compta_client = ''; $thirdpartystatic->code_compta_fournisseur = $obj->code_compta_fournisseur; print ''; print ''; if (getDolGlobalString('MAIN_SHOW_HT_ON_SUMMARY')) { print ''; } print ''; print ''; $alreadypaid = $facstatic->getSommePaiement(); print ''; print ''; $total_ht += $obj->total_ht; $total_ttc += $obj->total_ttc; $totalam += $obj->am; $i++; } if ($othernb) { print ''; print ''; print "\n"; } } else { $colspan = 5; if (getDolGlobalString('MAIN_SHOW_HT_ON_SUMMARY')) { $colspan++; } print ''; } print '
'.$langs->trans("BoxTitleLastSupplierBills", $max); print '...'; print ''.$langs->trans("AmountHT").''.$langs->trans("AmountTTC").''.$langs->trans("DateModificationShort").' 
'; print $facstatic->getNomUrl(1, ''); print ''; print $thirdpartystatic->getNomUrl(1, 'supplier'); print ''.price($obj->total_ht).''.price($obj->total_ttc).'jdate($obj->tms), 'dayhour', 'tzuserrel')).'">'.dol_print_date($db->jdate($obj->tms), 'day', 'tzuserrel').''.$facstatic->getLibStatut(3, $alreadypaid).'
'; print ''.$langs->trans("More").'... ('.$othernb.')'; print '
'.$langs->trans("NoInvoice").'

'; } else { dol_print_error($db); } } // Latest donations if (isModEnabled('don') && $user->hasRight('don', 'lire')) { include_once DOL_DOCUMENT_ROOT.'/don/class/don.class.php'; $langs->load("boxes"); $donationstatic = new Don($db); $sql = "SELECT d.rowid, d.lastname, d.firstname, d.societe, d.datedon as date, d.tms as dm, d.amount, d.fk_statut as status"; $sql .= " FROM ".MAIN_DB_PREFIX."don as d"; $sql .= " WHERE d.entity IN (".getEntity('donation').")"; // Add where from hooks $parameters = array(); $reshook = $hookmanager->executeHooks('printFieldListWhereLastDonations', $parameters); $sql .= $hookmanager->resPrint; $sql .= $db->order("d.tms", "DESC"); $sql .= $db->plimit($max, 0); $result = $db->query($sql); if ($result) { $num = $db->num_rows($result); $i = 0; $othernb = 0; print '
'; print ''; print ''; print ''; print ''; print ''; print ''; print ''; if ($num) { $total_ttc = $totalam = $total_ht = 0; while ($i < $num && $i < $max) { $obj = $db->fetch_object($result); if ($i >= $max) { $othernb += 1; $i++; $total_ht += $obj->total_ht; $total_ttc += $obj->total_ttc; continue; } $donationstatic->id = $obj->rowid; $donationstatic->ref = $obj->rowid; $donationstatic->lastname = $obj->lastname; $donationstatic->firstname = $obj->firstname; $donationstatic->date = $db->jdate($obj->date); $donationstatic->statut = $obj->status; $donationstatic->status = $obj->status; $label = $donationstatic->getFullName($langs); if ($obj->societe) { $label .= ($label ? ' - ' : '').$obj->societe; } print ''; print ''; print ''; print ''; print ''; print ''; print ''; $i++; } if ($othernb) { print ''; print ''; print "\n"; } } else { print ''; } print '
'.$langs->trans("BoxTitleLastModifiedDonations", $max); print '...'; print ''.$langs->trans("AmountTTC").''.$langs->trans("DateModificationShort").' 
'.$donationstatic->getNomUrl(1).''.$label.''.price($obj->amount).'jdate($obj->dm), 'dayhour', 'tzuserrel')).'">'.dol_print_date($db->jdate($obj->dm), 'day', 'tzuserrel').''.$donationstatic->getLibStatut(3).'
'; print ''.$langs->trans("More").'... ('.$othernb.')'; print '
'.$langs->trans("None").'

'; } else { dol_print_error($db); } } /** * Social contributions to pay */ if (isModEnabled('tax') && $user->hasRight('tax', 'charges', 'lire')) { if (!$socid) { $chargestatic = new ChargeSociales($db); $sql = "SELECT c.rowid, c.amount, c.date_ech, c.paye,"; $sql .= " cc.libelle as label,"; $sql .= " SUM(pc.amount) as sumpaid"; $sql .= " FROM (".MAIN_DB_PREFIX."c_chargesociales as cc, ".MAIN_DB_PREFIX."chargesociales as c)"; $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."paiementcharge as pc ON pc.fk_charge = c.rowid"; $sql .= " WHERE c.fk_type = cc.id"; $sql .= " AND c.entity IN (".getEntity('tax').')'; $sql .= " AND c.paye = 0"; // Add where from hooks $parameters = array(); $reshook = $hookmanager->executeHooks('printFieldListWhereSocialContributions', $parameters); $sql .= $hookmanager->resPrint; $sql .= " GROUP BY c.rowid, c.amount, c.date_ech, c.paye, cc.libelle"; $resql = $db->query($sql); if ($resql) { $num = $db->num_rows($resql); print '
'; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; if ($num) { $i = 0; $tot_ttc = 0; $tot_paid = 0; $othernb = 0; while ($i < $num) { $obj = $db->fetch_object($resql); if ($i >= $max) { $othernb += 1; $tot_ttc += $obj->amount; $tot_paid += $obj->sumpaid; $i++; continue; } $chargestatic->id = $obj->rowid; $chargestatic->ref = $obj->rowid; $chargestatic->label = $obj->label; $chargestatic->paye = $obj->paye; $chargestatic->status = $obj->paye; print ''; print ''; print ''; print ''; print ''; print ''; print ''; $tot_ttc += $obj->amount; $i++; } if ($othernb) { print ''; print ''; print "\n"; } print ''; print ''; print ''; print ''; print ''; } else { print ''; } print "
'.$langs->trans("ContributionsToPay").($num ? ''.$num.'' : '').''.$langs->trans("DateDue").''.$langs->trans("AmountTTC").''.$langs->trans("Paid").' 
'.$chargestatic->getNomUrl(1).''.dol_print_date($db->jdate($obj->date_ech), 'day').''.price($obj->amount).''.price($obj->sumpaid).''.$chargestatic->getLibStatut(3).'
'; print ''.$langs->trans("More").'... ('.$othernb.')'; print '
'.$langs->trans("Total").''.price($tot_ttc).''.price($tot_paid).' 
'.$langs->trans("None").'

"; $db->free($resql); } else { dol_print_error($db); } } } /* * Customers orders to be billed */ if (isModEnabled('invoice') && isModEnabled('order') && $user->hasRight("commande", "lire") && !getDolGlobalString('WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER')) { $commandestatic = new Commande($db); $langs->load("orders"); $sql = "SELECT sum(f.total_ht) as tot_fht, sum(f.total_ttc) as tot_fttc"; $sql .= ", s.nom as name, s.email"; $sql .= ", s.rowid as socid"; $sql .= ", s.code_client, s.code_compta as code_compta_client"; $sql .= ", c.rowid, c.ref, c.facture, c.fk_statut as status, c.total_ht, c.total_tva, c.total_ttc,"; $sql .= " cc.rowid as country_id, cc.code as country_code"; $sql .= " FROM ".MAIN_DB_PREFIX."societe as s LEFT JOIN ".MAIN_DB_PREFIX."c_country as cc ON cc.rowid = s.fk_pays"; $sql .= ", ".MAIN_DB_PREFIX."commande as c"; $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."element_element as el ON el.fk_source = c.rowid AND el.sourcetype = 'commande'"; $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."facture AS f ON el.fk_target = f.rowid AND el.targettype = 'facture'"; $sql .= " WHERE c.fk_soc = s.rowid"; $sql .= " AND c.entity IN (".getEntity('commande').")"; if ($socid) { $sql .= " AND c.fk_soc = ".((int) $socid); } $sql .= " AND c.fk_statut = ".((int) Commande::STATUS_CLOSED); $sql .= " AND c.facture = 0"; // Filter on sale representative if (!$user->hasRight('societe', 'client', 'voir')) { $sql .= " AND EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX."societe_commerciaux as sc WHERE sc.fk_soc = c.fk_soc AND sc.fk_user = ".((int) $user->id).")"; } // Add where from hooks $parameters = array(); $reshook = $hookmanager->executeHooks('printFieldListWhereCustomerOrderToBill', $parameters); $sql .= $hookmanager->resPrint; $sql .= " GROUP BY s.nom, s.email, s.rowid, s.code_client, s.code_compta, c.rowid, c.ref, c.facture, c.fk_statut, c.total_ht, c.total_tva, c.total_ttc, cc.rowid, cc.code"; $resql = $db->query($sql); if ($resql) { $num = $db->num_rows($resql); if ($num) { $i = 0; $othernb = 0; print '
'; print ''; print ''; print ''; if (getDolGlobalString('MAIN_SHOW_HT_ON_SUMMARY')) { print ''; } print ''; print ''; print ''; print ''; $tot_ht = $tot_ttc = $tot_tobill = 0; $societestatic = new Societe($db); while ($i < $num) { $obj = $db->fetch_object($resql); if ($i >= $max) { $othernb += 1; $i++; $total_ht += $obj->total_ht; $total_ttc += $obj->total_ttc; continue; } $societestatic->id = $obj->socid; $societestatic->name = $obj->name; $societestatic->email = $obj->email; $societestatic->country_id = $obj->country_id; $societestatic->country_code = $obj->country_code; $societestatic->client = 1; $societestatic->code_client = $obj->code_client; //$societestatic->code_fournisseur = $obj->code_fournisseur; $societestatic->code_compta_client = $obj->code_compta_client; //$societestatic->code_compta_fournisseur = $obj->code_compta_fournisseur; $commandestatic->id = $obj->rowid; $commandestatic->ref = $obj->ref; $commandestatic->statut = $obj->status; $commandestatic->billed = $obj->facture; print ''; print ''; print ''; if (getDolGlobalString('MAIN_SHOW_HT_ON_SUMMARY')) { print ''; } print ''; print ''; print ''; print ''; $tot_ht += $obj->total_ht; $tot_ttc += $obj->total_ttc; //print "x".$tot_ttc."z".$obj->tot_fttc; $tot_tobill += ($obj->total_ttc - $obj->tot_fttc); $i++; } if ($othernb) { print ''; print ''; print "\n"; } print ''; if (getDolGlobalString('MAIN_SHOW_HT_ON_SUMMARY')) { print ''; } print ''; print ''; print ''; print ''; print '
'; print $langs->trans("OrdersDeliveredToBill"); print ''; print ''.$num.''; print ''; print ''.$langs->trans("AmountHT").''.$langs->trans("AmountTTC").''.$langs->trans("ToBill").' 
'; print ''; print ''; print ''; print '
'; print $commandestatic->getNomUrl(1); print ''; print ' '; print ''; $filename = dol_sanitizeFileName($obj->ref); $filedir = $conf->commande->dir_output.'/'.dol_sanitizeFileName($obj->ref); $urlsource = $_SERVER['PHP_SELF'].'?id='.$obj->rowid; print $formfile->getDocumentsLink($commandestatic->element, $filename, $filedir); print '
'; print '
'; print $societestatic->getNomUrl(1, 'customer'); print ''.price($obj->total_ht).''.price($obj->total_ttc).''.price($obj->total_ttc - $obj->tot_fttc).''.$commandestatic->getLibStatut(3).'
'; print ''.$langs->trans("More").'... ('.$othernb.')'; print '
'.$langs->trans("Total").'   ('.$langs->trans("RemainderToBill").': '.price($tot_tobill).') '.price($tot_ht).''.price($tot_ttc).''.price($tot_tobill).' 

'; } $db->free($resql); } else { dol_print_error($db); } } // TODO Mettre ici recup des actions en rapport avec la compta $sql = ''; if ($sql) { print '
'; print ''; print ''; print "\n"; $i = 0; $resql = $db->query($sql); if ($resql) { $num_rows = $db->num_rows($resql); while ($i < $num_rows) { $obj = $db->fetch_object($resql); print ''; print ''; $i++; } $db->free($resql); } print "
'.$langs->trans("TasksToDo").'
'.dol_print_date($db->jdate($obj->da), "day").''.$obj->label.'

"; } print '
'; $parameters = array('user' => $user); $reshook = $hookmanager->executeHooks('dashboardAccountancy', $parameters, $object); // Note that $action and $object may have been modified by hook // End of page llxFooter(); $db->close();