Issue with Embedding JSON and Forcing PDF
Hello,
I’m encountering persistent issues when trying to embed a JSON object into a PDF generated with Ninox on macOS 15.3. Here’s the context:
1. I have a calculated field (eJSONinvoice) that generates the JSON data for the invoice:
let invoiceData := {
numero_facture: No,
date_emission: Date,
Client_Nom: Client.Nom,
Client_TVA: Client.TVA,
Communication: Communication,
monnaie: "EUR",
totaux: {
total_ht: Tot_htva,
total_tva: Tot_tva,
total_ttc: Tot_ttc
},
lignes_facture: for line in Ventes do
{
description: line.Objet,
quantite: line.Nb,
prix_unitaire_ht: line.Prix_unitaire,
total_ht: line.Prix_total,
taux_tva: line.Taux_tva,
montant_tva: line.Total_tva,
total_ttc: line.Total_ttc
}
end,
_options: {
pdfVersion: 16 // Attempting to force PDF version 1.6
}
};
formatJSON(invoiceData)
2. The button to generate the PDF is configured as follows:
if text(Client.Langue) = "FR" then
importFile(this, printAndSaveRecord(this, "Facture_FR", eJSONinvoice), "Facture " + No + ".pdf")
else
importFile(this, printAndSaveRecord(this, "Facture_EN", eJSONinvoice), "Facture " + No + ".pdf")
end
Problems are that :
- The generated PDF is still in version 1.3, despite specifying pdfVersion: 16 in _options.
- The JSON object is not embedded in the PDF—neither in the metadata nor the content.
Thank you in advance for your help!
12 replies
-
May I recommend that you remove the formatJSON() from your formula field. You only need it if you want to display the JSON data. As the documentation says,
This function converts a JSON object to a string.
You want a JSON object so Carbone can process the data.
It should work after that. I created something similar and it worked withOUT the formatJSON() command and stopped working once I added it.
-
Hi ,
Here is a sample JSON code :
{"numero_facture":3394,"date_emission":1741820400000,"Client_Nom":"Garrigue","Client_TVA":"N/A","Communication":"Votre aimable commande #13976 payée par Stripe #ch_3R2It9JagBOmxBbc0R6fE7KI","monnaie":"EUR","totaux":{"total_ht":22.96,"total_tva":1.38,"total_ttc":24.34},"lignes_facture":[{"description":"AVK360_p: L'Œuvre au rouge [parts] for cello quartet (LYSIGHT, Michel) [PDF file]","quantite":1,"prix_unitaire_ht":22.96,"total_ht":22.96,"taux_tva":6,"montant_tva":1.38,"total_ttc":24.34}],"_options":{"pdfVersion":3}}
Thank you for your help.
-
Here is a test template and a sample output.
I changed the pdfVersion to 16 and it printed out in version 1.6.
-
Thank you . I have no template. The JSON is generated on the fly by this script :
let invoiceData := { numero_facture: No, date_emission: Date, Client_Nom: Client.Nom, Client_TVA: Client.TVA, Communication: Communication, monnaie: "EUR", totaux: { total_ht: Tot_htva, total_tva: Tot_tva, total_ttc: Tot_ttc }, lignes_facture: for line in Ventes do { description: line.Objet, quantite: line.Nb, prix_unitaire_ht: line.Prix_unitaire, total_ht: line.Prix_total, taux_tva: line.Taux_tva, montant_tva: line.Total_tva, total_ttc: line.Total_ttc } end, _options: { pdfVersion: 16 } }; invoiceData
and the PDF by this one :
importFile(this, printAndSaveRecord(this, "Facture_FR", eJSONinvoice), "Facture " + No + ".pdf")
-
said:
I have no template. The JSON is generated on the fly by this scriptJust to be clear, you are trying to print a dynamic print layout?
If you are then you need a template that follows Carbone coding. What did you upload when you created the dynamic print layout?
You can import the template I uploaded into the print layout and see if that works.
-
Thank you so much... I was wrong from the start.
I'm now going to use this route, but everything should be back to normal.
Thanks a lot for the help.
Content aside
- Status Answered
-
1
Likes
- 2 wk agoLast active
- 12Replies
- 66Views
-
2
Following