blob: 8046469f93f5bc11e92b4154627f3e60821798f1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from odoo import fields, models
class WebsiteUserCart(models.Model):
_name = 'website.user.cart'
_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.product', string='Product', help="Product yang terdaftar di table product.product")
qty = fields.Float(string='Quantity', digits='Product Unit of Measure')
|