summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/website_user_wishlist.py
blob: 0a7bcf6928e594e06b5ed36d8d1acbcacdd8d5c1 (plain)
1
2
3
4
5
6
7
8
9
10
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")