This question has been flagged
2445 Views

Dear:

 

I am working in Odoo 11.0

I have an Odoo installation running correctly. Here I have implemented an ai_contract module that depends on:

        'depends': [

        'contract',

        'sale_management',

        'ai_base',

],

 

contract is a module of the community:

   'name': 'Contracts Management - Recurring',

    'version': '11 .0.2.1.0 ',

    'category': 'Contract Management',

    'license': 'AGPL-3',

    'author': "OpenERP SA,"

              "Tecnativa,"

              "LasLabs,"

              "Odoo Community Association (OCA)",

    'website': 'https://github.com/oca/contract',

    'depends': ['base', 'account', 'analytic'],

 

and ai_base is a local development.

 

In the test area I made some modifications and decided to reinstall everything from zero in that area, but it is giving me problems.

 

In the routine ai_contract\models\account_analytic_account.py the field named "note" was created:

 

note = fields.Text (string = "Notes")

 

This field was created automatically in the account_analytic_account table in Postgres, when it was first installed in production. In the Database in which I am installing also has the note field in Postgres

 

However, when I install the contract module again in the test area, I get the following error:

 

Traceback (most recent call last):

  File "/usr/lib/python3/dist-packages/odoo/models.py", line 1036, in _validate_fields

    check (self)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/ir/ir_ui_view.py", line 335, in _check_xml

    self.postprocess_and_fields (view.model, view_doc, view.id)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/ir/ir_ui_view.py", line 1048, in postprocess_and_fields

    self.raise_view_error (message, view_id)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/ir/ir_ui_view.py", line 509, in raise_view_error

    raise ValueError (message)

ValueError: The `note` field does not exist

 

Error context:

View `Contract list`

[view_id: 1481, xml_id: n / a, model: account.analytic.account, parent_id: 799]

 

During handling of the above exception, another exception occurred:

 

Traceback (most recent call last):

  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 744, in parse

    self._tags [rec.tag] (rec, de, mode = mode)

  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 654, in _tag_record

    id = self.env (context = rec_context) ['ir.model.data'] ._ update (rec_model, self.module, res, rec_id or False, not self.isnoupdate (data_node), noupdate = self.isnoupdate (data_node) , mode = self.mode)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/ir/ir_model.py", line 1487, in _update

    record = record.create (values)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/ir/ir_ui_view.py", line 398, in create

    return super (View, self) .create (self._compute_defaults (values))

  File "/usr/lib/python3/dist-packages/odoo/models.py", line 3381, in create

    self._fields [key] .determine_inverse (record)

  File "/usr/lib/python3/dist-packages/odoo/fields.py", line 1071, in determine_inverse

    getattr (records, self.inverse) ()

  File "/usr/lib/python3/dist-packages/odoo/addons/base/ir/ir_ui_view.py", line 266, in _inverse_arch

    view.write (data)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/ir/ir_ui_view.py", line 414, in write

    return super (View, self) .write (self._compute_defaults (waltz))

  File "/usr/lib/python3/dist-packages/odoo/models.py", line 3090, in write

    self._write (old_vals)

  File "/usr/lib/python3/dist-packages/odoo/models.py", line 3256, in _write

    self._validate_fields (waltz)

  File "/usr/lib/python3/dist-packages/odoo/models.py", line 1040, in _validate_fields

    raise ValidationError ("% s \ n \ n% s"% (_ ("Error while validating constraint"), tools.ustr (e)))

odoo.exceptions.ValidationError: ('Error while validating the restrictions \ n \ nThe field `note` does not exist \ n \ nContext of the error: \ nView` Contract list` \ n [view_id: 1481, xml_id: n / a, model: account.analytic.account, parent_id: 799] ', None)

 

During handling of the above exception, another exception occurred:

 

