Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Artificial Intelligence
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Property Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

How to automatically assign sequence numbers to records in a Studio-created model ✅ SOLVED

Subscribe

Get notified when there's activity on this post

This question has been flagged
studio
1513 Views
Avatar
Diego Cerrilla (dice)

When creating a custom model with Odoo Studio, you may need each new record to receive its own automatic reference number, similar to a quotation number, purchase order number, ticket number, or manufacturing order number.

For example, a custom model called Request may need records numbered automatically as follows:

  • REQ-000001

  • REQ-000002

  • REQ-000003

This can be configured directly with Odoo Studio, without requiring Python code or a custom module.

Use Case

A Studio-created model has a Name field that identifies each record. By default, users may need to enter this value manually.

Instead, the objective is to:

  • Automatically assign the next sequential number when a record is created.

  • Prevent regular users from manually changing the generated reference.

  • Avoid duplicate numbers caused by manual data entry.

Step 1: Configure the Name Field

Open the custom model and enter Studio.

Select the field that will store the record reference, normally the model's Name field.

Configure the field as follows:

  • Change the label if needed, for example: Reference, Request Number, or Record Number.

  • Enable Readonly so users cannot manually modify the assigned number from the form view.

  • If the field is required, set a temporary Default Value, such as /.

The temporary value is useful because the record must first be saved before the automated action can assign the actual sequence number.


Step 2: Create the Sequence

From the automated action configuration, a new sequence can be created directly when selecting the sequence to apply. Alternatively, with developer mode enabled, sequences can be managed from:

Settings → Technical → Sequences & Identifiers → Sequences

Create a sequence and configure the desired numbering format.

Example:

  • Name: Request Sequence

  • Prefix: REQ-

  • Sequence Size: 6

  • Step: 1

  • Next Number: 1

With this configuration, the generated values will be:

  • REQ-000001

  • REQ-000002

  • REQ-000003

The prefix and suffix can also use dynamic placeholders, such as the year or month, when a format such as REQ-2026-000001 is needed.

Step 3: Create the Automation Rule

Open the Studio-created model, then go to:

Studio → Automations → New

Configure the automation rule as follows:

  • Name: Assign Automatic Reference Number

  • Model: Your Studio-created model

  • Trigger: Custom → On create

The On create trigger ensures that the action is executed when a new record is saved for the first time.

No additional conditions are needed unless the sequence should only apply to specific records.

Step 4: Add the Sequence Action

Under Actions To Do, add a new action and configure it as follows:

  • Action Type: Update Record

  • Option: Sequence

  • Field to Update: Select the field that stores the record reference, usually Name.

  • Sequence: Select the sequence created in the previous step.

Save the automation rule.

Result

When a user creates and saves a new record in the Studio-created model:

  1. The record is initially created with the temporary value, such as /, if that default value was needed.

  2. The automation rule runs immediately after creation.

  3. Odoo retrieves the next number from the selected sequence.

  4. The Name or reference field is updated automatically.

  5. Since the field is read-only, regular users cannot manually change the number from the form view.

For example:

New RecordAssigned Reference
First recordREQ-000001
Second recordREQ-000002
Third recordREQ-000003

Important Note About Duplicate Prevention

Using a sequence prevents duplicate numbering during the normal automatic record creation process. Making the field read-only also prevents regular users from manually overwriting the reference through the standard form view.

However, Readonly is a user-interface restriction, not a database-level uniqueness constraint. A value could still potentially be modified through imports, integrations, API calls, or technical actions.

Therefore:

  • For standard Studio use cases, the combination of Sequence + On create automation + Readonly field is usually sufficient.

  • If the reference must be technically guaranteed as unique under all circumstances, custom development is required to add a server-side uniqueness constraint to the field.

1
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
Custom popup Solved
studio
Avatar
Avatar
2
Mar 26
1832
Menu's with different default filter Solved
studio
Avatar
Avatar
1
Dec 25
3987
How to add or reorder columns in Studio Solved
studio
Avatar
Avatar
1
Dec 25
2161
Studio V18 Domain does not have current field
studio
Avatar
Avatar
1
Dec 25
1831
debit and credit in currency
studio
Avatar
Avatar
1
Nov 25
3541
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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