Hi all, I'm new in odoo development and i can't see the error in my code.
stack trace:
2016-11-03 07:26:07,201 1468 INFO BOMBO openerp.tools.convert: file:///C:/ODOO/server/openerp/addons/bomboneria_carla_new/views/bomboneria_sale_order.xml:3:0:ERROR:RELAXNGV:RELAXNG_ERR_EXTRACONTENT: Element openerp has extra content:
data2016-11-03 07:26:07,203 1468 ERROR BOMBO openerp.modules.registry: Failed to load registryTraceback (most recent call last):
File "C:\ODOO\server\.\openerp\modules\registry.py", line 385, in new
File "C:\ODOO\server\.\openerp\modules\loading.py", line 338, in load_modules
File "C:\ODOO\server\.\openerp\modules\loading.py", line 237, in load_marked_modules
File "C:\ODOO\server\.\openerp\modules\loading.py", line 156, in load_module_graph
File "C:\ODOO\server\.\openerp\modules\loading.py", line 98, in _load_data
File "C:\ODOO\server\.\openerp\tools\convert.py", line 852, in convert_file
File "C:\ODOO\server\.\openerp\tools\convert.py", line 926, in convert_xml_import
File "lxml.etree.pyx", line 3313, in lxml.etree._Validator.assert_ (src\lxml\lxml.etree.c:159862)
AssertionError: Element openerp has extra content: data, line 3
My files:
bomboneria_sale_order.xml
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="sale_order_form_view_inherit" model="ir.ui.view" >
<field name="name">sale.order.form.inherit</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml" >
<!-- <xpath expr="//field[@name='template_id']" position="after">
<field name="activity_scope"/> </xpath> -->
</field>
</record>
</data>
</openerp>
bomboneria_sale_order.py
# -*- coding: utf-8 -*-# Copyright 2016 Omnia Sistemi# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from openerp import api, fields, models
class bomboneria_sale_order(models.Model):
_inherit = 'sale.order'
_description = 'Ordine Bomboneria'
_name = 'bomboneria.sale.order'
ceremony_type = fields.Selection([ ('1','Battesimo'), ('2','Crescita'), ('3','Comunione'), ('4','Matrimonio'), ('5','Festa'), ('6','Altro'), ], string = "Tipo di Evento", help = "Tipo di Evento")
down_payment = fields.Char(string = "Acconto", help = "Acconto")
delivery_extimated_date = fields.Date(string = "Data prevista Consegna", help = "Data prevista Consegna")
Could you please provide your openerp file? Then I can test it
Added openerp in my answer :)
class bomboneria_sale_order(models.Model):
_inherit = 'sale.order'
_description = 'Ordine Bomboneria'
_name = 'bomboneria.sale.order'
Use '_name" for model naming
Ah sorry that was a copy/paste error. I used _name in .py file. Odoo.com don't let me modify original post
I constructed a module with your fields in Sale Order.
it works fine. Could you please try omitting _name , _description from py file
Same error :| . I tried installing module without view and works fine. All fields are added in sale.order. After that I tried to install module with xml file with tag <openerp> and <data> and work fine. When i add the <record> tag i get error. It is odoo 9.0 on a windows server machine.
Thank you for all your help. I tried removing _name and _description and still install it. I always get the problem when i try to inherit the sale.order form view. Have you used my xml code? I can't comment your reply, more karma needed.
Please have a look to my answer, I will attach my xml inside my answer
It works! Thank You! You just made my day! but i still can't notice why mine is wrong... any ideas?
I think your xml id may raise the issue. Anyway thanks :)