X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=fs_selfservice%2FFS-SelfService%2Fcgi%2Fmyaccount.html;h=524be1f6a25d6881877700f0b29ef2bebb47e969;hp=a57bfb14a34058bed57ff327c3d65e6b12572d93;hb=f32ac83068c6211f829f1688a1a9cdec71bc6ec7;hpb=b5c4237a34aef94976bc343c8d9e138664fc3984 diff --git a/fs_selfservice/FS-SelfService/cgi/myaccount.html b/fs_selfservice/FS-SelfService/cgi/myaccount.html index a57bfb14a..524be1f6a 100644 --- a/fs_selfservice/FS-SelfService/cgi/myaccount.html +++ b/fs_selfservice/FS-SelfService/cgi/myaccount.html @@ -1,21 +1,18 @@ -<%= $url = "$selfurl?session=$session_id;action="; ''; %> +<%= $url = "$selfurl?action="; ''; %> <%= include('header', 'My Account') %> Hello <%= $name %>!

-<%= $small_custview %> + +<%= include('small_custview') %> +
-<%= if ( $access_pkgnum ) { - $OUT .= qq!Balance: \$$balance

!; - } - ''; -%> <%= $OUT .= qq! View All Invoices     !; %> <%= if ( $balance > 0 ) { - if (scalar(grep $_, @hide_payment_fields)) { + if (scalar(grep $_, @hide_payment_fields)) { # this sucks $OUT .= qq! Make a payment

!; } else { $OUT .= qq! Make a payment
!; @@ -31,48 +28,56 @@ Hello <%= $name %>!

} %> <%= if ( @open_invoices ) { - $OUT .= ''. - ''; - my $link = qq!!; + my $thr = q!
Open Invoices
!; + $OUT .= ''. + ''. + ''.$th.'Invoice #'.$th.'Date'.$thr.'Charges' + .$thr.'Owed'; + my $col1 = "#ffffff"; + my $col2 = "#dddddd"; my $col = $col1; foreach my $invoice ( @open_invoices ) { - my $td = qq!$td${a}Invoice #". $invoice->{'invnum'}. "$td". - "$td$a". $invoice->{'date'}. "$td". - qq!'. + "". + $td . $a . $invoice->{'invnum'}. "" . + $td . $a . $invoice->{'date'} . "" . + $tdr . $a . $money_char . $invoice->{'charged'} . "" . + $tdr . $a . $money_char . $invoice->{'owed'} . "" . ''; $col = $col eq $col1 ? $col2 : $col1; } $OUT .= '
Open Invoices
!; + my $td = qq!!; + my $tdr = qq!!; my $a=qq!'; $OUT .= - "
$a\$!. $invoice->{'owed'}. - '

'; } else { - $OUT .= 'You have no outstanding invoices.

'; + $OUT .= '

You have no outstanding invoices.

'; } %> +<%= $announcement || '' %> + <%= if ( @support_services ) { $OUT .= ''. ''. - ''. + ''. ''; - my $col1 = "ffffff"; - my $col2 = "dddddd"; + my $col1 = $stripe1_bgcolor || '#ffffff'; + my $col2 = $stripe2_bgcolor || '#dddddd'; my $col = $col1; foreach my $support ( @support_services ) { - my $td = qq!$td$a". $support->{'pkgnum'}. "". - $td.$a. $support->{'pkg'}. "". - $td.$a. $support->{'time'}. "". + "". + $td.$a. $support->{'pkg'}. "". + $td.' '. + $td.$a. $support->{'time'}. "". ''; $col = $col eq $col1 ? $col2 : $col1; } @@ -82,33 +87,11 @@ Hello <%= $name %>!

} %> -<%= - if ( @tickets ) { - $OUT .= '
Support Time Remaining
#Package
PackageTime Remaining
!; + my $td = qq!!; my $a = qq!'; $OUT .= - "
'. - ''. - ''. - ''; - my $col1 = "ffffff"; - my $col2 = "dddddd"; - my $col = $col1; - - foreach my $ticket ( @tickets ) { - my $td = qq!$td $link". $ticket->{'id'}. "". - $td. $ticket->{'subject'}. "". - $td. ($ticket->{'content'} || $ticket->{'priority'}). "". - $td. $ticket->{'queue'}. "". - $td. $ticket->{'status'}. "". - $td. $ticket->{'created'}. "". - ''; - $col = $col eq $col1 ? $col2 : $col1; +<%= if (@tickets) { + $OUT .= include('ticket_summary'); + } else { + $OUT .= ''; } - $OUT .= '
Open Tickets
#SubjectPriorityQueueStatusCreated
!; - my $link = qq!!; - $OUT .= - "
'; - } else { - $OUT .= ''; - } %> <%= include('footer') %>