Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt

Starting on January 1st, 2025, invoices in France will have to mention the SIREN. Also, the shipping address must be displayed if different from the invoice address.

Solution

SIREN and shipping address information are available in following documents:

  • Order receipt
  • Order summary
  • File summary
  • Invoice

SIREN number

Set-up the value of the SIREN

The operator has to set the SIREN in the organization's administrative numbers

Display the SIREN on documents

Order summary

Add following instruction at the place you would like to display the SIREN:

#if($orderReceipt.siren.length() > 0)#space(5)SIREN CODE : #display($orderReceipt.siren, 22, 'LEFT')#end

Order summary and file summary

Add following instruction at the place you would like to display the SIREN:

{#if($document.organization.legalInformation.get("ADMIN_NUM/SIREN"))
}{SIREN code: $document.organization.legalInformation.get("ADMIN_NUM/SIREN")}{#end}

Then, the operator has to add the following instructions

...