Pular para o conteúdo
Odoo Menu
  • Entrar
  • Experimente grátis
  • Aplicativos
    Finanças
    • Financeiro
    • Faturamento
    • Despesas
    • Planilhas (BI)
    • Documentos
    • Assinar Documentos
    Vendas
    • CRM
    • Vendas
    • PDV Loja
    • PDV Restaurantes
    • Assinaturas
    • Locação
    Websites
    • Criador de Sites
    • e-Commerce
    • Blog
    • Fórum
    • Chat ao Vivo
    • e-Learning
    Cadeia de mantimentos
    • Inventário
    • Fabricação
    • PLM - Ciclo de Vida do Produto
    • Compras
    • Manutenção
    • Qualidade
    Recursos Humanos
    • Funcionários
    • Recrutamento
    • Folgas
    • Avaliações
    • Indicações
    • Frota
    Marketing
    • Redes Sociais
    • Marketing por E-mail
    • Marketing por SMS
    • Eventos
    • Automação de Marketing
    • Pesquisas
    Serviços
    • Projeto
    • Planilhas de Horas
    • Serviço de Campo
    • Central de Ajuda
    • Planejamento
    • Compromissos
    Produtividade
    • Mensagens
    • Aprovações
    • Internet das Coisas
    • VoIP
    • Conhecimento
    • WhatsApp
    Aplicativos de terceiros Odoo Studio Plataforma Odoo Cloud
  • Setores
    Varejo
    • Loja de livros
    • Loja de roupas
    • Loja de móveis
    • Mercearia
    • Loja de ferramentas
    • Loja de brinquedos
    Comida e hospitalidade
    • Bar e Pub
    • Restaurante
    • Fast Food
    • Hospedagem
    • Distribuidor de bebidas
    • Hotel
    Imóveis
    • Imobiliária
    • Escritório de arquitetura
    • Construção
    • Administração de propriedades
    • Jardinagem
    • Associação de proprietários de imóveis
    Consultoria
    • Escritório de Contabilidade
    • Parceiro Odoo
    • Agência de marketing
    • Escritório de advocacia
    • Aquisição de talentos
    • Auditoria e Certificação
    Fabricação
    • Têxtil
    • Metal
    • Móveis
    • Alimentação
    • Cervejaria
    • Presentes corporativos
    Saúde e Boa forma
    • Clube esportivo
    • Loja de óculos
    • Academia
    • Profissionais de bem-estar
    • Farmácia
    • Salão de cabeleireiro
    Comércio
    • Handyman
    • Hardware e Suporte de TI
    • Sistemas de energia solar
    • Sapataria
    • Serviços de limpeza
    • Serviços de climatização
    Outros
    • Organização sem fins lucrativos
    • Agência Ambiental
    • Aluguel de outdoors
    • Fotografia
    • Aluguel de bicicletas
    • Revendedor de software
    Navegar por todos os setores
  • Comunidade
    Aprenda
    • Tutoriais
    • Documentação
    • Certificações
    • Treinamento
    • Blog
    • Podcast
    Empodere a Educação
    • Programa de educação
    • Scale Up! Jogo de Negócios
    • Visite a Odoo
    Obtenha o Software
    • Baixar
    • Comparar edições
    • Releases
    Colaborar
    • Github
    • Fórum
    • Eventos
    • Traduções
    • Torne-se um parceiro
    • Serviços para parceiros
    • Cadastre seu escritório contábil
    Obtenha os serviços
    • Encontre um parceiro
    • Encontre um Contador
    • Conheça um consultor
    • Serviços de Implementação
    • Referências de Clientes
    • Suporte
    • Upgrades
    Github YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Faça uma demonstração
  • Preços
  • Ajuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Financeiro
  • Inventário
  • PoS
  • Projeto
  • MRP
All apps
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
Ajuda

Can't re-define field when doing inherits

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
inheritanceredefine
6 Respostas
5424 Visualizações
Avatar
David Yao

Hi all, I'm current facing a issue on re-define fields when doing inheritance.

my code is like below:

PY file

class expenseNew(models.Model):

    _name = 'expense_new.expense_new'

    _inherits = { 'hr.expense':'expense_new_id' }

    expense_new_id = fields.Many2one('hr.expense', help="This is a many2one field in expense_new module, and this field is used as a link to hr.expense module")

    name = fields.Char(string='Expense Summary', readonly=True, required=True, states={'draft': [('readonly', False)], 'refused': [('readonly', False)]})

XML file

<div class="oe_title">    
    <label for="name"/>
    <h1>
    <field name="name" placeholder="e.g. Lunch with Customer"/>
    </h1>
