blob: ec36029456c0889cf6a99b6086d7d643477a24d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
from odoo import fields, models
class WebsiteAds(models.Model):
_name = 'website.ads'
sequence = fields.Integer(string='Sequence')
name = fields.Char(string='Name')
image = fields.Binary(string='Image')
url = fields.Char(string='URL')
page = fields.Selection([
('product', 'Product'),
('homepage', 'Home Page')
], string='Page')
status = fields.Selection([
('tayang', 'Tayang'),
('tidak_tayang', 'Tidak Tayang')
], string='Status')
|