Can set Py3o servers as inactive

--HG--
branch : odoo8
This commit is contained in:
Jérémie Gavrel
2016-03-09 17:53:01 +01:00
parent 1826aa2c45
commit 7e9a76558c
3 changed files with 10 additions and 1 deletions

View File

@@ -9,4 +9,11 @@ class py3o_server(osv.Model):
u"URL",
size=256,
),
'is_active': fields.boolean(
u"Active",
)
}
_defaults = {
'is_active': True,
}