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

Configuration Management for Transports to PRD

Abonare

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

Această întrebare a fost marcată
#configuration#change#CMS#transport#import
3 Răspunsuri
4274 Vizualizări
Imagine profil
Sandi Langley

What are the best practices for transporting new &/or changed master data and settings (only the necessary ones & only the ones that work!) into production?  I have not been able to find a Change/Configuration Management System that will help me track everything.  I am concerned about:.

  1. the administrative load required to manually track my changes

  2. the very real possibility that I may forget to log an important change to configuration/settings

  3. the possibility of undoing or otherwise affecting the work of my team members because I was unaware of their changes and requirements

  4.  not knowing the justification for previous settings.  (Why was it set that way and will I break something if I change it?)

From what I understand, we are to export data from TST as a CSV & then import it into PRD.  What data?  Some of it is new products that need to be loaded into PRD, some of it is corrections to existing data that needs to be changed (because we learned something new or the biz reqs changed), and some of it is garbage because this is my sandbox where I experiment!

I have been told that any new settings will have to be manually set in PRD (can anyone say "rework"?).  What if I miss one?  I'm constantly trying different approaches in order to arrive at a workable solution.  I can easily see myself forgetting to record one OR recording one, reversing it and then forgetting to mark it off the list.

There must be a better way!!!

0
Imagine profil
Abandonează
Imagine profil
Ruchita
Cel mai bun răspuns

Configuration Management for Transports to PRD in Odoo

In Odoo development and deployment workflows, configuration management refers to the structured process of managing changes across different environments (Dev, Test/UAT, and Production).

When transporting configurations or customizations to the Production (PRD) environment, it’s essential to follow a reliable process to ensure stability and traceability.

Recommended Configuration Management Approach:

  1. Version Control:
    Use Git to track and manage all custom modules and configurations. Each change should be committed with meaningful messages and tagged by release version.
  2. Staging Environment:
    Always test changes in a staging or UAT environment that mirrors production. This helps catch issues before deployment.
  3. Migration Scripts:
    For data model changes or configuration updates (e.g., record rules, views, settings), use migration scripts or XML/CSV data files within custom modules (data or demo folders).
  4. Record Configuration with XML-ID:
    For configurations like sequences, groups, or settings, use data files with noupdate="0" and assign external IDs. This ensures the records are updatable across environments.
  5. Automated Deployment (Optional):
    Use tools like Docker, GitHub Actions, or custom scripts to automate the deployment process to PRD and reduce manual steps.
  6. Backup Before Deployment:
    Always create a full backup of the database and filestore before pushing any transport to production.
  7. Post-Deployment Checks:
    Verify modules are upgraded correctly using -u parameter and perform sanity checks for key workflows.

0
Imagine profil
Abandonează
Imagine profil
Sandi Langley
Autor Cel mai bun răspuns

Thank you for your quick reply!  We are using Odoo.sh.  What would you recommend?

0
Imagine profil
Abandonează
Imagine profil
Paresh Wagh
Cel mai bun răspuns

Hi Sandi:

If the application is hosted by you (i.e. not Odoo online) you have the option of defining a custom module for your site specific changes and installing/upgrading it through the Apps menu. This provides you the ability of having the module under version control and integrating it with your configuration/release management process.

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
Can i change this to fixed amount?
#change #help
Imagine profil
1
dec. 23
1673
Importing Contacts Rezolvat
#import #contacts
Imagine profil
Imagine profil
Imagine profil
2
mar. 24
3452
problem with import product quantity
#export #import
Imagine profil
0
sept. 21
2024
How to deliver a website to my client
web delivery #configuration
Imagine profil
Imagine profil
1
mai 24
2636
Past years Financial Data
data migration #import
Imagine profil
0
apr. 24
2393
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