Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Update wizard quantity when product_uom_qty changes?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
python3odoo12
2 Respostes
6179 Vistes
Avatar
Riyan

I have created a wizard which adds a product bundle to sale.order.line along with the quantity. The .py of wizard is hereby:

lass SaleView(models.TransientModel):
_name = "sale.order.wizard"

#list of field used in wizard given here
product_name = fields.Many2one("product.product", string="Product Name", required=True)
quantity = fields.Float(string="Quantity", default=1.0)


@api.multi
def button_send(self):
#this function is used to create a new product list in sale.order.line
#after clicking add pack button in wizard of sale.order.wizard
for line in self.product_name:
self.env['sale.order.line'].create({
'product_id': line.id,
'product_uom_qty': self.quantity,
'order_id': self._context.get('active_id')
})
return True            I want to update quantity when product_uom_qty in sale.order.line is changed. Does anyone have any idea how to do it. Please help me. Thanks in advance..

0
Avatar
Descartar
Avatar
Riyan
Autor Best Answer

Thanks, But i know that already. I just want to update that field value in the sale order line when the qty field in sale order line is changed not the wizard value but the passed value. So if u have any idea then please provide me. Thanks!! 

1
Avatar
Descartar
Jainesh Shah(Aktiv Software)

Hello Riyan,

Okay so to update the Sale orderline field "product_uom_qty" based on the wizard field value "Quantity". You can try this below code.

@api.multi

def button_send(self):

context = self.env.context

active_ids = context.get('active_ids')

for sale_rec in self.env['sale.order'].browse(active_ids):

sale_rec.order_line = [(0, 0, {'product_id': self.product_name.id,

'product_uom_qty': self.quantity,})]

Riyan
Autor

The above button_send in my code sends a product_pack to the sale order line when the button is clicked. Now i want to update the quantity that was previously passed through the function button_send when product_uom_qty is changed in value. Does your code perform that i'm not sure if you have any idea it will be very helpful. Thanks... In simply you can say i want to reverse the action of button_send and place the value back again in sale.order.line.

Avatar
Jainesh Shah(Aktiv Software)
Best Answer

Hello Riyan,


Transient Model never stores the values of fields in the database.
So we could not update the value of Quantity field which is defined in Transient Model.



Regards,




Email: odoo@aktivsoftware.com

Skype: kalpeshmaheshwari

   ​

0
Avatar
Descartar
Jacques-André Eberhard

Wrong, they are stored, then deleted after 5minutes(default value) by a cron task.

It might not be the answer of why we can't

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

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

Registrar-se
Related Posts Respostes Vistes Activitat
I want to populate Customer/Vendor Many2one field based on Selection Field which has two selection 1.Sale Order, 2.Purchase Order. If it is Sale Order then Many2one field should have Customers from sale.order model and if it is Purchase Order then Many2one field should have Vendors from purchase.order model. v:odoo12 Solved
python3 odoo12
Avatar
Avatar
Avatar
3
de des. 22
4167
How to make sign up menu in website? Solved
python3 odoo12
Avatar
Avatar
2
d’abr. 20
5261
Multi Assign to one task?
python3 odoo12
Avatar
Avatar
1
d’abr. 20
4216
How to run code in the background for longer period of time without blocking UI?
python3 odoo12
Avatar
Avatar
Avatar
2
de set. 19
10072
sending JSON data with 400 status
controller python3 odoo12
Avatar
0
de juny 21
4007
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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