Se rendre au contenu
Menu
Cette question a été signalée
1 Répondre
6299 Vues

Can someone tell me how to change the default field size of the Journal codes?

Avatar
Ignorer
Meilleure réponse

You need to create your own module which inherits, then changes the python class definition for the account.journal model.

This example changes the size from 5 (what is in in the core codebase) to 9.

class account_journal(osv.osv):
    _inherit = "account.journal"

    _columns = {
        'code': fields.char('Code', size=9, required=True, help="The code will be displayed on reports."),
    }
Avatar
Ignorer
Publications associées Réponses Vues Activité
2
juin 22
2930
11
janv. 24
17717
0
mars 15
3982
1
déc. 23
25514
1
mars 15
5306