Category Title (account_fstr_category.name) only 32 characters
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
OpenERP Financial Statement Template Reporting |
New
|
Undecided
|
Unassigned |
Bug Description
When porting reports that we implemented at 6.1 - we noticed that the Category names were being truncated. This is because this version only allows 32 characters for the Category Name - at 6.1 it was 128 Characters.
32 characters is too short for LIABILITIES AND STOCKHOLDERS' EQUITY and ACCUMULATED OTHER COMPREHENSIVE INCOME for example. We also generally see account names longer than 32 characters.
32 characters is also much shorter than what OpenERP supports (256 characters).
This is a simple fix:
Line 87 of account_
'name': fields.
can be changed to:
'name': fields.
A diff with this change is attached.