Migrate to 6.0

This commit is contained in:
Sergio Morillo 2021-09-23 17:35:58 +02:00
parent c026351b9a
commit 12315f65f0
1 changed files with 3 additions and 3 deletions

View File

@ -83,8 +83,8 @@ Post invoice::
>>> invoice.click('post') # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
...
UserError: ('UserError: The field "Party Tax Identifier" on "Invoice" is required. -', ''))
trytond.model.modelstorage.RequiredValidationError: A value is required for field "Party Tax Identifier" in "Invoice". -
Set identifier to party for party tax indentifier::
@ -92,7 +92,7 @@ Set identifier to party for party tax indentifier::
>>> tax_identifier.type = 'eu_vat'
>>> tax_identifier.code = 'BE0897290877'
>>> party.save()
Post new invoice::