Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Model doesn't create table - view error - Odoo 10

Odoberať

Get notified when there's activity on this post

This question has been flagged
2 Replies
6792 Zobrazenia
Avatar
Nico

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

-1
Avatar
Zrušiť
Avatar
Bojan Nišević
Best Answer

Did you ever figure out this?

0
Avatar
Zrušiť
Avatar
Nico
Autor Best Answer

This seems to be a WSGI-error (for what I read about it on the web). But that doesn't solve the problem.


Update: I don't know what this is. In the meantime I've re-installed Odoo and Postgresql and started all over. At first everything seemed fine, but then it happened again. Every change I make to a model, doesn't reflect in the table. I've made a model with two classes, so I'd expect two tables, but that didn't work, only one table was created. Just for testing, I've deleted the class from which the table was created, deleted the module in Odoo (and hence the table, I've checked) and re-installed it. It was a kind of magic, because the table was also re-installed, without the code in de model. Can someone explain me this.

Finally, I just manually copied my module, renamed it and installed this copy. Now everything is fine. The two tables are created.

It can't be that I have to do this everytime I want to change something in my models?


Code:

from odoo import models, fields, api

class gemeente(models.Model):

 _name = 'eigendom.gemeente'

name = fields.Char('Gemeente', required=True)

zip = fields.Char('Postcode', required=True)

NIS = fields.Char('NIS', required=True)


class perceel(models.Model):

_name = 'eigendom.perceel'

street = fields.Char('straat', required=True)

number = fields.Char('nummer')

city_id = fields.Many2one('eigendom.gemeente', ondelete='set null', string="Gemeente", required=True) 

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now