[freeside-commits] branch FREESIDE_3_BRANCH updated. d1e3d23e81d41e3a00be708b690ea86812e7b891
Ivan Kohler
ivan at freeside.biz
Wed May 16 22:21:09 PDT 2018
The branch, FREESIDE_3_BRANCH has been updated
via d1e3d23e81d41e3a00be708b690ea86812e7b891 (commit)
from 01625315547278cbf15ad5e96c218b5cd4bf10cc (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d1e3d23e81d41e3a00be708b690ea86812e7b891
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed May 16 22:21:08 2018 -0700
include batch payment and statement events in reports, RT#80156
diff --git a/FS/FS/cust_event.pm b/FS/FS/cust_event.pm
index 09d993e33..fabc7f0ba 100644
--- a/FS/FS/cust_event.pm
+++ b/FS/FS/cust_event.pm
@@ -323,11 +323,16 @@ sub join_sql {
"
JOIN part_event USING ( eventpart )
+
LEFT JOIN cust_bill ON ( eventtable = 'cust_bill' AND tablenum = invnum )
LEFT JOIN cust_pkg ON ( eventtable = 'cust_pkg' AND tablenum = pkgnum )
LEFT JOIN cust_pay ON ( eventtable = 'cust_pay' AND tablenum = paynum )
+ LEFT JOIN cust_pay_batch ON ( eventtable = 'cust_pay_batch' AND tablenum = paybatchnum )
+ LEFT JOIN cust_statement ON ( eventtable = 'cust_statement' AND tablenum = cust_statement.statementnum )
+
LEFT JOIN cust_svc ON ( eventtable = 'svc_acct' AND tablenum = svcnum )
LEFT JOIN cust_pkg AS cust_pkg_for_svc ON ( cust_svc.pkgnum = cust_pkg_for_svc.pkgnum )
+
LEFT JOIN cust_main ON (
( eventtable = 'cust_main' AND tablenum = cust_main.custnum )
OR ( eventtable = 'cust_bill' AND cust_bill.custnum = cust_main.custnum )
diff --git a/httemplate/search/cust_event.html b/httemplate/search/cust_event.html
index 8ab0f8fa6..24cc05b9b 100644
--- a/httemplate/search/cust_event.html
+++ b/httemplate/search/cust_event.html
@@ -134,6 +134,12 @@ my $trigger_link = sub {
my $pkgnum = $cust_event->tablenum;
my $frag = "cust_pkg$pkgnum"; #hack for IE ignoring real #fragment
[ "${p}view/cust_main.cgi?custnum=$custnum$show;fragment=$frag#cust_pkg", 'tablenum' ];
+ } elsif ( $eventtable eq 'cust_pay' ) {
+ [ "${p}view/$eventtable.html?paynum=", 'tablenum' ];
+ } elsif ( $eventtable eq 'cust_statement' ) {
+ [ "${p}view/$eventtable.html?", 'tablenum' ];
+ } elsif ( $eventtable eq 'cust_pay_batch' ) {
+ [ "${p}search/cust_pay_batch.cgi?batchnum=", 'cust_pay_batch_batchnum' ];
} else {
[ "${p}view/$eventtable.cgi?", 'tablenum' ];
}
@@ -199,6 +205,7 @@ my $sql_query = {
'part_event.*',
#'cust_bill.custnum',
#'cust_bill._date AS cust_bill_date',
+ 'cust_pay_batch.batchnum AS cust_pay_batch_batchnum',
'cust_main.custnum AS cust_main_custnum',
FS::UI::Web::cust_sql_fields(),
),
diff --git a/httemplate/search/report_cust_event.html b/httemplate/search/report_cust_event.html
index 5b8489bbf..df7d32a95 100644
--- a/httemplate/search/report_cust_event.html
+++ b/httemplate/search/report_cust_event.html
@@ -52,7 +52,7 @@
'field' => 'event_status',
'multiple' => 1,
'all_selected' => 1,
- 'size' => 5,
+ 'size' => 6,
'options' => [ qw( done_Y done_S done_N failed new locked ) ],
'option_labels' => { done_Y => 'Completed normally',
done_S => 'Completed, with an error',
-----------------------------------------------------------------------
Summary of changes:
FS/FS/cust_event.pm | 5 +++++
httemplate/search/cust_event.html | 7 +++++++
httemplate/search/report_cust_event.html | 2 +-
3 files changed, 13 insertions(+), 1 deletion(-)
More information about the freeside-commits
mailing list