blob: 5fb93b2e29cd8ea08e36c4eba04b7894af2be107 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
from odoo import fields, models, api
class CustomerReview(models.Model):
_name = 'customer.review'
sequence = fields.Integer(string='Sequence')
customer_name = fields.Char(string='Customer')
image = fields.Binary(string='Image')
ulasan = fields.Char(string='Ulasan')
name = fields.Char(string='Name')
jabatan = fields.Char(string='Jabatan')
status = fields.Selection([
('tayang', 'Tayang'),
('tidak_tayang', 'Tidak Tayang')
], string='Status')
|