From b98753377ace509aeee17ee41f28a3556d8fdcb1 Mon Sep 17 00:00:00 2001 From: einhverfr Date: Tue, 27 Mar 2007 16:37:41 +0000 Subject: Payment screens now treat empty strings as current_date git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1014 4979c152-3d1c-0410-bac9-87ea11338e46 --- bin/aa.pl | 3 +-- bin/cp.pl | 10 +++++++++- 2 files changed, 10 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/aa.pl b/bin/aa.pl index e85dc8a7..f1e43e37 100755 --- a/bin/aa.pl +++ b/bin/aa.pl @@ -1225,7 +1225,7 @@ sub transactions { $form->{$form->{vc}} = $form->unescape($form->{$form->{vc}}); ($form->{$form->{vc}}, $form->{"$form->{vc}_id"}) = split(/--/, $form->{$form->{vc}}); } - + my @column_index; AA->transactions(\%myconfig, \%$form); $href = "$form->{script}?action=transactions"; @@ -1356,7 +1356,6 @@ sub transactions { $href .= "&l_$item=Y"; } } - if (!$form->{summary}) { foreach $item (qw(source debit credit accno description projectnumber)) { push @column_index, $item; diff --git a/bin/cp.pl b/bin/cp.pl index c4474e38..6e866767 100755 --- a/bin/cp.pl +++ b/bin/cp.pl @@ -56,6 +56,11 @@ require "bin/arap.pl"; 1; # end of main +# This may need to get more sophisticated in the future +# Anyway, it provides one point of control for date handling. +sub default_date { + $form->{date} ||= 'current_date' +} sub payment { @@ -1137,7 +1142,10 @@ sub payment_footer { } -sub post { &{"post_$form->{payment}"} } +sub post { + &default_date; + &{"post_$form->{payment}"}; +} sub post_payments { -- cgit v1.2.3