Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
3428 Zobrazení

for clearity, I simplify codes as below:

class selection(models.Model):
    _name = 'my.selection'
    _rec_name = 'select'
    select = fields.Char(string='select', required=True)

​class Che(models.Model):
    _name = 'my.module'
    a_delete = fields.Integer(compute='_x_delete', store=False)#
    a_field = fields.Many2one('my.selection')


     @api.multi
    def _x_delete(self):
        self.ensure_one()
        recs = self.env['my.selection'].search([])
        for reci in recs:
            reci.unlink()​

each time, when I create a record of 'Che' and save it; a warning box would pop out as below:

Odoo Server 

Errormy.module(33,).a_delete
so why can't delete records of 'selection' or how shall I delete them in the function ' _x_delete'?


Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
pro 15
6107
1
říj 20
7666
1
bře 15
7964
2
úno 25
5826
1
pro 24
1402