Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Resetting Sequencer Padding Every Day

Subscriure's

Get notified when there's activity on this post

This question has been flagged
17 Respostes
13990 Vistes
Avatar
Alex Gallien

I have been trying to customize my Sales Order numbers to contain information about the date, and was able to do so by going to Settings: Technical -> Sequences & Identifiers -> Sequences and change the prefix for Sales Order to 'SO%(y)s%(month)s%(day)s'. This gives me close to what I want. An order placed today would read as SO140618xxx, where xxx is the padding. That padding number is incremented sequentially, however. So if I genereated SO140618005 today, tomorrow it would generate SO140619006. Is there any way to get OpenERP to reset that padding number daily? I would much prefer it to be sequenced individually by day. Would I have to change this via a custom module? Thanks!

Edit: Since the code in my comment looked herrible, I am posting it again here:

 

class reset_serial(osv.osv):

    _name ="reset.serial"

 

    def sales_number_update(self, cr, uid, ids=None, context=None):

        sequence_obj = self.pool.get('ir.sequence')

        seq_id = sequence_obj.search(cr, uid, [('code', '=', 'sale.order')])

        if seq_id:

            value = sequence_obj.browse(cr, uid, seq_id[0])

            number_next = value.number_next

            sequence_obj.write(cr, uid, seq_id, {'number_next': 1})

        return None

0
Avatar
Descartar
Alex Gallien
Autor

prakash - I got this code running and it works pretty well. The problem is that it doens't reset the seiral, it adds another digit to it. So if I entered SO140619006, running the sequencer would give SO1406191001. I tried modifying your code a bit, changing: sequence_obj.write(cr, uid, seq_id, {'number_next': number_next+1000}) to sequence_obj.write(cr, uid, seq_id, {'number_next': 0}) but that didn't work either. Are the serial numbers inherintly tied to the Sales Order that first used them? That is the impression I am getting now. Anybody know? Thanks!

Prakash

In your examples taken last four digit 8005 so in the code updated with 8005 + 1000 = 90006. Try the code sequence_obj.write(cr, uid, seq_id, {'number_next': 1})

Prakash

To set next number everyday update the number_next is 1. I updated in the code please check the same.

Prakash

sequence_obj.write(cr, uid, seq_id, {'number_next': 1}) is working tested. In openepr default sequence next value start with 1. If set to 0 its shows the DataError: RESTART value (0) cannot be less than MINVALUE (1)

Alex Gallien
Autor

Ah I see where you got confused there, the format is SOyymmddxxx, with xxx being the serial. It incremented from 8 to 9 because of the date change. For whatever reason when I use your code 'sequence_obj.write(cr, uid, seq_id, {'number_next': 1} it sets my next number to 1001. Any idea why that might be? This is how my code currently looks: class reset_serial(osv.osv): _name ="reset.serial" def sales_number_update(self, cr, uid, ids=None, context=None): sequence_obj = self.pool.get('ir.sequence') seq_id = sequence_obj.search(cr, uid, [('code', '=', 'sale.order')]) if seq_id: value = sequence_obj.browse(cr, uid, seq_id[0]) number_next = value.number_next sequence_obj.write(cr, uid, seq_id, {'number_next': 1}) return None

Alex Gallien
Autor

I edited my original post with the code, since it is hard to read in this comment. Thanks for your help prakash! This is really bugging me, I have tried so many variations at this point.

Prakash

I updated my answer with example please check the same. I think in your example Day1 SO140618005 Day2 SO140619006 no need to set scheduler it already increment by one number.

Alex Gallien
Autor

Turns out the issue was totally unrelated - somehow another instance of openerp-server was running and messing up my module updates. Thank you so much for your help, it's working now.

Avatar
Prakash
Best Answer

You can use Scheduler based on your requirement

In the Menu Settings->Technical->Scheduler->Scheduled Actions

Create New scheduler with below details:-

Name: Sale Order scheduler

Active: True

Interval Number: 1

Interval Units: Days

In the Technical Data Tab :

object: custom.model.name

Method: sales_number_update

Arguments: ()

In the custom module python file add below code,

class custom_model_name(osv.osv):
    _name ="custom.model.name"
    
    def sales_number_update(self, cr, uid, ids=None, context=None):
        sequence_obj = self.pool.get('ir.sequence')
        seq_id = sequence_obj.search(cr, uid, [('code', '=', 'sale.order')])         
        if seq_id:
            value = sequence_obj.browse(cr, uid, seq_id[0])
            number_next = value.number_next
            sequence_obj.write(cr, uid, seq_id, {'number_next': 1})
        return None

The above code Sequence Number will geneartes:-

Let us assume

Day 1                               Day 2                            Day 3

4 Sale Order Created        2 Sale Order Created       3 Sale Order Created

SO140624001                  SO140625001                 SO140626001

SO140624002                  SO140625002                 SO140626002

SO140624003                                                        SO140626003

SO140624004

 

3
Avatar
Descartar
Alex Gallien
Autor

prakash - I got this code running and it works pretty well. The problem is that it doens't reset the seiral, it adds another digit to it. So if I entered SO140619006, running the sequencer would give SO1406191001. I tried modifying your code a bit, changing: sequence_obj.write(cr, uid, seq_id, {'number_next': number_next+1000}) to sequence_obj.write(cr, uid, seq_id, {'number_next': 0}) but that didn't work either. Are the serial numbers inherintly tied to the Sales Order that first used them? That is the impression I am getting now.

Alex Gallien
Autor

For whatever reason even after entering this code exactly as you did, it iterated to 1001 instead of 1. Any idea what might be causing this? Is there some other setting I might want to check? Thanks again for all your help, I really appreciate it.

Alex Gallien
Autor

Turns out the issue was totally unrelated - somehow another instance of openerp-server was running and messing up my module updates. Thank you so much for your help, it's working now.

Prakash

My pleasure

Avatar
Ivan Elizaryev
Best Answer

You can add some extra column in ir.sequence, say current_date.

Then override function which calculate next id, so that it will compare actual current date and data in current_date column. If it differs, then reset "padding". 

2
Avatar
Descartar
Avatar
Matīss Jēkabsons
Best Answer

Tried to implement this in Odoo 11 but with no success.
As i see - the scheduller is looking different too. So the steps that should be taken are different too?

0
Avatar
Descartar
Avatar
Alex Gallien
Autor Best Answer

prakash - I got this code running and it works pretty well. The problem is that it doens't reset the seiral, it adds another digit to it. So if I entered SO140619006, running the sequencer would give SO1406191001. I tried modifying your code a bit, changing: sequence_obj.write(cr, uid, seq_id, {'number_next': number_next+1000}) to sequence_obj.write(cr, uid, seq_id, {'number_next': 0}) but that didn't work either. Are the serial numbers inherintly tied to the Sales Order that first used them? That is the impression I am getting now. Anybody know? Thanks!

0
Avatar
Descartar
Prakash

sequence_obj.write(cr, uid, seq_id, {'number_next': 1}) is working tested. In openepr default sequence next value start with 1. If set to 0 its shows the DataError: RESTART value (0) cannot be less than MINVALUE (1)

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

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

Registrar-se
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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