Untitled
unknown
python
a year ago
593 B
3
Indexable
from odoo import fields, models class MyModels(models.Model): _name = 'my.models' _description = 'belajar views dan odoo' name = fields.Char(string='Nama') description = fields.Text(string='Description') active = fields.Boolean(string='Active') date = fields.Date(string='Date') dateTime = fields.Datetime(string='Date Time') float = fields.Float(string='Fload Field') integer = fields.Integer(string='Integer Field') selection = fields.Selection(string='Choose', selection=[('A', 'Ayam'), ('B', 'Burung'),])
Editor is loading...
Leave a Comment