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
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • 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
    Others
    • 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
  • Help

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

Help with domain for showing users that are in sale team?

Odoberať

Get notified when there's activity on this post

This question has been flagged
domainrelationodoo10
1 Odpoveď
5891 Zobrazenia
Avatar
Samo Arko

I've got a wizard for analysis of sales that has a O2M relation to a transient model that has a M2O relation on crm.team and a M2M relation to res.users.


ModelA(models.TransientModel):
	_name = 'model.a'

	sale_team_ids = fields.One2many(comodel_name='model.b', inverse_name='wizard_id')


ModelB(models.TransientModel):
	_name = 'model.b'
	
	team_id = fields.Many2one(comodel_name='crm.team')
	user_ids = fields.Many2many(comodel_name='res.users')
	
	wizard_id = fields.Many2one(comodel_name='model.a')
	
	
	<record id="model_a_form_view" model="ir.ui.view">
		<field name="name">Model A</field>
		<field name="model">model.a</field>
		<field name="arch" type="xml">
			<form>
				<sheet>
					<field name="sale_team_ids" nolabel="1">
						<tree create="1" editable="bottom">
							<field name="team_id" required="1"/>
							<field name="user_ids" widget="many2many_tags" domain="[('sale_team_id', '=', 'team_id')]"/>
							<field name="show_user_data"/>
						</tree>
					</field>
				</sheet>
			</form>
		</field>
	</record>


I need a domain that shows only users that are in the sale team. How can I do this with a domain in the view?


I've got a method that on.change of team_id gets a list of users that are in the sale team.

@api.onchange('team_id')
def _get_domain(self):
	if self.team_id:
		domain_users = [('id', 'in', self.team_id.member_ids.ids)]
		return {'domain': {'user_ids': domain_users}}


But the domain is active only once, after the focus is lost and the user does not change the team_id it shows all users.


So how cam I create a better domain filter and in the view and not in python? 


0
Avatar
Zrušiť
Avatar
Samo Arko
Autor Best Answer

I messed up the domain... couldn't see it yesterday but today I've seen the mistake at first glance.

The domain was domain="[('sale_team_id', '=', 'team_id')]"
it should be domain="[('sale_team_id', '=', team_id)]"

Now it works.

1
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
Domain Not Working in ir.actions.server in odoo
domain odoo odoo10
Avatar
0
máj 23
3733
Many2many field filtering based on selected contact id? Solved
domain many2many odoo10
Avatar
Avatar
1
jan 22
11972
How to pass domain for field in window action? Solved
action domain odoo10
Avatar
Avatar
Avatar
3
okt 19
13595
How to filter the jobs based on services in odoo10? Solved
filter domain odoo10
Avatar
Avatar
1
máj 17
3714
Odoo10: Dynamic domain Solved
domain domain_filter many2one odoo openerp odoo10
Avatar
Avatar
Avatar
Avatar
3
máj 24
18747
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