[FIX] partner_statement: Default value for required field

This commit is contained in:
Maxime Chambreuil
2019-12-12 10:18:33 -06:00
committed by Miquel Raïch
parent ed2a63b11d
commit a9bdd307d1
2 changed files with 2 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
{
'name': 'Partner Statement',
'version': '12.0.1.0.2',
'version': '12.0.1.0.3',
'category': 'Accounting & Finance',
'summary': 'OCA Financial Reports',
'author': "Eficent, Odoo Community Association (OCA)",

View File

@@ -14,6 +14,7 @@ class ResConfigSettings(models.TransientModel):
[("days", "Age by Days"), ("months", "Age by Months")],
string="Aging Method",
required=True,
default="days",
default_model="statement.common.wizard",
)