Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

How do I get a PDF of an Invoice via PHP?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
xmlrpcreports
2 Respostes
9311 Vistes
Avatar
Yaidel Ferrales

I'm trying to get an invoice in it's pdf version , but the example en the docs only guide me to this result:

array (size=2)
  'faultCode' => int 2
  'faultString' => string 'None' (length=4)

I've been trying to find what the faultCode 2 means but no luck at all. Can you provide me any working example or documentation? I'm using this source code:

<?php

require_once('ripcord.php');

$url = "http://xxx.viennaresidence.com";

$db = "odoo.yaidel";

$username = "development@worldwideresidence.com";

$password = "xxx";

$common = ripcord::client("$url/xmlrpc/2/common");

$uid = $common->authenticate($db, $username, $password, array());

$models = ripcord::client("$url/xmlrpc/2/object");

$invoice_ids = $models->execute_kw(

$db, $uid, $password,

'account.invoice', 'search',

array(

array(

array(

'type',

'=',

'out_invoice'

),

array(

'state',

'=',

'open'

)

)

)

);

/*

var_dump($models->execute_kw(

$db, $uid, $password,

'ir.actions.report.xml', 'fields_get',

array(),

array('attributes' => array('string', 'help', 'type'))

));

*/

echo "<b>Invoices Opened</b>";

var_dump($invoice_ids);

$report = ripcord::client("$url/xmlrpc/2/report");

/*

echo "<b>Report XMLRPC Object</b>";

var_dump ($report);

*/

$result = $report->render_report(

$db, $uid, $password,

'account.report_invoice', 8);

/*

echo "<b>Report XMLRPC Object after Call</b>";

var_dump ($report);

*/

echo "<b>Result of calling the Render Report</b>";

if (isset($result['faultCode'])) {

var_dump($result);

} else {

$report_data = base64_decode($result['result']);

}

?>

Thanks in advance.

1
Avatar
Descartar
Avatar
Jérémy Kersten (jke)
Best Answer

Hello, I have just tested on 9.0 and master and it works without any problem.


Could you check your log to see the tracebackthat is raised... ?


Here my test on runbot.


<?php
    // V9
$url = "http://148681-9-0-7f9942-all.runbot8.odoo.com";
$db = "148681-9-0-7f9942-all";

// master
$url = "http://148647-master-6a4306-all.runbot9.odoo.com";
$db = "148647-master-6a4306-all";

$username = "admin";
$password = "admin";

require_once('ripcord.php');
$common = ripcord::client("$url/xmlrpc/2/common");
$uid = $common->authenticate($db, $username, $password, array());
$models = ripcord::client("$url/xmlrpc/2/object");
$invoice_ids = $models->execute_kw($db, $uid, $password, 'account.invoice', 'search', array(
array(
array('type', '=', 'out_invoice'),
array('state', '=', 'open')
)
));
$report = ripcord::client("$url/xmlrpc/2/report");
$result = $report->render_report($db, $uid, $password, 'account.report_invoice', array($invoice_ids[0]));
$report_data = base64_decode($result['result']);
header('Content-Type: application/pdf');
echo $report_data;
?> 

UPDATE MY PREVIOUS ANSWER

After some investigations in your database, it appears that you customize the report invoice and delete the default one. So 'account.report_invoice' doesn't exists anymore and has been replaced by report 'customized_invoice.invoice_report'.

You probably have some tracebacks in your log with msg like "ValueError: "Required report does not exist: account.report_invoice" "  :)

So just replace:

$result = $report->render_report($db, $uid, $password, 'account.report_invoice', array($invoice_ids[0]));

by

$result = $report->render_report($db, $uid, $password, 'customized_invoice.invoice_report', array($invoice_ids[0]));

And it should work... like a charm


1
Avatar
Descartar
Avatar
Yaidel Ferrales
Autor Best Answer

Thanks, for the reply. Just as you said, the problem was the template. I changed the account.invoice and I got my first PDF. So once again thank you.

0
Avatar
Descartar
Jérémy Kersten (jke)

Hello Seems that I forgot to post my last answer :( But after some investigations, I found the error ... You have renamed the default report 'account.report_invoice' by customized_invoice.xxx! So the error was because it doesn't find the report name !

Jérémy Kersten (jke)

I find it... So I have uptaded the previous answer. Have fun with Odoo !

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

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

Registrar-se
Related Posts Respostes Vistes Activitat
Odoo Reports
xmlrpc reports PHP
Avatar
1
de febr. 24
1821
Code for page number in Body of Pdf report
reports
Avatar
Avatar
Avatar
2
d’oct. 25
3192
How to increase the width of a column on odoo quotation PDF?
reports
Avatar
Avatar
1
d’oct. 25
1009
Odoo Online (SaaS 18.4 Enterprise) – How to modify invoice report header without affecting other reports but keep default table content
reports
Avatar
Avatar
1
d’ag. 25
1613
xmlrpc Error when attempting to connect to my local instance Solved
xmlrpc
Avatar
Avatar
Avatar
3
de jul. 25
4207
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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