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

filtering contacts in field widget based on slightly complex criteria

Odoberať

Get notified when there's activity on this post

This question has been flagged
contactsdomain_filterPython
1 Odpoveď
2317 Zobrazenia
Avatar
HASEEB AHMED

Hi everyone.

i am trying to tweak an addon i purchased last year for my company. (mrp tags)
i have done 90% tweaks and its coming along very nicely. one point which i am unable to grasp / solve is filter..
to me it seems, i am pretty close, but unable to grasp domain filter completely.
BTW, using odoo13.



on pointer 3 ( trying to solve subcontract) part, where each rec name has equivalent inventory product (type=service) with 2 or 3 vendors (contacts in it) as supplier of service. >> 

my model looks like 
------------------------------------------

-------mrp_custom_checklist.py---------

------------------------------------------
class MrpCustomChecklist(models.Model):

​_inherit = 'mrp.production'

​ partner_id = fields.Many2one('res.partner', string='Partner')


​@api.model

​def get_service_vendors(self):

​ ​service_products = self.env['product.product'].search([('type', '=', 'service')])

​ ​vendor_ids = service_products.mapped('seller_ids.name.id')

​ ​vendor_records = self.env['res.partner'].browse(vendor_ids)

​ ​vendor_names = vendor_records.mapped('name')

​ ​return vendor_names

​ @api.model

​ def get_named_service_vendors(self,product_name):

​ ​ service_product = self.env['product.product'].search([('type', '=', 'service'), ('name', 'ilike', product_name)], limit=1)

​ ​ vendor_ids = service_product.mapped('seller_ids.name.id')

​ ​ vendor_records = self.env['res.partner'].browse(vendor_ids)

​ ​ vendor_names = vendor_records.mapped('name')

​ ​ return vendor_names


and XML looks like 
------------------------------------------

-------mrp_custom_checklist.xml---------

------------------------------------------

" rel="ugc">ir.ui.view">

​ mrp.custom.checklist.form

​ ​

​ ​

​ ​ ​

​ ​ ​

​ ​ ​  

===========

PROBLEM

==========

Field 'get_service_vendors' used in attributes must be present in view but is missing:

  • 'get_service_vendors' in domain="[('id', 'in', get_service_vendors())]"

Error context: View mrp.custom.checklist.form

 
any ideas.??

0
Avatar
Zrušiť
Avatar
Baiju KS
Best Answer

You cannot use a function in the domain inside the view file, because it must be present in the view.

Please try to use a compute field with the needed type and use it in the domain.

Hope this helps

1
Avatar
Zrušiť
HASEEB AHMED
Autor

for reference, if someone stuck in same place ( in future )

@api.depends('mode')
def _compute_partner_id(self):
for record in self:

service_products = self.env['product.product'].search([('type', '=', 'service')])
print ("TOTAL SERVICES:",len(service_products))
vendor_ids = service_products.mapped('seller_ids.name.id')[:1]
print ("TOTAL VENDORS (INTENTIONAL LIMIT):",len(vendor_ids))
print ("VENDOR IDS:",vendor_ids)
vendor = self.env['res.partner'].browse(vendor_ids)
print ("VENDOR ID:",vendor)

if vendor:
print ("VENDOR NAME:",vendor.name)
record.partner_id = vendor.id
else:
record.partner_id = False

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
is it possible to update (re-assign) selection field (field.selection) values dynamically .?
contacts Python fields.selection
Avatar
Avatar
1
sep 23
3551
How to avoid duplicate contact (Customer/Vendor) by making automated action based on name on V14?
contacts duplication Python AutomatedActions
Avatar
Avatar
1
nov 22
4548
importing contacts. Getting blocking error: Contacts require a name at multiple rows
contacts
Avatar
Avatar
Avatar
2
okt 25
771
Blocking Errors
contacts
Avatar
Avatar
1
okt 25
663
O18 EE: Completely unknown email addresses in the contacts?
contacts
Avatar
Avatar
Avatar
2
okt 25
832
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