[freeside-commits] freeside/httemplate/search part_pkg.html, 1.1.2.3, 1.1.2.4

Ivan,,, ivan at wavetail.420.am
Tue Apr 6 21:11:17 PDT 2010


Update of /home/cvs/cvsroot/freeside/httemplate/search
In directory wavetail.420.am:/tmp/cvs-serv11147

Modified Files:
      Tag: FREESIDE_1_9_BRANCH
	part_pkg.html 
Log Message:
fix a mysql-ism in employee commission report, now compatible with Pg, that's a new one.  RT#6991

Index: part_pkg.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/part_pkg.html,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -u -w -d -r1.1.2.3 -r1.1.2.4
--- part_pkg.html	5 Apr 2010 01:23:54 -0000	1.1.2.3
+++ part_pkg.html	7 Apr 2010 04:11:14 -0000	1.1.2.4
@@ -114,8 +114,8 @@
   }
 
   my $from_cust_bill_pkg_where = "FROM cust_bill_pkg
-                                      LEFT JOIN ( cust_bill ) USING ( invnum )
-                                      LEFT JOIN ( cust_pkg  ) USING ( pkgnum )
+                                      LEFT JOIN cust_bill USING ( invnum )
+                                      LEFT JOIN cust_pkg  USING ( pkgnum )
                                     WHERE cust_bill_pkg.pkgnum > 0
                                       AND cust_bill._date >= $beginning
                                       AND cust_bill._date <= $ending         ";



More information about the freeside-commits mailing list