Skip to content
Snippets Groups Projects
Commit 7f8afb2f authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Problème sur edition de la note

Trad: Traduction du "contact de facturation"
parent 003b68e0
No related branches found
No related tags found
No related merge requests found
......@@ -269,7 +269,7 @@ if ($_GET["action"] == 'create')
print '<tr><td>'.$langs->trans("Note").'</td><td colspan="5"><textarea name="note" cols="60" rows="3"></textarea></td></tr>';
print '<tr><td>Contact facturation</td><td colspan="5">';
print '<tr><td>'.$langs->trans("Billingcontact").'</td><td colspan="5">';
print $form->selectyesno("facturation",$contact->facturation);
print '</td></tr>';
......@@ -330,10 +330,10 @@ elseif ($_GET["action"] == 'edit')
print '<tr><td>'.$langs->trans("Note").'</td><td colspan="5">';
print '<textarea name="note" cols="60" rows="3">';
print nl2br($contact->note);
print $contact->note;
print '</textarea></td></tr>';
print '<tr><td>Contact facturation</td><td colspan="5">';
print '<tr><td>'.$langs->trans("BillingContact").'</td><td colspan="5">';
print $form->selectyesno("facturation",$contact->facturation);
print '</td></tr>';
......@@ -401,7 +401,7 @@ else
print '</td></tr>';
print '<tr><td>'.$langs->trans("BillingContact").'</td><td colspan="5">';
print $yesno[$contact->facturation];
print $langs->trans($yesno[$contact->facturation]);
print '</td></tr>';
print "</table><br>";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment