我想覆盖unlink
模型的stock.move
方法。原因是我想删除一个OSV异常,该异常警告禁止操作,并将其替换为其他消息和其他条件。
这是原始代码:
def unlink(self, cr, uid, ids, context=None):
context = context or {}
for move in self.browse(cr, uid, ids, context=context):
if move.state not in ('draft', 'cancel'):
raise osv.except_osv(_('User Error!'), _('You can only delete draft moves.'))
return super(stock_move, self).unlink(cr, uid, ids, context=context)
我刚刚意识到删除该消息比我想象的要复杂。这是我当前的代码,它检查我的状况,但然后检查我想避免的原始代码:
class StockMove(models.Model):
_inherit = 'stock.move'
@api.multi
def unlink(self):
for move in self:
if move.lot_id and move.lot_id.any_unit_sold is True:
raise Warning(_('You can only delete unsold moves.'))
return super(StockMove, self).unlink()
如果我将最后一行(super
)转换为self.unlink()
,我的最大递归深度超出错误。
如何从自定义模块管理我的目的?
答案 0 :(得分:1)
不使用super()
调用可能会出现意外行为。您可以拨打models.Model.unlink()
,但这会跳过其他模块{甚至Odoo S.A.应用/模块} unlink()
的所有stock.move
扩展名。在你的情况下,它将是:
class StockMove(models.Model):
_inherit = 'stock.move'
@api.multi
def unlink(self):
for move in self:
if move.lot_id and move.lot_id.any_unit_sold is True:
raise Warning(_('You can only delete unsold moves.'))
return models.Model.unlink(self)
另一种可能性是原始代码上的猴子补丁。