From 49864a83b7275d0a9dd4ba1b97414b4a268ef72b Mon Sep 17 00:00:00 2001 From: Ludovic CHEVALIER Date: Fri, 23 Sep 2022 16:09:34 +0200 Subject: [PATCH] [PYTHON] ~expand journal code from 7 characters to 15 --- account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account.py b/account.py index d7af024..330e09d 100644 --- a/account.py +++ b/account.py @@ -32,7 +32,7 @@ class account_journal(osv.osv): _inherit = 'account.journal' _columns = { - 'code': fields.char('Code', size=7, required=True, help="The code will be displayed on reports."), + 'code': fields.char('Code', size=15, required=True, help="The code will be displayed on reports."), } -- 2.20.1