Revision 8e53eafd
Von Stephan Köhler vor etwa 19 Jahren hinzugefügt
SL/AR.pm | ||
---|---|---|
74 | 74 |
2); |
75 | 75 |
|
76 | 76 |
$form->{netamount} += $form->{"amount_$i"}; |
77 |
|
|
78 |
# parse tax_$i for later |
|
79 |
$form->{"tax_$i"} = $form->parse_amount($myconfig, $form->{"tax_$i"}); |
|
77 | 80 |
} |
78 | 81 |
|
79 | 82 |
# this is for ar |
bin/mozilla/ar.pl | ||
---|---|---|
569 | 569 |
$tax =~ s/value=\"$tax_selected\"/value=\"$tax_selected\" selected/; |
570 | 570 |
$tax = |
571 | 571 |
qq|<td><select id="taxchart_$i" name="taxchart_$i" style="width:200px">$tax</select></td>|; |
572 |
$korrektur_checked = ($form->{"korrektur_$i"}?'checked':''); |
|
572 | 573 |
|
573 | 574 |
print qq| |
574 | 575 |
<tr> |
575 | 576 |
<td width=50%><select name="AR_amount_$i" onChange="setTaxkey(this, $i)" style="width:100%">$selectAR_amount</select></td> |
576 | 577 |
<td><input name="amount_$i" size=10 value=$form->{"amount_$i"}></td> |
577 | 578 |
<td><input name="tax_$i" size=10 value=$form->{"tax_$i"}></td> |
578 |
<td><input type="checkbox" name="korrektur_$i" value="1"></td> |
|
579 |
<td><input type="checkbox" name="korrektur_$i" value="1" $korrektur_checked></td>
|
|
579 | 580 |
$tax |
580 | 581 |
<td><input name="projectnumber_$i" size=20 value="$form->{"projectnumber_$i"}"> |
581 | 582 |
<input type=hidden name="project_id_$i" value=$form->{"project_id_$i"}> |
Auch abrufbar als: Unified diff
Merge von 765,768 aus unstable: Bugfix 242 Punkt 3/4
-765
Korrektur Checkbox in Debitorenrechnungsdialog wurde nicht ueber ein Erneuern uebernommen.
Siehe Bug 242, 4.
-768
Fix fuer Bug 242, tax_$i Werte wurden nicht geparst.