Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

[odoo11]: What are the points or tips which could be helpful for the migration from v10 to v11?

Subscribe

Get notified when there's activity on this post

This question has been flagged
odoo10odoo11migrations
2 Replies
11629 Views
Avatar
Anil Kesariya

Hello Everyone,

What are the useful tips which could be helpful in odoo migration from v10 to v11?

Like,

1. Which modules are removed? reason for removing, if merged in existing one than with which module it has been merged?

2. Model name replaced with new names.

3. Any changes in java script architecture?

4. Any changes in calling of report method?

I will update soon with answers, with some topics, which I've already discovered for the above questions, which could help you in migration of v11.


Rgds,

Anil


7
Avatar
Discard
Avatar
Anil Kesariya
Author Best Answer

Hello All,

Here is some info about new changes on v11.

Python3 Syntactical changes for odoo v11.

1. All the py file which resides in same folder or directory will be imported like, this is mandatory in v11 now.

v11.

from . import <your_file_name>

v10

import <your_file_name>

2. Dictionary syntax on iteration.

v11  (Python3)

dict = {'a':"Anil","k":"Kesariya"}
for k, v in dict.items():
print "KEY ::",k
print "VALUE ::",v
    #your code.

v10  (Python2)

dict = {'a':"Anil","k":"Kesariya"}
for k, v in dict.iteritems():
print "KEY ::",k
print "VALUE ::",v
    #your code.

3. Print Statement

v11 (Python3)

print("Your Message")

v10,

You must know already :)

print "Your message"

4. has_key() will not work anymore.

 - Use .get() function instead has_key() in the dictionary


Module Enhancements:


1. Module renamed.

- an account_accountant module is renamed with account_invoicing.

- sale module is renamed with sale_management.

2. Merged module 

Following module, you will not find inside odoo v11 addons,

- account_tax_cash_basis

-  report
Because they are merged with following modules.

- account_tax_cash_basis this module is merged with account module.

- report module is merged with web module.


3. Changed model name.

-  It will be updated soon.


4. Completely removed

- Workflow has been completely removed from v11, till v10 it was deprecated and supported.


5. Changes or updates to fields in respective of specific model (table)

- ir.cron :argument could be directly passed to function, instead of function there is code field which allows to add python code or call of function associated model, instead of model now it is model_id to reference, like we do for security record rule. from the below example you will understand more about the difference between v10 and v11.

   v11

<!--Scheduler Sync Send Request-->
<record id="gengo_sync_send_request_scheduler" model="ir.cron">
<field name="name">Gengo: Sync translation (Request)</field>
<field name="model_id" ref="base_gengo.model_base_gengo_translations"/>
<field name="state">code</field>
<field name="code">model._sync_request(20)</field>
<field name="interval_number">6</field>
<field name="interval_type">hours</field>
<field name="numbercall">-1</field>
<field name="doall" eval="False"/>
</record>

v10

<record id="gengo_sync_send_request_scheduler" model="ir.cron">
<field name="name" >Gengo Sync Translation (Request)</field>
<field eval="True" name="active"/>
<field name="interval_number">6</field>
<field name="interval_type">hours</field>
<field name="numbercall">-1</field>
<field name="doall" eval="False"/>
<field name="model" eval="'base.gengo.translations'"></field>
<field name="function" eval="'_sync_request'"/>
<field name="args" eval="'(20,)'"/>
</record>


6. Report Improvements,  

def render_html() method replaced with get_report_values() with same api decorator and argument list.

E.g. v11.

 @api.model
 def get_report_values(self, docids, data=None):

E.g. v10.

def render_html(self, docids, data=None):


Note: the return statement (result) is different in both methods.


- Below is example which will explain better the return of result.


E.g. v10

@api.model
def render_html(self, docids, data=None):
docargs = {}
return self.env['report'].render('account.report_journal', docargs)


E.g. v11


@api.model
def get_report_values(self, docids, data=None):
docargs = {}
return docargs

• get_action() method is replaced with report_action() for call report template.

The following example will explain better.

E.g. v11.

return self.env.ref(report_template_action_external_id).report_action(self, data=data)

E.g. v10

 return self.env['report'].get_action(self, report_tempalte_external_id, data=data) 


• To call the _run_wkhtmltopdf() from the different model and also change the argument sequence.

 

E.g. v11

self.env['ir.actions.report']._run_wkhtmltopdf(arguments)

E.g. v10

 self.env['report']._run_wkhtmltopdf(arguments)


- get_html() is replaced with render_qweb_html()

Hope this answer will you help in migration process of v11, any idea or correction appreciated.


Reference for JS framework update

1. Click here

2. Click here

3. Sample code reference, Click here

Best Regards,

Anil Kesariya.

19
Avatar
Discard
Niyas Raphy (Walnut Software Solutions)

Sale module Is also renamed ..sale_management

Anil Kesariya
Author

thanks, updated.

Ermin Trevisan

Thanks, very helpful!

Anil Kesariya
Author

Thank you @Ermin, for appreciation and upvote :)

Niyas Raphy (Walnut Software Solutions)

get_html is changed to render_qweb_html

Niyas Raphy (Walnut Software Solutions)

Changes in js see this video : https://www.youtube.com/watch?v=u-6aLi1oqcw

You can update the answer with this :)

Avatar
Niyas Raphy (Walnut Software Solutions)
Best Answer

Hi,

Described nicely .... Any wat check out this link to... 

-*- coding: utf-8 -*-  is not needed any more ..
like much more...

 https://github.com/OCA/maintainer-tools/wiki/Migration-to-version-11.0


For the Changes in the JS see this video from Odoo Experience : https://www.youtube.com/watch?v=u-6aLi1oqcw


 Js tutorials :

link1 : https://www.odoo.com/documentation/11.0/reference/javascript_api.html

link2 : https://www.odoo.com/documentation/11.0/reference/javascript_reference.html?t=1&cn=ZmxleGlibGVfcmVjcw%3D%3D&refsrc=email&iid=6b2c92f818ab445ab4f80b82bca57fb9&uid=909761905459204096&nid=244+272699400


Thanks

5
Avatar
Discard
Anil Kesariya
Author

thanks.

Enjoying the discussion? Don't just read, join in!

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

Sign up
Related Posts Replies Views Activity
Issue in showing kanban image in odoo 11
odoo10 odoo11
Avatar
Avatar
1
Dec 18
9592
Why limit attribute is removed in tree view list mode v11?
odoo10 odoo11
Avatar
Avatar
Avatar
2
Feb 18
5331
audit log odoo 11.0
odoo10 odoo11
Avatar
0
Oct 17
5901
does odoo 11 Community have the same speed as the entreprise edition X3 Faster than odoo 10 Solved
odoo10 odoo11
Avatar
Avatar
4
Oct 17
5212
difference between this._super() and this._super.apply() odoo js
JavascriptCallFromOdoo odoo10 odoo11
Avatar
Avatar
1
Feb 20
8733
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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