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

Error occurred while validating the field(s) arch: Invalid XML for View Architecture! while installing a module .

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
moduleinstallviewarchitecturevalidateerror
2 Respostas
9445 Visualizações
Avatar
sneha antony

I tied to install a module which I developed including the warranty details of a customer.It was working fine until I added a grid structure under the form,so that the respective dates for the preventive maintenance can be scheduled.When I altered the code for this purpose the below error appears when I try to install the module.

Validate Error Error occurred while validating the field(s) arch: Invalid XML for View Architecture!.

I couldn't trace out the error in .xml file(perhaps in .py file also).Both the files are attached .Can anyone please help me in sorting out the error and complete my requirement of placing a grid under the form view.

warranty_info_view.xml

    <?xml version="1.0" encoding="utf-8"?>
     <openerp>
      <data>


  <!--Warranty search view-->
  <record model="ir.ui.view" id="warranty_search">
    <field name="name">warranty.search</field>
    <field name="model">warranty.warranty</field>
    <field name="type">search</field>
    <field name="arch" type="xml">
      <search string = "warranty information search">
        <field name="name" string = "Name"/>
        <field name="contract" string = "Contract"/> 
       </search>
    </field>
  </record>



 <!--Warranty tree View-->
  <record id="warranty_warranty_tree" model="ir.ui.view">
    <field name="name">warranty.result.tree</field>
    <field name="model">warranty.warranty</field>
    <field name="type">tree</field>
    <field name="arch" type="xml">
      <tree string="warranty_result">  
        <field name="name"/>  
        <field name="contract"/>
    <field name="batch_no"/> 
        <field name="status"/>  
        <field name="serial_no"/>
        </tree>
    </field>
</record>




  <!--Warranty Form View-->
<record id="warranty_warranty_form" model="ir.ui.view">
    <field name="name">warranty.result.form</field>
    <field name="model">warranty.warranty</field>
  <!--<field name="type">form</field>-->
    <field name="arch" type="xml">
      <form string="Warranty_result" version="7.0">  
      <sheet>
       <group>
        <group>
         <field name="name"/>  
         <field name="contract"/>
     <field name="batch_no"/> 
         <field name="status"/>  
         <field name="serial_no"/>
         <field name="notes" /> 
        </group>
        </group>
      <notebook>
     <page string="Preventive Maintenance">
                        <field name="line_ids">
                            <tree string="Pm">
                                <field name="date"/>
                                <field name="pm_status"/>
                            </tree>
                        </field>
                    </page>
     </notebook>
    </sheet>
    </form>
    </field>
 </record>

  <!--Warranty Action-->
<record id="action_warranty_warranty" model="ir.actions.act_window">
    <field name='name'>Warranty Details</field>
    <field name='res_model'>warranty.warranty</field>
    <field name='view_type'>form</field>
    <field name='view_mode'>tree,form</field>
</record>


   <!--Warranty Menu-->
 <menuitem id="warranty_parent" name="Warranty"/>
 <menuitem id="menu_warranty_parent" name="Warranty Management" parent="warranty_parent"></menuitem>
 <menuitem action="action_warranty_warranty" id="menu_warranty_warranty" parent="menu_warranty_parent"   string="Result"/>
     </data>
 </openerp>

warranty_info.py

 from openerp.osv import osv, fields

  class warranty_warranty(osv.osv):

_name = 'warranty.warranty'

_columns = {
    'name':fields.many2one('res.partner','Customer Name'),
'contract':fields.many2one('account.analytic.account','Contract'),
'batch_no':fields.char('Batch No.'),
'status':fields.selection([('open','Open'),('close','Close')],'Warranty Status'),
'serial_no':fields.char('Serial No.'),
'notes':fields.text('Details'),

  }

  warranty_warranty()

   class order(osv.osv): 

_description = "Orders" 

_name = "order.order"

_columns = {
    'line_ids': fields.one2many('order.line','ordr_id',"Order Lines"),
    'date': fields.date('Date'),
    'pm_status': fields.selection([('pending','Pending'),('complete','Complete')],'Preventive Maintenance Status'),
} 

order()

 class order_line(osv.osv):

_description = "Order Line" 

_name = "order.line"

_columns = {
'ordr_id': fields.many2one('order.order', 'Order ID'),
}

order_line()
0
Avatar
Cancelar
Avatar
Maniganda
Melhor resposta

The Problem with these lines of code <page string="Preventive Maintenance"> <field name="line_ids"> <tree string="Pm"> <field name="date"/> <field name="pm_status"/> </tree> </field> </page>

here the field name 'line_ids' does not exist in warranty.warranty object so you are getting the error

I you want to fix the error you should remove the complete page tag i.e <page string="Preventive Maintenance"> and upgrade your module

or If you want that line_id in your form then create a one2many field line_ids in warranty.warranty object and upgrade the module the error will be rectified

0
Avatar
Cancelar
sneha antony
Autor

So Maniganda,What should be done to rectify the error?

sneha antony
Autor

Can u please suggest the changes to be made in the code?

sneha antony
Autor

I tried as per your instructions but still the error occurs when I try to install the module

Maniganda

Have you removed the <notebook> tag from your xml

sneha antony
Autor

I tried and still the same error is being shown

Avatar
Med Said BARA
Melhor resposta

Hi;

Look closely in your log before the line (some lines before) "Validate Error Error occurred while validating the field(s) arch: Invalid XML for View Architecture!.", you will find more info about the error (and then post your log).

look also at the end of your .py file: _columns is ordr_id or order_id

for Maniganda: line_ids is there !!!

0
Avatar
Cancelar
sneha antony
Autor

There is nothing in the error log other than the line " Validate Error Error occurred while validating the field(s) arch: Invalid XML for View Architecture! ".The error is shown inside a box which appears when I click Install.It some error in the .py and .xml files.As I am not that well aware of python coding,if somebody suggest me the changes to be made in the code files please,it would be a great favour.

Med Said BARA

Look in your openerp-server.log file. Under Linux you can find it at /var/log/openerp/openerp-server.log. under Windows it's at ..Drive letter:\Program Fi...)\openerp ....\server\server\openerp-server.log

sneha antony
Autor

so are my .py and .xml files correct?

Med Said BARA

There are maybe a parsing error in your xml (malformed xml). But before any conclusion look first for the error in openerp-server.log

sneha antony
Autor

I tried for a long to debugg the issue but in vain.So I removed the complete module and is reworking on the code now.My requirement is I want to add a grid structire under the form with two columns date and status.What are the code changes that are to be made in my present .py and .xml files?

Med Said BARA

what about openerp-server.log ?

sneha antony
Autor

where can I find it?I am using ubuntu server.Modules are installed in opt/openerp/server/openerp/addons

Med Said BARA

Here: /var/log/openerp/openerp-server.log

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
error on clicking 'Install'-ValidateError Error occurred while validating the field(s) arch: Invalid XML for View Architecture!
module install view one2many validateerror
Avatar
Avatar
1
mar. 15
5861
Can't install custom module -> arch: Invalid XML for View Architecture! Resolvido
module xml install architecture invalid
Avatar
Avatar
Avatar
4
nov. 15
6706
Validate error while module installation
module install validateerror cmms v6v7
Avatar
0
mar. 15
5948
odoo-14: I get an error when I try to install a module in Digital Ocean Resolvido
module install
Avatar
Avatar
1
abr. 21
6618
Unable to install module Resolvido
module install
Avatar
Avatar
2
abr. 15
5408
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