summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-06 21:10:14 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-06 21:10:14 +0000
commit6bd15a9cdada79bdc7706fe895dd3d4b91b36b09 (patch)
tree6304d4dd6f471ca27c234737c14c1c853948142b /bin
parentdb14e924017649a1e229e3a221787877d4f7d976 (diff)
Correcting minor bug in till account selection.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1524 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'bin')
-rwxr-xr-xbin/pos.pl5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/pos.pl b/bin/pos.pl
index caad92a3..e1f26c8c 100755
--- a/bin/pos.pl
+++ b/bin/pos.pl
@@ -510,10 +510,9 @@ qq|<td><input name="source_$i" size=10 value="$form->{"source_$i"}"></td>|;
$column_data{cctrack} = qq|<td><input type="text" name="cctrack_$i"
value="| . $form->{"cctrack_$i"} . qq|" size="3"></td>|;
- if ( $pos_config{"coa_prefix"} ) {
+ if ( $pos_config{till_accno} ) {
if ( !$form->{"AR_paid_$i"} ) {
- $form->{"AR_paid_$i"} =
- $pos_config{"coa_prefix"} . '.' . $pos_config{"till"};
+ $form->{"AR_paid_$i"} = $pos_config{till_accno};
}
$column_data{AR_paid} = qq|<input type=hidden name="AR_paid_$i"
value='$form->{"AR_paid_$i"}'>|;