Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Unable to pass context to an action

Odoberať

Get notified when there's activity on this post

This question has been flagged
contextserver_actionv18CommunityEdition
1 Odpoveď
1682 Zobrazenia
Avatar
Shreya Doodipala

I'm trying to open a wizard (form view) in a new browser tab after selecting leads in crm.lead's list view. For that,

In my inherited crm.lead model, I have the following code:

class CrmLead(models.Model):

    _inherit = 'crm.lead'

​@api.model

   def action_open_analysis_tab(self):

        lead_ids = self.env.context.get('active_ids', [])

        if not lead_ids:

            raise UserError("Please select at least one CRM Opportunity. (crm.lead)")


        base_url = self.env['ir.config_parameter'].sudo().get_param('web.base.url')

        action = self.env.ref('crm_agg.action_groupby_lead_analysis_wizard')


        # Context to pass to the wizard

        context = {"default_lead_ids": lead_ids}

        encoded_context = urllib.parse.quote(json.dumps(context))


        # Build correct URL for act_window

        url = (

            f"{base_url}/web#"

            f"action={action.id}"

            f"&model=crm.groupby.lead.analysis.wizard"

            f"&view_type=form"

            f"&view_mode=form"

            f"&target=new"

            f"&context={encoded_context}"

        )


        return {

            'type': 'ir.actions.act_url',

            'url': url,

            'target': 'new',

        }

server action that calls the above code:

<record id="action_open_analysis_tab_server" model="ir.actions.server">

        <field name="name">Analyze Opportunities (New Tab)</field>

        <field name="model_id" ref="crm.model_crm_lead"/>

        <field name="binding_model_id" ref="crm.model_crm_lead"/>

        <field name="binding_type">action</field>

        <field name="state">code</field>

        <field name="code">action = records.action_open_analysis_tab()</field>

    </record>

(I've tried action = env['crm.lead'].action_open_analysis_tab() as well, but doesn't work)

my groupby wizard:

class GroupByLeadAnalysisWizard(models.TransientModel):

    _name = 'crm.groupby.lead.analysis.wizard'

    _description = 'GroupBy Lead Analysis Wizard'


    lead_ids = fields.Many2many('crm.lead', string="Leads")

​ # other fields .....

​

@api.model

    def default_get(self, fields_list):

        res = super().default_get(fields_list)

        lead_ids = self.env.context.get('default_lead_ids')

        if not lead_ids:

            raise UserError("Please select at least one CRM Opportunity. (default_get method)")

        res['lead_ids'] = [(6, 0, lead_ids)]

        return res

The lead_ids are passed in crm.lead's action_open_analysis_tab, but they are not present in crm.groupby.lead.analysis.wizard's default_get.

How can I ensure that the context is passed?


Odoo v18 Community Edition

0
Avatar
Zrušiť
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,


Try with the following code.



@api.model
def action_open_analysis_tab(self):
lead_ids = self.env.context.get('active_ids', [])
if not lead_ids:
raise UserError("Please select at least one CRM Opportunity. (crm.lead)")

action = self.env.ref('crm_agg.action_groupby_lead_analysis_wizard')

return {
'type': 'ir.actions.act_window',
'res_model': 'crm.groupby.lead.analysis.wizard',
'view_mode': 'form',
'view_type': 'form',
'target': 'new', # opens in a modal; use 'current' if needed
'context': {
'default_lead_ids': lead_ids
}
}

-

<record id="action_open_analysis_tab_server" model="ir.actions.server">
<field name="name">Analyze Opportunities (New Tab)</field>
<field name="model_id" ref="crm.model_crm_lead"/>
<field name="binding_model_id" ref="crm.model_crm_lead"/>
<field name="binding_type">action</field>
<field name="state">code</field>
<field name="code">action = records.action_open_analysis_tab()</field>
</record>

Hope it helps

0
Avatar
Zrušiť
Shreya Doodipala
Autor

I want to use a url action to open it in a new browser tab.

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

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Open view in a new browser tab
newtab server_action TransientModel v18 CommunityEdition
Avatar
0
júl 25
1072
Modify Pivot View
Pivot v18 CommunityEdition
Avatar
Avatar
1
jún 25
1810
Unable to send email notifications through write
notifications v18 CommunityEdition
Avatar
Avatar
1
jún 25
1871
Hide Records based on user group only in a particular view
views record_rule v18 CommunityEdition
Avatar
Avatar
Avatar
2
sep 25
1509
Hide menus in user_menuitems from specific users
visibility v18 CommunityEdition user_menuitem
Avatar
Avatar
Avatar
3
júl 25
2174
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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