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

How to fetch Context value from wizard to Pivot view?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
wizardcontextpivotodoo12.0
3 Respostes
9540 Vistes
Avatar
Riddhi

Hello All,

I want to get the value of a wizard in pivot value using context.

Here is a code.

PY of wizard :

class DataWizard(models.TransientModel):

_name = 'data.wizard'
_description = 'Data Wizard'

"""Define new fields"""
first_date = fields.Date("First Date", default=date.today())
name = fields.Char("Name")

def action_done(self):
ctx = self.env.context.copy()
ctx.update({'wizard_id': self.id})
return {
'name': 'Pivot Own Reports',
'type': 'ir.actions.act_window',
'res_model': 'get.wizard.data',
'view_type': 'form',
'view_mode': 'pivot',
'view_id': self.env.ref('my_own_pivot.action_get_wizard_data_pivot').id,
'target': 'main',
'context': ctx,
}
XML OF WIZARD:
<record id="view_data_wizard" model="ir.ui.view">
<field name="name">data.wizard.form</field>
<field name="model">data.wizard</field>
<field name="arch" type="xml">
    <form string="Data Wizard">
              <sheet>
<group>
    <field name="first_date"/>
    <field name="name"/>
</group>
              </sheet>
              <footer>
<button name="action_done" type="object" string="Done" class="oe_highlight"/>
or
<button name="cancel" string="Cancel" special="cancel" class="oe_link"/>
              </footer>
    </form>
</field>
</record>

<record id="action_data_wizard" model="ir.actions.act_window">
<field name="name">data Wizard</field>
<field name="res_model">data.wizard</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="target">new</field>
<field name="view_id" ref="view_data_wizard"/>
</record>
</odoo>

PY of Pivot view :
class GetWizardData(models.Model):
_name = 'get.wizard.data'
_description = 'Get Wizard Data'
_auto = False

"""Define new fields"""
product_id = fields.Many2one('product.product', string='Product')
@api.model_cr
def init(self):
"""I need Context of Wizard HERE"""
tools.drop_view_if_exists(self._cr, 'get_wizard_data')
self._cr.execute("""
CREATE or replace VIEW get_wizard_data AS (
SELECT
acc_invoice.id as id,
acc_invoice.product_id as product_id
FROM account_invoice_line acc_invoice
)
""")

Please Help me out.

Thanks in Advance.

Riddhi

0
Avatar
Descartar
Avatar
Divyesh Patel
Best Answer

try this way:

pass the context in action_done method:

def action_done(self):
    ctx = self.env.context.copy()
    ctx.update({'wizard_id': self.id})
    self.env['get.wizard.data'].with_context(ctx).init()
    return {
    'name': 'Pivot Own Reports',
    'type': 'ir.actions.act_window',
    'res_model': 'get.wizard.data',
    'view_type': 'form',
    'view_mode': 'pivot',
    'view_id': self.env.ref('my_own_pivot.action_get_wizard_data_pivot').id,
    'target': 'main',
    'context': ctx,
    }

get the context in init method:

@api.model_cr
def init(self):
     """I need Context of Wizard HERE"""
    if self.env.context.get('wizard_id', False):
    print("get Context of Wizard HERE", self.env.context.get('wizard_id'))

    tools.drop_view_if_exists(self._cr, 'get_wizard_data')    
    self._cr.execute("""
    CREATE or replace VIEW get_wizard_data AS (
    SELECT
    acc_invoice.id as id,
    acc_invoice.product_id as product_id
    FROM account_invoice_line acc_invoice
    )
    """)



2
Avatar
Descartar
Riddhi
Autor

Thanks, Divyesh for your quick help.

It is working :)

Avatar
Tahir Noor
Best Answer

can you please tell me how to do same in odoo 8. I'll be really thankful, Actually I haven't enough karma for comments thats why i am answering...

0
Avatar
Descartar
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
active_domain not found in context when using wizard
wizard context
Avatar
0
d’ag. 17
4174
Return 'context' from a standard wizard to a previous customed wizard
wizard context
Avatar
0
de març 15
5255
ODOO 17 get_views can't transfer context to wizard
wizard context v17
Avatar
1
de febr. 24
4281
Passing Context to a wizard in JS Solved
wizard context odoo9.0
Avatar
Avatar
1
d’abr. 21
13903
How to pass wizard data to report.py?
wizard pivot odoo12
Avatar
0
de gen. 21
4171
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