</div>
<record id="expense_new_form_view" model="ir.ui.view">
<field name="name">expense_new.expense_new.form.view</field>
<field name="model">expense_new.expense_new</field>
<field name="arch" type="xml">
<form string="Expenses" class="o_expense_form">
    <header> ...... </header>
    <sheet>
        <div class="oe_title">
            <label for="name"/>
            <h1>
                <field name="name" placeholder="e.g. Lunch with Customer"/>
            </h1>
        </div>
        ......

default PY file

name = fields.Char(string='Expense Description', readonly=True, required=True, states={'draft': [('readonly', False)], 'refused': [('readonly', False)]})

As you can see, compare to default, what I only changed is "string" attribute.

This code gives me following error message.

The operation cannot be completed, probably due to the following:

- deletion: you may be trying to delete a record while other records still reference it

- creation/update: a mandatory field is not correctly set

[object with reference: name - name]


If I delete my re-define field "name" in my PY file, error disappear. But this is the correct way to overwrite original field, am I right? Or can someone point out what I missed? BTW, on the 


Any help will be useful! Thanks a lot!

0
Avatar
Cancelar
David Yao
Autor

BTW, I'm able to input data but can't save it. error shows up when I trying to save record.

salah BELHAMICHE

May be the is confusion between these two attributes readonly=True, required=True,

Try putting readonly=False

Avatar
David Yao
Autor Melhor resposta

Hi all, for people have similar issue like me:

    Error message:

    The operation cannot be completed, probably due to the following:

    - deletion: you may be trying to delete a record while other records still reference it

    - creation/update: a mandatory field is not correctly set

    [object with reference: name - name]

This is what I did to solve this problem. Please point out if I missed anything. So, for fields that have this issue (I'm not sure why but some field re-define process is fine, no error message for it. Can someone explain why? That would be great!), I re-defined every attributes that originally existed in the original declaration.

For example.

original field declaration: 

product_id = fields.Many2one('product.product', string='Product', required=True, readonly=True, states={'draft': [('readonly', False)], 'refused': [('readonly', False)]}, domain=[('can_be_expensed', '=', True)])

re-define field (this one is not working, I guess is because I didn't re-define required attribute):

product_id = fields.Many2one('product.product', string='Product', readonly=True, states={'draft': [('readonly', False)], 'refused': [('readonly', False)]}, domain=[('can_be_expensed', '=', True)])

re-define field (this one works fine, required attribute has value and set to False)

product_id = fields.Many2one('product.product', string='Product', required=False, readonly=True, states={'draft': [('readonly', False)], 'refused': [('readonly', False)]}, domain=[('can_be_expensed', '=', True)])

2
Avatar
Cancelar
Avatar
salah BELHAMICHE
Melhor resposta

Try readonly=False instead of readonly=True in the name field decalration

2
Avatar
Cancelar
David Yao
Autor

Thx for reply, I will try your answer asap and get back to you once done (working on something else now) cheers!

David Yao
Autor

Hi, sorry for late reply. I have tried and it doesn't work. But I just find another way to solve/ avoid my issue. I will post it later. Thx for your answer anyway, it indeed gives me some idea.(sometimes you need redefine every attribute that exist in the original field declaration. For details, I will try to explain in my answer) Upvote it!

Está gostando da discussão? Não fique apenas lendo, participe!

Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!

Inscreva-se
Publicações relacionadas Respostas Visualizações Atividade
Should constraint methods be redefinable?
inheritance constraint redefine
Avatar
Avatar
1
mar. 15
6983
Can't inherit base.view_partner_form of res.partner
inheritance
Avatar
Avatar
Avatar
Avatar
Avatar
4
fev. 25
4326
Include in inherit from JS class
inheritance
Avatar
Avatar
1
ago. 24
3028
How to Override a method in parent class in JS Resolvido
inheritance
Avatar
Avatar
2
nov. 24
4508
How to add a simple field to partner?
inheritance
Avatar
Avatar
Avatar
Avatar
3
out. 23
15825
Comunidade
  • Tutoriais
  • Documentação
  • Fórum
Open Source
  • Baixar
  • Github
  • Runbot
  • Traduções
Serviços
  • Odoo.sh Hosting
  • Suporte
  • Upgrade
  • Desenvolvimentos personalizados
  • Educação
  • Encontre um Contador
  • Encontre um parceiro
  • Torne-se um parceiro
Sobre nós
  • Nossa empresa
  • Ativos da marca
  • Contato
  • Empregos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidade
  • Segurança
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo é um conjunto de aplicativos de negócios em código aberto que cobre todas as necessidades de sua empresa: CRM, comércio eletrônico, contabilidade, estoque, ponto de venda, gerenciamento de projetos, etc.

A proposta de valor exclusiva Odoo é ser, ao mesmo tempo, muito fácil de usar e totalmente integrado.

Site feito com

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now