Skip to content

Commit

Permalink
FIX: Bad visualization of suppliers name on Incomes-Expenses mode
Browse files Browse the repository at this point in the history
  • Loading branch information
fmarcet committed Aug 31, 2015
1 parent fb70fbd commit cf38b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/compta/resultat/clientfourn.php
Expand Up @@ -304,7 +304,7 @@
}
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";
Expand Down

0 comments on commit cf38b17

Please sign in to comment.