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

SF.net SVN: ledger-smb:[3247] trunk



Revision: 3247
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=3247&view=rev
Author:   einhverfr
Date:     2011-06-14 14:27:29 +0000 (Tue, 14 Jun 2011)

Log Message:
-----------
Minor reporting correction, makefile.pl changes, and further fixes on customer/vendor history

Modified Paths:
--------------
    trunk/CONTRIBUTORS
    trunk/LedgerSMB/RP.pm
    trunk/Makefile.PL
    trunk/UI/Contact/history_filter.html

Modified: trunk/CONTRIBUTORS
===================================================================
--- trunk/CONTRIBUTORS	2011-06-14 07:22:22 UTC (rev 3246)
+++ trunk/CONTRIBUTORS	2011-06-14 14:27:29 UTC (rev 3247)
@@ -24,6 +24,8 @@
 ==================
 Jeff Kowalczyk [email omitted] contributed the ledger-smb-smallgray.css and has submitted numerous bug fixes.
 
+Erik Huelsmann <ehuels @ gmail.com> has provided bugfixes.
+
 Other Contributors:
 ========================
 Dave van Ginneken <davevg @ gmail.com> fixed many HTML errors and has patched 
@@ -84,8 +86,6 @@
 
 Ian Goodacre [email omitted] has provided numerous bugfixes.
 
-Erik Huelsmann <ehuels @ gmail.com> has provided bugfixes.
-
 Original Authors of SQL-Ledger:
 ===================================
 Dieter Simader <dsimader @ sql-ledger.com>

Modified: trunk/LedgerSMB/RP.pm
===================================================================
--- trunk/LedgerSMB/RP.pm	2011-06-14 07:22:22 UTC (rev 3246)
+++ trunk/LedgerSMB/RP.pm	2011-06-14 14:27:29 UTC (rev 3247)
@@ -1871,7 +1871,7 @@
 
     my $query = qq|
 		SELECT name, email, cc, bcc FROM $form->{ct} ct
-		 WHERE ct.id = ?|;
+		 WHERE ct.entity_id = ?|;
     $sth = $dbh->prepare($query);
     $sth->execute( $form->{"$form->{ct}_id"} );
     ( $form->{ $form->{ct} }, $form->{email}, $form->{cc}, $form->{bcc} ) =

Modified: trunk/Makefile.PL
===================================================================
--- trunk/Makefile.PL	2011-06-14 07:22:22 UTC (rev 3246)
+++ trunk/Makefile.PL	2011-06-14 14:27:29 UTC (rev 3247)
@@ -29,7 +29,6 @@
 requires 'Cwd';
 requires 'Config::Std';
 requires 'MIME::Lite';
-requires 'Net::SMTP_auth';
 requires 'Template' => '2.14';
 requires 'Error';
 requires 'CGI::Simple';

Modified: trunk/UI/Contact/history_filter.html
===================================================================
--- trunk/UI/Contact/history_filter.html	2011-06-14 07:22:22 UTC (rev 3246)
+++ trunk/UI/Contact/history_filter.html	2011-06-14 14:27:29 UTC (rev 3247)
@@ -51,11 +51,11 @@
                            type = "text"
               ?></td> 
  
-	      </tr> 
+	      </tr> <!--
 	      <tr> 
 		<th align=right nowrap>Notes</th> 
 		<td colspan=3><textarea name=notes rows=3 cols=32></textarea></td> 
-	      </tr> 
+	      </tr>  -->
 	    </table> 
 	  </td> 
  
@@ -111,7 +111,7 @@
 		<th align=right nowrap><?lsmb text('Country') ?></th> 
 		<td><?lsmb countries.push({});
                      INCLUDE select element_data = {
-                         name = "state",
+                         name = "country_id",
                          text_attr = 'name',
                          value_attr = 'id',
                          option = countries,
@@ -251,6 +251,7 @@
 		<td><?lsmb
                      INCLUDE input element_data= {
                              label = text('Summary'),
+                             name  = 'report_type'
                              type  = 'radio',
                              value = 'summary',
                              class = 'radio',
@@ -259,6 +260,7 @@
 		<td><?lsmb
                      INCLUDE input element_data= {
                              label = text('Detail'),
+                             name  = 'report_type',
                              type  = 'radio',
                              value = 'detail',
                              class = 'radio',


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