67 lines
1.7 KiB
ReStructuredText
67 lines
1.7 KiB
ReStructuredText
=================
|
|
Invoice in Future
|
|
=================
|
|
|
|
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
|
|
>>> from trytond.tests.tools import activate_modules
|
|
|
|
>>> today = dt.date.today()
|
|
>>> tomorrow = today + dt.timedelta(days=1)
|
|
|
|
Activate modules::
|
|
|
|
>>> config = activate_modules('account_invoice', create_company, create_chart)
|
|
|
|
Create fiscal year::
|
|
|
|
>>> fiscalyear = set_fiscalyear_invoice_sequences(
|
|
... create_fiscalyear(today=(today, tomorrow)))
|
|
>>> fiscalyear.click('create_period')
|
|
|
|
Get accounts::
|
|
|
|
>>> accounts = get_accounts()
|
|
>>> revenue = accounts['revenue']
|
|
|
|
Create party::
|
|
|
|
>>> Party = Model.get('party.party')
|
|
>>> party = Party(name='Party')
|
|
>>> party.save()
|
|
|
|
Create invoice::
|
|
|
|
>>> Invoice = Model.get('account.invoice')
|
|
>>> invoice = Invoice()
|
|
>>> invoice.party = party
|
|
>>> line = invoice.lines.new()
|
|
>>> line.account = revenue
|
|
>>> line.description = 'Test'
|
|
>>> line.quantity = 1
|
|
>>> line.unit_price = Decimal(20)
|
|
|
|
Posting an invoice in the future raises a warning::
|
|
|
|
>>> invoice.invoice_date = tomorrow
|
|
>>> invoice.click('post')
|
|
Traceback (most recent call last):
|
|
...
|
|
InvoiceFutureWarning: ...
|
|
|
|
Post invoice::
|
|
|
|
>>> invoice.invoice_date = today
|
|
>>> invoice.click('post')
|
|
>>> invoice.state
|
|
'posted'
|