14 lines
397 B
Python
14 lines
397 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import api, models
|
||
|
|
||
|
|
||
|
class AutoVacuum(models.AbstractModel):
|
||
|
_inherit = 'ir.autovacuum'
|
||
|
|
||
|
@api.model
|
||
|
def power_on(self, *args, **kwargs):
|
||
|
self.env['product.wishlist']._garbage_collector(*args, **kwargs)
|
||
|
return super(AutoVacuum, self).power_on(*args, **kwargs)
|