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
    • Approvals
    • 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
    • Estate 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

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
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

Resetting Sequencer Padding Every Day

Subscribe

Get notified when there's activity on this post

This question has been flagged
17 Replies
13982 Views
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
Discard
Alex Gallien
Author

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
Author

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
Author

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
Author

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
Discard
Alex Gallien
Author

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
Author

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
Author

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
Discard
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
Discard
Avatar
Alex Gallien
Author 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
Discard
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!

Sign up
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 ภาษาไทย 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