Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
850 Lượt xem

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?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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


Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 8 25
464
3
thg 6 25
2398
Change resume view Đã xử lý
4
thg 7 25
1148
1
thg 11 24
1554
2
thg 6 23
3068