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

How can one update/migrate a custom module from one versión to another in Odoo.sh?

Abonare

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

Această întrebare a fost marcată
migrationanalyticupgradecustom moduleOdoo.sh
2 Răspunsuri
3666 Vizualizări
Imagine profil
Vicente de Orue

I need to upgrade a database from Odoo 15 to 17, and there are some modules that used analytic accounts and analytic tags, which in versions 16 and 17 have been transformed into distributions. For this, I need to create a script that updates these values so that they are not simply deleted.

I have seen that many people use OpenUpgrade, but I am not sure if it is used for upgrades on Odoo.sh. It would be good to know how I can upgrade these modules, especially if there is an example related to the analytic part.

0
Imagine profil
Abandonează
Imagine profil
Christoph Farnleitner
Cel mai bun răspuns

How this can be done is described in the docs:
- https://www.odoo.com/documentation/16.0/developer/reference/upgrades/upgrade_scripts.html
- https://www.odoo.com/documentation/16.0/developer/reference/upgrades/upgrade_utils.html


0
Imagine profil
Abandonează
Imagine profil
Dhrumi (Wan Buffer Services)
Cel mai bun răspuns

1. Update the Manifest File

  • Change the version key to match the target Odoo version (e.g., 17.0.1.0.0).
  • Update the depends list if any dependency versions have changed.

2. Refactor Python Code

  • Replace deprecated APIs (e.g., use models.Model, api.model_create_multi for record creation in v17+).
  • Check for changes in core model field names or method signatures.

3. Adjust XML Views

  • Use xpath rather than full view overrides.
  • Update view inheritance if parent views have changed (check Odoo's GitHub for view XML ID differences).

4. Migrate Security & Data Files

  • Update ir.model.access.csv to reflect any new model names.
  • Ensure data files still match current model field structure.

5. Update Git Branch in Odoo.sh

  • Create a new branch (e.g., odoo-17-upgrade) with updated module code.
  • Push to the associated repository.
  • In Odoo.sh, link the branch to a new staging environment running the target Odoo version.

6. Test Everything

  • Deploy to staging in Odoo.sh.
  • Perform UAT (User Acceptance Testing) and automated tests if available.

7. Finalize & Deploy

  • Once validated, promote the staging branch to production.


-1
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
Upgrade from any version On Odoo.sh ?
upgrade Odoo.sh
Imagine profil
Imagine profil
2
iun. 24
3229
Canadian Tax report only shows new taxes after upgrade from V15 to V18
migration upgrade tax report
Imagine profil
Imagine profil
1
oct. 25
934
Efficient way to migrate to production in Odoo.sh
migration Odoo.sh Database
Imagine profil
Imagine profil
1
mar. 25
5259
Odoo V16: How to Transfer an Odoo.sh Project from One Partner Account to Another? Rezolvat
migration Odoo.sh V16
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
mar. 25
2484
Odoo Upgrade to v15 - migration scripte : how to deal with obsolete views ?
migration upgrade pre-migration
Imagine profil
0
oct. 23
4025
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