Odoo 8.0 new API 之constrains装饰

constrains装饰用于对字段进行限制

应用举例:

定义列:

age = fields.Integer(string="age")    

方法:

@api.constrains(age)
def _check_age(self):
    if self.age<16:
        raise ValueError(_(Age must be older than 16))

 

Odoo 8.0 new API 之constrains装饰,布布扣,bubuko.com

Odoo 8.0 new API 之constrains装饰

上一篇:Odoo 8.0 new API 之one装饰


下一篇:64位windows 7下成功配置TortoiseGit使用Github服务器