在odoo 9中卸载模块后未删除数据库表

时间:2016-10-31 16:56:00

标签: openerp odoo-9

我在odoo 9中有一个自定义模块。在模型中,我有动物和笼子。

在一个笼子里可以有一种以上的动物。 动物只能在一个笼子里。

这是我的模特:

class Animal(osv.osv):
    _name = 'Animal'
    _columns = {
                'name': fields.char('Animal Name', size=2048),
                'cage_id': fields.many2one('cage', required=True, ondelete='cascade', string="Cage"),
    }

class Cage(osv.osv):
    _name = 'Cage'
    _columns = {
                'name': fields.char('Cage Name', size=100),
                'animals': fields.one2many('Animal', 'cage_id', string="Animals"),
                }

安装模块时,一切正常。但是,如果我尝试卸载它,表“Animal”仍保留在数据库中,并且控制台中出现错误:

2016-10-31 16:37:21,091 28082 INFO myserver openerp.addons.base.ir.ir_model: Unable to delete 7565@ir.model.fields
Traceback (most recent call last):
  File "/etc/odoo/server/openerp/addons/base/ir/ir_model.py", line 1269, in unlink_if_refcount
    self.pool[model].unlink(cr, uid, [res_id], context=context)
  File "/etc/odoo/server/openerp/api.py", line 250, in wrapper
    return old_api(self, *args, **kwargs)
  File "/etc/odoo/server/openerp/addons/base/ir/ir_model.py", line 461, in unlink
    self.browse(cr, user, ids, context=context)._prepare_update()
  File "/etc/odoo/server/openerp/api.py", line 248, in wrapper
    return new_api(self, *args, **kwargs)
  File "/etc/odoo/server/openerp/addons/base/ir/ir_model.py", line 449, in _prepare_update
    raise UserError(msg % (field, model._field_inverses[field][0]))
UserError: (u"The field 'animal.cage_id' cannot be removed because the field 'cage.passwords' depends on it.", None)

我查看了官方文档,但我无法找到错误。

模型有什么问题?

2 个答案:

答案 0 :(得分:1)

cage.passwords要求animal.cage_id如果cage_id被删除,您需要提供津贴。您可能还想转换为models.Model而不是osv。我不确定你是否可以在osv模型中提供ondelete ='set null'。

答案 1 :(得分:1)

@MouTio,

我发现你在v9中使用传统的v7 api,这是一个很大的红旗,因为旧的API与Db关系有很多不一致。相反,我建议您使用以下准则将模块迁移到新API:

  1. Porting from the old API to the new API
  2. Odoo new API guideline
  3. 因此,您迁移的代码可能如下所示:

    from openerp import api, fields, models, _
    
    class Cage(models.Model):
        _name = 'cage'
    
        name = fields.Char(string='Cage Name', size=100)
        animals = fields.One2many(comodel_name='Animal', inverse_name='cage_id', string="Animals")
    
    
    class Animal(models.Model):
        _name = 'animal'
    
        name = fields.Char(string='Animal Name', size=2048),
        cage_id = fields.Many2one(comodel_name='cage', required=True, ondelete='cascade', string="Cage")
    

    此外有一件重要的事情需要注意:many2one在创建关系表之前无法定义和加载到内存/数据库中,因为many2one在DB中很难FK,而在one2many字段中,即使在加载关系模型之前也可以定义,因为one2many不是DB中的硬关系。

    请将您的代码移植到新的API,然后尝试卸载,但请注意,Odoo并不建议卸载模块,但不幸的是,他们从未在任何文档中编写或将其公之于众。