Move to report_py3o after import from HG

This commit is contained in:
Laurent Mignon
2016-10-03 17:50:09 +02:00
committed by Elmeri Niemelä
parent f6845422ac
commit 75ab2d3809
19 changed files with 1593 additions and 0 deletions

View 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,
}