Skip to Content
Menu
This question has been flagged
3 Replies
1520 Views

Hello, I am trying to understand how model creation works in odoo 12. I have used the scaffold tool, which has a model called 'test_module.test_module', and in the data xml you create rows using model="test_module.test_module". 

This works fine, but I cannot figure out how to add a second model. When I copy that model and change the name to test_module.test_module2, I get a key error:

odoo.tools.convert.ParseError: "test_module.test_module2" while parsing /mnt/extra-addons/test_module/data/data.xml:9, near

<record id="object1" model="test_module.test_module2">


Could you please help me understand why?


Here is the original model:

[code]

from odoo import models, fields, api


class test_module(models.Model):

    _name = 'test_module.test_module'

    name = fields.Char()

[/code]

and here is the new model:

[code]

from odoo import models, fields, api


class test_module2(models.Model):

    _name = 'test_module.test_module2'

    name = fields.Char()

[/code]

Here is __init__.py in the models folder:
[code]
from . import models
from . import models2
[/code]

and here is the entire data xml:
[code]
<odoo>
    <data>
          <record id="object0" model="test_module.test_module">
            <field name="name">Object 0</field>
            <field name="value">0</field>
          </record>
        
          <record id="object1" model="test_module.test_module2">
            <field name="name">Object 1</field>
            <field name="value">10</field>
          </record>
         
    </data>
</odoo>
[/code]

I went through the new module tutorial, but I cannot figure out the naming convention for model class names, or the _name attribute. Clearly I am missing something!

Thank you.
Avatar
Discard
Best Answer

Are you sure it worked with only 1 module? Your models.py file don't have a field for value. In your xml file, you're calling a field variable called value, but it's not delcared in your python file

<field name="value">10</field> [you're calling value here, but your python field don't have that field called value.

Try this (hopefully it'll work for you):

class test_module(models.Model):

    _name = 'test_module.test_module'

    name = fields.Char()

    value= fields.Char()


class test_module2(models.Model):

    _name = 'test_module.test_module2'    

    name = fields.Char()

    value= fields.Char()


So basically your xml file is calling your python class for the field names. If your xml file is calling a field that's not defined, it wont work.

Avatar
Discard
Author Best Answer

Thank you, good point... I snipped the paste to only show the _name! Here is the full trace. I don't understand why the first model works, and the second one doesn't, when all I changed is the name.

Error:
Odoo Server Error

Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 757, in parse
    self._tags[rec.tag](rec, de, mode=mode)
  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 573, in _tag_record
    model = self.env[rec_model]
  File "/usr/lib/python3/dist-packages/odoo/api.py", line 821, in __getitem__
    return self.registry[model_name]._browse((), self)
  File "/usr/lib/python3/dist-packages/odoo/modules/registry.py", line 176, in __getitem__
    return self.models[model_name]
KeyError: 'test_module.test_module2'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 654, in _handle_exception
    return super(JsonRequest, self)._handle_exception(exception)
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 312, in _handle_exception
    raise pycompat.reraise(type(exception), exception, sys.exc_info()[2])
  File "/usr/lib/python3/dist-packages/odoo/tools/pycompat.py", line 87, in reraise
    raise value
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 696, in dispatch
    result = self._call_function(**self.params)
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 344, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/usr/lib/python3/dist-packages/odoo/service/model.py", line 97, in wrapper
    return f(dbname, *args, **kwargs)
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 337, in checked_call
    result = self.endpoint(*a, **kw)
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 939, in __call__
    return self.method(*args, **kw)
  File "/usr/lib/python3/dist-packages/odoo/http.py", line 517, in response_wrap
    response = f(*args, **kw)
  File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 966, in call_button
    action = self._call_kw(model, method, args, {})
  File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 954, in _call_kw
    return call_kw(request.env[model], method, args, kwargs)
  File "/usr/lib/python3/dist-packages/odoo/api.py", line 749, in call_kw
    return _call_kw_multi(method, model, args, kwargs)
  File "/usr/lib/python3/dist-packages/odoo/api.py", line 736, in _call_kw_multi
    result = method(recs, *args, **kwargs)
  File "<decorator-gen-67>", line 2, in button_immediate_upgrade
  File "/usr/lib/python3/dist-packages/odoo/addons/base/models/ir_module.py", line 73, in check_and_log
    return method(self, *args, **kwargs)
  File "/usr/lib/python3/dist-packages/odoo/addons/base/models/ir_module.py", line 614, in button_immediate_upgrade
    return self._button_immediate_function(type(self).button_upgrade)
  File "/usr/lib/python3/dist-packages/odoo/addons/base/models/ir_module.py", line 553, in _button_immediate_function
    modules.registry.Registry.new(self._cr.dbname, update_module=True)
  File "/usr/lib/python3/dist-packages/odoo/modules/registry.py", line 86, in new
    odoo.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/usr/lib/python3/dist-packages/odoo/modules/loading.py", line 417, in load_modules
    force, status, report, loaded_modules, update_module, models_to_check)
  File "/usr/lib/python3/dist-packages/odoo/modules/loading.py", line 313, in load_marked_modules
    perform_checks=perform_checks, models_to_check=models_to_check
  File "/usr/lib/python3/dist-packages/odoo/modules/loading.py", line 222, in load_module_graph
    load_data(cr, idref, mode, kind='data', package=package, report=report)
  File "/usr/lib/python3/dist-packages/odoo/modules/loading.py", line 68, in load_data
    tools.convert_file(cr, package.name, filename, idref, mode, noupdate, kind, report)
  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 801, in convert_file
    convert_xml_import(cr, module, fp, idref, mode, noupdate, report)
  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 864, in convert_xml_import
    obj.parse(doc.getroot(), mode=mode)
  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 754, in parse
    self.parse(rec, mode)
  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 763, in parse
    exc_info[2]
  File "/usr/lib/python3/dist-packages/odoo/tools/pycompat.py", line 86, in reraise
    raise value.with_traceback(tb)
  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 757, in parse
    self._tags[rec.tag](rec, de, mode=mode)
  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 573, in _tag_record
    model = self.env[rec_model]
  File "/usr/lib/python3/dist-packages/odoo/api.py", line 821, in __getitem__
    return self.registry[model_name]._browse((), self)
  File "/usr/lib/python3/dist-packages/odoo/modules/registry.py", line 176, in __getitem__
    return self.models[model_name]
odoo.tools.convert.ParseError: "test_module.test_module2" while parsing /mnt/extra-addons/test_module/data/data.xml:7, near
<record id="object1" model="test_module.test_module2">
            <field name="name">Object 1</field>
          </record>

Avatar
Discard
Best Answer

Hi,

As per your code , this what i found

class test_module2(models.Model):

    _name = 'test_module.test_module2'

    name = fields.Char() /Exist in data file But No value field/

 <record id="object1" model="test_module.test_module2">
            <field name="name">Object 1</field>
            <field name="value">10</field>
          </record>

 <field name="value">  this does not exist in your model.

Regards,
Silvestar

Avatar
Discard