from odoo import fields, models class WebsiteUserWishlist(models.Model): _name = 'website.user.wishlist' _rec_name = 'user_id' user_id = fields.Many2one('res.users', string='User', help="User ID yang terdaftar di table res.users") product_id = fields.Many2one('product.template', string='Product', help="Product yang terdaftar di table product.template") variant_id = fields.Many2one('product.product', string='Variant', help="Product yang terdaftar di table product.product")