Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Artificial Intelligence
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Property Management
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Odoo Server Error when adding new relational fields

Subscriure's

Get notified when there's activity on this post

This question has been flagged
1 Respondre
1539 Vistes
Avatar
Cristian Camilo Rojas Capera

I've been trying to establish relations between three different models with the goal of adding a device and a card to a unit. However, when I add 'device_rel' and 'card_rel', Odoo gives this error:

class wialon_unit(models.Model):
    _name = "gpscontrol.wialon_unit"
    _inherit = ["motion.tracking_unit"]
    _rec_name = "name"
    _sql_constraints = [
        ('name_uniq', 'unique (id_wialon)',
         'El id wialon no puede repetirse')
    ]

    device_rel = fields.One2many(
        'motion.internal_device', string="Dispositivo")
    card_rel = fields.One2many(
        'motion.internal_card', string="SIM")
RPC_ERROR
Odoo Server Error
Traceback (most recent call last):
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/api.py", line 886, in get
    return field_cache[record._ids[0]]
KeyError: 196

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/fields.py", line 1082, in __get__
    value = env.cache.get(record, self)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/api.py", line 889, in get
    raise CacheMiss(record, field)
odoo.exceptions.CacheMiss: 'ir.actions.act_window(196,).search_view'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/addons/base/models/ir_http.py", line 237, in _dispatch
    result = request.dispatch()
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/http.py", line 698, in dispatch
    result = self._call_function(**self.params)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/http.py", line 368, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/service/model.py", line 94, in wrapper
    return f(dbname, *args, **kwargs)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/http.py", line 357, in checked_call
    result = self.endpoint(*a, **kw)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/http.py", line 921, in __call__
    return self.method(*args, **kw)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/http.py", line 546, in response_wrap
    response = f(*args, **kw)
  File "/Users/admin/Desktop/back_end/odoo/odoo/addons/web/controllers/main.py", line 1603, in load
    action = request.env[action_type].sudo().browse([action_id]).read()
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/addons/base/models/ir_actions.py", line 255, in read
    result = super(IrActionsActWindow, self).read(fields, load=load)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/models.py", line 3235, in read
    return self._read_format(fnames=fields, load=load)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/models.py", line 3255, in _read_format
    vals[name] = convert(record[name], record, use_name_get)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/models.py", line 5916, in __getitem__
    return self._fields[key].__get__(self, type(self))
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/fields.py", line 1131, in __get__
    self.compute_value(recs)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/fields.py", line 1290, in compute_value
    records._compute_field_value(self)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/models.py", line 4269, in _compute_field_value
    fields.determine(field.compute, self)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/fields.py", line 87, in determine
    return needle(*args)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/addons/base/models/ir_actions.py", line 222, in _compute_search_view
    fvg = self.env[act.res_model].fields_view_get(act.search_view_id.id, 'search')
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/api.py", line 540, in __getitem__
    return self.registry[model_name]._browse(self, (), ())
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/modules/registry.py", line 182, in __getitem__
    return self.models[model_name]
Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/http.py", line 654, in _handle_exception
    return super(JsonRequest, self)._handle_exception(exception)
  File "/Users/admin/Desktop/back_end/odoo/odoo/odoo/http.py", line 301, in _handle_exception
    raise exception.with_traceback(None) from new_cause
KeyError: 'gpscontrol.wialon_unit'

I've checked my manifest.py to ensure that the model is included in the 'depends' section, and everything appears to be in order. (motion_service_orders)

"depends": [
        "base",
        "base_geoengine",
        "base_geolocalize",
        "motion_service_orders"
    ],


0
Avatar
Descartar
Avatar
Cristian Camilo Rojas Capera
Autor Best Answer

The issue at hand revolves around Odoo's limitation in accommodating bidirectional relations. In my particular scenario, I find myself needing to reconsider and approach the solution differently than initially planned.


0
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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