3830aa1ad30aca1f43d5a3ec31d2ce262bb1ff57
[freeside.git] / fs_selfservice / FS-SelfService / cgi / myaccount.html
1 <%= $url = "$selfurl?session=$session_id;action="; ''; %>
2 <%= include('header', 'My Account') %>
3
4 Hello <%= $name %>!<BR><BR>
5 <%= $small_custview %>
6 <BR>
7 <%= if ( $access_pkgnum ) {
8       $OUT .= qq!Balance: <B>\$$balance</B><BR><BR>!;
9     }
10     '';
11 %>
12
13 <%=
14   $OUT .= qq! <B><A HREF="${url}invoices">View All Invoices</A></B> &nbsp; &nbsp; !;
15 %>
16
17 <%= if ( $balance > 0 ) {
18   if (scalar(grep $_, @hide_payment_fields)) {
19     $OUT .= qq! <B><A HREF="${url}make_thirdparty_payment&payby_method=CC">Make a payment</A></B><BR><BR>!;
20   } else {
21     $OUT .= qq! <B><A HREF="${url}make_payment">Make a payment</A></B><BR>!;
22     foreach my $term ( sort { $b <=> $a } keys %discount_terms_hash ) {
23       my $saved = $discount_terms_hash{$term}->[1];
24       my $amount = $discount_terms_hash{$term}->[2];
25       my $savings = ( $amount + $saved > 0 )
26                     ? sprintf('%d', $saved / ( $amount + $saved ) * 100 ) : '0';
27       $OUT .= qq! <B><A HREF="${url}make_term_payment;discount_term=$term;amount=$amount">Save $savings\% by paying for $term months: $amount</A></B><BR>!;
28     }
29     $OUT .= qq! <BR>!;
30   }
31 } %>
32 <%=
33   if ( @open_invoices ) {
34     $OUT .= '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 BGCOLOR="#eeeeee">'.
35             '<TR><TH BGCOLOR="#ff6666" COLSPAN=5>Open Invoices</TH></TR>';
36     my $link = qq!<A HREF="<%= $url %>myaccount!;
37     my $col1 = "ffffff";
38     my $col2 = "dddddd";
39     my $col = $col1;
40
41     foreach my $invoice ( @open_invoices ) {
42       my $td = qq!<TD BGCOLOR="#$col">!;
43       my $a=qq!<A HREF="${url}view_invoice;invnum=!. $invoice->{'invnum'}. '">';
44       $OUT .=
45         "<TR>$td${a}Invoice #". $invoice->{'invnum'}. "</A></TD>$td</TD>".
46         "$td$a". $invoice->{'date'}. "</A></TD>$td</TD>".
47         qq!<TD BGCOLOR="#$col" ALIGN="right">$a\$!. $invoice->{'owed'}.
48           '</A></TD>'.
49         '</TR>';
50       $col = $col eq $col1 ? $col2 : $col1;
51     }
52     $OUT .= '</TABLE><BR>';
53   } else {
54     $OUT .= 'You have no outstanding invoices.<BR><BR>';
55   }
56 %>
57
58 <%=
59   if ( @support_services ) {
60     $OUT .= '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 BGCOLOR="#eeeeee">'.
61             '<TR><TH BGCOLOR="#ff6666" COLSPAN="3">Support Time Remaining</TH>'.
62             '</TR><TR><TH>Package</TH><TH></TH>'.
63             '<TH>Time Remaining</TH></TR>';
64     my $col1 = "ffffff";
65     my $col2 = "dddddd";
66     my $col = $col1;
67
68     foreach my $support ( @support_services ) {
69       my $td = qq!<TD BGCOLOR="#$col">!;
70       my $a = qq!<A HREF="${url}view_support_details;svcnum=!.
71               $support->{'svcnum'}. '">';
72       $OUT .=
73         "<TR>".
74           $td.$a. $support->{'pkg'}. "</A></TD>".
75           $td.'&nbsp;</TD>'.
76           $td.$a. $support->{'time'}. "</A></TD>".
77         '</TR>';
78       $col = $col eq $col1 ? $col2 : $col1;
79     }
80     $OUT .= '</TABLE><BR>';
81   } else {
82     $OUT .= '';
83   }
84 %>
85
86 <%= if ( @tickets) {
87       $OUT .= include('ticket_summary');
88     } else {
89       $OUT .= '';
90     }
91 %>
92
93 <%= include('footer') %>