diff options
| author | khoff <khoff> | 2005-03-21 22:13:39 +0000 |
|---|---|---|
| committer | khoff <khoff> | 2005-03-21 22:13:39 +0000 |
| commit | 18c025613fa052cf4ba8d484f1296cc2a1719a24 (patch) | |
| tree | 334919583d3ecdd78413ad7405b6092e62f614ad /httemplate/view/cust_main/billing.html | |
| parent | 30189fa2e5987bafeb4714a83b7f130c568b221c (diff) | |
Added support for FAX invoice destinations using a HylaFAX server.
Faxing plain text invoices is not supported.
Diffstat (limited to 'httemplate/view/cust_main/billing.html')
| -rw-r--r-- | httemplate/view/cust_main/billing.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/httemplate/view/cust_main/billing.html b/httemplate/view/cust_main/billing.html index 18a203bd6..561fff992 100644 --- a/httemplate/view/cust_main/billing.html +++ b/httemplate/view/cust_main/billing.html @@ -17,9 +17,15 @@ Billing information </TD> </TR> <TR> + <TD ALIGN="right">FAX invoices</TD> + <TD BGCOLOR="#ffffff"> + <%= ( grep { $_ eq 'FAX' } @invoicing_list ) ? 'yes' : 'no' %> + </TD> +</TR> +<TR> <TD ALIGN="right">Email invoices</TD> <TD BGCOLOR="#ffffff"> - <%= join(', ', grep { $_ ne 'POST' } @invoicing_list ) || 'no' %> + <%= join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || 'no' %> </TD> </TR> <TR> |
