Skip to main content

Show Posts

This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.

Messages - babacar

1
Issues / Re: Chart Component not rendered correctly
Hi,
Correct, RandomDifferentColor still not works. We have to chose "CHOOSE COLOR" option but does not make sense beacause customers need to vizualise when color on charts are different. Hope Next version will handle this. Still using 2.7.3 version
Thanks
2
Bugs / Error on redirect page
Hi,
I was configuring an invoice form and in invoices_items add page, i set the add invoice form as master form . Now when i try to add record , datas are well inserted in the database (invoice table and invoices_item table), but i get this error attached on the redirect page.
Any guidance ?
7
Issues / Chart Component not rendered correctly
Hi am facing an issue with Char Component . When i add a pie chart to the home page i can't see the chart color like attachements you can see below
8
General Discussion / Re: Invoice number format
Hi @willvin , here is the code
Code: [Select]
<?php 
   $ref = null;
 
if(date('Y') == date('Y',strtotime($inv_ref->date_facture)))
{
$temp = substr($inv_ref->id_facture,0,6);
$temp_ref = $temp + 1;
$ref = str_pad((int)$temp_ref,6,"0",STR_PAD_LEFT);
}else{
$init = 0;
$ref = str_pad((int)$init,6,"0",STR_PAD_LEFT);
$ref = date('Y',strtotime($inv_ref->date_facture)) + 1;
}
  ?>

Thanks
9
General Discussion / Invoice number format
Hi,
i'am developping an app with a part of invoice and invoice items. So i have a code developed 3 yers ago with another php framework to handle invoice number generation like this format : 00001-2020-04 (00001 the number supposed to be incremented and reseted every year - 2020: the year - 04: the month).
Where in PhpRAD i should paste the code so the invoice_number field to prefill when the form is opened ?

Thank you
11
Bugs / Dependent dropdow error
Hi,
I noticed that afer configuring a dependent dropdown (Like Country and Cities ) , all confirations are gone after i restard PhpRAD. When i look into the dubugger console a can error genared by the DevTools as you could see in the attached screenshot.
It is a bug or i missed something on the configurations ?
Thanks