Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Artificial Intelligence
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Property Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

SQL Error when routing incoming emails from catchall

Subscribe

Get notified when there's activity on this post

This question has been flagged
contactfetchmailsql
3295 Views
Avatar
ALLIASYS

Hi,

I get the following error (in Odoo log file) when a partner replies to an email sent from any Odoo form:

odoo14 odoo.sql_db: bad query: SELECT "res_partner".id FROM "res_partner" WHERE ((("res_partner"."id" in (%s)) AND ("res_partner"."active" = %s)) AND (("res_partner"."type" != %s) OR "res_partner"."type" IS NULL)) ORDER BY "res_partner"."display_name" 
ERROR: can't adapt type 'res.partner' 
2022-11-16 10:51:21,815 1 [1;32m[1;49mINFO[0m odoo14 odoo.addons.fetchmail.models.fetchmail: Failed to process mail from imap server myemailadress. 
Traceback (most recent call last):
 File "/usr/lib/python3/dist-packages/odoo/addons/fetchmail/models/fetchmail.py", line 192, in fetch_mail
 res_id = MailThread.with_context(**additionnal_context).message_process(server.object_id.model, data[0][1], save_original=server.original, strip_attachments=(not server.attach))
 File "/usr/lib/python3/dist-packages/odoo/addons/mail/models/mail_thread.py", line 1145, in message_process
 thread_id = self._message_route_process(message, msg_dict, routes)
 File "/usr/lib/python3/dist-packages/odoo/addons/mass_mailing/models/mail_thread.py", line 28, in _message_route_process
 return super(MailThread, self)._message_route_process(message, message_dict, routes)
 File "/mnt/extra-addons/mail_tracking/models/mail_thread.py", line 45, in _message_route_process
 return super()._message_route_process(message, message_dict, routes)
 File "/usr/lib/python3/dist-packages/odoo/addons/mail/models/mail_thread.py", line 1056, in _message_route_process
 thread = ModelCtx.message_new(message_dict, custom_values)
 File "/mnt/extra-addons/helpdesk_mgmt/models/helpdesk_ticket.py", line 221, in message_new
 ticket.message_subscribe(partner_ids)
 File "/usr/lib/python3/dist-packages/odoo/addons/mail/models/mail_thread.py", line 2714, in message_subscribe
 partner_ids = self.env['res.partner'].sudo().search([('id', 'in', partner_ids), ('active', '=', True), ('type', '!=', 'private')]).ids
 File "/mnt/extra-addons/partner_multi_relation/models/res_partner.py", line 169, in search
 count=count,
 File "/mnt/extra-addons/partner_contact_in_several_companies/models/res_partner.py", line 71, in search
 args, offset=offset, limit=limit, order=order, count=count
 File "/usr/lib/python3/dist-packages/odoo/models.py", line 1709, in search
 return res if count else self.browse(res)
 File "/usr/lib/python3/dist-packages/odoo/models.py", line 4982, in browse
 if not ids:
 File "/usr/lib/python3/dist-packages/odoo/osv/query.py", line 172, in __bool__
 return bool(self._result)
 File "/usr/lib/python3/dist-packages/odoo/tools/func.py", line 26, in __get__
 value = self.fget(obj)
 File "/usr/lib/python3/dist-packages/odoo/osv/query.py", line 165, in _result
 self._cr.execute(query_str, params)
 File "/mnt/extra-addons/slow_statement_logger/__init__.py", line 38, in execute
 return super().execute(query, params, log_exceptions)
 File "", line 2, in execute
 File "/usr/lib/python3/dist-packages/odoo/sql_db.py", line 101, in check
 return f(self, *args, **kwargs)
 File "/usr/lib/python3/dist-packages/odoo/sql_db.py", line 300, in execute
 res = self._obj.execute(query, params)
psycopg2.ProgrammingError: can't adapt type 'res.partner'
2022-11-16 10:51:22,011 1 [1;32m[1;49mINFO[0m odoo14 odoo.addons.fetchmail.models.fetchmail: Fetched 1 email(s) on imap server myemailaddress; 0 succeeded, 1 failed.


I tried uninstalling the modules " partner_contact_in_several_companies " and " partner_multi_relation " but it is the same.

Help would be appreciated.

Regards

Yves

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

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

Sign up
Related Posts Replies Views Activity
Agregar tipo de identificación / add type identification
contact
Avatar
Avatar
1
Oct 25
3535
Contact Module: Field Customization for Individuals vs. Companies Not Working as Expected Solved
contact
Avatar
Avatar
2
Jul 25
2942
Documentation for configuring the fetchmail.server view in Odoo
fetchmail
Avatar
0
Nov 24
3335
Share Contact to all apps in Odoo including CRM / email marketing
contact
Avatar
Avatar
1
Sep 24
2832
Usage Of SQl Queries In odoo
sql
Avatar
Avatar
1
Nov 22
9697
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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