Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Memory Error When Installing Modules with Computed Stored Fields

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
performancemodulememoryodoocomputed-fieldsstore=True
1 Răspunde
2373 Vizualizări
Imagine profil
Lenin Acosta

Hello everyone,


I have several custom modules that I need to install, which extend models like sale.order.line and account.move.line. These models contain a large number of records.


In my custom modules, I have fields with compute and store=True, and I suspect this might be causing a memory error during installation. I would like to understand the best approach to successfully install these modules without running into performance or memory issues.


Here’s an example of one of the modules:


class SaleOrderLine(models.Model):

    _inherit = 'sale.order.line'


    currency_id2 = fields.Many2one(related='order_id.currency_id2', depends=['order_id.currency_id2'], store=True,

                                   string='Secondary Currency')

    price_subtotal_rate = fields.Monetary(string='Subtotal', currency_field='currency_id2',

                                          compute='_compute_amount_rate_line', store=True)

    price_unit_rate = fields.Monetary(string='Unit Price', currency_field='currency_id2',

                                      compute='_compute_amount_rate_line', store=True)


    @api.depends('order_id.rate', 'currency_id2', 'price_unit', 'price_subtotal')

    def _compute_amount_rate_line(self):

        _logger.info("Entering the method")

        for line in self:

            if line.order_id.company_id.currency_id2 == line.order_id.currency_id:

                line.update({

                    'price_unit_rate': line.price_unit * line.order_id.rate,

                    'price_subtotal_rate': line.price_subtotal * line.order_id.rate,

                })

            if line.order_id.company_id.currency_id == line.order_id.currency_id:

                if line.order_id.rate:

                    line.update({

                        'price_unit_rate': line.price_unit / line.order_id.rate,

                        'price_subtotal_rate': line.price_subtotal / line.order_id.rate

                    })

        _logger.info("Exiting the method")

I would appreciate any advice on optimizing the installation process, especially regarding computed stored fields that may cause performance issues.


Thank you!


Here is an example of the error:

RPC_ERROR


Odoo Server Error


Traceback (most recent call last):


  File , line 899, in get


    return field_cache[record._ids[0]]


KeyError: 533602




During handling of the above exception, another exception occurred:




Traceback (most recent call last):


  File , line 1083, in _get_


    value = env.cache.get(record, self)


  File , line 902, in get


    raise CacheMiss(record, field)


odoo.exceptions.CacheMiss: 'sale.order.line(533602,).order_id'




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




Traceback (most recent call last):


  File , line 242, in _dispatch


    result = request.dispatch()


  File , line 702, in dispatch


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


  File , line 368, in _call_function


    return checked_call(self.db, *args, **kwargs)


  File , line 94, in wrapper


    return f(dbname, *args, **kwargs)


  File , line 357, in checked_call


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


  File , line 925, in _call_


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


  File , line 546, in response_wrap


    response = f(*args, **kw)


  File , line 1328, in call_button


    action = self._call_kw(model, method, args, kwargs)


  File , line 1316, in _call_kw


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


  File , line 471, in call_kw


    result = _call_kw_multi(method, model, args, kwargs)


  File , line 456, in _call_kw_multi


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


  File , line 2, in button_immediate_install


  File , line 72, in check_and_log


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


  File , line 470, in button_immediate_install


    return self._button_immediate_function(self.env.registry[self._name].button_install)


  File , line 587, in _button_immediate_function


    registry = modules.registry.Registry.new(self._cr.dbname, update_module=True)


  File , line 87, in new


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


  File , line 474, in load_modules


    processed_modules += load_marked_modules(cr, graph,


  File , line 363, in load_marked_modules


    loaded, processed = load_module_graph(


  File , line 199, in load_module_graph


    registry.init_models(cr, model_names, {'module': package.name}, new_install)


  File , line 445, in init_models


    env['base'].flush()


  File , line 5692, in flush


    self.recompute()


  File , line 6165, in recompute


    process(field)


  File , line 6149, in process


    field.recompute(recs)


  File , line 1273, in recompute


    self.compute_value(recs)


  File , line 1295, in compute_value


    records._compute_field_value(self)


  File , line 4277, in _compute_field_value


    fields.determine(field.compute, self)


  File , line 88, in determine


    return needle(*args)


  File , line 79, in _compute_amount_rate_line


    if line.order_id.company_id.currency_id2 == line.order_id.currency_id:


  File , line 2620, in _get_


    return super()._get_(records, owner)


  File , line 1109, in _get_


    recs._fetch_field(self)


  File , line 3277, in _fetch_field


    fnames = [


  File , line 3285, in <listcomp>


    if not (f.compute and self.env.records_to_compute(f))


  File , line 756, in records_to_compute


    return self[field.model_name].browse(ids)


  File , line 5211, in browse


    ids = tuple(ids)


Exception




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




Traceback (most recent call last):


  File , line 658, in _handle_exception


    return super(JsonRequest, self)._handle_exception(exception)


  File , line 301, in _handle_exception


    raise exception.with_traceback(None) from new_cause


MemoryError


0
Imagine profil
Abandonează
Imagine profil
Niyas Raphy (Walnut Software Solutions)
Cel mai bun răspuns

Hi,
You can speed up the installation by adding the new fields forcefully into the database and later using some scripts you can compute the values into the field.

Sample;
    def _auto_init(self):

        """

        Create related field here, too slow

        when computing it afterwards through _compute_related.


        Since group_id.sale_id is created in this module,

        no need for an UPDATE statement.

        """

        if not column_exists(self.env.cr, 'stock_picking', 'sale_id'):

            create_column(self.env.cr, 'stock_picking', 'sale_id', 'int4')

        return super()._auto_init()

Thanks

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
[13.0] Module installation failed due to stored compute field on large database
performance installation memory computed-fields 13.0
Imagine profil
Imagine profil
1
sept. 21
6663
How can we Uninstall odoo module from terminal? Rezolvat
module odoo
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
sept. 25
21937
Odoo - Find module to show group by parent/child value in tree view
module python3 odoo
Imagine profil
0
apr. 23
3796
Model Name in Fleet module? Rezolvat
fleet module computed-fields
Imagine profil
Imagine profil
2
feb. 22
5298
cache in odoo ?
performance cache odoo
Imagine profil
0
iun. 21
5843
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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