콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
6340 화면

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

아바타
취소
베스트 답변

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."),
    }
아바타
취소
관련 게시물 답글 화면 활동
2
6월 22
2965
11
1월 24
17749
0
3월 15
3993
1
12월 23
25532
1
3월 15
5351