Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

(CE) OpenUpgrade V11 --> V12 under docker environnement

Odebírat

Get notified when there's activity on this post

This question has been flagged
migrationmanualopenupgradeDocker
6827 Zobrazení
Avatar
Anatole

Hello,

I am under the CE version of odoo 11 and I want to upgrade to version 12. I'm under a docker environment and I use pgadmin 10. I would like to point out that I am far from being an expert, I have only known odoo for a short time. Some things I do may be absurd, have some compassion for an odoo beginner who has to do his migration o:)

To carry out this migration I followed the instructions of Odoo Tools in this issue:
https://www.odoo.com/fr_EN/forum/aide-1/question/ce-openupgrade-11-12-manual-migration-150884
Before creating a copy of my production database and migrating it, I created a test database with the demo data and only the CRM module installed.

It is currently not possible to use the migrate.py script to perform the migration, so it must be done "manually". To do this, you must run odoo with the openupgrade code (which is a duplicate of odoo with integrated migration scripts) and when the migration is performed, restart the migrated database with an odoo 12.
Am I all right so far?

Here are the operations I perform:
- I connect to the docker container
# docker exec -ti -u0[id] bash
- I modify the parameters of my odoo.conf (/etc/odoo/odoo/odoo.conf)
db_host = db
db_port = 5432
db_user = odoo
db_password = ****

- I install on my container (/usr/lib/python3/dist-packages) the openupgrade directory (https://github.com/OCA/OpenUpgrade)
# git clone https://github.com/OCA/OpenUpgrade.git

- I copy the content of OpenUpgrade/odoo/ into the odoo code (in order to be able to use the openupgrade code to launch my odoo) 

odoo is installed from docker and the directories are scattered all over the server. Here I (it seems to me) identified the modified files in openupgrade compared to odoo and imported the files to the right places :
# cp -r OpenUpgrade/odoo/* odoo/
# cp -r OpenUpgrade/odoo/addons/* odoo/addons/

- I install openupgrade from git (to get the latest version)
# apt-get install git
# pip3 install git+https://github.com/OCA/openupgradelib

- I go to my browser and try to launch odoo. I select my database version 11. Several errors appeared, I managed to fix them.
There is still a mistake that bothers me:
AttributeError: "ir.ui.menu" object has no attribute "parent_path

This error is run from a python script of odoo (not openupgrade) at this location:
https://github.com/odoo/odoo/blob/12.0/odoo/osv/expression.py#L757

the attribute "parent_path" is present in the table "ir_ui_menu" of an odoo V12 database but not in an odoo V11 database. I can still use my test database with version 11 but not with version 12, so it seems clear to me that the migration didn't work, I have to do something wrong but what? Can someone point me in the right direction or point out my mistake in this process?​

Thank you for the time you will take to answer me, once this migration is completed I will make sure to describe as precisely as possible all the operations performed so that it can help another person.

Sincerely, 

Anatole

0
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Asset Management migration V12.0 to new versions
migration openupgrade
Avatar
0
kvě 23
3105
How to set up 2 OpenUpgrade Servers Vyřešeno
migration openupgrade
Avatar
1
srp 19
5377
Error openupgrade hr module
migration openupgrade
Avatar
Avatar
1
bře 15
6424
Database Migration error from Odoo 14 to 15(Community) using Openeupgrade.
migration openupgrade databasemigration
Avatar
Avatar
1
kvě 25
3034
Openupgrade - im trying to migrate odoo 14 to odoo 15 with openupgrade.
migration openupgrade OpenUpgrade
Avatar
Avatar
1
dub 25
3204
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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