コンテンツへスキップ
Odoo メニュー
  • サインイン
  • 無料で15日試す
  • アプリ
    財務
    • 会計
    • 請求
    • 経費
    • スプレッドシート(BI)
    • ドキュメント管理
    • 署名
    販売
    • CRM
    • 販売
    • POSショップ
    • POSレストラン
    • サブスクリプション
    • レンタル
    ウェブサイト
    • ウェブサイトビルダー
    • eコマース
    • ブログ
    • フォーラム
    • ライブチャット
    • eラーニング
    サプライチェーン
    • 在庫
    • 製造
    • 製品ライフサイクル管理 (PLM)
    • 購買
    • 整備
    • 品質
    人事業務
    • 従業員管理
    • 採用
    • 休暇管理
    • 人事評価
    • リファラル
    • フリート
    マーケティング
    • ソーシャルマーケティング
    • メールマーケティング
    • SMSマーケティング
    • イベント
    • マーケティングオートメーション
    • アンケート調査
    サービス
    • プロジェクト管理
    • タイムシート
    • フィールドサービス
    • ヘルプデスク
    • 計画
    • アポイントメント
    生産性向上ツール
    • ディスカッション
    • 人工知能
    • IoT
    • VoIP
    • ナレッジ
    • WhatsApp
    サードパーティアプリ Odooスタジオ Odooクラウドプラットホーム
  • インダストリー(業種別ソリューション)
    小売
    • 書店
    • アパレルショップ
    • 家具店
    • 食料品店
    • 金物店
    • 玩具店
    飲食・ホスピタリティ業界
    • バー・パブ
    • レストラン
    • ファストフード
    • ゲストハウス
    • 飲料販売代理店
    • ホテル
    不動産
    • 不動産会社
    • 建築事務所
    • 建設
    • 不動産管理
    • 造園
    • 住宅所有者組合
    コンサルティング
    • 会計事務所
    • Odooパートナー
    • マーケティングエージェンシー
    • 法律事務所
    • 人材派遣
    • 監査・認証
    製造
    • テキスタイル
    • 金属
    • 家具
    • 飲食
    • ブルワリー
    • コーポレートギフト
    ヘルス & フィットネス
    • スポーツクラブ
    • 眼鏡店
    • フィットネスセンター
    • ウェルネス専門家
    • 薬局
    • ヘアサロン
    業種
    • 便利屋
    • IT ハードウェア・サポート
    • 太陽エネルギーシステム
    • 靴メーカー
    • クリーニングサービス
    • 空調設備サービス
    その他
    • 非営利団体
    • 環境機関
    • ビルボードレンタル
    • 写真
    • 自転車リース
    • ソフトウェアリセラー
    すべての業種を見る
  • コミュニティ
    学ぶ
    • チュートリアル
    • ドキュメンテーション
    • 認定
    • トレーニング
    • ブログ
    • ポッドキャスト
    教育サポート
    • 教育プログラム
    • Scale Up! ビジネスゲーム
    • Odooオフィス訪問
    ソフトを入手
    • ダウンロード
    • エディションを比較
    • リリース
    コラボレーション
    • Github
    • フォーラム
    • イベント
    • 翻訳
    • パートナーになる
    • パートナー様向けサービス
    • 会計事務所を登録
    サービス利用
    • パートナー一覧
    • 会計事務所一覧
    • 今すぐ相談する
    • 導入支援サービス
    • お客様一覧
    • サポート
    • アップグレード
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    製品デモを利用する
  • 料金
  • ヘルプ
コミュニティで交流するには登録する必要があります。
全てのポスト 人々 バッジ
タグ (全て表示)
odoo accounting v14 pos v15
このフォーラムについて
コミュニティで交流するには登録する必要があります。
全てのポスト 人々 バッジ
タグ (全て表示)
odoo accounting v14 pos v15
このフォーラムについて
ヘルプ

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

購読

この投稿に活動があった際に通知を受け取ります

この質問にフラグが付けられました
studio
1305 ビュー
アバター
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
アバター
破棄
ディスカッションを楽しんでいますか?読むだけでなく、参加しましょう!

今すぐアカウントを作成して、限定機能を利用したり、素晴らしいコミュニティと交流しましょう!

登録
関連投稿 返信 ビュー 活動
Custom popup 解決済
studio
アバター
アバター
2
3月 26
1733
Menu's with different default filter 解決済
studio
アバター
アバター
1
12月 25
3868
How to add or reorder columns in Studio 解決済
studio
アバター
アバター
1
12月 25
2079
Studio V18 Domain does not have current field
studio
アバター
アバター
1
12月 25
1779
debit and credit in currency
studio
アバター
アバター
1
11月 25
3517
コミュニティ
  • チュートリアル
  • ドキュメンテーション
  • フォーラム
オープンソース
  • ダウンロード
  • Github
  • Runbot
  • 翻訳
サービス
  • Odoo.shホスティング
  • サポート
  • アップグレード
  • カスタム開発
  • 教育
  • 会計事務所一覧
  • パートナー一覧
  • パートナーになる
企業情報
  • 会社概要
  • ブランドアセット
  • お問い合わせ
  • 採用情報
  • イベント
  • ポッドキャスト
  • ブログ
  • お客様一覧
  • リーガル情報 • プライバシーポリシー
  • セキュリティ
الْعَرَبيّة 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(オドゥー)は、CRM、eコマース、会計、在庫管理、POS、プロジェクト管理など、企業のさまざまな業務を一つのシステムで管理できる、ベルギー発のオープンソースのERPソフトウェアです。

高機能で使いやすく、完全に統合されたERPとして、ユニークな価値を提供しています。

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