Initial import from Docker volume
This commit is contained in:
2
modules/account_statement_rule/tests/__init__.py
Executable file
2
modules/account_statement_rule/tests/__init__.py
Executable file
@@ -0,0 +1,2 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
BIN
modules/account_statement_rule/tests/__pycache__/__init__.cpython-311.opt-1.pyc
Executable file
BIN
modules/account_statement_rule/tests/__pycache__/__init__.cpython-311.opt-1.pyc
Executable file
Binary file not shown.
BIN
modules/account_statement_rule/tests/__pycache__/__init__.cpython-311.pyc
Executable file
BIN
modules/account_statement_rule/tests/__pycache__/__init__.cpython-311.pyc
Executable file
Binary file not shown.
Binary file not shown.
BIN
modules/account_statement_rule/tests/__pycache__/test_module.cpython-311.pyc
Executable file
BIN
modules/account_statement_rule/tests/__pycache__/test_module.cpython-311.pyc
Executable file
Binary file not shown.
Binary file not shown.
BIN
modules/account_statement_rule/tests/__pycache__/test_scenario.cpython-311.pyc
Executable file
BIN
modules/account_statement_rule/tests/__pycache__/test_scenario.cpython-311.pyc
Executable file
Binary file not shown.
88
modules/account_statement_rule/tests/scenario_account_statement_rule.rst
Executable file
88
modules/account_statement_rule/tests/scenario_account_statement_rule.rst
Executable file
@@ -0,0 +1,88 @@
|
||||
===============================
|
||||
Account Statement Rule Scenario
|
||||
===============================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> import datetime as dt
|
||||
>>> from decimal import Decimal
|
||||
|
||||
>>> from proteus import Model
|
||||
>>> from trytond.modules.account.tests.tools import create_chart, get_accounts
|
||||
>>> from trytond.modules.company.tests.tools import create_company, get_company
|
||||
>>> from trytond.tests.tools import activate_modules, assertEqual
|
||||
|
||||
>>> today = dt.date.today()
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules('account_statement_rule')
|
||||
|
||||
Create company::
|
||||
|
||||
>>> _ = create_company()
|
||||
>>> company = get_company()
|
||||
|
||||
Create chart of accounts::
|
||||
|
||||
>>> _ = create_chart(company)
|
||||
>>> accounts = get_accounts(company)
|
||||
>>> receivable = accounts['receivable']
|
||||
>>> cash = accounts['cash']
|
||||
>>> tax = accounts['tax']
|
||||
|
||||
Create parties::
|
||||
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> customer = Party(name="Customer")
|
||||
>>> customer.save()
|
||||
|
||||
Create statement rules::
|
||||
|
||||
>>> Rule = Model.get('account.statement.rule')
|
||||
|
||||
>>> rule1 = Rule(name="Rule 1")
|
||||
>>> rule1.company = company
|
||||
>>> rule1.amount_low = Decimal('10')
|
||||
>>> rule1.description = r"Party: *(?P<party>.*)"
|
||||
>>> line1 = rule1.lines.new()
|
||||
>>> line1.amount = "amount * 0.1"
|
||||
>>> line1.account = tax
|
||||
>>> line2 = rule1.lines.new()
|
||||
>>> line2.amount = "pending"
|
||||
>>> line2.account = receivable
|
||||
>>> rule1.save()
|
||||
|
||||
Create a statement with origins::
|
||||
|
||||
>>> AccountJournal = Model.get('account.journal')
|
||||
>>> StatementJournal = Model.get('account.statement.journal')
|
||||
>>> Statement = Model.get('account.statement')
|
||||
>>> account_journal, = AccountJournal.find([('code', '=', 'STA')], limit=1)
|
||||
>>> journal_number = StatementJournal(name="Number",
|
||||
... journal=account_journal,
|
||||
... account=cash,
|
||||
... validation='number_of_lines',
|
||||
... )
|
||||
>>> journal_number.save()
|
||||
|
||||
>>> statement = Statement(name="number origins")
|
||||
>>> statement.journal = journal_number
|
||||
>>> statement.number_of_lines = 1
|
||||
>>> origin = statement.origins.new()
|
||||
>>> origin.date = today
|
||||
>>> origin.amount = Decimal('50.00')
|
||||
>>> origin.description = "Party: %s" % customer.code
|
||||
>>> statement.save()
|
||||
>>> len(statement.lines)
|
||||
0
|
||||
|
||||
Apply rules on statement::
|
||||
|
||||
>>> statement.click('apply_rules')
|
||||
>>> len(statement.lines)
|
||||
2
|
||||
>>> sorted([l.amount for l in statement.lines])
|
||||
[Decimal('5.00'), Decimal('45.00')]
|
||||
>>> assertEqual({l.account for l in statement.lines}, {tax, receivable})
|
||||
>>> assertEqual({l.party for l in statement.lines}, {None, customer})
|
||||
@@ -0,0 +1,139 @@
|
||||
====================================================
|
||||
Account Statement Rule Keyword Bank Account Scenario
|
||||
====================================================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> import datetime as dt
|
||||
>>> from decimal import Decimal
|
||||
|
||||
>>> from proteus import Model
|
||||
>>> from trytond.modules.account.tests.tools import (
|
||||
... create_chart, create_fiscalyear, get_accounts)
|
||||
>>> from trytond.modules.account_invoice.tests.tools import (
|
||||
... set_fiscalyear_invoice_sequences)
|
||||
>>> from trytond.modules.company.tests.tools import create_company, get_company
|
||||
>>> from trytond.tests.tools import activate_modules, assertEqual
|
||||
|
||||
>>> today = dt.date.today()
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules(['account_statement_rule', 'bank'])
|
||||
|
||||
>>> AccountJournal = Model.get('account.journal')
|
||||
>>> Bank = Model.get('bank')
|
||||
>>> BankAccount = Model.get('bank.account')
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> Rule = Model.get('account.statement.rule')
|
||||
>>> Statement = Model.get('account.statement')
|
||||
>>> StatementJournal = Model.get('account.statement.journal')
|
||||
|
||||
Create company::
|
||||
|
||||
>>> _ = create_company()
|
||||
>>> company = get_company()
|
||||
|
||||
Create fiscal year::
|
||||
|
||||
>>> fiscalyear = set_fiscalyear_invoice_sequences(
|
||||
... create_fiscalyear(company, today))
|
||||
>>> fiscalyear.click('create_period')
|
||||
|
||||
Create chart of accounts::
|
||||
|
||||
>>> _ = create_chart(company)
|
||||
>>> accounts = get_accounts(company)
|
||||
|
||||
Create a party::
|
||||
|
||||
>>> customer = Party(name="Customer")
|
||||
>>> customer.save()
|
||||
|
||||
Create a bank::
|
||||
|
||||
>>> party_bank = Party(name="Bank")
|
||||
>>> party_bank.save()
|
||||
>>> bank = Bank(party=party_bank)
|
||||
>>> bank.save()
|
||||
|
||||
Create statement rules::
|
||||
|
||||
>>> rule = Rule(name="Party Rule")
|
||||
>>> rule.company = company
|
||||
>>> rule.description = r"Account: *(?P<bank_account>.*)"
|
||||
>>> line = rule.lines.new()
|
||||
>>> line.amount = "pending"
|
||||
>>> line.account = accounts['receivable']
|
||||
>>> rule.save()
|
||||
|
||||
Create a statement with non matching rule::
|
||||
|
||||
>>> account_journal, = AccountJournal.find([('code', '=', 'STA')], limit=1)
|
||||
>>> journal_number = StatementJournal(
|
||||
... name="Number",
|
||||
... journal=account_journal,
|
||||
... account=accounts['cash'],
|
||||
... validation='number_of_lines')
|
||||
>>> journal_number.save()
|
||||
|
||||
>>> statement = Statement(name="Test")
|
||||
>>> statement.journal = journal_number
|
||||
>>> statement.number_of_lines = 1
|
||||
>>> origin = statement.origins.new()
|
||||
>>> origin.date = today
|
||||
>>> origin.amount = Decimal('50.00')
|
||||
>>> origin.description = "Account: 123456"
|
||||
>>> statement.save()
|
||||
>>> len(statement.lines)
|
||||
0
|
||||
|
||||
Apply rules on statement::
|
||||
|
||||
>>> statement.click('apply_rules')
|
||||
>>> len(statement.lines)
|
||||
0
|
||||
|
||||
Create the bank account::
|
||||
|
||||
>>> bank_account = BankAccount(bank=bank)
|
||||
>>> bank_account.owners.append(Party(customer.id))
|
||||
>>> number = bank_account.numbers.new()
|
||||
>>> number.type = 'other'
|
||||
>>> number.number = "123456"
|
||||
>>> bank_account.save()
|
||||
|
||||
Apply rules on statement match::
|
||||
|
||||
>>> statement.click('apply_rules')
|
||||
>>> line, = statement.lines
|
||||
>>> assertEqual(line.party, customer)
|
||||
|
||||
>>> statement.click('validate_statement')
|
||||
>>> statement.click('post')
|
||||
|
||||
Remove the bank account::
|
||||
|
||||
>>> bank_account.delete()
|
||||
|
||||
Create a new statement with same keyword::
|
||||
|
||||
>>> statement = Statement(name="Test")
|
||||
>>> statement.journal = journal_number
|
||||
>>> statement.number_of_lines = 1
|
||||
>>> origin = statement.origins.new()
|
||||
>>> origin.date = today
|
||||
>>> origin.amount = Decimal('50.00')
|
||||
>>> origin.description = "Account: 123456"
|
||||
>>> statement.save()
|
||||
>>> len(statement.lines)
|
||||
0
|
||||
|
||||
Now a party is found::
|
||||
|
||||
>>> statement.click('apply_rules')
|
||||
>>> line, = statement.lines
|
||||
>>> line.amount
|
||||
Decimal('50.00')
|
||||
>>> assertEqual(line.party, customer)
|
||||
>>> assertEqual(line.account, accounts['receivable'])
|
||||
@@ -0,0 +1,120 @@
|
||||
=======================================
|
||||
Account Statement Rule Keyword Scenario
|
||||
=======================================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> import datetime as dt
|
||||
>>> from decimal import Decimal
|
||||
|
||||
>>> from proteus import Model
|
||||
>>> from trytond.modules.account.tests.tools import (
|
||||
... create_chart, create_fiscalyear, get_accounts)
|
||||
>>> from trytond.modules.account_invoice.tests.tools import (
|
||||
... set_fiscalyear_invoice_sequences)
|
||||
>>> from trytond.modules.company.tests.tools import create_company, get_company
|
||||
>>> from trytond.tests.tools import activate_modules, assertEqual
|
||||
|
||||
>>> today = dt.date.today()
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules('account_statement_rule')
|
||||
|
||||
Create company::
|
||||
|
||||
>>> _ = create_company()
|
||||
>>> company = get_company()
|
||||
|
||||
Create fiscal year::
|
||||
|
||||
>>> fiscalyear = set_fiscalyear_invoice_sequences(
|
||||
... create_fiscalyear(company, today))
|
||||
>>> fiscalyear.click('create_period')
|
||||
|
||||
Create chart of accounts::
|
||||
|
||||
>>> _ = create_chart(company)
|
||||
>>> accounts = get_accounts(company)
|
||||
>>> receivable = accounts['receivable']
|
||||
>>> cash = accounts['cash']
|
||||
|
||||
Create parties::
|
||||
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> customer = Party(name="Customer")
|
||||
>>> customer.save()
|
||||
|
||||
Create statement rules::
|
||||
|
||||
>>> Rule = Model.get('account.statement.rule')
|
||||
|
||||
>>> rule = Rule(name="Party Rule")
|
||||
>>> rule.company = company
|
||||
>>> rule.description = r"Party: *(?P<party>.*)"
|
||||
>>> line = rule.lines.new()
|
||||
>>> line.amount = "pending"
|
||||
>>> line.account = receivable
|
||||
>>> rule.save()
|
||||
|
||||
Create a statement with non matching rule::
|
||||
|
||||
>>> AccountJournal = Model.get('account.journal')
|
||||
>>> StatementJournal = Model.get('account.statement.journal')
|
||||
>>> Statement = Model.get('account.statement')
|
||||
>>> account_journal, = AccountJournal.find([('code', '=', 'STA')], limit=1)
|
||||
>>> journal_number = StatementJournal(name="Number",
|
||||
... journal=account_journal,
|
||||
... account=cash,
|
||||
... validation='number_of_lines',
|
||||
... )
|
||||
>>> journal_number.save()
|
||||
|
||||
>>> statement = Statement(name="number origins")
|
||||
>>> statement.journal = journal_number
|
||||
>>> statement.number_of_lines = 1
|
||||
>>> origin = statement.origins.new()
|
||||
>>> origin.date = today
|
||||
>>> origin.amount = Decimal('50.00')
|
||||
>>> origin.description = "Party: %s-%s" % (customer.code, customer.name)
|
||||
>>> statement.save()
|
||||
>>> len(statement.lines)
|
||||
0
|
||||
|
||||
Apply rules on statement::
|
||||
|
||||
>>> statement.click('apply_rules')
|
||||
>>> len(statement.lines)
|
||||
0
|
||||
|
||||
Manually create a line for the origin::
|
||||
|
||||
>>> origin, = statement.origins
|
||||
>>> line = origin.lines.new()
|
||||
>>> line.party = customer
|
||||
>>> origin.save()
|
||||
>>> statement.click('validate_statement')
|
||||
>>> statement.click('post')
|
||||
|
||||
|
||||
Create a new statement with same keyword::
|
||||
|
||||
>>> statement = Statement(name="number origins")
|
||||
>>> statement.journal = journal_number
|
||||
>>> statement.number_of_lines = 1
|
||||
>>> origin = statement.origins.new()
|
||||
>>> origin.date = today
|
||||
>>> origin.amount = Decimal('50.00')
|
||||
>>> origin.description = "Party: %s-%s" % (customer.code, customer.name)
|
||||
>>> statement.save()
|
||||
>>> len(statement.lines)
|
||||
0
|
||||
|
||||
Now a party is found::
|
||||
|
||||
>>> statement.click('apply_rules')
|
||||
>>> line, = statement.lines
|
||||
>>> line.amount
|
||||
Decimal('50.00')
|
||||
>>> assertEqual(line.party, customer)
|
||||
>>> assertEqual(line.account, receivable)
|
||||
13
modules/account_statement_rule/tests/test_module.py
Executable file
13
modules/account_statement_rule/tests/test_module.py
Executable file
@@ -0,0 +1,13 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.modules.company.tests import CompanyTestMixin
|
||||
from trytond.tests.test_tryton import ModuleTestCase
|
||||
|
||||
|
||||
class AccountStatementRuleTestCase(CompanyTestMixin, ModuleTestCase):
|
||||
'Test Account Statement Rule module'
|
||||
module = 'account_statement_rule'
|
||||
|
||||
|
||||
del ModuleTestCase
|
||||
8
modules/account_statement_rule/tests/test_scenario.py
Executable file
8
modules/account_statement_rule/tests/test_scenario.py
Executable file
@@ -0,0 +1,8 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.tests.test_tryton import load_doc_tests
|
||||
|
||||
|
||||
def load_tests(*args, **kwargs):
|
||||
return load_doc_tests(__name__, __file__, *args, **kwargs)
|
||||
Reference in New Issue
Block a user