我只是编辑我的 OpenERP,但是……我有点困惑
如何比较字段 A 和字段 B 但它不应该是同一个字符串
这是我的代码
def check_description(self, cr, uid,ids, context=None):
field = self.browse(cr, uid, ids, context=context)
check = True
for field in fields:
check = check and (not field.A==field.B)
return check
_constraints = [(_check_description, 'Please use a different string',['Warning','Description'])]
但是......然后我打电话使用on_change。没有回应
请帮我。谢谢