Zum Inhalt springen
Odoo Menü
  • Anmelden
  • Jetzt gratis testen
  • Apps
    Finanzen
    • Buchhaltung
    • Rechnungsstellung
    • Spesenabrechnung
    • Tabellenkalkulation (BI)
    • Dokumente
    • E-Signatur
    Vertrieb
    • CRM
    • Vertrieb
    • Kassensystem – Shop
    • Kassensystem – Restaurant
    • Abonnements
    • Vermietung
    Websites
    • Website-Builder
    • E-Commerce
    • Blog
    • Forum
    • Livechat
    • E-Learning
    Lieferkette
    • Lager
    • Fertigung
    • PLM
    • Einkauf
    • Wartung
    • Qualität
    Personalwesen
    • Mitarbeiter
    • Personalbeschaffung
    • Abwesenheiten
    • Mitarbeiterbeurteilung
    • Personalempfehlungen
    • Fuhrpark
    Marketing
    • Social Marketing
    • E-Mail-Marketing
    • SMS-Marketing
    • Veranstaltungen
    • Marketing-Automatisierung
    • Umfragen
    Dienstleistungen
    • Projekte
    • Zeiterfassung
    • Außendienst
    • Kundendienst
    • Planung
    • Termine
    Produktivität
    • Dialog
    • Genehmigungen
    • IoT
    • VoIP
    • Wissensdatenbank
    • WhatsApp
    Apps von Drittanbietern Odoo Studio Odoo Cloud-Plattform
  • Branchen
    Einzelhandel
    • Buchladen
    • Kleidergeschäft
    • Möbelhaus
    • Lebensmittelgeschäft
    • Baumarkt
    • Spielwarengeschäft
    Essen & Gastgewerbe
    • Bar und Kneipe
    • Restaurant
    • Fast Food
    • Gästehaus
    • Getränkehändler
    • Hotel
    Immobilien
    • Immobilienagentur
    • Architekturbüro
    • Baugewerbe
    • Immobilienverwaltung
    • Gartenarbeit
    • Eigentümervereinigung
    Beratung
    • Buchhaltungsfirma
    • Odoo-Partner
    • Marketingagentur
    • Anwaltskanzlei
    • Talentakquise
    • Prüfung & Zertifizierung
    Fertigung
    • Textil
    • Metall
    • Möbel
    • Speisen
    • Brauerei
    • Firmengeschenke
    Gesundheit & Fitness
    • Sportklub
    • Brillengeschäft
    • Fitnessstudio
    • Therapeut
    • Apotheke
    • Friseursalon
    Handel
    • Handyman
    • IT-Hardware & -Support
    • Solarenergiesysteme
    • Schuster
    • Reinigungsdienstleistungen
    • HLK-Dienstleistungen
    Sonstiges
    • Gemeinnützige Organisation
    • Umweltschutzagentur
    • Plakatwandvermietung
    • Fotostudio
    • Fahrrad-Leasing
    • Software-Händler
    Alle Branchen ansehen
  • Community
    Lernen
    • Tutorials
    • Dokumentation
    • Zertifizierungen
    • Schulung
    • Blog
    • Podcast
    Bildung fördern
    • Bildungsprogramm
    • Scale-Up! Planspiel
    • Odoo besuchen
    Software anfragen
    • Herunterladen
    • Editionen vergleichen
    • Releases
    Zusammenarbeiten
    • Github
    • Forum
    • Veranstaltungen
    • Übersetzungen
    • Partner werden
    • Dienstleistungen für Partner
    • Buchhaltungsfirma registrieren
    Services anfragen
    • Partner finden
    • Buchhalter finden
    • Einen Experten treffen
    • Implementierungsservices
    • Kundenreferenzen
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Eine Demo erhalten
  • Preiskalkulation
  • Hilfe

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

  • CRM
  • e-Commerce
  • Buchhaltung
  • Lager
  • PoS
  • Projekte
  • MRP
