Fix minore

This commit is contained in:
Pek5892 2023-05-08 11:15:44 +02:00
parent 5f1f5d525f
commit 0171840af3
2 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ $module_query = '
SELECT
numero_esterno,
an_anagrafiche.ragione_sociale,
prezzo_unitario,
SUM(prezzo_unitario*qta) as \'Totale\',
provvigione_percentuale,
provvigione
FROM
@ -40,7 +40,7 @@ FROM
WHERE
1=1
GROUP BY
co_documenti.id, co_righe_documenti.id
co_documenti.id
HAVING
2=2
ORDER BY

View File

@ -23,7 +23,7 @@ echo '
<tr>
<td> Fattura n. '.$record['numero_esterno'].'</td>
<td>'.$record['ragione_sociale'].'</td>
<td class="text-center">'.moneyFormat($record['prezzo_unitario'], 2).'</td>
<td class="text-center">'.moneyFormat($record['Totale'], 2).'</td>
<td class="text-center">'.numberFormat($record['provvigione_percentuale'], 0).' % </td>
<td class="text-center">'.moneyFormat($record['provvigione'], 2).'</td>
</tr>';
</tr>';