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

Problem when fetching a data from a many2many field

Odoberať

Get notified when there's activity on this post

This question has been flagged
jsoncontrollersodoopostman
1 Odpoveď
4406 Zobrazenia
Avatar
Webmaster jr2

Good morning what happens is that I am developing a controller to bring some data from the field service module since I am developing a mobile application, the drawback is that when I call a many2many table I get the following error


"Expected singleton: fsm.person(865, 867)"


My code

class Reports(http.Controller): @http.route('/get_reports', type="json", auth='user') 

def get_all_reports(self): 

# Get all reports 

reports_rec = request.env['fsm.order'].search([]) 

reports = [] 

tabla = [] 

for x in reports_rec: 

Inicio = { 

'name': x.name, 

'id': x.id, 

'type': x.type.name, 

'template_id': x.template_id.name, 

'project_id': x.project_id.name, 

'project_task_id': x.project_task_id.name,

'priority': x.priority, 

'tag_ids': x.tag_ids.name, 

'centro_costos': x.centro_costos.name, 

'cajero': x.cajero, 

'person_id': x.person_id.name, 

'anotaciones': x.anotaciones, 

'tipo_unidad': x.tipo_unidad, 

'tdv': x.tdv } 

Descripcion = { 

'description': x.description, 

} 

Planificacion = {

 'Requisitos': [ { 

'category_ids': x.category_ids.name, 

'request_early': x.request_early, 

'request_late': x.request_late }], 

'Detalles del Horario': [ { 

'sheduled_date_start': x.scheduled_date_start, 

'sheduled_duration': x.scheduled_duration,

 'sheduled_date_end': x.scheduled_date_end }], } 

for y in x.person_ids.name: 

var = { 

'Solicitar Trabajadores': [ 

{ 

'name': y.name, 

'category_ids': y.category_ids.name,

 'phone': y.phone,

 'email': y.email } ] }

tabla.append(var)

reports.append(Inicio) 

reports.append(Descripcion) 

reports.append(Planificacion) 

reports.append(tabla)
data = {'status': 200, 'response': reports, 'message': 'Success', } 

return data

0
Avatar
Zrušiť
Avatar
Waleed Mohsen (CorTex IT Solutions)
Best Answer

You have this incorrect loop for y in x.person_ids.name: and it should be
for y in x.person_ids:

0
Avatar
Zrušiť
Webmaster jr2
Autor

You were right but I still get the error what happens is that I want to bring these two fields or if more are added to a json-type controller
https://postimg.cc/njpWLcdj
because when I add that second field to the table I get the error of
"Expected singleton: fsm.person(865, 867)"

Waleed Mohsen (CorTex IT Solutions)

maybe the error showing by another code

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
How to redirect to some url in website from json type method in controller?
json controllers redirect odoo v13
Avatar
Avatar
Avatar
2
jún 24
12078
How to redirect a controller from portal to fieldservice backend for users who are not backend users
controllers odoo
Avatar
Avatar
1
jún 23
3781
how to solve " AttributeError: 'function' object has no attribute 'routing_type' " problem in Odoo
json odoo
Avatar
0
júl 17
15366
How to parse a JSON i PYTHON with ODOOO9?
json odoo
Avatar
0
jan 16
5021
Why does odoo use XML not JSON ? Solved
xml json odoo
Avatar
Avatar
1
mar 25
1311
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