Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

How do I know which Model(s), method(s) and field(s) to use when I like to send an invoice (by mail) to the invoicee via the external API?

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
apiinvoicing
1 Răspunde
794 Vizualizări
Imagine profil
Mathew Hucks

Dear all, 

I'm trying to send an invoice to the invoicee via the External API. (using this package: Ang3 php-odoo-api-client) 

How can I know which Models / Methods / Fields to use in order to send this mail, with the invoice? 

I'm trying to find out via various ways: checking the External API docs, searching through the Odoo forum, searching online (tutorials, ..). 
The External API docs don't help. 
Couldn't find a relevant / recent Odoo forum post
Online tutorials, via YouTube videos are mostly done by non native-english speaking people so hard to follow. 

I've found several things about using the wizard programmatically in order to send the mail. 
First composing the message (via the wizard?) and then sending it via an additional API call? 

I'd like to find out for versions 17, 18 and 19. 

Looking for a push in the right direction

Thanking you in advance. 


0
Imagine profil
Abandonează
Mathew Hucks
Autor

@Ray Carnes: Thank you for your reply.
I'm adding this comment to my post, instead of your answer, because for some reason it's not allowing me to.

I'm trying to check the request-logs via Chrome's developer bar, to see which requests are being done.
That gives me some clarity, but not all the way. For example, I don't see where / how requests are getting their input from. I can guess based on other API requests that are done, but this way of working will cost me hours if not days to completely find out how to do it.

I have an implementation (made in 2022) in our codebase that works for Odoo version 17. I'm not sure if I can keep this for version 18 with some small changes here and there? When I compare what I see in my codebase (for version 17) it does have quite a lot of differences with what I see in the request logs (when connected to a trial (v19) environment).

For what it's worth, here's the (PHP) implementation that I have for v17:

$invoice = $this->accountMoveRepository->find($this->invoice->external_id);
if (! $invoice) {
throw UnableToSendInvoiceException::invoiceDeleted();
}

try {
// Ensure invoice is posted.
$this->accountMoveRepository->update($this->invoice->external_id, ['state' => 'posted']);

$actionSendAndPrint = $this->odoo->api()->call('account.move', 'action_send_and_print', [(int)($this->invoice->external_id)]);
if (empty($actionSendAndPrint['context']['default_template_id'])) {
// This exception is being thrown when connected to Odoo v18
throw UnableToSendInvoiceException::unknownDefaultTemplateId();
}

$response = $this->odoo->api()->call(
'account.invoice.send',
OrmQuery::CREATE,
[
[
'invoice_ids' => [(int)$this->invoice->external_id],
'composition_mode' => 'comment',
'template_id' => $actionSendAndPrint['context']['default_template_id'],
'is_email' => true,
],
],
[
'context' => [
'active_ids' => [(int)$this->invoice->external_id],
'active_id' => (int)$this->invoice->external_id,
'active_model' => 'account.move',
],
]
);

$this->odoo->api()->call(
'account.invoice.send',
'onchange_is_email',
[(int)($response)],
[
'context' => [
'active_ids' => [(int)$this->invoice->external_id],
'active_id' => (int)$this->invoice->external_id,
'active_model' => 'account.move',
],
]
);

$this->odoo->api()->call('account.invoice.send', 'send_and_print_action', [(int)($response)]);
} catch (RemoteException $e) {
throw OdooUserApiException::fromRequestException($e);
}

Imagine profil
Ray Carnes (ray)
Cel mai bun răspuns

The easiest and fastest way is to review the Odoo logs (setup to surface the API calls) via either your Odoo.sh staging branch, or your own on premise Odoo installation.

See https://www.odoo.com/forum/help-1/how-can-i-see-which-api-calls-are-made-to-learn-what-odoo-is-doing-at-specific-times-183911

You do what you want to do via code via the UI, and monitor what API calls the web client makes at each step.

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Convert an order sale to invoice using Odoo 8 API Rezolvat
api invoicing odooV8
Imagine profil
Imagine profil
Imagine profil
2
ian. 19
5126
How do I get Product Prices with json API? Rezolvat
api
Imagine profil
Imagine profil
1
nov. 25
3170
Has anyone integrated Helpdesk with Zoom for meeting scheduling?
api
Imagine profil
Imagine profil
1
aug. 25
1460
Using API check if Odoo is using Odoo sh or on-premises hosting. Rezolvat
api
Imagine profil
Imagine profil
1
aug. 25
1881
External API XMLRPC Authentication Keeps Replying with false
api
Imagine profil
Imagine profil
Imagine profil
2
iul. 25
4855
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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