[freeside-commits] freeside/httemplate/search part_pkg.html, 1.2, 1.3
Ivan,,,
ivan at wavetail.420.am
Tue Apr 6 21:11:15 PDT 2010
Update of /home/cvs/cvsroot/freeside/httemplate/search
In directory wavetail.420.am:/tmp/cvs-serv11139
Modified Files:
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.2
retrieving revision 1.3
diff -u -w -d -r1.2 -r1.3
--- part_pkg.html 5 Apr 2010 01:23:53 -0000 1.2
+++ part_pkg.html 7 Apr 2010 04:11:13 -0000 1.3
@@ -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