Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
3441 Widoki

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'?


Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
gru 15
6136
1
paź 20
7683
1
mar 15
7989
2
lut 25
5851
1
gru 24
1410