How do you give each product variant its own ASIN? For instance, I have a product with 6 total variants - how can I assign each variant its own ASIN?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Boekhouding
- Voorraad
- PoS
- Project
- MRP
Deze vraag is gerapporteerd
Hi Colby,
You will have to make a small customization for adding ASIN as this feature is not available by default in odoo 17.
Enable product variants inside Inventory -> Configuration -> Settings
Now you may add a Field for ASIN using a custom module or from Studio, If you prefer a custom module, check the code below or Add field from studio
from odoo import models, fields
class ProductTemplate(models.Model):
_inherit = 'product.template'
asin = fields.Char(string="ASIN")
class ProductProduct(models.Model):
_inherit = 'product.product'
asin = fields.Char(string="ASIN")
Now for each products, you can add a unique ASIN and save it.
Thanks
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
AanmeldenGerelateerde posts | Antwoorden | Weergaven | Activiteit | |
---|---|---|---|---|
|
2
aug. 25
|
377 | ||
|
3
jun. 25
|
2299 | ||
Change resume view
Opgelost
|
|
4
jul. 25
|
1105 | |
|
1
nov. 24
|
1511 | ||
|
2
jun. 23
|
2985 |