Skip to content
Snippets Groups Projects
Commit cf38b17e authored by Ferran Marcet's avatar Ferran Marcet
Browse files

FIX: Bad visualization of suppliers name on Incomes-Expenses mode

parent fb70fbdc
No related branches found
No related tags found
No related merge requests found
......@@ -304,7 +304,7 @@ if ($modecompta == 'CREANCES-DETTES')
}
else
{
$sql = "SELECT s.nom, s.rowid as socid, sum(pf.amount) as amount_ttc";
$sql = "SELECT s.nom as name, s.rowid as socid, sum(pf.amount) as amount_ttc";
$sql.= " FROM ".MAIN_DB_PREFIX."paiementfourn as p";
$sql.= ", ".MAIN_DB_PREFIX."paiementfourn_facturefourn as pf";
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."facture_fourn as f";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment