Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Reference field - selection in the context of the current record

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
developmentforms
1 Répondre
4623 Vues
Avatar
Artur Roszczyk

Hey, 


I am implementing simple workflow engine and i have a concept of a workflow and a workflow instance. Workflow can operate on a selected model, therefore the workflow instances of that workflow will contain the reference to an instance of that model.


I am trying to use the reference field to select any model in the database with some constraints.


class eaxpl_workflow(models.Model):

    _name = 'eaxpl.workflow'

    document_model_id = fields.Many2one('ir.model',)

class eaxpl_workflow_instance(models.Model):

    _name = 'eaxpl.workflow_instance'

    workflow_id = fields.Many2one('eaxpl.workflow', string="Workflow", required=True)

    document_model_id = fields.Many2one('ir.model', related='workflow_id.document_model_id')

    document_reference = fields.Reference(selection=?????)



The question is what to put in the place of the question marks to limit the selection of the models to the model loaded to the document_model_id field?


I have found the following snippet but it seems not to have the context of the current record and simply does not work:


    @api.model

    def _reference_models(self):

        models = self.env['ir.model'].sudo().search(

            [('state', '!=', 'manual')])

        return [(model.model, model.name)

                for model in models

                if not model.model.startswith('ir.')]


Also, when used as a selection attribute, the function seems to be called only once, so I see no way of updating this.


How would you approach this?



0
Avatar
Ignorer
Artur Roszczyk
Auteur

I have found Many2oneReference type of field:

https://www.odoo.com/documentation/15.0/developer/reference/backend/orm.html#pseudo-relational-fields

This seems to suit my needs, however I can't find an appropriate widget allowing for the selection.

Has anyone implemented such a widget?

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Meilleure réponse

To limit the selection of the models to the model loaded to the document_model_id field, you can use the following code:

class eaxpl_workflow(models.Model):
    _name = 'eaxpl.workflow'
    document_model_id = fields.Many2one('ir.model',)

class eaxpl_workflow_instance(models.Model):
    _name = 'eaxpl.workflow_instance'
workflow_id = fields.Many2one('eaxpl.workflow', string="Workflow", required=True)
    document_model_id = fields.Many2one(
'ir.model', related='workflow_id.document_model_id')
    document_reference = fields.Reference(
        selection=lambda self: self._reference_models())

    def _reference_models(self):
        if self.document_model_id:
models = self.env['ir.model'].search([('model', '=', self.document_model_id.model)])
 
      else:
models = self.env['ir.model'].search([('state', '!=', 'manual')])
return [(model.model, http://model.name" target="_blank" data-saferedirecturl="model.name)" rel="ugc">https://www.google.com/url?q=http://model.name&source=gmail&ust=1688454077935000&usg=AOvVaw1mvVA_XY05kd8F2DdgS_RC">model.name) for model in models]




Hope it helps

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Reference field - selection in context of the current object
development forms
Avatar
Avatar
1
juil. 22
3152
How do I change the name of the module, or rather the name assigned to the module, after I created it in Odoo Studio?
development
Avatar
1
nov. 25
292
Guest House Module - Rental Search Bar
development
Avatar
Avatar
1
nov. 25
162
How to make all branches for user active automatically after login his account?
development
Avatar
Avatar
Avatar
3
nov. 25
377
MrpBom _skip_bom_line skips line of product that has two multi-choice attribute values when both are selected in Apply to variant
development
Avatar
Avatar
1
nov. 25
333
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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