summaryrefslogtreecommitdiff
path: root/httemplate/search/report_cust_event.html
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-06-09 15:56:36 -0700
committerMark Wells <mark@freeside.biz>2016-06-09 15:56:54 -0700
commitd02f1d8fb338e4dd1b401892b3408a65cad3b4d4 (patch)
tree2b5852476004135b0f6fde2b4b19f2b610e09886 /httemplate/search/report_cust_event.html
parentac44c24787eb093e47b92ee9939d003acf8464e7 (diff)
remove "failed billing events" report, and add "completed with an error" status search, #42637
Diffstat (limited to 'httemplate/search/report_cust_event.html')
-rw-r--r--httemplate/search/report_cust_event.html10
1 files changed, 6 insertions, 4 deletions
diff --git a/httemplate/search/report_cust_event.html b/httemplate/search/report_cust_event.html
index 6453500ad..7aa4ff9d7 100644
--- a/httemplate/search/report_cust_event.html
+++ b/httemplate/search/report_cust_event.html
@@ -36,16 +36,18 @@
% } else {
% # 'initial' is not on here, since nobody needs to see it. also,
-% # 'done_Y' and 'done_N' are shorthand for "done, and no_action
-% # is null" and "done, and no_action = 'Y'".
+% # 'done_Y' = "done, and no_action is null, and statustext is null"
+% # 'done_S' = "done, and no_action is null, and statustext is not null"
+% # 'done_N' = "done, and no_action = 'Y'".
<& /elements/tr-select.html,
'label' => 'Event status',
'field' => 'event_status',
'multiple' => 1,
'all_selected' => 1,
'size' => 5,
- 'options' => [ qw( done_Y done_N failed new locked ) ],
- 'option_labels' => { done_Y => 'Completed',
+ 'options' => [ qw( done_Y done_S done_N failed new locked ) ],
+ 'option_labels' => { done_Y => 'Completed normally',
+ done_S => 'Completed, with an error',
done_N => 'Completed, no action taken',
failed => 'Failed',
new => 'Not yet processed',