[FIX] partner_statement: Default value for required field

pull/859/head
Maxime Chambreuil 2019-12-12 10:18:33 -06:00 committed by mariadforgeflow
parent df596e51e5
commit fc442666bd
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",
)