[PYTHON] ~expand journal code from 7 characters to 15
authorLudovic CHEVALIER <ludovic@beurresarrasin.net>
Fri, 23 Sep 2022 14:09:34 +0000 (16:09 +0200)
committerLudovic CHEVALIER <ludovic@beurresarrasin.net>
Fri, 23 Sep 2022 14:09:34 +0000 (16:09 +0200)
account.py

index d7af024..330e09d 100644 (file)
@@ -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."),
     }