1

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

null
    • Fred
    • 3 wk ago
    • Reported - view

    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.

      • Alain.2
      • 3 wk ago
      • Reported - view

      Thank you very much, . You are right.

      Nevertheless, despite the option :

      pdfVersion: 16
      

      the generated PDF file is still in version 1.3 (and cannot integrate JSON).

      Any idea to fix this?

      • Fred
      • 2 wk ago
      • Reported - view

       can you post your template and some sample JSON code?

    • Alain.2
    • 2 wk ago
    • Reported - view

    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.

      • Fred
      • 2 wk ago
      • Reported - view

      how about your template?

    • Fred
    • 2 wk ago
    • Reported - view

    Here is a test template and a sample output.

    I changed the pdfVersion to 16 and it printed out in version 1.6.

    • Alain.2
    • 2 wk ago
    • Reported - view

    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")
    
    • Fred
    • 2 wk ago
    • Reported - view
     said:
    I have no template. The JSON is generated on the fly by this script

    Just 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.

      • Alain.2
      • 2 wk ago
      • Reported - view

       

      I don't use a carbon template.

      Currently :

      • I generate a structured JSON via a Ninox script (with the invoice data).
      • I'm trying to convert this JSON to PDF via printAndSaveRecord, but without a layout template.

      Reading you, I imagine that my problem probably stems from the fact that Ninox requires a Carbon template to structure the PDF, even though I already have the data in JSON...

      • Fred
      • 2 wk ago
      • Reported - view

      That is correct. Please review the Dynamic Printing section of the Documentation.

      The printAndSaveRecord() command uses dynamic printing so you need later for the former to work.

    • Alain.2
    • 2 wk ago
    • Reported - view

    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.

      • Fred
      • 2 wk ago
      • Reported - view

      I find using Carbone Studio a faster way to develop templates, especially if you are using JSON. You can see my reasons in this post.