This topic is locked
[SOLVED]

 not list the cash value equals 0.00

8/28/2013 6:32:39 AM
PHPRunner General questions
O
onlline author

Hi,
I would not list ,display, print and export the cash value equals 0.00


Thanks in advanced

C
cgphp 8/28/2013

You can set the field as Custom:

if($value == 0.00)

{

$value = '';

}
O
onlline author 8/31/2013



You can set the field as Custom:

if($value == 0.00)

{

$value = '';

}



Cristian,
worked for the LISTPAGE and PRINTPAGE, but export to excel continues to export value 0.00
Thanks in advanced

C
cgphp 8/31/2013

In the "Before export record" event, enter this code:

if($data['saida'] == 0.00)

{

$values['saida'] = '';

}
O
onlline author 8/31/2013



In the "Before export record" event, enter this code:

if($data['saida'] == 0.00)

{

$values['saida'] = '';

}



Cristian,
Perfect
Thanks