mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
Move to report_py3o after import from HG
This commit is contained in:
committed by
Elmeri Niemelä
parent
f6845422ac
commit
75ab2d3809
19
report_py3o/models/py3o_server.py
Normal file
19
report_py3o/models/py3o_server.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from openerp.osv import fields, osv
|
||||
|
||||
|
||||
class py3o_server(osv.Model):
|
||||
_name = 'py3o.server'
|
||||
|
||||
_columns = {
|
||||
'url': fields.char(
|
||||
u"URL",
|
||||
size=256,
|
||||
),
|
||||
'is_active': fields.boolean(
|
||||
u"Active",
|
||||
)
|
||||
}
|
||||
|
||||
_defaults = {
|
||||
'is_active': True,
|
||||
}
|
||||
Reference in New Issue
Block a user