Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

default_user_get function

Odebírat

Get notified when there's activity on this post

This question has been flagged
crmv7res.user
8 Odpovědi
10793 Zobrazení
Avatar
daouda

Hi, I'am developping a module where i have a field named "user_id" in this field i would like to fill lit automatically by the name of the current user, exactly like it's done in crm.lead module with the field vendor. I know a function named default_user_get is defined but i don't know in what module?. Thanks for your answers

0
Avatar
Zrušit
daouda
Autor

waiting for someone else answer

Avatar
Saloua ELKHOUFAIRI
Nejlepší odpověď

Thank you Mike a lot your solution helps me a lot :)

0
Avatar
Zrušit
Avatar
patrick
Nejlepší odpověď

Check the file addons\crm\crm_lead_view.xml. There you find the screen definition for the LEADS screen.

The field which is filled with the user logged in, is called "user_id". It looks like it is automatically filled with the content / name of the user with ID = uid (uid is a variable which is always needed in every call to a method within openERP. It is the User ID, hence uid). In order to fill it, you might have to copy uid from the call of the method/function to that field.

<update> In the file addons/base_status/base_state.py there is a method _get_default_user defined

#def _get_default_user(self, cr, uid, context=None):

""" Gives current user id

   :param context: if portal not in context returns False

"""
if context is None:
    context = {}
if not context or not context.get('portal'):
    return False
return uid

So as I said before, it is just using the given uid.

Conclusion: If you need to store the user, use uid from the input.

0
Avatar
Zrušit
daouda
Autor

Ok I see it. But what i really want is in addons/crm/crm_lead.py. If you look the defaults definition you'ill see " 'user_id': lambda s, cr, uid, c: s._get_default_user(cr, uid, c), it's the _get_default_user that i wanna see it's definition

daouda
Autor

yes i See it but i get the whole list of ids of all the users and i want only the current user id

patrick

Douada, you mean if you the following, you get all the users? my_field = uid

daouda
Autor

i didn't do my_field = uid. I did my_field = lambda s, cr, uid, c: s._get_default_user(cr, uid, c),, because i copied the _get_default_user function

Avatar
Mike Telahun
Nejlepší odpověď

To use the currently logged in user's id as a default value you don't need the specific function in crm/crm_lead.py. You can use a simple lambda function:

_defaults = {
    'my_field': lambda s, cr, uid, c: uid,
}

If you need to do any special processing (like in crm/crm_lead.py) you can use a function:

def _get_my_field(self, cr, uid, context=None):
    if ...:
        ....
        return uid
    else:
        ...
        return False

_defaults = {
    'my_field': _get_my_field,
}

If you really need to use the base_stage mixin, then you have to import it into you module and inherit from it in your class:

from openerp.addons.base_status.base_stage import base_stage

class my_class(base_stage, osv.Model):
    ...
    ...
    _defaults = {
        'my_field': lambda s, cr, uid, c: s._get_default_user(cr, uid, c),
    }
0
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
How do I import my contacts in OpenERP? Vyřešeno
crm v7
Avatar
Avatar
Avatar
3
úno 25
27168
problem in installing crm_claim_ext
crm v7
Avatar
0
kvě 15
4490
how to force user to fill fields on every stage of opportunity in openerp 7.0
crm v7
Avatar
Avatar
1
bře 15
5579
CRM in offline mode? Vyřešeno
crm v7 offline
Avatar
Avatar
Avatar
Avatar
Avatar
4
srp 23
21805
How can i set team sales permissions in CRM?
crm domain v7
Avatar
Avatar
Avatar
Avatar
Avatar
5
zář 22
12759
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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