Serial number in Sale Order Line

by
Odoo
v 14.0 Third Party 673
Download for v 14.0 Deploy on Odoo.sh
Availability
Odoo Online
Odoo.sh
On Premise
Odoo Apps Dependencies Sales (sale_management)
Discuss (mail)
Invoicing (account)
Lines of code 45
Technical Name iwesabe_slno_in_sale_order_line
LicenseAGPL-3
Websitehttps://www.iwesabe.com/
Versions 13.0 15.0 14.0 16.0
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Odoo Apps Dependencies Sales (sale_management)
Discuss (mail)
Invoicing (account)
Lines of code 45
Technical Name iwesabe_slno_in_sale_order_line
LicenseAGPL-3
Websitehttps://www.iwesabe.com/
Versions 13.0 15.0 14.0 16.0

Serial number in Sale Order Line

iWesabe iWesabe

This module helps to show serial number in Sale order lines and Sale order report.

Overview iWesabe
iWesabe

Serial number in Report

Overview iWesabe

About Us

Global Creative Concepts Tech Co Ltd [ iWesabe ] is Odoo Gold Partner and leading Odoo ERP Implementation and Odoo customization company operating from Saudi Arabia, Bahrain and India. We encompasses on the planning, development, implementation, and application of existing and new technologies and systems that provide for the process of collecting, storing, and organizing information for its future retrieval, exchange, use, and delivery. Knowing and understanding a customers unique needs and being able to fulfill them not just to their satisfaction but also often beyond expectation is the hallmark of a customer-centric organization. At iWesabe, we are committed to achieving and exceeding this level of performance at all times. We are single-mindedly devoted to provide the most reliable and highest-quality of products and services in the realm of IT services.

In short, we are a one-stop web solutions company. iWesabe with its multiple sections, each concentrating on specific areas of interest. We provide various other services that suites your need at affordable prices, quality and satisfaction guaranteed.


If you feel that this module can be helpful for your business, feel free to email us on odoo@iwesabe.com

Our Services

Looking for Support?

Help
Support
Request New Features
Contact Us

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author, please use the developer contact information. They can usually be found in the description.
Please choose a rating from 1 to 5 for this module.
There are no ratings yet!
by
Muhammad Ameen
on 11/23/22, 12:26 AM

This module have one bug
when you add a section or note in oderline the the sequence number show wrong value,

solution just change the compute function to :

@api.depends('sequence', 'order_id')
def _compute_serial_number(self):
for order in self.mapped('order_id'):
sl_no = 1
for line in order.order_line:
if line.display_type not in ['line_note', 'line_section']:
line.sl_no = sl_no
sl_no += 1
else:
line.sl_no = False



by
Muhammad Ameen
on 12/27/21, 3:18 AM

When we add four items in sale order line and delete second line, the number doesn't change...