I'm a newbie at Odoo, but this doesn't seem to work. I've already tried some bits of the "OpenAcademy-tutorial" and had no significant problems.
But now I'm trying to create a Module of my own. So I've used the Scaffold command to create my "city_be" module, and added just some fields to the model, like this:
from odoo import models, fields, api
class Gemeente(models.Model):
_name = 'city_be.gemeente'
gem = fields.Char('Gemeente (Deelgemeente)', required=True) zip = fields.Integer('Postcode', required=True) NIS = fields.Integer('NIS', required=True)
I've also made a view but everytime I load or update the module, I get a view error that the model doesn't exist. When I look in the table, the city_be table isn't created. What am I doing wrong?
info: Win7, Odoo10
update:
The log-file states:
Traceback (most recent call last): File "SocketServer.pyc", line 599, in process_request_thread File "SocketServer.pyc", line 334, in finish_request File "SocketServer.pyc", line 657, in __init__ File "SocketServer.pyc", line 716, in finish File "socket.pyc", line 283, in close File "socket.pyc", line 307, in flusherror: [Errno 10053] De software op uw hostcomputer heeft een verbinding verbroken2017-03-04 12:21:12,887 3516 INFO Sabbe_001 werkzeug: 127.0.0.1 - - [04/Mar/2017 12:21:12] "POST /longpolling/poll HTTP/1.1" 200 -
Translated: Errno 10053 - An established connection was aborted by the software in your host machine