{[ "type": "select", "name": "idconto['.$i.']", "no-label": 1, "value": "'.$rs[$i]['idconto'].'", "ajax-source": "conti" ]}
| ';
//Importo dare e avere
if( $rs[$i]['totale']>0 ){
$value_dare = $rs[$i]['totale'];
$value_avere = '';
}
else if( $rs[$i]['totale']<0 ){
$value_dare = '';
$value_avere = -$rs[$i]['totale'];
}
else{
$value_dare = '';
$value_avere = '';
}
//Dare
echo '
{[ "type": "text", "class": "inputmask-decimal", "name": "dare['.$i.']", "no-label": 1, "value": "'.$value_dare.'", "disabled": 1]}
| ';
//Avere
echo '
{[ "type": "text", "class": "inputmask-decimal", "name": "avere['.$i.']", "no-label": 1, "value": "'.$value_avere.'", "disabled": 1]}
|
';
}
//Totale per controllare sbilancio
echo "\nTotale: | \n";
if( $totale_dare != $totale_avere ){
$class = "text-danger";
$txt = "sbilancio di ".number_format($totale_dare-$totale_avere, get_var("Cifre decimali"), ",", ".")." €";
}
else{
$class = "";
$txt = "";
}
//Totale dare
echo "\n";
echo " ".number_format( $totale_dare, get_var("Cifre decimali"), ",", "." )." €\n";
echo " | \n";
//Totale avere
echo "\n";
echo " ".number_format( $totale_avere, get_var("Cifre decimali"), ",", "." )." €\n";
echo " |
\n";
//Verifica sbilancio
echo "