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

odoo8 How to pass parameters in the URL ?

Odoberať

Get notified when there's activity on this post

This question has been flagged
odoo8.0
2 Replies
20747 Zobrazenia
Avatar
JC

How to pass database name, login id, password, customer phone number,  customer name as a parameter via URL to search a customer in odoo at  [Sales] module under [Customers] function?

2
Avatar
Zrušiť
Avatar
Annadurai
Best Answer

Below example gives u an idea. 

In main.py

from odoo import models, fields, api

from werkzeug import url_encode


class SimpleControllerModel(models.Model):


    _name ="simple.controller"


    name = fields.Char(string="name")

    age = fields.Integer(string="age")

    designation = fields.Selection([('sw','software'),('salesman','Salesman')])


    @api.multi

    def webpage(self):

        values = dict(self._context.get('params', {}))

        print dict(self._context.get('params',{}))

        values.update({

            'model': self._name,

            'id': self.id

#        HERE PASS THE VALUES U NEED.      ID is passed along with the context.

            })

        return{

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

               'target': 'self',

               'url': '/details/employee/%s/%s' % (self.name,self.id)

#             'url': '/details/employee/%s/%s' % (self.id,url_encode(values))

               }

Then Define  Controller: Like below

from odoo import http

from odoo.http import request

class SimpleController(http.Controller):

#    @http.route(["/details/employee"],type='http',auth="user",methods=['GET'],website=True)

    @http.route(['/details/employee/<model("simple.controller"):name>',

                 '/details/employee/<model("simple.controller"):name>/<model("simple.controller"):id>',

                 '/details/employee/<string:id>',

                 '/details/employee'],

                type='http',auth="public",methods=['GET'],website=True)

    def view(self,name,**kwargs):

        print "controllerview"

        if kwargs.get('model', False) == 'simple.controller':

                action_xml_id = 'simple_controller.action_simple_controller'

        action_id = request.env.ref(action_xml_id).id

        kwargs.update({

                'action': action_id,

            })

        values = dict(kwargs)

        return request.render('simple_controller.simple_controller_templateid', values)


In template.xml.. Define below code


<odoo>

<template id="simple_controller.simple_controller_templateid" name="simple_controller">

    <t t-call="website.layout">

    <div class="pull-left css_editable_mode_hidden">

                <ul class="list-inline">

                    <li>

                        <a class="btn btn-danger"

                            t-att-href="'/web#return_label=Website&amp;model=%s&amp;id=%s&amp;action=%s&amp;view_type=form' % (model, id, action)">

                            <span class="fa fa-long-arrow-left" />

                            Back

                            <span t-esc="test" />

                        </a>

                    </li>

                </ul>

            </div>

    </t>

</template>

</odoo>


1
Avatar
Zrušiť
Avatar
Ahson Mahmood
Best Answer
<a t-attfr-href="/web#id={{ record.your_field.value }}&cids=1&menu_id=584&action=620&model=daycare.child&view_type=form">Mark Attendancea>
0
Avatar
Zrušiť
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
how to implement joint piece in odoo 8 in one view
odoo8.0
Avatar
0
apr 24
2660
what is the reason behind extra move? in stock
odoo8.0
Avatar
Avatar
Avatar
Avatar
4
nov 23
6860
How to solve fields.function issue in odoo 8
odoo8.0
Avatar
0
okt 23
2664
how to restrict create and delete access in one2many field tree view
odoo8.0
Avatar
0
dec 22
3386
def( self, cr, uid, ids, name, args & context parameters)
odoo8.0
Avatar
0
jún 22
1963
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