We have some product with the same barcode (EAN13). Actually is the same product with variations like color but the manufacturer set the same barcode to all variations. How can I set the Barcode Field to Odoo 10 to not check fro duplicate?
Thank you in advance
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
4116
Views
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
Dec 24
|
13 | ||
|
1
Oct 24
|
835 | ||
|
2
Aug 24
|
329 | ||
|
1
Feb 24
|
554 | ||
|
1
Nov 24
|
18017 |
Use _sql_constraints,
for example ,
_sql_constraints = [('barcode', 'unique(barcode)', 'Barcode number already assigned!')]
barcode = fields.Integer(string="barcode")
Sorry. Maybe is not clear the way I describe the problem. I want the barcode field NOT unique.