feat: refs #6500 cambios solicitados
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Robert Ferrús 2024-04-17 11:00:00 +02:00
parent ffd7b3cf50
commit 8ca278b5a9
1 changed files with 4 additions and 4 deletions

View File

@ -7,10 +7,10 @@ BEGIN
SELECT
t.year,
t.month,
pagos.dollars,
pagos.changePractical,
pay.dollars,
pay.changePractical,
CAST(SUM(iit.foreignValue ) / SUM(iit.taxableBase) AS DECIMAL(5,4)) cambioTeorico,
pagos.changeOfficial
pay.changeOfficial
FROM invoiceIn ii
JOIN time t ON t.dated = ii.issued
JOIN invoiceInTax iit ON ii.id = iit.invoiceInFk
@ -28,7 +28,7 @@ BEGIN
WHERE p.divisa
AND c.code = 'USD'
GROUP BY t.year, t.month
) pagos ON t.year = pagos.year AND t.month = pagos.MONTH
) pay ON t.year = pay.year AND t.month = pay.month
JOIN currency c ON c.id = ii.currencyFk
WHERE c.code = 'USD'
AND iit.foreignValue