OpenERP customizing Journal Voucher view
问题 I'm trying to do a simple customization that is not working for some odd reason: init .py: import account_voucher_hash openerp .py { "name" : "Hash Voucher", "version" : "1.1", "depends" : [ 'base', 'account_voucher', ], "author" : "me", "description": """The Module customizes Vouchers""", 'website': 'http://abc.com', 'init_xml': [], 'update_xml': [ 'account_voucher_view_hash.xml', ], 'demo_xml': [], 'installable': True, 'active': False, } account_voucher_hash.py from osv import fields, osv