Skip to content

Commit

Permalink
[WIP]
Browse files Browse the repository at this point in the history
  • Loading branch information
rov-adhoc committed Dec 27, 2024
1 parent 042354f commit 8a2bfb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions account_currency_reports_ux/monkey_patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ def _select_patch(self):
(SELECT name FROM res_currency_rate r2
WHERE r2.name > r.name AND
r2.currency_id = r.currency_id AND
(r2.company_id is null or r2.company_id = c.id)
(r2.company_id = c.id)
ORDER BY r2.name ASC
LIMIT 1) AS date_end
FROM res_currency_rate r
JOIN res_company c ON (r.company_id is null or r.company_id = c.id)
JOIN res_company c ON (r.company_id = c.id)
WHERE c.id = %s
)
SELECT
Expand Down

0 comments on commit 8a2bfb8

Please sign in to comment.