Py3o update for odoo 8

--HG--
branch : odoo8
This commit is contained in:
Anael Lorimier
2015-02-24 17:39:09 +01:00
parent c74ba0ed35
commit 59ab08e179
12 changed files with 69 additions and 8 deletions

12
models/py3o_server.py Normal file
View File

@@ -0,0 +1,12 @@
from openerp.osv import fields, osv
class py3o_server(osv.Model):
_name = 'py3o.server'
_columns = {
'url': fields.char(
u"URL",
size=256,
),
}