summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-12-21 07:01:23 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-12-21 07:01:23 +0000
commitc3783dedcff1afc3f65f5d881e1b1769c93f33d5 (patch)
treec7e4355396b016045d6f68270e3bb5afca06b6c5
parentb33cdbb936ff45aedc91edd1feded999e8a0a786 (diff)
Correcting bug 1790768: Incorrect tax boxes displayed in AR/AP Transaction Screen. Untested in /trunk.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1993 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-xbin/aa.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/aa.pl b/bin/aa.pl
index d3a9dca5..1e10166f 100755
--- a/bin/aa.pl
+++ b/bin/aa.pl
@@ -657,12 +657,12 @@ qq|<td><input name="description_$i" size="40" value="$form->{"description_$i"}">
$form->{"tax_$item"} =
$form->format_amount( \%myconfig, $form->{"tax_$item"}, 2 );
-
print qq|
<tr>
<td><input name="tax_$item" size="10" value="$form->{"tax_$item"}"></td>
<td align="right"><input name="calctax_$item" class="checkbox" type="checkbox" value="1" $form->{"calctax_$item"}></td>
- <td><select name="$form->{ARAP}_tax_$item">$form->{"select$form->{ARAP}_tax_$item"}</select></td>
+ <td><select name="$form->{ARAP}_tax_$item">
+ <option value="$form->{ARAP}_tax_$item">$item--$form->{"${item}_description"}</option></select></td>
</tr>
|;