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

How can I make a _sql_constraint with two fields?

S'inscrire

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

Cette question a été signalée
fieldsquestionopenerptwo
1 Répondre
9767 Vues
Avatar
Vicente

I have a module in which I have to use two fields as identifier (name and date). How can I make a constraint with those two fields? I already have this (note: the function does not work).

 

class clinic_pet(osv.osv):
    def _make_id(self, cr, uid, ids, field_name, arg, context):
        result = {}
        for rec in self.browse(cr, uid, ids, context=context):
            result[rec.id] = rec.name+', '+str(rec.owner_ids)+', '+str(rec.birthdate)
        return result

    _name = 'clinic.pet'
    _columns = {
        'name': fields.char('Name', size=32, required='True', help='Name of the animal'),
        'genre': fields.char('Genre', size=16, help='Genre of the animal'),
        'father': fields.char('Father', size=32, help='Name of the pet s father'),
        'mother': fields.char('Mother', size=32, help='Name of the pet s mother.'),
        'birthdate': fields.date('Birthdate', required='True'),
        'weight': fields.float('Weight', help='Weight of the pet when it was born.'),
        'death': fields.date('Death', help='Date of the pet s death.'),
        'notes': fields.char('Notes', size=256, help='Additional information of the pet.'),
        'contact_info': fields.char('Owner address', size=64, help='Contact information of the pet s owner.'),
        'specie_ids': fields.many2one('clinic.specie', 'Specie', required='True'),
        'owner_ids': fields.many2one('clinic.owner', 'Owner', required='True'),
    'pet_id': fields.function(_make_id, type='char', size=100, string='Pet id'),
    }
    _sql_constraints = [
        ('pet_unique','unique(name,owner_ids,birthdate)','This pet already exists.')
    ]
clinic_pet()

0
Avatar
Ignorer
Avatar
René Schuster
Meilleure réponse

To make your pets unique regarding name, owner and birthdate, your sql_constraint is just fine. (sql_constraints is a list of triples containing: the constraint name, the sql constraint function with arguments (comma seperated list of fields), and the error message)

You wont need your custom pet_id for that purpose.

Note: The sql_constraint is not checked whenever you change a field. It will be checked when you try to write to the database (save button).

 

If you need the pet_id for any other use, please post the detailed error log.

Regards.

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é
Field.function to store students strentght in a class
fields openerp
Avatar
Avatar
1
mars 15
5454
Function Many2One with two values (like Value1 | Value2)
function fields many2one two
Avatar
1
mars 15
5540
How to use custom fields in sales.order?
fields sale.order.form v6.0.1 openerp
Avatar
Avatar
Avatar
2
mars 15
6514
[Meta] How do I get my question answered?
meta forum question openerp
Avatar
Avatar
2
mars 15
7537
How can I restrict the file types (extensions) allowed in a binary field? I want to allow only .pdf, .jpg, .png as input Résolu
pdf fields question odoo Binary
Avatar
Avatar
3
juil. 24
6208
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