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
    • Artificial Intelligence
    • 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
    • Property 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
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

How to prevent from adding same products in sale order line

Subscribe

Get notified when there's activity on this post

This question has been flagged
odooodoo12Odoo13.0
1 Reply
7960 Views
Avatar
Madara

hi all iam a newbie to odoo , what iam trying to achieve is i want to prevent from adding duplicate products in order line , if the same exits already we should not able to add the duplicate product 


    @ api.multi

    @ api.constrains ('order_line')

    def _check_exist_product_in_line (self):

      for rec in self:

          product_id = self.env ['product.product']. search ([('default_code', '=', 'MIFFLIN')])

          for line in self.order_line:

             if line.product_id.id in product_id:

                raise ValidationError (_ ('Product already added.'))

             product_id.append (line.product_id.id)



i tried like this but it's not working its throwing operation not permitted. what am i missing here , someone help me here

0
Avatar
Discard
Madara
Author

TypeError: Mixing apples and oranges: product.product(28,) in sale.order.line(572,)

Avatar
Mohamed Lamine Lalmi
Best Answer

Hello Mascherano,

Comparing what you want to achieve with what your code does seem like two different things to me.

I feel your code will solve your situation, you can just fix it like the following:

  1. Please do not use @api.multi & @api.constrains on the same function

  2. the result of self.env ['product.product']. search ([('default_code', '=', 'MIFFLIN')]) is product.product object set and not an integer and you are trying to compare this set of objects with an integer on if line.product_id.id in product_id (line.product_id.id is an integer value) ==> This throws the error: TypeError: Mixing apples and oranges

  3. Bellow is the fix of your code:

@api.constrains ('order_line')
def _check_exist_product_in_line(self):
product_ids = self.env['product.product'].search([('default_code', '=', 'MIFFLIN')])
for rec in self:
for line in rec.order_line:
if line.product_id in product_ids:
raise ValidationError(_('Product already added.'))
product_id.append(line.product_id.id)
    return True

Let me explain a little bit what's your code is for:

  1. Get all the products that has 'MIFFLIN' as a default code.

  2. You loop on the Sale order lines

  3. If the line's product is one of the products searched on step 1 then raise an error.

  4. So your code will always raise an error if 'MIFFLIN' product is present on sale order lines even that is not duplicated (exist only once).

Honestly, i don't believe your code will help you to achieve your explained goal, If you feel the same, please to use the bellow code:

@api.constrains ('order_line')
def _check_exist_product_in_line(self):
for order in self:
products_in_lines = order.mapped('order_line.product_id')
for product in products_in_lines:
lines_count = len(order.order_line.filtered(lambda line: line.product_id == product))
if lines_count > 1:
raise ValidationError(_('Product already added.'))
return True

Hope this will help,

Good luck.

0
Avatar
Discard
Madara
Author

when i try to add the product , it showing as error product_id is not defined

Cybat

product_ids = []
for line in self.order_line:
product_ids.append (line.product_id.id)
occurrences = product_ids.count (self.product_id.id)
if occurrences> 2:
raise ValidationError ('You cannot select already added product.' )

Cybat

Onchange product_id

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
Can I use select ="multi" with selection field in search panel tag in sale order tree view?
odoo odoo12 Odoo13.0
Avatar
Avatar
1
Jun 23
6437
Odoo Installation Script Solved
odoo odoo12 Odoo13.0 v14
Avatar
Avatar
Avatar
Avatar
4
Dec 24
21461
how to particular Sales Order delivery note states using for loop
python odoo odoo12 Odoo13.0
Avatar
0
Oct 21
4096
Odoo error to 13 from 12
migration odoo odoo12 Odoo13.0
Avatar
2
Jan 20
4376
psycopg2.ProgrammingError: no existe la relación «_unknown» Please HELP!!!!
odoo odoo12
Avatar
Avatar
2
Nov 25
1879
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 Svenska ภาษาไทย 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