Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

How to create auto sequences for a new record?

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
sequenceprefixsequencenumberodoo
5 Odpowiedzi
20602 Widoki
Awatar
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
Awatar
Odrzuć
Awatar
Mohammad Ahsan Maqbool
Najlepsza odpowiedź

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
        Awatar
        Odrzuć
        Awatar
        Devintelle Consulting Services Pvt Ltd
        Najlepsza odpowiedź

         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
        Awatar
        Odrzuć
        Awatar
        Cybrosys Techno Solutions Pvt.Ltd
        Najlepsza odpowiedź

        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
        Awatar
        Odrzuć
        Awatar
        Support GeminateCS
        Najlepsza odpowiedź

        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
        Awatar
        Odrzuć
        Awatar
        Niyas Raphy (Walnut Software Solutions)
        Najlepsza odpowiedź

        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
        Awatar
        Odrzuć
        Haris Masqati
        Autor

        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 ?

        Podoba Ci się ta dyskusja? Dołącz do niej!

        Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

        Zarejestruj się
        Powiązane posty Odpowiedzi Widoki Czynność
        How to change the Quotation, Order, Invoice sequence numbers ? Rozwiązane
        sequence sequencenumber
        Awatar
        Awatar
        Awatar
        2
        gru 23
        29934
        Production Sequence error
        manufacturing sequence sequencenumber
        Awatar
        Awatar
        Awatar
        2
        paź 25
        463
        Sequence on invoices numbers not working anymore
        sequence prefix invoice_number
        Awatar
        Awatar
        1
        maj 25
        3223
        Odoo Sequence Issue Across Multiple Companies
        sequence sequencenumber sequences
        Awatar
        0
        sty 25
        2058
        Where is the configuration for the rental order number prefix?
        rental sequence prefix
        Awatar
        Awatar
        1
        wrz 24
        2053
        Społeczność
        • Samouczki
        • Dokumentacja
        • Forum
        Open Source
        • Pobierz
        • Github
        • Runbot
        • Tłumaczenia
        Usługi
        • Hosting Odoo.sh
        • Wsparcie
        • Aktualizacja
        • Indywidualne rozwiązania
        • Edukacja
        • Znajdź księgowego
        • Znajdź partnera
        • Zostań partnerem
        O nas
        • Nasza firma
        • Zasoby marki
        • Skontaktuj się z nami
        • Oferty pracy
        • Wydarzenia
        • Podcast
        • Blog
        • Klienci
        • Informacje prawne • Prywatność
        • Bezpieczeństwo Odoo
        الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

        Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

        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