diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-11-17 15:55:39 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-11-17 15:55:39 -0800 |
commit | 9e92a2d4f301066b672be636e51552bbab9d0d27 (patch) | |
tree | 06aa7791261b2fdaf484d77ddd0eda8053152b1f /FS | |
parent | 497c6d42bba8b650e495737fa8edb0fb6d1cb1b6 (diff) | |
parent | 84919ed60de29dc4ccf42d7930c6178eedc51f36 (diff) |
Merge branch 'FREESIDE_3_BRANCH' of git.freeside.biz:/home/git/freeside into FREESIDE_3_BRANCH
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Report/Table.pm | 2 | ||||
-rw-r--r-- | FS/FS/cdr.pm | 2 | ||||
-rw-r--r-- | FS/FS/part_event/Action/letter.pm | 1 | ||||
-rw-r--r-- | FS/FS/part_event/Action/notice.pm | 1 | ||||
-rw-r--r-- | FS/FS/part_event/Action/notice_to.pm | 1 | ||||
-rw-r--r-- | FS/FS/part_event/Action/svc_acct_notice.pm | 1 | ||||
-rw-r--r-- | FS/FS/part_export/rt_ticket.pm | 2 | ||||
-rw-r--r-- | FS/FS/part_export/send_email.pm | 2 |
8 files changed, 8 insertions, 4 deletions
diff --git a/FS/FS/Report/Table.pm b/FS/FS/Report/Table.pm index 1d60b6420..da4916176 100644 --- a/FS/FS/Report/Table.pm +++ b/FS/FS/Report/Table.pm @@ -757,7 +757,7 @@ sub with_cust_classnum { return 'cust_main.classnum in('. join(',',@$classnums) .')' if @$classnums; } - ''; + (); } diff --git a/FS/FS/cdr.pm b/FS/FS/cdr.pm index b16cb8648..bf508dd8c 100644 --- a/FS/FS/cdr.pm +++ b/FS/FS/cdr.pm @@ -904,7 +904,7 @@ sub rate_prefix { #${$opt{region_group_included_min}} -= $minutes # if $region_group && $rate_detail->region_group; - if ( $included_min->{$regionnum}{$ratetimenum} > $minutes ) { + if ( $included_min->{$regionnum}{$ratetimenum} >= $minutes ) { $charge_sec = 0; $included_min->{$regionnum}{$ratetimenum} -= $minutes; } else { diff --git a/FS/FS/part_event/Action/letter.pm b/FS/FS/part_event/Action/letter.pm index 57b7b7783..835dec2b9 100644 --- a/FS/FS/part_event/Action/letter.pm +++ b/FS/FS/part_event/Action/letter.pm @@ -20,6 +20,7 @@ sub option_fields { 'type' => 'select-table', 'table' => 'msg_template', 'name_col' => 'msgname', + 'hashref' => { disabled => '' }, 'disable_empty' => 1, }, ); diff --git a/FS/FS/part_event/Action/notice.pm b/FS/FS/part_event/Action/notice.pm index 8e22c6844..7c8ed1682 100644 --- a/FS/FS/part_event/Action/notice.pm +++ b/FS/FS/part_event/Action/notice.pm @@ -19,6 +19,7 @@ sub option_fields { 'msgnum' => { 'label' => 'Template', 'type' => 'select-table', 'table' => 'msg_template', + 'hashref' => { disabled => '' }, 'name_col' => 'msgname', 'disable_empty' => 1, }, diff --git a/FS/FS/part_event/Action/notice_to.pm b/FS/FS/part_event/Action/notice_to.pm index 194aeb84f..d300e3385 100644 --- a/FS/FS/part_event/Action/notice_to.pm +++ b/FS/FS/part_event/Action/notice_to.pm @@ -24,6 +24,7 @@ sub option_fields { 'type' => 'select-table', 'table' => 'msg_template', 'name_col' => 'msgname', + 'hashref' => { disabled => '' }, 'disable_empty' => 1, }, ); diff --git a/FS/FS/part_event/Action/svc_acct_notice.pm b/FS/FS/part_event/Action/svc_acct_notice.pm index d71a1371a..97a4ad686 100644 --- a/FS/FS/part_event/Action/svc_acct_notice.pm +++ b/FS/FS/part_event/Action/svc_acct_notice.pm @@ -18,6 +18,7 @@ sub option_fields { 'type' => 'select-table', 'table' => 'msg_template', 'name_col' => 'msgname', + 'hashref' => { disabled => '' }, 'disable_empty' => 1, }, ); diff --git a/FS/FS/part_export/rt_ticket.pm b/FS/FS/part_export/rt_ticket.pm index 7ae6105a0..72e387c56 100644 --- a/FS/FS/part_export/rt_ticket.pm +++ b/FS/FS/part_export/rt_ticket.pm @@ -21,7 +21,7 @@ my %template_select = ( %templates = (0 => '', map { $_->msgnum, $_->msgname } qsearch({ table => 'msg_template', - hashref => {}, + hashref => { disabled => '' }, order_by => 'ORDER BY msgnum ASC' }) ); diff --git a/FS/FS/part_export/send_email.pm b/FS/FS/part_export/send_email.pm index 6ba131f18..1fcb828b7 100644 --- a/FS/FS/part_export/send_email.pm +++ b/FS/FS/part_export/send_email.pm @@ -21,7 +21,7 @@ my %template_select = ( %templates = (0 => '', map { $_->msgnum, $_->msgname } qsearch({ table => 'msg_template', - hashref => {}, + hashref => { disabled => 1 }, order_by => 'ORDER BY msgnum ASC' }) ); |