trytond-babi_reports_produc.../model.py
2014-02-11 09:30:23 +01:00

20 lines
525 B
Python

# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import PoolMeta
__all__ = ['Model']
__metaclass__ = PoolMeta
class Model:
__name__ = 'ir.model'
@classmethod
def __register__(cls, module_name):
super(Model, cls).__register__(module_name)
models = cls.search([('model', '=', 'product.product')])
if models:
cls.write(models, {
'babi_enabled': True
})