<div dir="ltr">Hi Dimitri,<br><br>To change the number format in the invoice, open CreatePDF.pfh file which is in the repositry:<br>/www/vtigercrm/modules/Invoice<br><br>In line 123, you&#39;ll find:<br><br>$price_total = number_format($final_details[&quot;grandTotal&quot;],2,&#39;,&#39;,&#39;.&#39;);<br>
<br>Here you can change the separator. For example if you want to have thi format number:<br>1?000!000 <br>Do as this:<br>$price_total = number_format($final_details[&quot;grandTotal&quot;],2,&#39;!&#39;,&#39;?&#39;);<br>
<br>Best regards<br>Amine FELLAHI<br>Sirius NET<br>Site: <a href="http://www.snet-dz.com">http://www.snet-dz.com</a><br></div>