blob: a6ee35d47cbed7cf50f6f5922e6b20c4e0cd6aa8 (
plain)
1
2
3
4
5
6
7
8
9
|
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")
|