All apps
Sie müssen registriert sein, um mit der Community zu interagieren.
Alle Beiträge Personen Abzeichen
Stichwörter (Alle anzeigen)
odoo accounting v14 pos v15
Über dieses Forum
Sie müssen registriert sein, um mit der Community zu interagieren.
Alle Beiträge Personen Abzeichen
Stichwörter (Alle anzeigen)
odoo accounting v14 pos v15
Über dieses Forum
Hilfe

Odoo 10: Load default data in a custom module using xml file

Abonnieren

Erhalten Sie eine Benachrichtigung, wenn es eine Aktivität zu diesem Beitrag gibt

Diese Frage wurde gekennzeichnet
moduledatacustomdefaults
3 Antworten
18377 Ansichten
Avatar
Andrew Brownrigg

The Current Setup

I am attempting to load default data into a module I am designing.  To do so, I have my model setup in cra_model.py, and the default data setup in cra_data.xml  which is referenced in my __manifest__.py as such:

{
     ...
     'data': ['data/cra_data.xml'],
     ...
}

Here are the contents of my models and data files.

cra_model.py
# -*- encoding: utf-8 -*-
from odoo import models, fields, api
class CraCats(models.Model):
     _name = 'cra.cat'
     name = fields.Char('CRA Category')
     type = fields.Selection(
         [('in','Income'), ('out','Expense')],
         string='Income or Expense?')


cra_cat_data.xml
<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <record id="cra_cat_a" model="cra.cat">
        <field name="name">Income from sales</field>
        <field name="type">in</field>
    </record>
    <record id="cra_cat_b" model="cra.cat">
        <field name="name">Purchases for sales</field>
        <field name="type">out</field>
    </record>
</odoo>

The Problem at Hand

I am able to install the module just fine without the data file reference in the __manifest__.py.  As soon as I add the data file reference back, and attempt an install or upgrade of the module, I receive the following traceback on the server.  The webui merely gets stuck in a loading state.

2018-01-17 00:48:48,989 83958 CRITICAL Testing odoo.service.server: Failed to initialize database `Testing`.

Traceback (most recent call last):

  File "/usr/local/odoo/odoo/service/server.py", line 911, in preload_registries

    registry = Registry.new(dbname, update_module=update_module)

  File "/usr/local/odoo/odoo/modules/registry.py", line 83, in new

    odoo.modules.load_modules(registry._db, force_demo, status, update_module)

  File "/usr/local/odoo/odoo/modules/loading.py", line 339, in load_modules

    loaded_modules, update_module)

  File "/usr/local/odoo/odoo/modules/loading.py", line 237, in load_marked_modules

    loaded, processed = load_module_graph(cr, graph, progressdict, report=report, skip_modules=loaded_modules, perform_checks=perform_checks)

  File "/usr/local/odoo/odoo/modules/loading.py", line 156, in load_module_graph

    _load_data(cr, module_name, idref, mode, kind='data')

  File "/usr/local/odoo/odoo/modules/loading.py", line 95, in _load_data

    tools.convert_file(cr, module_name, filename, idref, mode, noupdate, kind, report)

  File "/usr/local/odoo/odoo/tools/convert.py", line 845, in convert_file

    convert_xml_import(cr, module, fp, idref, mode, noupdate, report)

  File "/usr/local/odoo/odoo/tools/convert.py", line 898, in convert_xml_import

    doc = etree.parse(xmlfile)

  File "src/lxml/lxml.etree.pyx", line 3427, in lxml.etree.parse (src/lxml/lxml.etree.c:85131)

  File "src/lxml/parser.pxi", line 1803, in lxml.etree._parseDocument (src/lxml/lxml.etree.c:124287)

  File "src/lxml/parser.pxi", line 1823, in lxml.etree._parseFilelikeDocument (src/lxml/lxml.etree.c:124599)

  File "src/lxml/parser.pxi", line 1718, in lxml.etree._parseDocFromFilelike (src/lxml/lxml.etree.c:123258)

  File "src/lxml/parser.pxi", line 1139, in lxml.etree._BaseParser._parseDocFromFilelike (src/lxml/lxml.etree.c:117808)

  File "src/lxml/parser.pxi", line 573, in lxml.etree._ParserContext._handleParseResultDoc (src/lxml/lxml.etree.c:110510)

  File "src/lxml/parser.pxi", line 683, in lxml.etree._handleParseResult (src/lxml/lxml.etree.c:112276)

  File "src/lxml/parser.pxi", line 613, in lxml.etree._raiseParseError (src/lxml/lxml.etree.c:111124)

