[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb: [2136] branches/1.2



Revision: 2136
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=2136&view=rev
Author:   einhverfr
Date:     2008-05-12 12:12:58 -0700 (Mon, 12 May 2008)

Log Message:
-----------
Correcting bogus datepaid in ar/ap transactions

Modified Paths:
--------------
    branches/1.2/LedgerSMB/AA.pm
    branches/1.2/VERSION

Modified: branches/1.2/LedgerSMB/AA.pm
===================================================================
--- branches/1.2/LedgerSMB/AA.pm	2008-05-12 18:57:17 UTC (rev 2135)
+++ branches/1.2/LedgerSMB/AA.pm	2008-05-12 19:12:58 UTC (rev 2136)
@@ -286,7 +286,7 @@
 
     # record last payment date in ar/ap table
     $form->{datepaid} = $form->{transdate} unless $form->{datepaid};
-    my $datepaid = ($paid) ? qq|'$form->{datepaid}'| : 'NOW';
+    my $datepaid = ($paid) ? qq|'$form->{datepaid}'| : undef;
 
 
     $query = qq|

Modified: branches/1.2/VERSION
===================================================================
--- branches/1.2/VERSION	2008-05-12 18:57:17 UTC (rev 2135)
+++ branches/1.2/VERSION	2008-05-12 19:12:58 UTC (rev 2136)
@@ -1 +1 @@
-1.2.13 
+1.2.14 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.