|
@@ -185,9 +185,9 @@ if ($action == 'create') {
|
|
|
print '<table class="border centpercent">';
|
|
|
|
|
|
print '<tr><td class="titlefieldcreate">'.$langs->trans("Ref").'</td><td><a href="'.DOL_URL_ROOT.'/compta/sociales/card.php?id='.$chid.'">'.$chid.'</a></td></tr>';
|
|
|
+ print '<tr><td>'.$langs->trans("Label").'</td><td>'.$charge->label."</td></tr>\n";
|
|
|
print '<tr><td>'.$langs->trans("Type")."</td><td>".$charge->type_label."</td></tr>\n";
|
|
|
print '<tr><td>'.$langs->trans("Period")."</td><td>".dol_print_date($charge->periode, 'day')."</td></tr>\n";
|
|
|
- print '<tr><td>'.$langs->trans("Label").'</td><td>'.$charge->label."</td></tr>\n";
|
|
|
/*print '<tr><td>'.$langs->trans("DateDue")."</td><td>".dol_print_date($charge->date_ech,'day')."</td></tr>\n";
|
|
|
print '<tr><td>'.$langs->trans("Amount")."</td><td>".price($charge->amount,0,$outputlangs,1,-1,-1,$conf->currency).'</td></tr>';*/
|
|
|
|
|
@@ -218,6 +218,7 @@ if ($action == 'create') {
|
|
|
print '<tr>';
|
|
|
print '<td class="fieldrequired">'.$langs->trans('AccountToDebit').'</td>';
|
|
|
print '<td>';
|
|
|
+ print img_picto('', 'bank_account', 'class="pictofixedwidth"');
|
|
|
$form->select_comptes(GETPOSTISSET("accountid") ? GETPOST("accountid", 'int') : $charge->accountid, "accountid", 0, '', 2); // Show opend bank account list
|
|
|
print '</td></tr>';
|
|
|
|