diff options
author | ivan <ivan> | 2006-03-20 19:13:27 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-03-20 19:13:27 +0000 |
commit | ff24bc786a5fd479f2252260e0da580a736f97be (patch) | |
tree | 6d3496500bebd4f17f754ab79478c53dea1b5daf /httemplate/edit/cust_main | |
parent | 96fde39e747fdc5c618b5a92ec354384931cf317 (diff) |
add price plan to bill on internal or external CDRs directly, add option to export CDRs to a per-customer downstream file
Diffstat (limited to 'httemplate/edit/cust_main')
-rw-r--r-- | httemplate/edit/cust_main/billing.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/httemplate/edit/cust_main/billing.html b/httemplate/edit/cust_main/billing.html index 96f777baa..790f41f00 100644 --- a/httemplate/edit/cust_main/billing.html +++ b/httemplate/edit/cust_main/billing.html @@ -348,7 +348,7 @@ if ( $payby_default eq 'HIDE' ) { ); - + #this should use FS::payby my %allopt = ( 'CARD' => 'Credit card', 'CHEK' => 'Electronic check', @@ -433,6 +433,14 @@ if ( $payby_default eq 'HIDE' ) { <TD WIDTH="408"><INPUT TYPE="text" NAME="invoicing_list" VALUE="<%= join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) %>"></TD> </TR> + <% if ( $conf->exists('voip-cust_cdr_spools') ) { %> + <TR> + <TD COLSPAN="2"><INPUT TYPE="checkbox" NAME="spool_cdr" VALUE="Y" <%= $cust_main->spool_cdr eq "Y" ? 'CHECKED' : '' %>> Spool CDRs</TD> + </TR> + <% } else { %> + <INPUT TYPE="hidden" NAME="spool_cdr" VALUE="<%= $cust_main->spool_cdr %>"> + <% } %> + </TABLE> </FORM> |