Browse Source

July 09: [FIX] Bug Fixed 'exchange_currency_rate'

pull/395/head
Cybrosys Technologies 2 weeks ago
parent
commit
cf0c3dc178
  1. 2
      exchange_currency_rate/__manifest__.py
  2. 6
      exchange_currency_rate/doc/RELEASE_NOTES.md
  3. 2
      exchange_currency_rate/models/account_move.py

2
exchange_currency_rate/__manifest__.py

@ -21,7 +21,7 @@
################################################################################ ################################################################################
{ {
'name': "Manual Currency Exchange Rate", 'name': "Manual Currency Exchange Rate",
'version': '18.0.1.1.0', 'version': '18.0.1.1.1',
'category': 'Accounting', 'category': 'Accounting',
'summary': """By using this module ,we can change the currency rate manually 'summary': """By using this module ,we can change the currency rate manually
in sale ,purchase and invoice. """, in sale ,purchase and invoice. """,

6
exchange_currency_rate/doc/RELEASE_NOTES.md

@ -5,3 +5,9 @@
#### ADD #### ADD
- Initial commit for Manual Currency Exchange Rate - Initial commit for Manual Currency Exchange Rate
#### 09.07.2025
#### Version 18.0.1.1.1
#### UPDT
- Fixed a bug that occured during installation of the module.

2
exchange_currency_rate/models/account_move.py

@ -111,7 +111,7 @@ class AccountMove(models.Model):
from_currency=move.company_currency_id, from_currency=move.company_currency_id,
to_currency=move.currency_id, to_currency=move.currency_id,
company=move.company_id, company=move.company_id,
date=self.date, date=move.date,
) )
def _inverse_rate(self): def _inverse_rate(self):

Loading…
Cancel
Save