Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 0ba3b647

Von G. Richardson vor mehr als 12 Jahren hinzugefügt

  • ID 0ba3b647155cba9b668cbcc7579fd135b3a1a9be
  • Vorgänger 3c49049a
  • Nachfolger de90e717

Steuer bei Debitorenbuchung gefixed

Steuerbetrag ist wieder Text statt Inputfeld

Fehler kam durch Commit cf5fe23a0f13baaa7637ac66898945d3e9da42f4
"ar form_header nach template ausgelagert"

Wahrscheinlich Fehler durch Automatisierung

Unterschiede anzeigen:

bin/mozilla/ar.pl
336 336
  for my $i (1 .. $form->{rowcount}) {
337 337
    my $transaction = {
338 338
      amount     => $form->{"amount_$i"},
339
      tax        => $form->{"tax$i"},
339
      tax        => $form->{"tax_$i"},
340 340
      project_id => $form->{"project_id_$i"},
341 341
    };
342 342

  
......
375 375
      . $cgi->hidden('-name' => "previous_AR_amount_$i",
376 376
                     '-default' => $selected_accno_full);
377 377

  
378
    $transaction->{tax} =
378
    $transaction->{taxchart} =
379 379
      NTI($cgi->popup_menu('-name' => "taxchart_$i",
380 380
                           '-id' => "taxchart_$i",
381 381
                           '-style' => 'width:200px',
templates/webpages/ar/form_header.html
140 140
        <tr>
141 141
          <td>[% row.selectAR_amount %]</td>
142 142
          <td>[% L.input_tag('amount_' _ loop.count, LxERP.format_amount(row.amount, 2)) %]</td>
143
          <td>[% L.input_tag('tax_' _ loop.count, LxERP.format_tax(row.tax, 2)) %][% LxERP.format_tax(row.tax, 2) | html %]</td>
144
          <td>[% row.tax %]</td>
143
          <td>[% L.hidden_tag('tax_' _ loop.count, LxERP.format_tax(row.tax, 2)) %][% LxERP.format_amount(row.tax, 2) | html %]</td>
144
          <td>[% row.taxchart %]</td>
145 145
          <td>[% L.select_tag('project_id_' _ loop.count, L.options_for_select(ALL_PROJECTS, title='projectnumber', default=row.project_id, with_empty=1)) %]</td>
146 146
        </tr>
147 147
[%- END %]

Auch abrufbar als: Unified diff