Skip to Content
Odoo Меню
  • Увійти
  • Спробуйте це безкоштовно
  • Додатки
    Фінанси
    • Бухоблік
    • Виставлення рахунку
    • Витрати
    • Електронні таблиці (BI)
    • Документи
    • Підпис
    Продажі
    • CRM
    • Продажі
    • POS Магазин
    • POS Ресторан
    • Підписки
    • Оренда
    Веб-сайти
    • Конструктор веб-сайту
    • Електронна комерція
    • Блог
    • Форум
    • Живий чат
    • Електронне навчання
    Ланцюг поставок
    • Склад
    • Виробництво
    • PLM
    • Купівлі
    • Технічне обслуговування
    • Якість
    Кадри
    • Співробітники
    • Рекрутинг
    • Відпустки
    • Оцінювання
    • Рекомендації
    • Автотранспорт
    Маркетинг
    • Маркетинг соцмереж
    • Email-маркетинг
    • SMS-маркетинг
    • Події
    • Автом. маркетингу
    • Опитування
    Послуги
    • Проект
    • Табелі
    • Виїзне обслуговування
    • Служба підтримки
    • Планування
    • Призначення
    Продуктивність
    • Обговорення
    • Схвалення
    • IoT
    • IP-телефонія
    • База знань
    • WhatsApp
    Сторонні модулі Odoo Studio Платформа Odoo Cloud
  • Сфери
    Роздрібна торгівля
    • Книжковий магазин
    • Магазин одягу
    • Магазин меблів
    • Продуктовий магазин
    • Магазин будівельних матеріалів
    • Магазин іграшок
    Food & Hospitality
    • Бар та паб
    • Ресторан
    • Фастфуд
    • Guest House
    • Дистриб'ютор напоїв
    • Hotel
    Нерухомість
    • Real Estate Agency
    • Архітектурна фірма
    • Будівництво
    • Управління нерухомістю
    • Садівництво
    • Асоціація власників нерухомості
    Консалтинг
    • Бухгалтерська компанія
    • Партнер Odoo
    • Агенція маркетингу
    • Юридична фірма
    • Придбання Талантів
    • Аудит та сертифікація
    Виробництво
    • Textile
    • Metal
    • Меблі
    • Їжа
    • Brewery
    • Корпоративні подарунки
    Здоров'я & Фітнес
    • Спортивний клуб
    • Оптика
    • Фітнес-центр
    • Практики здоров'я
    • Аптека
    • Салон краси
    Trades
    • Ремонтник
    • IT-обладнання та Підтримка
    • Системи сонячної енергії
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Інші
    • Nonprofit Organization
    • Екологічна агенція
    • Оренда білбордів
    • Фотографія
    • Лізинг велосипедів
    • Реселлер програмного забезпечення
    Browse all Industries
  • Спільнота
    Навчання
    • Навчальний посібник
    • Документація
    • Сертифікації
    • Тренування
    • Блог
    • Подкаст
    Сприяйте Освіті
    • Програма навчання
    • Бізнес гра Scale Up!
    • Відвідайте Odoo
    Отримайте програмне забезпечення
    • Завантаження
    • Порівняйте версії
    • Релізи
    Співпрацюйте
    • Github
    • Форум
    • Події
    • Переклади
    • Стати партнером
    • Services for Partners
    • Зареєструйте вашу бухгалтерську фірму
    Отримайте послуги
    • Знайдіть партнера
    • Знайдіть бухгалтера
    • Зустріньтеся з консультантом
    • Послуги з впровадження
    • Референси клієнтів
    • Підтримка
    • Оновлення
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Отримати демо
  • Ціни
  • Допомога

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

  • CRM
  • e-Commerce
  • Бухоблік
  • Склад
  • PoS
  • Проект
  • MRP
All apps
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
All Posts Люди Значки
Мітки (View all)
odoo accounting v14 pos v15
Про цей форум
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
All Posts Люди Значки
Мітки (View all)
odoo accounting v14 pos v15
Про цей форум
Допомога

Overriding route for /web/login path produces ValueError: Expected singleton: res.users()

Підписатися

Отримуйте сповіщення про активність щодо цієї публікації

Це запитання позначене
logincontrollershttp.route
2 Відповіді
5783 Переглядів
Аватар
AGILE BUSINESS TECHNOLOGIES

We are trying to override the default controller for the /web/login route in odoo/addons/web/controllers/main.py

The custom code is as follows:


from odoo import http
from odoo.addons.web.controllers.main import Home


class ProductivityCardHome(Home):

@http.route('/web/login', type='http', auth="none")
def web_login(self, redirect=None, **kw):
res = super(ProductivityCardHome, self).web_login(redirect=redirect, kw=kw)
return res

Unfortunately, the code above results in the following errors that we don't know what is the cause.



