Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
1 Responder
3342 Visualizações

I am trying out an example of "Using abstract models for reusable model features"


My code is showing an error:

raise TypeError("Model %r inherits from non-existing model %r." % (name, parent))
TypeError: Model 'library.book' inherits from non-existing model 'base.archive'. - - - 


My Code:

class BaseArchive(models.AbstractModel):

    _name = 'base.archive'
    active = fields.Boolean(default=True)
    def do_archive(self):
        for record in self:
            record.active = not record.active

class LibraryBook(models.Model):
    _name = 'library.book'
    _inherit = ['base.archive']

Avatar
Cancelar
Melhor resposta
--- sory
Avatar
Cancelar
Publicações relacionadas Respostas Visualizações Atividade
1
mar. 23
6924
1
jul. 25
2652
4
mar. 24
3527
1
out. 23
5464
0
mai. 23
2347