Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

[SOLVED] Multiple invoice sequence

Naroči se

Get notified when there's activity on this post

This question has been flagged
sequenceinvoicingopenerp7sequencenumberodooV8
2 Odgovori
13173 Prikazi
Avatar
Jorge

A new fiscal law in our country (Honduras) was just published, this law states a new standard in invoice numbering. This new number is formed by:

XXX-YYY-ZZ-NNNNNNNN

  • X is the store/branch number

  • Y is a code given by the fiscal people

  • Z is the document type (In this case 01 means invoice)

  • N is the invoice number (Only moving number,  auto increment)


The result is an invoice with this number: 000-001-01-00000004

When you only have one store, it's easy because you configure your sales journal sequence prefix to '000-001-01-' and fill for 8 digits.

The problem starts when you have more than 1 store, because you have to have 000-YYY-ZZ-NNNNNNNN, 001-YYY-ZZ-NNNNNNNN, 003-YYY-ZZ-NNNNNNNN and so on

The other problem is that each store should have its own incremental number. Example:

Store 1
Store 2
Store 3
000-001-01-00000001
001-001-01-00000001
002-001-01-00000001
000-001-01-00000002
001-001-01-00000002
002-001-01-00000002

001-001-01-00000003
002-001-01-00000003

001-001-01-00000004

This can be taken as multi company, but the accounting for all 3 stores should be reflected under the same company and same Sales Journal.

So basically what i'm trying to figure out is:

  1. Setup multiple sequences for multiple stores.

  2. This sequences should be independent from each other, as shown in the tables above.

  3. There must be a way to choose which store is selling to select the correct sequence. (Dropdown menu in Draft Invoice maybe?)

  4. I need to implement this in Odoo 8 and OpenERP 7

I hope i'm making myself clear, if not please ask! Thanks!

Update:

  1. I created a model called x_punto_emision (store) that has a many2one relation to ir.sequence and a char field to store the name of the store. (http://i.imgur.com/eVromry.png)

  2. I added a selection widget in account.invoice.form so that the user can select the store in the draft invoice: (http://i.imgur.com/FqClLi2.png?1)

<field name="x_punto_emision" widget="selection" attrs="{'readonly': ['|',('state','not in',('draft',)), ('type','&lt;&gt;','out_invoice')]}"/> 

      3.  Then I created two fields in the account.invoice model, a many2one with x_punto_emision (the selected store) and a             x_numero_impresion (the invoice number that the ir.sequence should give based on the selected store)

After this setup, I created 2 Sequences (http://i.imgur.com/GRQtC0Q.png) and 2 Stores  (http://i.imgur.com/vSQrfQz.png). 

I need help connecting everything together, when the user validates the invoice, the system should take the next number in the sequence of x_punto_emision and stores it in x_numero_impresion.

Any ideas on how to do this? Thanks again!


1
Avatar
Opusti
Leonardo Donelli

Rui! Thanks a lot! That solved my problem! I can't mark question as answer because of lack of karma points. :S

Avatar
Rui Franco
Best Answer

Your problem seems to be the fact that you want to use the same sales journal. Should you chose to ignore such requirement, the overall process becomes an easy thing.

Since journals are associated to sequences, when you create an invoice, you can chose the sequence to use by selecting a different journal. Create as many sales journals as stores (as well as sequences: 1 store < 1 sequence), and there you go!

3
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Invoice Sequence ifo POS
sequence invoicing journals sequencenumber odoo16features
Avatar
0
jun. 23
2453
Apply a sequence for a field
sequencenumber odooV8
Avatar
Avatar
2
sep. 23
10108
The invoice number(First number) no longer exists for me when create a invoice. How can I get it back?
invoicing sequencenumber
Avatar
0
apr. 22
2318
How to change the Quotation, Order, Invoice sequence numbers ? Solved
sequence sequencenumber
Avatar
Avatar
Avatar
2
dec. 23
29944
Can we work on the same machine on openerp7 and odoo8 Solved
openerp7 odooV8
Avatar
Avatar
Avatar
3
avg. 15
4150
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 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