XMLSyntaxError: xmlParseEntityRef: no name, line 16, column 29

 

What am I missing?  Where have I gone wrong?

0
Avatar
Verwerfen
Niyas Raphy (Walnut Software Solutions)

In above given code, there is no errors i think. The error is from xml file, you can check the line number mentioned in the error. probably it may be missing of something or misplaced thing in the XML. check the line 16 and column 29

Andrew Brownrigg
Autor

Ok. I looked into my XML deeper, and saw an & instead of an &amp; the XML was generated from an excel spreadsheet, and I forgot to check for &s.

Avatar
Bart Criel
Beste Antwort

Hi Andrew,


Here's the start of my Odoo 10 data file (which works). I think you forgot the <data> tag. Close it as well :-)

NB. noupdate ensures that the data, once changed by a user, are not overwritten when you update the module.


Bart

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data noupdate="1">
<record model="property_management.subdivision_type" id="type_office">
<field name="name">Office</field>
<field name="sequence">1</field>
</record>

     
     

0
Avatar
Verwerfen
Andrew Brownrigg
Autor

Bart, thanks for the info. However, "[t]he <odoo> top element in data files was introduced in version 9.0 and replaces the former <openerp> tag. The <data> section inside the top element is still supported, but it is now optional. In fact, now <odoo> and <data> are equivalent, so we could use either one as top elements for our XML data files." <<Odoo 10 Development Essentials, Daniel Reis, pg 84>> This is to say that <odoo> and <data> are now interchangeable top elements. There is no longer the need to place the <data> element between <odoo> and <record>. In your provided example, you could also get away with <odoo noupdate="1">. I am genuinely grateful for your desire to help me troubleshoot. My problem was, in the end, caused by a missing escape character. I had an ampersand(&) where I ought to have had the escape character equivalent (&amp;). Peace and all good! Proost!

Bart Criel

Good that it was *only* a syntax issue. Odoo is not very good at pointing these things out, and we ourselves often look too far :-)

Diskutieren Sie gerne? Treten Sie bei, statt nur zu lesen!

Erstellen Sie heute ein Konto, um exklusive Funktionen zu nutzen und mit unserer tollen Community zu interagieren!

Registrieren
Verknüpfte Beiträge Antworten Ansichten Aktivität
Custom Module Not Populating in Apps List Gelöst
module custom
Avatar
Avatar
4
Okt. 20
9913
Import data from CSV
module import data custom odoo8.0
Avatar
0
Okt. 15
4172
For Odoo hosted version, how would I upload a custom module? Gelöst
module upload custom
Avatar
Avatar
Avatar
Avatar
3
Feb. 24
11507
importing custom module
module custom importing
Avatar
Avatar
1
Nov. 23
3848
error while parsing inherit view
module xml custom
Avatar
Avatar
1
Juni 23
4343
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Herunterladen
  • Github
  • Runbot
  • Übersetzungen
Dienstleistungen
  • Odoo.sh-Hosting
  • Support
  • Upgrade
  • Individuelle Entwicklungen
  • Bildung
  • Buchhalter finden
  • Partner finden
  • Partner werden
Über uns
  • Unsere Firma
  • Markenwerte
  • Kontakt
  • Karriere
  • Veranstaltungen
  • Podcast
  • Blog
  • Kunden
  • Rechtliches • Datenschutz
  • Sicherheit
الْعَرَبيّة 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 ist eine Suite von Open-Source-Betriebsanwendungen, die alle Bedürfnisse Ihres Unternehmens abdecken: CRM, E-Commerce, Buchhaltung, Lager, Kassensystem, Projektmanagement etc.

Das einzigartige Wertversprechen von Odoo ist, dass es gleichzeitig sehr einfach zu bedienen und voll integriert ist.

Website made with

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