Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profit organisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

How to create auto sequences for a new record?

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
sequenceprefixsequencenumberodoo
5 Antwoorden
20605 Weergaven
Avatar
Haris Masqati

A CODE Char Field available analytic account module, when we create a new analytic account and save CODE with ABC Value it auto creates a new sequence with Code Value (ABC) Prefix (ABC0001). How to do it?

0
Avatar
Annuleer
Avatar
Mohammad Ahsan Maqbool
Beste antwoord

If you are looking for to create an auto sequence of Char field. You need to follow the following steps

  • Create a sequence in data directly in xml format as below:

    • id="sale_invoice_seq" model="ir.sequence">
      name="name">Sale Invoice Sequence
      name="code">account.move.invoice
      name="prefix">SI23-
      name="padding">6
      name="company_id" eval="False"/>

      id="seq_purchase_bill" model="ir.sequence">
      name="name">Purchase Bill Sequence
      name="code">account.move.bill
      name="prefix">BILL/
      name="padding">6
      name="company_id" eval="False"/>

    • In above you will see I am creating 2 sequences of in same model but with different move_type
  • Then you need to create a field in your respective model as follows and inheriting the create function to assign new sequence by next code as follows
    • custom_invoice_number = fields.Char('Custom Invoice Number')

      @api.model
      def create(self, vals):
      result = super(InheritInvoice, self).create(vals)

      if result['move_type'] == 'out_invoice':
      result['custom_invoice_number'] = self.env['ir.sequence'].next_by_code(
      'account.move.invoice')
      if result['move_type'] == 'in_invoice':
      result['custom_invoice_number'] = self.env['ir.sequence'].next_by_code(
      'account.move.bill')

      return result
    • In above code I have added a new field in account.move model by inheriting account.move model
    • Then you need to display your inherited field in your actual view where you want to show the generated sequence as follows
      • xml version="1.0" encoding="utf-8"?>

        id="view_invoice_company_logo_name" model="ir.ui.view">
        name="name">account.move.form
        name="model">account.move
        name="inherit_id" ref="account.view_move_form"/>
        name="arch" type="xml">
        expr="//form/sheet/div/span/field[@name='move_type']" position="after" >
        id="custom_invoice" string="Custom Invoice Seqence">


        name="custom_invoice_number" readonly="1"/>








        id="inherit_invoice_for_custom_field" model="ir.ui.view">
        name="name">account.move.inherit.custom.field

        name="model">account.move
        name="inherit_id" ref="account.view_account_invoice_filter" />
        name="arch" type="xml">
        name="name" position="after">
        name="custom_invoice_number"/>



      • In above code I have shown my custom field in account.move form and create a filter so that end user would be able to search record for that specific custom field.
      • I hope this will help you to understand the creation of sequence If the above code helps you just give me a like and let me know if you need clarification for any point

        Thanks
        Regards

        Muhammad Ahsan Maqbool

        1
        Avatar
        Annuleer
        Avatar
        Devintelle Consulting Services Pvt Ltd
        Beste antwoord

         HI , 

        You want to create auto sequence for new record so you can try below code

        •  Create Sequence.xml file.


          -  Add below code in your .py file of the object in which you want to create auto sequence.


        class AnalyticAccount(models.Model):

        _name=” analytic.account”


                        name = fields.Char(string=“Number”,default=“New”,readonly=True)

                        @api.model

              def create(self, vals):

            vals['name'] = self.env['ir.sequence'].sudo().next_by_code(‘analytic.account’) or 'New'

            res = super(AnalyticAccount,self).create(vals)

               return res


        • And access name field in view file like this ,

              


         I hope this is helpful to you.


         Thanks & Regards,

         Email: odoo@devintellecs.com

         Skype: devintelle



        0
        Avatar
        Annuleer
        Avatar
        Cybrosys Techno Solutions Pvt.Ltd
        Beste antwoord

        Hi,

        You can change the create function as follows,
        def create(self, vals):
            vals['name'] = self.code + self.env['ir.sequence'].next_by_code('my_sequence_code')
            return super(MyModel, self).create(vals)

        Add this data file, 

        <?xml version="1.0" encoding="utf-8"?>
        <odoo>
          <data noupdate="1">
            <record id="my_sequence_id" model="ir.sequence">
              <field name="name">My Sequence</field>
        <field name="code">my_sequence_code</field>
              <field name="prefix"></field>
              <field name="padding">5</field>
              <field name="number_next">1</field>
            </record>
          </data>
        </odoo>


        For more details, refer to the blog:

        https://www.cybrosys.com/blog/how-to-create-sequence-numbers-in-odoo-16

        Hope it helps

        0
        Avatar
        Annuleer
        Avatar
        Support GeminateCS
        Beste antwoord

        Hii Haris,
        If you want to create auto sequence in odoo it can be achieved by 'ir.sequence' model ,
        Take a look : https://geminatecs.com/blog/sales-editable-auto-sequence
        I Hope this information is helpful to you
        Feel Free for further assistance at contact@geminatecs.com
        Thank You,
        Geminate Consultancy Services,
        w : www.geminatecs.com

        0
        Avatar
        Annuleer
        Avatar
        Niyas Raphy (Walnut Software Solutions)
        Beste antwoord

        Hi,

        If you are looking for how to generate a sequential value for a field in Odoo, it can be done using the ir.sequence in Odoo.

        Either it can be done from the user interface using the developer mode or from the code side.

        The steps is as follows:

        1. Create a sequence in ir.sequence table

        2. Inherit the create method of corresponding model and assign sequential value from the created sequence.


        For reference:

        1. Generating Sequence from UI using sequence and automated action:  https://www.youtube.com/watch?v=Cz5eM5FDmTE

        2. Generating sequence from code: https://www.youtube.com/watch?v=69pCFI8uRIw&t=470s


        Thanks

        0
        Avatar
        Annuleer
        Haris Masqati
        Auteur

        Thanks for your reply, I am looking for auto create a dynamic sequence for every new record like in the account.journal model.

        Niyas Raphy (Walnut Software Solutions)

        if you need similar to the journal sequence, set a many2one to ir.sequence from your master record and configure the sequence in it. then using the configured sequence you can get the next number

        Ramya

        I am autogenerating sequence similar to the journal sequence. I have a doubt, IN my scenario I want a new sequence record to be generated for every incident the user creates , so there is probability to have 100's and 1000's of sequence id's in ir.sequence table is that acceptable? Or Should I plan to have my autoincrement logic in my incident model itself?
        Which of the option is better. I just dont want the performance to be degraded when 100's of records get added to ir.sequence. or will making the ir.sequence active to false when incident is closed help ?

        Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

        Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

        Aanmelden
        Gerelateerde posts Antwoorden Weergaven Activiteit
        How to change the Quotation, Order, Invoice sequence numbers ? Opgelost
        sequence sequencenumber
        Avatar
        Avatar
        Avatar
        2
        dec. 23
        29936
        Production Sequence error
        manufacturing sequence sequencenumber
        Avatar
        Avatar
        Avatar
        2
        okt. 25
        463
        Sequence on invoices numbers not working anymore
        sequence prefix invoice_number
        Avatar
        Avatar
        1
        mei 25
        3225
        Odoo Sequence Issue Across Multiple Companies
        sequence sequencenumber sequences
        Avatar
        0
        jan. 25
        2059
        Where is the configuration for the rental order number prefix?
        rental sequence prefix
        Avatar
        Avatar
        1
        sep. 24
        2053
        Community
        • Tutorials
        • Documentatie
        • Forum
        Open Source
        • Downloaden
        • Github
        • Runbot
        • Vertalingen
        Diensten
        • Odoo.sh Hosting
        • Ondersteuning
        • Upgrade
        • Gepersonaliseerde ontwikkelingen
        • Onderwijs
        • Vind een boekhouder
        • Vind een partner
        • Word een Partner
        Over ons
        • Ons bedrijf
        • Merkelementen
        • Neem contact met ons op
        • Vacatures
        • Evenementen
        • Podcast
        • Blog
        • Klanten
        • Juridisch • Privacy
        • Beveiliging
        الْعَرَبيّة 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 is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

        Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

        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