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

Data from fields get lost after pressin button

Subscribe

Get notified when there's activity on this post

This question has been flagged
fieldsvaluesTransientModelodoo16features
1 Reply
2575 Views
Avatar
Agustin Cortes

Hello,

i porting/developing a module (working un V8).

It have a wizard , from the wizard we jump to a editable tree view with results and the option to confirm the operation.


I create the model (transient) en when clicking in the button (confirm the action) the data in the form get lost, all the fields cames empty

Here is my code:


the XML:


product.prices_update_wizard_result
product.prices_update_wizard_result











product.prices_update_wizard_result_detail.tree
product.prices_update_wizard_result_detail








and the py file:

class prices_update_wizard_result_detail(models.TransientModel):
_name = 'product.prices_update_wizard_result_detail'
_description = "details results"

result_id = fields.Many2one(
'product.prices_update_wizard_result', 'Result')
product_tmpl_id = fields.Many2one(
'product.template', 'Product Template',
readonly=True)
old_price = fields.Float(
'Old Price',
readonly=True)
new_price = fields.Float(
'New Price',
required=True
)


class prices_update_wizard_result(models.TransientModel):
_name = 'product.prices_update_wizard_result'
_description = "results"

@api.model
def default_get(self, fields_list):
res=super(prices_update_wizard_result,self).default_get(fields_list)
ret = []
price_discount = self._context.get('price_discount', 0.0)
price_surcharge = self._context.get('price_surcharge', 0.0)
price_round = self._context.get('price_round', 0.0)
product_tmpl_ids = self._context.get('product_tmpl_ids', [])
price_type = self._context.get('price_type', False)
for product_tmpl in self.env['product.template'].browse(
product_tmpl_ids):
if price_type == 'list_price':
old_price = product_tmpl.list_price
elif price_type == 'standard_price':
old_price = product_tmpl.standard_price
else:
raise UserError(_('Price type "%s" is not implemented') % (price_type))
vals = {
'product_tmpl_id': product_tmpl.id,
'old_price': old_price,
'new_price': self.env[
'product.prices_update_wizard'].calc_new_price(
old_price, price_discount,
price_surcharge, price_round),
}
ret.append([0,0,vals])
res.update({'detail_ids':ret})
return res


detail_ids = fields.One2many(
'product.prices_update_wizard_result_detail',
'result_id',
string='Products Detail',
store=False,
)

def confirm(self):
products_vals = []
price_type = self._context.get('price_type', False)
for line in self.detail_ids: #self.detail_ids comes empty
vals = {
'product_tmpl': line.product_tmpl_id,
'new_price': line.new_price,
}
products_vals.append(vals)
return self.env['product.prices_update_wizard'].update_prices(
products_vals, price_type)

if i change to models.Model works, but, if i perform a inline editiong, don't get stored in the self.detail_ids

Try with force_save but not solved at all


Any idea of any posible solution?

0
Avatar
Discard
Agustin Cortes
Author

cant post xml code
here it goes

<record id="view_prices_update_wizard_result_form" model="ir.ui.view">
<field name="name">product.prices_update_wizard_result</field>
<field name="model">product.prices_update_wizard_result</field>
<field name="arch" type="xml">
<form string="Products">
<header>
<button name="confirm" string="Confirm" type="object" class="oe_highlight" />
</header>
<field name="detail_ids" force_save = "1"/>
</form>
</field>
</record>

<record id="view_prices_update_wizard_result_detail_tree" model="ir.ui.view">
<field name="name">product.prices_update_wizard_result_detail.tree</field>
<field name="model">product.prices_update_wizard_result_detail</field>
<field name="arch" type="xml">
<tree string="Products" create="false" editable="top">
<field name="product_tmpl_id" force_save = "1"/>
<field name="old_price" force_save = "1"/>
<field name="new_price" force_save = "1"/>
</tree>
</field>
</record>

Avatar
Agustin Cortes
Author Best Answer

Ok, i solved with a workarraound, not the ideal solution.

Basicaly, i create a temp variable in the first class, and update that value with api.onchage

when you press the button, i use that variable instead of the one from the view.
Not ideal, but working fine

0
Avatar
Discard
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
how to populate a new field in odoo on old records
development fields odoo16features
Avatar
Avatar
1
Aug 25
3735
Put 3 fields with their respective labels on a single line, odoo 16
fields label odoo16features
Avatar
Avatar
Avatar
2
Jan 24
4511
many2one field is not saving
fields many2one odoo16features
Avatar
Avatar
1
Aug 23
3640
fields.Html() can not editable when it on the tree-view.
fields Html odoo16features
Avatar
Avatar
1
May 23
3551
inherit and add fields odoo16
fields res.partner odoo16features
Avatar
Avatar
Avatar
Avatar
3
Apr 23
5938
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