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
    • Property Management
    • 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
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

api request

Odoberať

Get notified when there's activity on this post

This question has been flagged
functionapibutton
2506 Zobrazenia
Avatar
Koffi Esaie Mawuto Labah

Please i need help 

i'm trying to send a request from odoo to an api ,i create a function to send the request but i have an error 


import requests

from requests.auth import HTTPBasicAuth

from odoo import models, fields, api

from odoo.exceptions import UserError

import logging


_logger = logging.getLogger(__name__)


class LaboratoryRequest(models.Model):

    _inherit = 'acs.laboratory.request'


    def send_request_to_api(self,**kwargs):

        # Préparer les données

        try:

            data = {

                "count": 1,

                "results": [

                    {

                        "request_id": self.id,

                        "x_studio_code_demande": self.x_studio_code_demande or "",

                        "id": self.id,

                        "name": self.name,

                        "patient_id": self.patient_id.id,

                        "x_studio_nom_patient": self.patient_id.name or "",

                        "x_studio_code_patient": self.x_studio_code_patient or "",

                        "x_studio_date_naissance": self.x_studio_date_naissance or "",

                        "x_studio_sexe": self.x_studio_sexe or "",

                        "sample_ids": [

                            {

                                "id": sample.id,

                                "name": sample.name,

                                "test_ids": [

                                    {

                                        "id": test.id,

                                        "name": test.name,

                                        "x_studio_valeur_automate": test.x_studio_valeur_automate or "",

                                        "x_studio_unit_automate": test.x_studio_unit_automate or ""

                                    } for test in sample.test_ids

                                ]

                            } for sample in self.sample_ids

                        ],

                        "user_id": self.user_id.id,

                        "x_studio_automate": self.x_studio_automate or "",

                        "date_requested": self.date_requested,

                        "date_analysis": self.date_analysis,

                    }

                ]

            }


            # URL et authentification

            url = "https://..................."

            auth = HTTPBasicAuth('SIL_......', '.......')


            # Envoyer les données avec une requête POST

            _logger.info(f"Envoi des données à {url} : {data}")

            response = requests.post(url, json=data, auth=auth)


            # Vérifier la réponse

            response.raise_for_status()  # Cela lèvera une exception pour les statuts d'erreur HTTP

            _logger.info(f"Réponse de l'API : {response.json()}")

        except requests.exceptions.RequestException as e:

            raise UserError(f"Erreur de connexion à l'API : {str(e)}")

        except Exception as e:

            raise UserError(f"Erreur : {str(e)}")


        return True


and the error when i click on the button 


RPC_ERROR

Odoo Server Error

Traceback (most recent call last):

  File "/usr/lib/python3/dist-packages/odoo/https://erp.cliniquebiasa.org/web/assets/b766502/web.assets_web.min.js:2877:13)

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
Related Posts Replies Zobrazenia Aktivita
Odoo API
function api
Avatar
2
aug 18
5073
How to open a wizard with yes or no buttons (Odoo 14) Solved
function button Buttons
Avatar
Avatar
Avatar
2
sep 22
10312
[Odoo 10] Update view calling function from another model using button? Solved
function button odoo10.0
Avatar
Avatar
4
mar 19
10777
New api search domain id and condition? Solved
function domain api
Avatar
Avatar
1
okt 15
10242
How to connect button with function? Solved
function form inherit button
Avatar
Avatar
Avatar
3
dec 23
21491
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 Svenska ภาษาไทย 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