line: valid handling of 2nd-currency + test
This commit is contained in:
parent
50c3ef04bc
commit
04fdd9dc9e
3 changed files with 303 additions and 5 deletions
30
line.py
30
line.py
|
@ -251,17 +251,17 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
))
|
))
|
||||||
# in case of 'mvin' or 'mvout' - create counterpart
|
# in case of 'mvin' or 'mvout' - create counterpart
|
||||||
if (line.bookingtype in ['mvout', 'mvin']) and (line.reference is None):
|
if (line.bookingtype in ['mvout', 'mvin']) and (line.reference is None):
|
||||||
to_create_line.append({
|
values = {
|
||||||
'cashbook': line.booktransf.id,
|
'cashbook': line.booktransf.id,
|
||||||
'bookingtype': 'mvin' if line.bookingtype == 'mvout' else 'mvout',
|
'bookingtype': 'mvin' if line.bookingtype == 'mvout' else 'mvout',
|
||||||
'date': line.date,
|
'date': line.date,
|
||||||
'description': line.description,
|
'description': line.description,
|
||||||
'amount': line.amount,
|
|
||||||
'credit': line.debit,
|
|
||||||
'debit': line.credit,
|
|
||||||
'booktransf': line.cashbook.id,
|
'booktransf': line.cashbook.id,
|
||||||
'reference': line.id,
|
'reference': line.id,
|
||||||
})
|
}
|
||||||
|
values.update(line.get_amount_by_second_currency(line.booktransf.currency))
|
||||||
|
values.update(cls.get_debit_credit(values))
|
||||||
|
to_create_line.append(values)
|
||||||
|
|
||||||
# add number to line
|
# add number to line
|
||||||
if line.cashbook.number_atcheck == True:
|
if line.cashbook.number_atcheck == True:
|
||||||
|
@ -342,6 +342,26 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
'type': gettext('cashbook.msg_line_bookingtype_%s' % self.bookingtype),
|
'type': gettext('cashbook.msg_line_bookingtype_%s' % self.bookingtype),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def get_amount_by_second_currency(self, to_currency):
|
||||||
|
""" get amount, calculate credit/debit from currency of current
|
||||||
|
cashbook to 'to_currency'
|
||||||
|
"""
|
||||||
|
Currency = Pool().get('currency.currency')
|
||||||
|
|
||||||
|
values = {
|
||||||
|
'amount': self.amount,
|
||||||
|
}
|
||||||
|
|
||||||
|
if to_currency.id != self.cashbook.currency.id:
|
||||||
|
with Transaction().set_context({
|
||||||
|
'date': self.date,
|
||||||
|
}):
|
||||||
|
values['amount'] = Currency.compute(
|
||||||
|
self.cashbook.currency,
|
||||||
|
self.amount,
|
||||||
|
to_currency)
|
||||||
|
return values
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def order_state(tables):
|
def order_state(tables):
|
||||||
""" edit = 0, check/done = 1
|
""" edit = 0, check/done = 1
|
||||||
|
|
|
@ -9,6 +9,7 @@ from trytond.transaction import Transaction
|
||||||
from trytond.exceptions import UserError
|
from trytond.exceptions import UserError
|
||||||
from trytond.modules.company.tests import create_company
|
from trytond.modules.company.tests import create_company
|
||||||
from datetime import date
|
from datetime import date
|
||||||
|
from decimal import Decimal
|
||||||
|
|
||||||
|
|
||||||
class ConfigTestCase(ModuleTestCase):
|
class ConfigTestCase(ModuleTestCase):
|
||||||
|
@ -53,6 +54,51 @@ class ConfigTestCase(ModuleTestCase):
|
||||||
}])
|
}])
|
||||||
return party
|
return party
|
||||||
|
|
||||||
|
def prep_2nd_currency(self, company):
|
||||||
|
""" add EUR as 2nd currency
|
||||||
|
"""
|
||||||
|
pool = Pool()
|
||||||
|
Currency = pool.get('currency.currency')
|
||||||
|
CurrencyRate = pool.get('currency.currency.rate')
|
||||||
|
Company = pool.get('company.company')
|
||||||
|
|
||||||
|
usd, = Currency.search([('name', '=', 'usd')])
|
||||||
|
euros = Currency.search([('code', '=', 'EUR')])
|
||||||
|
if len(euros) == 0:
|
||||||
|
euro, = Currency.create([{
|
||||||
|
'name': 'Euro',
|
||||||
|
'symbol': '€',
|
||||||
|
'code': 'EUR',
|
||||||
|
'numeric_code': '978',
|
||||||
|
'rounding': Decimal('0.01'),
|
||||||
|
'digits': 2,
|
||||||
|
}])
|
||||||
|
else :
|
||||||
|
euro = euros[0]
|
||||||
|
|
||||||
|
# set company-currency to euro
|
||||||
|
self.assertEqual(company.currency.name, 'usd')
|
||||||
|
Company.write(*[
|
||||||
|
[company],
|
||||||
|
{
|
||||||
|
'currency': euro.id,
|
||||||
|
}])
|
||||||
|
self.assertEqual(company.currency.name, 'Euro')
|
||||||
|
|
||||||
|
# add rate for euro/usd @ 05/02/2022
|
||||||
|
# EUR is base-currency
|
||||||
|
CurrencyRate.create([{
|
||||||
|
'date': date(2022, 5, 2),
|
||||||
|
'currency': euro.id,
|
||||||
|
'rate': Decimal('1.0'),
|
||||||
|
}, {
|
||||||
|
'date': date(2022, 5, 2),
|
||||||
|
'currency': usd.id,
|
||||||
|
'rate': Decimal('1.05'),
|
||||||
|
}])
|
||||||
|
|
||||||
|
return (usd, euro)
|
||||||
|
|
||||||
@with_transaction()
|
@with_transaction()
|
||||||
def test_config_create(self):
|
def test_config_create(self):
|
||||||
""" create config
|
""" create config
|
||||||
|
|
|
@ -16,6 +16,238 @@ class LineTestCase(ModuleTestCase):
|
||||||
'Test cashbook line module'
|
'Test cashbook line module'
|
||||||
module = 'cashbook'
|
module = 'cashbook'
|
||||||
|
|
||||||
|
@with_transaction()
|
||||||
|
def test_line_check_transfer_2nd_currency_out(self):
|
||||||
|
""" create cashbook, lines, transfer amount between
|
||||||
|
accounts with different currencies
|
||||||
|
"""
|
||||||
|
pool = Pool()
|
||||||
|
Book = pool.get('cashbook.book')
|
||||||
|
Lines = pool.get('cashbook.line')
|
||||||
|
Reconciliation = pool.get('cashbook.recon')
|
||||||
|
|
||||||
|
types = self.prep_type()
|
||||||
|
company = self.prep_company()
|
||||||
|
|
||||||
|
# add EURO, set company-currency to EURO
|
||||||
|
(usd, euro) = self.prep_2nd_currency(company)
|
||||||
|
|
||||||
|
books = Book.create([{
|
||||||
|
'name': 'Book USD',
|
||||||
|
'btype': types.id,
|
||||||
|
'company': company.id,
|
||||||
|
'currency': usd.id,
|
||||||
|
'number_sequ': self.prep_sequence().id,
|
||||||
|
'start_date': date(2022, 5, 1),
|
||||||
|
}, {
|
||||||
|
'name': 'Book EURO',
|
||||||
|
'btype': types.id,
|
||||||
|
'company': company.id,
|
||||||
|
'currency': euro.id,
|
||||||
|
'number_sequ': self.prep_sequence().id,
|
||||||
|
'start_date': date(2022, 5, 1),
|
||||||
|
}])
|
||||||
|
self.assertEqual(len(books), 2)
|
||||||
|
self.assertEqual(books[0].rec_name, 'Book USD | 0.00 usd | Open')
|
||||||
|
self.assertEqual(books[1].rec_name, 'Book EURO | 0.00 € | Open')
|
||||||
|
|
||||||
|
Book.write(*[
|
||||||
|
[books[0]],
|
||||||
|
{
|
||||||
|
'lines': [('create', [{
|
||||||
|
'date': date(2022, 5, 5),
|
||||||
|
'description': 'Transfer USD --> EUR',
|
||||||
|
'bookingtype': 'mvout',
|
||||||
|
'amount': Decimal('10.0'),
|
||||||
|
'booktransf': books[1].id,
|
||||||
|
}])],
|
||||||
|
}])
|
||||||
|
self.assertEqual(len(books[0].lines), 1)
|
||||||
|
self.assertEqual(len(books[1].lines), 0)
|
||||||
|
self.assertEqual(books[0].lines[0].rec_name,
|
||||||
|
'05/05/2022|to|-10.00 usd|Transfer USD --> EUR [Book EURO | 0.00 € | Open]')
|
||||||
|
self.assertEqual(books[0].lines[0].reference, None)
|
||||||
|
self.assertEqual(len(books[0].lines[0].references), 0)
|
||||||
|
self.assertEqual(books[0].lines[0].reconciliation, None)
|
||||||
|
|
||||||
|
Lines.wfcheck([books[0].lines[0]])
|
||||||
|
|
||||||
|
self.assertEqual(len(books[0].lines), 1)
|
||||||
|
self.assertEqual(len(books[1].lines), 1)
|
||||||
|
self.assertEqual(books[0].lines[0].reference, None)
|
||||||
|
self.assertEqual(len(books[0].lines[0].references), 1)
|
||||||
|
|
||||||
|
self.assertEqual(books[0].lines[0].rec_name,
|
||||||
|
'05/05/2022|to|-10.00 usd|Transfer USD --> EUR [Book EURO | 9.52 € | Open]')
|
||||||
|
self.assertEqual(books[1].lines[0].rec_name,
|
||||||
|
'05/05/2022|from|9.52 €|Transfer USD --> EUR [Book USD | -10.00 usd | Open]')
|
||||||
|
self.assertEqual(books[0].balance, Decimal('-10.0'))
|
||||||
|
self.assertEqual(books[0].currency.rec_name, 'usd')
|
||||||
|
self.assertEqual(books[1].balance, Decimal('9.52'))
|
||||||
|
self.assertEqual(books[1].currency.rec_name, 'Euro')
|
||||||
|
|
||||||
|
@with_transaction()
|
||||||
|
def test_line_check_transfer_2nd_currency_in(self):
|
||||||
|
""" create cashbook, lines, transfer amount between
|
||||||
|
accounts with different currencies
|
||||||
|
"""
|
||||||
|
pool = Pool()
|
||||||
|
Book = pool.get('cashbook.book')
|
||||||
|
Lines = pool.get('cashbook.line')
|
||||||
|
Reconciliation = pool.get('cashbook.recon')
|
||||||
|
|
||||||
|
types = self.prep_type()
|
||||||
|
company = self.prep_company()
|
||||||
|
|
||||||
|
# add EURO, set company-currency to EURO
|
||||||
|
(usd, euro) = self.prep_2nd_currency(company)
|
||||||
|
|
||||||
|
books = Book.create([{
|
||||||
|
'name': 'Book USD',
|
||||||
|
'btype': types.id,
|
||||||
|
'company': company.id,
|
||||||
|
'currency': usd.id,
|
||||||
|
'number_sequ': self.prep_sequence().id,
|
||||||
|
'start_date': date(2022, 5, 1),
|
||||||
|
}, {
|
||||||
|
'name': 'Book EURO',
|
||||||
|
'btype': types.id,
|
||||||
|
'company': company.id,
|
||||||
|
'currency': euro.id,
|
||||||
|
'number_sequ': self.prep_sequence().id,
|
||||||
|
'start_date': date(2022, 5, 1),
|
||||||
|
}])
|
||||||
|
self.assertEqual(len(books), 2)
|
||||||
|
self.assertEqual(books[0].rec_name, 'Book USD | 0.00 usd | Open')
|
||||||
|
self.assertEqual(books[1].rec_name, 'Book EURO | 0.00 € | Open')
|
||||||
|
|
||||||
|
Book.write(*[
|
||||||
|
[books[0]],
|
||||||
|
{
|
||||||
|
'lines': [('create', [{
|
||||||
|
'date': date(2022, 5, 5),
|
||||||
|
'description': 'Transfer USD <-- EUR',
|
||||||
|
'bookingtype': 'mvin',
|
||||||
|
'amount': Decimal('10.0'),
|
||||||
|
'booktransf': books[1].id,
|
||||||
|
}])],
|
||||||
|
}])
|
||||||
|
self.assertEqual(len(books[0].lines), 1)
|
||||||
|
self.assertEqual(len(books[1].lines), 0)
|
||||||
|
self.assertEqual(books[0].lines[0].rec_name,
|
||||||
|
'05/05/2022|from|10.00 usd|Transfer USD <-- EUR [Book EURO | 0.00 € | Open]')
|
||||||
|
self.assertEqual(books[0].lines[0].reference, None)
|
||||||
|
self.assertEqual(len(books[0].lines[0].references), 0)
|
||||||
|
self.assertEqual(books[0].lines[0].reconciliation, None)
|
||||||
|
|
||||||
|
Lines.wfcheck([books[0].lines[0]])
|
||||||
|
|
||||||
|
self.assertEqual(len(books[0].lines), 1)
|
||||||
|
self.assertEqual(len(books[1].lines), 1)
|
||||||
|
self.assertEqual(books[0].lines[0].reference, None)
|
||||||
|
self.assertEqual(len(books[0].lines[0].references), 1)
|
||||||
|
|
||||||
|
self.assertEqual(books[0].lines[0].rec_name,
|
||||||
|
'05/05/2022|from|10.00 usd|Transfer USD <-- EUR [Book EURO | -9.52 € | Open]')
|
||||||
|
self.assertEqual(books[1].lines[0].rec_name,
|
||||||
|
'05/05/2022|to|-9.52 €|Transfer USD <-- EUR [Book USD | 10.00 usd | Open]')
|
||||||
|
self.assertEqual(books[0].balance, Decimal('10.0'))
|
||||||
|
self.assertEqual(books[0].currency.rec_name, 'usd')
|
||||||
|
self.assertEqual(books[1].balance, Decimal('-9.52'))
|
||||||
|
self.assertEqual(books[1].currency.rec_name, 'Euro')
|
||||||
|
|
||||||
|
@with_transaction()
|
||||||
|
def test_line_check_transfer_2nd_currency_nocompany(self):
|
||||||
|
""" create cashbook, lines, transfer amount between
|
||||||
|
accounts with different currencies,
|
||||||
|
both currencies are no company-currencies
|
||||||
|
"""
|
||||||
|
pool = Pool()
|
||||||
|
Book = pool.get('cashbook.book')
|
||||||
|
Lines = pool.get('cashbook.line')
|
||||||
|
Reconciliation = pool.get('cashbook.recon')
|
||||||
|
Currency = pool.get('currency.currency')
|
||||||
|
CurrencyRate = pool.get('currency.currency.rate')
|
||||||
|
|
||||||
|
types = self.prep_type()
|
||||||
|
company = self.prep_company()
|
||||||
|
|
||||||
|
# add EURO, set company-currency to EURO
|
||||||
|
(usd, euro) = self.prep_2nd_currency(company)
|
||||||
|
# add CHF
|
||||||
|
curr_chf, = Currency.create([{
|
||||||
|
'name': 'Swiss Franc',
|
||||||
|
'symbol': 'CHF',
|
||||||
|
'code': 'CHF',
|
||||||
|
'numeric_code': '756',
|
||||||
|
'rounding': Decimal('0.01'),
|
||||||
|
'digits': 2,
|
||||||
|
}])
|
||||||
|
CurrencyRate.create([{
|
||||||
|
'date': date(2022, 5, 2),
|
||||||
|
'currency': curr_chf.id,
|
||||||
|
'rate': Decimal('1.04'), # 1 € = 1.04 CHF @ 5/2/2022
|
||||||
|
},])
|
||||||
|
|
||||||
|
books = Book.create([{
|
||||||
|
'name': 'Book CHF',
|
||||||
|
'btype': types.id,
|
||||||
|
'company': company.id,
|
||||||
|
'currency': curr_chf.id,
|
||||||
|
'number_sequ': self.prep_sequence().id,
|
||||||
|
'start_date': date(2022, 5, 1),
|
||||||
|
}, {
|
||||||
|
'name': 'Book USD',
|
||||||
|
'btype': types.id,
|
||||||
|
'company': company.id,
|
||||||
|
'currency': usd.id,
|
||||||
|
'number_sequ': self.prep_sequence().id,
|
||||||
|
'start_date': date(2022, 5, 1),
|
||||||
|
}])
|
||||||
|
self.assertEqual(len(books), 2)
|
||||||
|
self.assertEqual(books[0].rec_name, 'Book CHF | 0.00 CHF | Open')
|
||||||
|
self.assertEqual(books[1].rec_name, 'Book USD | 0.00 usd | Open')
|
||||||
|
|
||||||
|
Book.write(*[
|
||||||
|
[books[0]],
|
||||||
|
{
|
||||||
|
'lines': [('create', [{
|
||||||
|
'date': date(2022, 5, 5),
|
||||||
|
'description': 'Transfer CHF --> USD',
|
||||||
|
'bookingtype': 'mvout',
|
||||||
|
'amount': Decimal('10.0'),
|
||||||
|
'booktransf': books[1].id,
|
||||||
|
}])],
|
||||||
|
}])
|
||||||
|
self.assertEqual(len(books[0].lines), 1)
|
||||||
|
self.assertEqual(len(books[1].lines), 0)
|
||||||
|
self.assertEqual(books[0].lines[0].rec_name,
|
||||||
|
'05/05/2022|to|-10.00 CHF|Transfer CHF --> USD [Book USD | 0.00 usd | Open]')
|
||||||
|
self.assertEqual(books[0].lines[0].reference, None)
|
||||||
|
self.assertEqual(len(books[0].lines[0].references), 0)
|
||||||
|
self.assertEqual(books[0].lines[0].reconciliation, None)
|
||||||
|
|
||||||
|
Lines.wfcheck([books[0].lines[0]])
|
||||||
|
|
||||||
|
self.assertEqual(len(books[0].lines), 1)
|
||||||
|
self.assertEqual(len(books[1].lines), 1)
|
||||||
|
self.assertEqual(books[0].lines[0].reference, None)
|
||||||
|
self.assertEqual(len(books[0].lines[0].references), 1)
|
||||||
|
|
||||||
|
# 10 CHF --> USD: USD = CHF * 1.05 / 1.04
|
||||||
|
# 10 CHF = 10.0961538 USD
|
||||||
|
# EUR | USD | CHF
|
||||||
|
# -----+-----+----- @ 05/02/2022
|
||||||
|
# 1.00| 1.05| 1.04
|
||||||
|
self.assertEqual(books[0].lines[0].rec_name,
|
||||||
|
'05/05/2022|to|-10.00 CHF|Transfer CHF --> USD [Book USD | 10.10 usd | Open]')
|
||||||
|
self.assertEqual(books[1].lines[0].rec_name,
|
||||||
|
'05/05/2022|from|10.10 usd|Transfer CHF --> USD [Book CHF | -10.00 CHF | Open]')
|
||||||
|
self.assertEqual(books[0].balance, Decimal('-10.0'))
|
||||||
|
self.assertEqual(books[0].currency.rec_name, 'Swiss Franc')
|
||||||
|
self.assertEqual(books[1].balance, Decimal('10.10'))
|
||||||
|
self.assertEqual(books[1].currency.rec_name, 'usd')
|
||||||
|
|
||||||
@with_transaction()
|
@with_transaction()
|
||||||
def test_line_check_balance_by_line(self):
|
def test_line_check_balance_by_line(self):
|
||||||
""" create cashbook, lines, reconciliations,
|
""" create cashbook, lines, reconciliations,
|
||||||
|
|
Loading…
Reference in a new issue