Fix minore
This commit is contained in:
parent
5f1f5d525f
commit
0171840af3
|
@ -26,7 +26,7 @@ $module_query = '
|
||||||
SELECT
|
SELECT
|
||||||
numero_esterno,
|
numero_esterno,
|
||||||
an_anagrafiche.ragione_sociale,
|
an_anagrafiche.ragione_sociale,
|
||||||
prezzo_unitario,
|
SUM(prezzo_unitario*qta) as \'Totale\',
|
||||||
provvigione_percentuale,
|
provvigione_percentuale,
|
||||||
provvigione
|
provvigione
|
||||||
FROM
|
FROM
|
||||||
|
@ -40,7 +40,7 @@ FROM
|
||||||
WHERE
|
WHERE
|
||||||
1=1
|
1=1
|
||||||
GROUP BY
|
GROUP BY
|
||||||
co_documenti.id, co_righe_documenti.id
|
co_documenti.id
|
||||||
HAVING
|
HAVING
|
||||||
2=2
|
2=2
|
||||||
ORDER BY
|
ORDER BY
|
||||||
|
|
|
@ -23,7 +23,7 @@ echo '
|
||||||
<tr>
|
<tr>
|
||||||
<td> Fattura n. '.$record['numero_esterno'].'</td>
|
<td> Fattura n. '.$record['numero_esterno'].'</td>
|
||||||
<td>'.$record['ragione_sociale'].'</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">'.numberFormat($record['provvigione_percentuale'], 0).' % </td>
|
||||||
<td class="text-center">'.moneyFormat($record['provvigione'], 2).'</td>
|
<td class="text-center">'.moneyFormat($record['provvigione'], 2).'</td>
|
||||||
</tr>';
|
</tr>';
|
Loading…
Reference in New Issue