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í
    Food & Hospitality
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Guest House
    • Distributor nápojů
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Trades
    • Údržbář
    • IT hardware a podpora
    • Solar Energy Systems
    • Výrobce obuvi
    • Úklidové služby
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Browse all Industries
  • 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
    • Services for Partners
    • 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

Updating Odoo15 JS to Odoo16 owl

Odebírat

Get notified when there's activity on this post

This question has been flagged
javascriptupgradingOWLlegacy
1 Odpovědět
4142 Zobrazení
Avatar
Abhinav Bajimaya

So we have written an odoo15 module in the legacy javascript format , but now are going to upgrade the code into the odoo16 version.

To be exact, we have used extended the DatePicker field and it works completely fine in v15. 
However, the new v16 uses owl framework and the code is written in a completely different way, but there  I can find ' /legacy' folder still on the odoo16 module, but when the code javascript does not work in v16. 

Is there any way I can use the legacy version of the code in odoo16 as well?

......................................................................................................................................


......................................................................................................................................

Also , in 15 we used to use .extend method in order to add some feature to a js model, its counterpart in odoo is to use prototyping patch method? 

1
Avatar
Zrušit
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Nejlepší odpověď

Hi,

Odoo regularly deprecates code in new versions, which means certain functions or modules might no longer exist or have changed significantly. The underlying architecture of Odoo might have changed, making the older code incompatible with the newer version. Newer versions of Odoo may introduce changes to the database schema, which can affect the compatibility of older code. Update the legacy code to the new version of Odoo by making necessary changes, removing deprecated functions, and updating module structures. If there are substantial changes between versions, you may use migration tools or scripts to help automate some of the code adaptation. Using legacy code might not be the most optimal approach in the long run.

The extend method is used to create a new class that inherits from an existing class and adds or overrides its methods. It allows you to extend the functionality of an existing class without modifying the original class directly. Patching is a way to modify the behavior of an existing method without overriding it completely. In OWL, patching can be achieved using the "patch" method provided by the framework.
That means patching is not used as the counterpart to extend; both are used in different scenarios. You can refer to the blogs

https://www.cybrosys.com/blog/super-override-existing-functions-using-owl
https://www.cybrosys.com/blog/how-to-patch-existing-owl-component-in-odoo-16

Hope it helps

3
Avatar
Zrušit
Abhinav Bajimaya
Autor

Looks like i need to patch the original DatePicker in order to get what I want here.
I need to change the behaviour of the default datepicker that odoo has , I need to load two calendars here , one is the odoo datepicker and another is the custom nepali datepicker.
https://www.odoo.com/id_ID/forum/help-1/odoo16-owl-adding-a-custom-datepicker-alongside-the-original-datepicker-230437

id appreciate if you looked through this post as well, as it contains more details on what i intend to do

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
py.eval in Javascript
javascript OWL
Avatar
0
led 25
1831
Uncaught Javascript Error > Invalid handler (expected a function, received: 'undefined")
javascript OWL
Avatar
0
zář 23
3792
is there onload hook in v13 JS FormViewDialog ? Vyřešeno
javascript OWL
Avatar
Avatar
1
kvě 23
2923
How to add an existing field validation with OWL?
javascript odoo OWL
Avatar
Avatar
Avatar
2
říj 25
1001
pop up en la pagina de inicio
javascript sale.order OWL
Avatar
Avatar
1
srp 25
856
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