Traceback (most recent call last):
File "/project/src/odoo/odoo/models.py", line 5199, in ensure_one
_id, = self._ids
ValueError: not enough values to unpack (expected 1, got 0)

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 219, in render_template
yield from compiled_fn(self, values, log)
File "", line 5, in template_1741
File "/project/src/odoo/addons/website_sale_stock/models/website.py", line 28, in sale_get_order
so = super().sale_get_order(force_create=force_create, code=code, update_pricelist=update_pricelist, force_pricelist=force_pricelist)
File "/project/src/odoo/addons/website_sale/models/website.py", line 250, in sale_get_order
if not sale_order_id and not self.env.user._is_public():
File "/project/src/odoo/odoo/addons/base/models/res_users.py", line 905, in _is_public
self.ensure_one()
File "/project/src/odoo/odoo/models.py", line 5202, in ensure_one
raise ValueError("Expected singleton: %s" % self)
ValueError: Expected singleton: res.users()

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "/project/src/odoo/odoo/addons/base/models/ir_http.py", line 237, in _dispatch
result = request.dispatch()
File "/project/src/odoo/odoo/http.py", line 810, in dispatch
r = self._call_function(**self.params)
File "/project/src/odoo/odoo/http.py", line 359, in _call_function
return checked_call(self.db, *args, **kwargs)
File "/project/src/odoo/odoo/service/model.py", line 94, in wrapper
return f(dbname, *args, **kwargs)
File "/project/src/odoo/odoo/http.py", line 351, in checked_call
result.flatten()
File "/project/src/odoo/odoo/http.py", line 1277, in flatten
self.response.append(self.render())
File "/project/src/odoo/odoo/http.py", line 1270, in render
return env["ir.ui.view"]._render_template(self.template, self.qcontext)
File "/project/src/odoo/odoo/addons/base/models/ir_ui_view.py", line 1980, in _render_template
return self.browse(self.get_view_id(template))._render(values, engine)
File "/project/src/odoo/addons/website/models/ir_ui_view.py", line 433, in _render
return super(View, self)._render(values, engine=engine, minimal_qcontext=minimal_qcontext)
File "/project/src/odoo/addons/web_editor/models/ir_ui_view.py", line 29, in _render
return super(IrUiView, self)._render(values=values, engine=engine, minimal_qcontext=minimal_qcontext)
File "/project/src/odoo/odoo/addons/base/models/ir_ui_view.py", line 1988, in _render
return self.env[engine]._render(self.id, qcontext)
File "/project/src/odoo/odoo/tools/profiler.py", line 289, in _tracked_method_render
return method_render(self, template, values, **options)
File "/project/src/odoo/odoo/addons/base/models/ir_qweb.py", line 76, in _render
result = super()._render(template, values=values, **compile_options)
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 134, in _render
result = ''.join(rendering)
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 221, in render_template
raise e
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 219, in render_template
yield from compiled_fn(self, values, log)
File "", line 186, in template_190
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 221, in render_template
raise e
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 219, in render_template
yield from compiled_fn(self, values, log)
File "", line 29, in template_189
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 221, in render_template
raise e
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 219, in render_template
yield from compiled_fn(self, values, log)
File "", line 1222, in template_1388
File "", line 1157, in t_call_content
File "", line 1109, in t_call_content
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 223, in render_template
raise QWebException("Error when render the template", self, options,
Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "/project/src/odoo/odoo/addons/base/models/ir_http.py", line 237, in _dispatch
result = request.dispatch()
File "/project/src/odoo/odoo/http.py", line 810, in dispatch
r = self._call_function(**self.params)
File "/project/src/odoo/odoo/http.py", line 359, in _call_function
return checked_call(self.db, *args, **kwargs)
File "/project/src/odoo/odoo/service/model.py", line 94, in wrapper
return f(dbname, *args, **kwargs)
File "/project/src/odoo/odoo/http.py", line 351, in checked_call
result.flatten()
File "/project/src/odoo/odoo/http.py", line 1277, in flatten
self.response.append(self.render())
File "/project/src/odoo/odoo/http.py", line 1270, in render
return env["ir.ui.view"]._render_template(self.template, self.qcontext)
File "/project/src/odoo/odoo/addons/base/models/ir_ui_view.py", line 1980, in _render_template
return self.browse(self.get_view_id(template))._render(values, engine)
File "/project/src/odoo/addons/website/models/ir_ui_view.py", line 433, in _render
return super(View, self)._render(values, engine=engine, minimal_qcontext=minimal_qcontext)
File "/project/src/odoo/addons/web_editor/models/ir_ui_view.py", line 29, in _render
return super(IrUiView, self)._render(values=values, engine=engine, minimal_qcontext=minimal_qcontext)
File "/project/src/odoo/odoo/addons/base/models/ir_ui_view.py", line 1988, in _render
return self.env[engine]._render(self.id, qcontext)
File "/project/src/odoo/odoo/tools/profiler.py", line 289, in _tracked_method_render
return method_render(self, template, values, **options)
File "/project/src/odoo/odoo/addons/base/models/ir_qweb.py", line 76, in _render
result = super()._render(template, values=values, **compile_options)
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 134, in _render
result = ''.join(rendering)
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 221, in render_template
raise e
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 219, in render_template
yield from compiled_fn(self, values, log)
File "", line 186, in template_190
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 221, in render_template
raise e
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 219, in render_template
yield from compiled_fn(self, values, log)
File "", line 29, in template_189
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 221, in render_template
raise e
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 219, in render_template
yield from compiled_fn(self, values, log)
File "", line 1222, in template_1388
File "", line 1157, in t_call_content
File "", line 1109, in t_call_content
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 223, in render_template
raise QWebException("Error when render the template", self, options,
odoo.addons.base.models.qweb.QWebException: Expected singleton: res.users()
Traceback (most recent call last):
File "/project/src/odoo/odoo/models.py", line 5199, in ensure_one
_id, = self._ids
ValueError: not enough values to unpack (expected 1, got 0)

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/project/src/odoo/odoo/addons/base/models/qweb.py", line 219, in render_template
yield from compiled_fn(self, values, log)
File "", line 5, in template_1741
File "/project/src/odoo/addons/website_sale_stock/models/website.py", line 28, in sale_get_order
so = super().sale_get_order(force_create=force_create, code=code, update_pricelist=update_pricelist, force_pricelist=force_pricelist)
File "/project/src/odoo/addons/website_sale/models/website.py", line 250, in sale_get_order
if not sale_order_id and not self.env.user._is_public():
File "/project/src/odoo/odoo/addons/base/models/res_users.py", line 905, in _is_public
self.ensure_one()
File "/project/src/odoo/odoo/models.py", line 5202, in ensure_one
raise ValueError("Expected singleton: %s" % self)
ValueError: Expected singleton: res.users()

Error when render the template
ValueError: Expected singleton: res.users()
Template: website_sale.header_cart_link
Path: /t/t[1]
Node:


0
Аватар
Відмінити
Аватар
AGILE BUSINESS TECHNOLOGIES
Автор Найкраща відповідь

We figured it out. The working code is:

# -*- coding: utf-8 -*-
from
odoo import http
from odoo.addons.web.controllers import main


class Home(main.Home):

@http.route('/web/login')
def web_login(self, *args, **kw):
return super().web_login(*args, **kw)



Apparently, the web_login method was also modified in the website module to add some options to the http.route decorator for public access purposes which makes sense when you have the website module installed.
The cause of the error we are getting is that we undid the changes made by the website module by re-setting the options of the http.route decorator in our custom code. As noticed in the working code above, we removed those options.


0
Аватар
Відмінити
Аватар
Waleed Ali Mohsen
Найкраща відповідь

Try the below:

 @http.route('/web/login', type='http', auth="none")
def web_login(self, redirect=None, **kw):
res = super(ProductivityCardHome, self).web_login(redirect=redirect, **kw)
return res


1
Аватар
Відмінити
AGILE BUSINESS TECHNOLOGIES
Автор

Hi @Waleed. Thank you for taking the time to answer our question. We updated the code as you suggested but still getting the same error.

Enjoying the discussion? Don't just read, join in!

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

Реєстрація
Related Posts Відповіді Переглядів Дія
log in controller with react
login controllers
Аватар
0
лист. 23
2290
Controller ignoring args Вирішено
controllers arguments http.route
Аватар
Аватар
Аватар
2
груд. 22
8825
Properly inherit web controller and overwrite web_login method Вирішено
inheritance login controllers
Аватар
Аватар
Аватар
3
трав. 21
14960
Force authentication of a web page
login controllers odoo
Аватар
Аватар
1
лист. 20
7415
Controller giving 404 Error
controllers
Аватар
Аватар
Аватар
2
серп. 25
3603
Спільнота
  • Навчальний посібник
  • Документація
  • Форум
Open Source
  • Завантаження
  • Github
  • Runbot
  • Переклади
Послуги
  • Хостинг Odoo.sh
  • Підтримка
  • Оновлення
  • Кастомні доробки
  • Навчання
  • Знайдіть бухгалтера
  • Знайдіть партнера
  • Стати партнером
Про нас
  • Наша компанія
  • Торгові активи
  • Зв'яжіться з нами
  • Вакансії
  • Події
  • Подкаст
  • Блог
  • Клієнти
  • Юридичні документи • Конфіденційність
  • Безпека
الْعَرَبيّة 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 - це набір програм для роботи з відкритим кодом, які охоплюють всі ваші потреби компанії: CRM, електронна комерція, бухгалтерський облік, склад, точка продажу, управління проектами тощо.

Унікальна пропозиція Odoo - це одночасно дуже проста у використанні та повністю інтегрована.

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