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

skip the section and note while creating a serial number in order line

Subscribe

Get notified when there's activity on this post

This question has been flagged
sequenceserial_numbernoteorder.linesection
2 Replies
5827 Views
Avatar
Bharath Singh

I need to skip the section and note while creating a serial number in orderline, i made many modification,still its considering the section and notes as a line item, And its creating a serial number for section and notes.

My Python code :

from odoo import api, fields, models


class SaleOrder(models.Model):
_inherit = 'sale.order'

@api.multi
@api.depends('order_line')
def _compute_maxim_line_sequence(self):

for sale in self:
for line in sale.order_line:
if line.name:
sale.maxim_line_sequence = (
maxim(sale.mapped('order_line.sequence') or [0]) + 1)

maxim_line_sequence = fields.Integer(
string='Maxim sequence in lines',
compute='_compute_maxim_line_sequence',
store=True
)

@api.multi
def _reset_sequence(self):
for rec in self:
current_sequence = 1
for line in rec.order_line:
if line.name:
line.sequence = current_sequence
current_sequence += 1

@api.multi
def write(self, line_values):
res = super(SaleOrder, self).write(line_values)
self._reset_sequence()
return res

@api.multi
def copy(self, default=None):
return super(SaleOrder,
self.with_context(keep_line_sequence=True)).copy(default)


class SaleOrderLine(models.Model):
_inherit = 'sale.order.line'

# re-defines the field to change the default
sequence = fields.Integer(
help="Gives the sequence of this line when displaying the sale order.",
default=9999,
# related='x_seq_handle',
string="Sequence"
)

# displays sequence on the order line
sequence2 = fields.Integer(
help="Shows the sequence of this line in the sale order.",
related='sequence',
string="Line Number",
readonly=True,
store=True
)

@api.model
def create(self, values):
line = super(SaleOrderLine, self).create(values)
# We do not reset the sequence if we are copying a complete sale order
if self.env.context.get('keep_line_sequence'):
line.order_id._reset_sequence()
return line



here i can't able to restrict to create serial number to only order line contains product it.

can you please help me to do this.

0
Avatar
Discard
Iñaki

Hi Bharath,

I tried to follow your example but in this code (taken from module set_sequence_number) it does not work:

@api.depends('order_id.order_line', 'order_id.order_line.product_id')
def _sequence_ref(self):
for line in self:
no = 0
line.sequence_ref = no
for l in line.order_id.order_line:
no += 1
l.sequence_ref = no

I wrote the line "if not line.display_type:" in all the places but I do not get it to work. I also didn't get for this other code:

@api.depends('sequence', 'move_id')
def _compute_number(self):
for s in self:
s.index = 0
for
invoice in self.mapped('move_id'):
index = 1
if
invoice.invoice_line_ids:
for line in invoice.invoice_line_ids:
line.index = index
index += 1

I would be happy if you can show me where should the if not condition goes. I am using Odoo14.

Thank you.

Avatar
Mohamed Salah
Best Answer

did you find solution please?

0
Avatar
Discard
Avatar
Niyas Raphy (Walnut Software Solutions)
Best Answer

Hi,

If you need to exclude the sections and notes, you can add the condition like this:-  if not line.display_type , if the line is section or notes, the value will be set in this field.


You can see the field in the sale.order.line model:

display_type = fields.Selection([
('line_section', "Section"),
('line_note', "Note")], default=False, help="Technical field for UX purpose.")


Thanks

0
Avatar
Discard
Bharath Singh
Author

yeah already i tried this too, once again i tried this, still section are considered for serial number.

Niyas Raphy (Walnut Software Solutions)

can you show me the code of how you set sequence number, will be fine if you can add that as a comment here, in the questions there seems a lot of code

Bharath Singh
Author

@api.multi

@api.depends('order_line')

def _compute_max_line_sequence(self):

for sale in self:

for line in sale.order_line:

if not line.display_type:

sale.max_line_sequence = (

max(sale.mapped('order_line.sequence') or [0]) + 1)

max_line_sequence = fields.Integer(

string='Max sequence in lines',

compute='_compute_max_line_sequence',

store=True

)

@api.multi

def _reset_sequence(self):

for rec in self:

current_sequence = 1

for line in rec.order_line:

if not line.display_type:

line.sequence = current_sequence

current_sequence += 1

i include the if not condition in these function

Bharath Singh
Author

Hi @Niyas Raphy, did you find any issue in below code.

Niyas Raphy (Walnut Software Solutions)

what is the difference between these two functions

Bharath Singh
Author

first function is for generating a serial number

second is used for resetting the serial number sequence for usecase scenarios.

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
How does the sequence work with handle widget? Solved
widget sequence note section odoo12
Avatar
Avatar
1
Apr 19
21668
How is the account.move.line name not shown in columns?
note section
Avatar
0
Jan 25
2252
increment sale order line sequence by 10 Solved
sequence increment order.line
Avatar
Avatar
1
Jan 24
14071
SO new section
sale sequence sale.order.line section V12
Avatar
0
Sep 20
4215
Disable auto-assign of Serial Numbers to Sales Order Operations
serial_number
Avatar
Avatar
Avatar
3
Jun 25
2628
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