Trad: Et encore de la traduction
This commit is contained in:
parent
613bb9f290
commit
e7e40f9bb9
@ -128,7 +128,8 @@ if ($socid > 0)
|
||||
print '<tr><td width="20%">'.$langs->trans("Name").'</td><td width="80%" colspan="3">'.$societe->nom.'</td></tr>';
|
||||
print '<tr><td valign="top">'.$langs->trans("Address").'</td><td colspan="3">'.nl2br($societe->adresse)."</td></tr>";
|
||||
|
||||
print '<tr><td>'.$langs->trans('Zip').' / '.$langs->trans('Town').'</td><td colspan="3">'.$societe->cp." ".$societe->ville.'</td></tr>';
|
||||
print '<tr><td>'.$langs->trans('Zip').'</td><td>'.$societe->cp.'</td>';
|
||||
print '<td>'.$langs->trans('Town').'</td><td>'.$societe->ville.'</td></tr>';
|
||||
|
||||
print '<tr><td>'.$langs->trans("Phone").'</td><td>'.$societe->tel.' </td><td>Fax</td><td>'.$societe->fax.' </td></tr>';
|
||||
|
||||
@ -177,8 +178,8 @@ if ($socid > 0)
|
||||
$num = $db->num_rows($resql);
|
||||
if ($num > 0)
|
||||
{
|
||||
print "<tr $bc[$var]>";
|
||||
print '<td colspan="2"> </td>';
|
||||
print '<tr class="liste_titre">';
|
||||
print '<td width="100" align="center">'.$langs->trans("Date").'</td><td> </td>';
|
||||
print '<td align="right">'.$langs->trans("Debit").'</td>';
|
||||
print '<td align="right">'.$langs->trans("Credit").'</td>';
|
||||
print '<td align="right">'.$langs->trans("Balance").'</td>';
|
||||
@ -204,8 +205,6 @@ if ($socid > 0)
|
||||
// Boucle sur chaque facture
|
||||
for ($i = 0 ; $i < $num ; $i++)
|
||||
{
|
||||
$var=!$var;
|
||||
|
||||
$fac = new Facture($db);
|
||||
$ret=$fac->fetch($facs[$i]);
|
||||
if ($ret < 0)
|
||||
@ -213,9 +212,11 @@ if ($socid > 0)
|
||||
print $fac->error."<br>";
|
||||
continue;
|
||||
}
|
||||
|
||||
$var=!$var;
|
||||
print "<tr $bc[$var]>";
|
||||
|
||||
print "<td align=\"right\">".dolibarr_print_date($fac->date)."</td>\n";
|
||||
print "<td align=\"center\">".dolibarr_print_date($fac->date)."</td>\n";
|
||||
print "<td><a href=\"../compta/facture.php?facid=$fac->id\">".img_object($langs->trans("ShowBill"),"bill")." ".$fac->ref."</a></td>\n";
|
||||
|
||||
print '<td align="right">'.price($fac->total_ttc)."</td>\n";
|
||||
@ -244,8 +245,10 @@ if ($socid > 0)
|
||||
$objp = $db->fetch_object($resql);
|
||||
//$var=!$var;
|
||||
print "<tr $bc[$var]>";
|
||||
print '<td align="right">'.dolibarr_print_date($objp->dp)."</td>\n";
|
||||
print '<td><a href="paiement/fiche.php?id='.$objp->rowid.'">'.img_file().' Paiement '.$objp->rowid.'</td>';
|
||||
print '<td align="center">'.dolibarr_print_date($objp->dp)."</td>\n";
|
||||
print '<td>';
|
||||
print ' '; // Décalage
|
||||
print '<a href="paiement/fiche.php?id='.$objp->rowid.'">'.img_object($langs->trans("ShowPayment"),"payment").' '.$langs->trans("Payment").' '.$objp->rowid.'</td>';
|
||||
print "<td> </td>\n";
|
||||
print '<td align="right">'.price($objp->amount).'</td>';
|
||||
$solde = $solde - $objp->amount;
|
||||
|
||||
@ -30,3 +30,7 @@ RulesResultDue=- Il inclut les factures et charges dues, qu'elles soient pay
|
||||
RulesResultInOut=- Il inclut les paiements effectivement réalisés des factures et des charges.<br>- Il se base sur la date des paiements de ces factures et charges.<br>
|
||||
RulesCADue=- Il inclut les factures clients dues, qu'elles soient payées ou non.<br>- Il se base sur la date de validation de ces factures.<br>
|
||||
RulesCAIn=- Il inclut les paiements effectivement reçus des factures clients.<br>- Il se base sur la date des paiements de ces factures<br>
|
||||
DatePayment=Payment date
|
||||
NewVATPayment=New VAT payment
|
||||
VATPayment=VAT Payment
|
||||
VATPayments=VATPayments
|
||||
@ -31,3 +31,7 @@ RulesResultDue=- Il inclut les factures et charges dues, qu'elles soient pay
|
||||
RulesResultInOut=- Il inclut les paiements effectivement réalisés des factures et des charges.<br>- Il se base sur la date de paiement de ces factures et de ces charges.<br>
|
||||
RulesCADue=- Il inclut les factures clients dues, qu'elles soient payées ou non.<br>- Il se base sur la date de validation de ces factures.<br>
|
||||
RulesCAIn=- Il inclut les paiements effectivement reçus des factures clients.<br>- Il se base sur la date des paiements de ces factures<br>
|
||||
DatePayment=Date paiement
|
||||
NewVATPayment=Nouveau paiment de TVA
|
||||
VATPayment=Réglement TVA
|
||||
VATPayments=Réglements TVA
|
||||
Loading…
Reference in New Issue
Block a user