Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

filtering contacts in field widget based on slightly complex criteria

Subscriure's

Get notified when there's activity on this post

This question has been flagged
contactsdomain_filterPython
1 Respondre
2310 Vistes
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
Descartar
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
Descartar
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!

Registrar-se
Related Posts Respostes Vistes Activitat
is it possible to update (re-assign) selection field (field.selection) values dynamically .?
contacts Python fields.selection
Avatar
Avatar
1
de set. 23
3549
How to avoid duplicate contact (Customer/Vendor) by making automated action based on name on V14?
contacts duplication Python AutomatedActions
Avatar
Avatar
1
de nov. 22
4544
importing contacts. Getting blocking error: Contacts require a name at multiple rows
contacts
Avatar
Avatar
Avatar
2
d’oct. 25
766
Blocking Errors
contacts
Avatar
Avatar
1
d’oct. 25
662
O18 EE: Completely unknown email addresses in the contacts?
contacts
Avatar
Avatar
Avatar
2
d’oct. 25
832
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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