Traceback (most recent call last):

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 650, in _handle_exception

    return super (JsonRequest, self) ._ handle_exception (exception)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 310, 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 692, in dispatch

    result = self._call_function (** self.params)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 342, 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 335, in checked_call

    result = self.endpoint (* a, ** kw)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 936, in __call__

    return self.method (* args, ** kw)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 515, in response_wrap

    response = f (* args, ** kw)

  File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 938, in call_button

    action = self._call_kw (model, method, args, {})

  File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 926, in _call_kw

    return call_kw (request.env [model], method, args, kwargs)

  File "/usr/lib/python3/dist-packages/odoo/api.py", line 689, in call_kw

    return call_kw_multi (method, model, args, kwargs)

  File "/usr/lib/python3/dist-packages/odoo/api.py", line 680, in call_kw_multi

    result = method (recs, * args, ** kwargs)

  File "<decorator-gen-42>", line 2, in button_immediate_install

  File "/usr/lib/python3/dist-packages/odoo/addons/base/module/module.py", line 71, in check_and_log

    return method (self, * args, ** kwargs)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/module/module.py", line 449, in button_immediate_install

    return self._button_immediate_function (type (self) .button_install)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/module/module.py", line 542, 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 85, in new

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

  File "/usr/lib/python3/dist-packages/odoo/modules/loading.py", line 380, in load_modules

    loaded_modules, update_module, models_to_check)

  File "/usr/lib/python3/dist-packages/odoo/modules/loading.py", line 274, 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 181, in load_module_graph

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

  File "/usr/lib/python3/dist-packages/odoo/modules/loading.py", line 95, in _load_data

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

  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 791, in convert_file

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

  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 852, in convert_xml_import

    obj.parse (doc.getroot (), mode = mode)

  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 751, 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 744, in parse

    self._tags [rec.tag] (rec, de, mode = mode)

  File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 654, in _tag_record

    id = self.env (context = rec_context) ['ir.model.data'] ._ update (rec_model, self.module, res, rec_id or False, not self.isnoupdate (data_node), noupdate = self.isnoupdate (data_node) , mode = self.mode)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/ir/ir_model.py", line 1487, in _update

    record = record.create (values)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/ir/ir_ui_view.py", line 398, in create

    return super (View, self) .create (self._compute_defaults (values))

  File "/usr/lib/python3/dist-packages/odoo/models.py", line 3381, in create

    self._fields [key] .determine_inverse (record)

  File "/usr/lib/python3/dist-packages/odoo/fields.py", line 1071, in determine_inverse

    getattr (records, self.inverse) ()

  File "/usr/lib/python3/dist-packages/odoo/addons/base/ir/ir_ui_view.py", line 266, in _inverse_arch

    view.write (data)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/ir/ir_ui_view.py", line 414, in write

    return super (View, self) .write (self._compute_defaults (waltz))

  File "/usr/lib/python3/dist-packages/odoo/models.py", line 3090, in write

    self._write (old_vals)

  File "/usr/lib/python3/dist-packages/odoo/models.py", line 3256, in _write

    self._validate_fields (waltz)

  File "/usr/lib/python3/dist-packages/odoo/models.py", line 1040, in _validate_fields

    raise ValidationError ("% s \ n \ n% s"% (_ ("Error while validating constraint"), tools.ustr (e)))

odoo.tools.convert.ParseError: "Error while validating constraints

 

The `note` field does not exist

 

Error context:

View `Contract list`

[view_id: 1481, xml_id: n / a, model: account.analytic.account, parent_id: 799]

None "while parsing /opt/terceros/contract/views/account_analytic_account_view.xml:99, near

<record id = "view_account_analytic_account_journal_tree" model = "ir.ui.view">

        <field name = "name"> Contract list </ field>

        <field name = "model"> account.analytic.account </ field>

        <field name = "inherit_id" ref = "analytic.view_account_analytic_account_list" />

        <field name = "mode"> primary </ field>

        <field name = "priority" eval = "9999" />

        <field name = "arch" type = "xml">

            <data> <field name = "partner_id" position = "before">

                <field name = "journal_id" groups = "account.group_account_user" />

            </ field>

            <field name = "partner_id" position = "after">

                <field name = "recurring_next_date" invisible = "not context.get ('is_contract', False)" />

            </ field>

        </ data> </ field>

    </ record>

 

--------------------

If I try to install the ai_contract module again in the test area, I get the same error.

 

I do not understand if the contract module does not depend on ai_contract why it tries to install ai_contract, it seems somewhat recursive.

 

I would appreciate any suggestions.

 

Best regards,

Claudio

 

Avatar
Discard