modifier le fichier rpanalytique/R_Jsba_DisplayTotalAccount.php ligne 61 on rajoute a la fin de ligne de tableau

[PHP]
	<?php
	if (!empty($L_AccountCredit) && !empty($L_AccountDebit) )
	{
	?>
	<tr class="Texte">
	 <td></td>
	 <td></td>
	 <td></td>
	 <td></td>
	 <td align="left"><font  size="2"><b><?=$CST_Session_WTotal;?> : <?=fct_extractbdd($L_PreviousAccount);?></b></font></td>
	 <?php
	 	if ($L_AccountDebit>$L_AccountCredit)
		{
			?> 
			<td align="right"><font  size="2"><b><?=fct_delete_zero(FormatMoney($L_AccountDebit-$L_AccountCredit));?></b></font> </td>
			<td align="right"><font  size="2"><b></b></font> </td>
			<?php
		}
		else
		{
		 ?>
		 <td align="right"><font  size="2"><b></b></font> </td>
		 <td align="right"><font  size="2"><b><?=fct_delete_zero(FormatMoney($L_AccountCredit-$L_AccountDebit));?></b></font> </td>
		 <?php
	 	}
	 ?>
	</tr>
	<?php
	}
	?>