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

How to Update the Record in Wizard?

Subscribe

Get notified when there's activity on this post

This question has been flagged
wizardxmlpyhtonodoo12
3 Replies
11656 Views
Avatar
Harshit Trivedi

I am using Odoo v12, I have one requirement to update the qty to wizard view. I have added two button Plus and Minus and but when I try to update qty using button it is not working. Here I attach the Screenshot my wizard 



  Here button code in xml.

 <button name="action_plus" icon="fa-plus-square" type="object" style="float:right" />

  And qty Increment Code in 

@api.multi

def action_plus(self):

    for record in self:

        record.qty  = record.qty + 1

    return {"type": "set_scrollTop"}


   So My Qty not to increasing and decreasing using that button 


0
Avatar
Discard
Avatar
Vincent
Best Answer

Hi, have you solved this problem? may i know how you can solved this problem because right now i got same problem like you. Thank you

0
Avatar
Discard
Avatar
La Jayuhni Yarsyah
Best Answer

How do you display the wizard form ??
Are you save the wizard record first then show the record at pop up wizard  OR you just set new form with some default value ??

Example:

  1.  https://pastebin.com/ymzMcQFF

  2. \https://pastebin.com/ymzMcQFF



Based on your syntax (def action_plus(self):),, self pointed to the object (including record) that to be executed.. so if you use style no #2 you can't do that (increase/decrease) only just by the python,, but if you use style no #1 it could be done because when you call the button the record has been saved at database and odoo know wich record to be updated..
You can test you code with "print(self)", or logger to the command line,, and see what the result. I guess the result will be a empty object...
Ex:

@api.multi

def action_plus(self):

   # DO THIS FOR SEE "SELF" VALUE--->  print(self)
   # OR DO THIS --> _logger.info(self) # IF YOU USE logger object

    for record in self:

        record.qty  = record.qty + 1


But i think its better you to handle it by javascript,,  then user can save it with save button..

Regards

La Jayuhni Yarsyah

0
Avatar
Discard
Avatar
faOtools
Best Answer

Hi, it seems it is because your page is not refreshed after the action is done. If you reload the page, it should be updated. 

To programatically refresh the page, try something like:

return {
    'type': 'ir.actions.client',
    'tag': 'reload',
}

You can also play around with 'always_reload' and 'reload_on_button' options for the QTY field. Have a look at: https://www.odoo.com/forum/ayuda-1/question/what-behavior-with-options-always-reload-5566


Finally, I guess it was a misprint, but anyway: the decorator is @api.multi. In your question you missed 'i' at the end

0
Avatar
Discard
Harshit Trivedi
Author

Thank You for Answering but I have not to need the reload page every plus qty or minus qty and also you have given the link not working and In that case, it is working for me Odoo V11 version but the same thing Odoo V11 to V12 it is not working.

faOtools

As for reloading the page: I'm afraid you have to because of how buttons in embedded tree view work. Each time you pressed the button on a form view the form is reloaded, however, when you pressed the button on a embedded tree view, a form is not updated. So, you need to do that manually.

Otherwise, you need to implement JavaScript methods to make the update partially.

As for the reload options: I didn't try it by myself, so can't be sure. However, in the Odoo 12 core there are many places where it is used

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
Element cannot be located in parent view
xml odoo12
Avatar
0
Feb 22
2534
Prevent wizard from being closed odoo 12
wizard odoo12
Avatar
Avatar
Avatar
2
Sep 20
6824
ParseError: "External ID not found in the system?
wizard xml buttons wizards odoo12
Avatar
0
Dec 19
3
How to receive value from wizard before saving it
wizard odoo12
Avatar
Avatar
1
Sep 19
7361
AssertionError: Element data has extra content: record, line 3 Solved
xml odoo12
Avatar
Avatar
Avatar
6
Aug 19
11146
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