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

Error code when calling web controller to create a new contact

Odoberať

Get notified when there's activity on this post

This question has been flagged
followererrorwebcontrollerjsonrpc
1 Odpoveď
7179 Zobrazenia
Avatar
Jack Dane

Odoo V13 Community


I am having issues trying to create a new contact when a web controller is called outside of Odoo. I am not sure what I am doing wrong.


Here is the web controller in Odoo:

class DuxSoup(http.Controller):

    @http.route('/dux-soup/dux-soup/', auth='none', type="json", methods=["POST"], csrf=False)

    def index(self, **kw):

        data = json.loads(request.httprequest.data)

        request.env["res.partner"].sudo().create(data)

 

Here is the python script which calls the Odoo endpoint:

import requests

url = "http://localhost:8069/dux-soup/dux-soup/"

objects = {"params": {"name": "value"}}

request = requests.post(url, json=objects)

print(request.text)


Here is the error which is returned in the python script:

{

   "jsonrpc":"2.0",

   "id":null,

   "error":{

      "code":200,

      "message":"Odoo Server Error",

      "data":{

         "name":"builtins.KeyError",

         "debug":"Traceback (most recent call last):\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\http.py\", line 624, in _handle_exception\n    return super(JsonRequest, self)._handle_exception(exception)\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\http.py\", line 310, in _handle_exception\n    raise pycompat.reraise(type(exception), exception, sys.exc_info()[2])\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\tools\\pycompat.py\", line 14, in reraise\n    raise value\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\http.py\", line 669, in dispatch\n    result = self._call_function(**self.params)\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\http.py\", line 350, in _call_function\n    return checked_call(self.db, *args, **kwargs)\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\service\\model.py\", line 94, in wrapper\n    return f(dbname, *args, **kwargs)\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\http.py\", line 339, in checked_call\n    result = self.endpoint(*a, **kw)\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\http.py\", line 915, in __call__\n    return self.method(*args, **kw)\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\http.py\", line 515, in response_wrap\n    response = f(*args, **kw)\n  File \"c:\\program files (x86)\\odoo 13.0\\addons\\dux-soup\\controllers\\controllers.py\", line 12, in index\n    request.env[\"res.partner\"].sudo().create(data)\n  File \"<decorator-gen-120>\", line 2, in create\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\api.py\", line 335, in _model_create_multi\n    return create(self, [arg])\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\addons\\partner_autocomplete\\models\\res_partner.py\", line 183, in create\n    partners = super(ResPartner, self).create(vals_list)\n  File \"<decorator-gen-82>\", line 2, in create\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\api.py\", line 336, in _model_create_multi\n    return create(self, arg)\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\addons\\base\\models\\res_partner.py\", line 548, in create\n    partners = super(Partner, self).create(vals_list)\n  File \"<decorator-gen-109>\", line 2, in create\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\api.py\", line 336, in _model_create_multi\n    return create(self, arg)\n  File \"C:\\Program Files (x86)\\Odoo 13.0\\server\\odoo\\addons\\mail\\models\\mail_thread.py\", line 262, in create\n    default_followers = self.env['mail.followers']._add_default_followers(self._name, [], self.env.user.partner_id.ids, customer_ids=[])[0][0]\nKeyError: 0\n",

         "message":"0",

         "arguments":[

            0

         ],

         "exception_type":"internal_error",

         "context":{

            

         }

      }

   }

}


Any help on this issue would be greatly appreciated as I really cannot get to the bottom of this.


Thanks,

0
Avatar
Zrušiť
Avatar
Ravi Gadhia
Best Answer

when a new partner create,  who(user) create this partner has been added to followers list
now here you provide auth='none' so when environment create there is no user assigned to it that's why error raise 

change it's to auth="public" 

also no need to post "params"  becasue you directly get row data from request object instead of **kw

objects = {"name": "new partner"}
request = requests.post(url, json=objects)




1
Avatar
Zrušiť
Jack Dane
Autor

Thank you so much Ravi,

Works perfectly.

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
Related Posts Replies Zobrazenia Aktivita
Web Controller replacement is ignored Solved
web controller
Avatar
1
máj 19
3921
data persistency between controllers
web controller
Avatar
Avatar
2
aug 18
3642
Inherit openerp controller
web controller
Avatar
0
jún 16
4611
Inherit openerp controller
web controller
Avatar
0
mar 15
5129
Error in openerp controller Solved
error controller
Avatar
Avatar
1
mar 15
4823
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