295 lines
13 KiB
Python
Executable File
295 lines
13 KiB
Python
Executable File
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
|
# this repository contains the full copyright notices and license terms.
|
|
|
|
import datetime
|
|
from decimal import Decimal
|
|
from unittest.mock import Mock, patch
|
|
|
|
from trytond.modules.account_invoice.exceptions import (
|
|
PaymentTermValidationError)
|
|
from trytond.modules.company.tests import (
|
|
CompanyTestMixin, PartyCompanyCheckEraseMixin)
|
|
from trytond.modules.currency.tests import create_currency
|
|
from trytond.pool import Pool
|
|
from trytond.tests.test_tryton import ModuleTestCase, with_transaction
|
|
|
|
|
|
def set_invoice_sequences(fiscalyear):
|
|
pool = Pool()
|
|
Sequence = pool.get('ir.sequence.strict')
|
|
SequenceType = pool.get('ir.sequence.type')
|
|
InvoiceSequence = pool.get('account.fiscalyear.invoice_sequence')
|
|
|
|
sequence_type, = SequenceType.search([
|
|
('name', '=', "Invoice"),
|
|
], limit=1)
|
|
sequence = Sequence(name=fiscalyear.name, sequence_type=sequence_type)
|
|
sequence.company = fiscalyear.company
|
|
sequence.save()
|
|
fiscalyear.invoice_sequences = []
|
|
invoice_sequence = InvoiceSequence()
|
|
invoice_sequence.fiscalyear = fiscalyear
|
|
invoice_sequence.in_invoice_sequence = sequence
|
|
invoice_sequence.in_credit_note_sequence = sequence
|
|
invoice_sequence.out_invoice_sequence = sequence
|
|
invoice_sequence.out_credit_note_sequence = sequence
|
|
invoice_sequence.save()
|
|
return fiscalyear
|
|
|
|
|
|
class AccountInvoiceTestCase(
|
|
PartyCompanyCheckEraseMixin, CompanyTestMixin, ModuleTestCase):
|
|
'Test AccountInvoice module'
|
|
module = 'account_invoice'
|
|
|
|
@with_transaction()
|
|
def test_payment_term(self):
|
|
'Test payment_term'
|
|
pool = Pool()
|
|
PaymentTerm = pool.get('account.invoice.payment_term')
|
|
|
|
cu1 = create_currency('cu1')
|
|
term, = PaymentTerm.create([{
|
|
'name': '30 days, 1 month, 1 month + 15 days',
|
|
'lines': [
|
|
('create', [{
|
|
'sequence': 0,
|
|
'type': 'percent',
|
|
'divisor': 4,
|
|
'ratio': Decimal('.25'),
|
|
'relativedeltas': [('create', [{
|
|
'days': 30,
|
|
},
|
|
]),
|
|
],
|
|
}, {
|
|
'sequence': 1,
|
|
'type': 'percent_on_total',
|
|
'divisor': 4,
|
|
'ratio': Decimal('.25'),
|
|
'relativedeltas': [('create', [{
|
|
'months': 1,
|
|
},
|
|
]),
|
|
],
|
|
}, {
|
|
'sequence': 2,
|
|
'type': 'fixed',
|
|
'amount': Decimal('396.84'),
|
|
'currency': cu1.id,
|
|
'relativedeltas': [('create', [{
|
|
'months': 1,
|
|
'days': 30,
|
|
},
|
|
]),
|
|
],
|
|
}, {
|
|
'sequence': 3,
|
|
'type': 'remainder',
|
|
'relativedeltas': [('create', [{
|
|
'months': 2,
|
|
'days': 30,
|
|
'day': 15,
|
|
},
|
|
]),
|
|
],
|
|
}])]
|
|
}])
|
|
terms = term.compute(Decimal('1587.35'), cu1,
|
|
date=datetime.date(2011, 10, 1))
|
|
self.assertEqual(terms, [
|
|
(datetime.date(2011, 10, 31), Decimal('396.84')),
|
|
(datetime.date(2011, 11, 1), Decimal('396.84')),
|
|
(datetime.date(2011, 12, 1), Decimal('396.84')),
|
|
(datetime.date(2012, 1, 14), Decimal('396.83')),
|
|
])
|
|
|
|
@with_transaction()
|
|
def test_payment_term_with_repeating_decimal(self):
|
|
"Test payment_term with repeating decimal"
|
|
pool = Pool()
|
|
PaymentTerm = pool.get('account.invoice.payment_term')
|
|
|
|
PaymentTerm.create([{
|
|
'name': "Repeating Decimal",
|
|
'lines': [
|
|
('create', [{
|
|
'type': 'percent',
|
|
'divisor': Decimal(3),
|
|
'ratio': Decimal('0.3333333333'),
|
|
}, {
|
|
'type': 'remainder',
|
|
}]),
|
|
],
|
|
}])
|
|
|
|
@with_transaction()
|
|
def test_payment_term_with_invalid_ratio_divisor(self):
|
|
"Test payment_term with invalid ratio and divisor"
|
|
pool = Pool()
|
|
PaymentTerm = pool.get('account.invoice.payment_term')
|
|
|
|
with self.assertRaises(PaymentTermValidationError):
|
|
PaymentTerm.create([{
|
|
'name': "Invalid ratio and divisor",
|
|
'lines': [
|
|
('create', [{
|
|
'type': 'percent',
|
|
'divisor': Decimal(2),
|
|
'ratio': Decimal('0.4'),
|
|
}, {
|
|
'type': 'remainder',
|
|
}]),
|
|
],
|
|
}])
|
|
|
|
@with_transaction()
|
|
def test_payment_term_with_empty_value(self):
|
|
'Test payment_term with empty'
|
|
pool = Pool()
|
|
PaymentTerm = pool.get('account.invoice.payment_term')
|
|
|
|
cu1 = create_currency('cu1')
|
|
remainder_term, percent_term = PaymentTerm.create([{
|
|
'name': 'Remainder',
|
|
'lines': [
|
|
('create', [{'type': 'remainder',
|
|
'relativedeltas': [('create', [{
|
|
'months': 1,
|
|
},
|
|
]),
|
|
],
|
|
}])]
|
|
}, {
|
|
'name': '25% tomorrow, remainder un month later ',
|
|
'lines': [
|
|
('create', [{'type': 'percent',
|
|
'divisor': 4,
|
|
'ratio': Decimal('.25'),
|
|
'relativedeltas': [('create', [{
|
|
'days': 1,
|
|
},
|
|
]),
|
|
],
|
|
}, {'type': 'remainder',
|
|
'relativedeltas': [('create', [{
|
|
'months': 1,
|
|
},
|
|
]),
|
|
],
|
|
}])]
|
|
}])
|
|
terms = remainder_term.compute(Decimal('0.0'), cu1,
|
|
date=datetime.date(2016, 5, 17))
|
|
self.assertEqual(terms, [
|
|
(datetime.date(2016, 5, 17), Decimal('0.0')),
|
|
])
|
|
terms = percent_term.compute(Decimal('0.0'), cu1,
|
|
date=datetime.date(2016, 5, 17))
|
|
self.assertEqual(terms, [
|
|
(datetime.date(2016, 5, 17), Decimal('0.0')),
|
|
])
|
|
|
|
@with_transaction()
|
|
def test_negative_amount(self):
|
|
'Test payment term with negative amount'
|
|
pool = Pool()
|
|
PaymentTerm = pool.get('account.invoice.payment_term')
|
|
|
|
cu1 = create_currency('cu1')
|
|
term, = PaymentTerm.create([{
|
|
'name': '30 days, 1 month, 1 month + 15 days',
|
|
'lines': [
|
|
('create', [{
|
|
'sequence': 0,
|
|
'type': 'percent',
|
|
'divisor': 4,
|
|
'ratio': Decimal('.25'),
|
|
'relativedeltas': [('create', [{
|
|
'days': 30,
|
|
},
|
|
]),
|
|
],
|
|
}, {
|
|
'sequence': 1,
|
|
'type': 'percent_on_total',
|
|
'divisor': 4,
|
|
'ratio': Decimal('.25'),
|
|
'relativedeltas': [('create', [{
|
|
'months': 1,
|
|
},
|
|
]),
|
|
],
|
|
}, {
|
|
'sequence': 2,
|
|
'type': 'fixed',
|
|
'amount': Decimal('4.0'),
|
|
'currency': cu1.id,
|
|
'relativedeltas': [('create', [{
|
|
'months': 1,
|
|
'days': 30,
|
|
},
|
|
]),
|
|
],
|
|
}, {
|
|
'sequence': 3,
|
|
'type': 'remainder',
|
|
'relativedeltas': [('create', [{
|
|
'months': 2,
|
|
'days': 30,
|
|
'day': 15,
|
|
},
|
|
]),
|
|
],
|
|
}])]
|
|
}])
|
|
terms = term.compute(Decimal('-10.00'), cu1,
|
|
date=datetime.date(2011, 10, 1))
|
|
self.assertListEqual(terms, [
|
|
(datetime.date(2011, 10, 31), Decimal('-2.5')),
|
|
(datetime.date(2011, 11, 1), Decimal('-2.5')),
|
|
(datetime.date(2011, 12, 1), Decimal('-4.0')),
|
|
(datetime.date(2012, 1, 14), Decimal('-1.0')),
|
|
])
|
|
|
|
def test_post_rpc_does_not_require_fresh_session(self):
|
|
'posting invoices does not force a fresh session'
|
|
Invoice = Pool().get('account.invoice')
|
|
|
|
self.assertFalse(Invoice.__rpc__['post'].fresh_session)
|
|
|
|
@with_transaction()
|
|
def test_validate_invoice_creates_move_for_customer_invoice(self):
|
|
'validating customer invoices now creates the account move'
|
|
Invoice = Pool().get('account.invoice')
|
|
|
|
move = Mock()
|
|
invoice = Invoice()
|
|
invoice.type = 'out'
|
|
invoice.move = None
|
|
invoice.get_move = Mock(return_value=move)
|
|
invoice.do_lot_invoicing = Mock()
|
|
|
|
move_model = Mock()
|
|
|
|
with patch.object(Invoice, '_check_taxes'), patch.object(
|
|
Invoice, '_store_cache'), patch.object(
|
|
Invoice, 'browse', return_value=[]), patch.object(
|
|
Invoice, 'cleanMoves') as clean_moves, patch.object(
|
|
Invoice, 'save') as save_invoices, patch(
|
|
'trytond.modules.account_invoice.invoice.Pool'
|
|
) as PoolMock:
|
|
PoolMock.return_value.get.return_value = move_model
|
|
|
|
Invoice.validate_invoice([invoice])
|
|
|
|
self.assertIs(invoice.move, move)
|
|
invoice.get_move.assert_called_once_with()
|
|
invoice.do_lot_invoicing.assert_called_once_with()
|
|
move_model.save.assert_called_once_with([move])
|
|
clean_moves.assert_called_once_with([move])
|
|
save_invoices.assert_called()
|
|
|
|
|
|
del ModuleTestCase
|