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 do I create a field with a running count?

S'inscrire

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

Cette question a été signalée
3 Réponses
11641 Vues
Avatar
philjun

In the product.product module, I wish to create a field (or edit an existing field) which displays an unique numeric value for each product. I want the module to automatically keep count and suggest the next number in the series. For instance, when I create a new product, I want the field to be automatically assigned the number '20000', and when I create the next product the number '20001' etc. Is there an easy way to handle this?

2
Avatar
Ignorer
Yenthe Van Ginneken (Mainframe Monkey)

Thank you, Nimesh. Do you know if there is a guide to creating and assigning sequences?

Avatar
Anil Kesariya
Meilleure réponse

Hello philjun,

Here you go!

You need to follow these two steps.

Solution : 1 (In this solution your sequence field will be editable)

Step1 : Add sequence record in your module.


     <!-- Record for your seuqence type -->
        <record id="your_custom_sequence_type" model="ir.sequence.type">
            <field name="name">Label of your sequence code.</field>
            <field name="code">test.test.code</field>   <!-- Unique sequence code.-->
        </record>
        
    <!-- Record for Sequence-->
        <record id="student_reg_sequence" model="ir.sequence">
            <field name="name">Student Unique ID</field>
            <field name="code">test.test.code</field>  <!-- Apply the same you applied above-->
            <field name="prefix">%(year)s/</field> <!-- optional-->
            <field name="suffix">%(month)s/</field> <!-- optional-->
            <field name="number_next_actual">20000</field> <!-- optional, if you not add this field by default 1 will be starting no. -->
            <field name="padding">5</field> <!-- optional-->
            <field name="implementation">no_gap</field>
        </record>


Step 2: Add field in your model, in your case product is model

    _inherit = 'product.product'
    
    _columns = {
    'sequence':fields.char("Sequence")

    }

    _defaults = {
    'sequence':lambda self, cr, uid, context:self.pool.get('ir.sequence').get(cr, uid, 'test.test.code'),

    }


Solution : 2 (If you want to make your sequence field readonly than you can follow this solution.)


Step 1 : This is same as Solution 1.
 
Step 2 : # inherit model and addd field with readonly attribute

    _inherit = 'product.product'
    
    _columns = {
    'sequence':fields.char("Sequence", readonly=True)

    }


    def generate_sequence(self, cr, uid, ids, context=None):
            
        # This line will generate next sequence number from your seuqence.
        next_seq = self.pool.get('ir.sequence').get(cr, uid, 'test.test.code')

        self.write(cr, uid, ids, {'sequence':next_seq}, context=context)

        return True

Step 3: add button in product form


      <button name="generate_sequence" type="object" string="Generate Sequence"/>


There are many more option to create sequence these two solution will satisfied your needs.

Hope this will helps you.

Regards
Anil Kesariya

5
Avatar
Ignorer
ABU K

The sequence incrementing 2 ,4 ,6,etc.. .I want to generate 1 ,2 ,3 etc..Then How to change this code

ABU K

Also one more problem is if I am not saving any record its incremented automatically to next id .

Anil Kesariya

check you have applied : no_gap

Anil Kesariya

Once the sequence is generated is will always move to next sequence, so choose the second option generate it on button click and hide the button once it is generated.

ABU K

Here What is the excecution and what is the use of this test.test.code

ABU K

Here What is the excecution flow and what is the use of test.test.code means

Anil Kesariya

it is sequence code, you can give any name here, make sure that code is unique not used for any other sequence.

Avatar
Nimesh
Meilleure réponse

You can create sequence starting with 20000 and assign to that field.

 

Thanks,

Nimesh.

2
Avatar
Ignorer
Avatar
philjun
Auteur Meilleure réponse

Thank you, Anil. I have done as specified in option 1, except that I have added the code to the existing product module rather than creating a new module. I have added the field and the default setting to the product.py file.

Regarding step 1, adding the sequence record to the module, I have created the file product_sequence.xml with the xml-code you specified, placed the file in the Product-module-folder, and added this file in the 'data' section of the __openerp__.py-file pertaining to the Product-module. Is it necessary to do something else to add the sequence record? In any case, my sequence is still not working.
 

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
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