X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=httemplate%2Fview%2Fcust_main%2Fpackages.html;h=9b1bed90ccda4e2772b8834e22c53e506bf3d647;hb=e4fc461dd93181e8199d5cc5e2de2a11732b1bfd;hp=09bfd1d11bb0e5785de178a41731be15e8d0493e;hpb=9e4bc4c0c9c77d75618196f4f0eeeeeb35e2ee08;p=freeside.git diff --git a/httemplate/view/cust_main/packages.html b/httemplate/view/cust_main/packages.html index 09bfd1d11..9b1bed90c 100755 --- a/httemplate/view/cust_main/packages.html +++ b/httemplate/view/cust_main/packages.html @@ -87,6 +87,10 @@ Current packages <% $part_pkg->pkg %> - <% $part_pkg->comment %>
+% if ( $cust_pkg->quantity > 1 ) { +       Quantity: <% $cust_pkg->quantity %>
+% } + % unless ( $cust_pkg->get('cancel') ) { % my $br = 0; @@ -147,7 +151,7 @@ Current packages % if ( $cust_pkg->get('cancel') ) { #status: cancelled % my $cpr = $cust_pkg->last_cust_pkg_reason; - <% pkg_status_row($cust_pkg, 'Cancelled', 'cancel', 'color'=>'FF0000' ) %> + <% pkg_status_row($cust_pkg, 'Cancelled', 'cancel', 'color'=>'FF0000', conf=>$conf ) %> <% pkg_status_row_colspan( ( ( $cpr && ( $cpr->date == $cust_pkg->get('cancel') || @@ -159,7 +163,7 @@ Current packages %> - <% pkg_status_row( $cust_pkg, 'Suspended', 'susp', 'color'=>'FF9900' ) %> + <% pkg_status_row( $cust_pkg, 'Suspended', 'susp', 'color'=>'FF9900', conf=>$conf ) %> % unless ( $cust_pkg->get('setup') ) { @@ -167,10 +171,10 @@ Current packages % } else { - <% pkg_status_row( $cust_pkg, 'Setup', 'setup' ) %> - <% pkg_status_row_changed( $cust_pkg ) %> - <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill' ) %> - <% pkg_status_row_if( $cust_pkg, 'Suspended', 'susp' ) %> + <% pkg_status_row( $cust_pkg, 'Setup', 'setup', conf=>$conf ) %> + <% pkg_status_row_changed( $cust_pkg, conf=>$conf ) %> + <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill', conf=>$conf ) %> + <% pkg_status_row_if( $cust_pkg, 'Suspended', 'susp', conf=>$conf ) %> % } % @@ -179,7 +183,7 @@ Current packages % if ( $cust_pkg->get('susp') ) { #status: suspended % my $cpr = $cust_pkg->last_cust_pkg_reason; - <% pkg_status_row( $cust_pkg, 'Suspended', 'susp', 'color'=>'FF9900' ) %> + <% pkg_status_row( $cust_pkg, 'Suspended', 'susp', 'color'=>'FF9900', conf=>$conf ) %> <% pkg_status_row_colspan( ( ( $cpr && ( $cpr->date == $cust_pkg->susp || @@ -193,13 +197,13 @@ Current packages % unless ( $cust_pkg->get('setup') ) { <% pkg_status_row_colspan('Never billed') %> % } else { - <% pkg_status_row($cust_pkg, 'Setup', 'setup' ) %> + <% pkg_status_row($cust_pkg, 'Setup', 'setup', conf=>$conf ) %> % } - <% pkg_status_row_changed( $cust_pkg ) %> - <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill' ) %> -% # pkg_status_row($cust_pkg, 'Next bill', 'bill') - <% pkg_status_row_if( $cust_pkg, 'Expires', 'expire' ) %> + <% pkg_status_row_changed( $cust_pkg, conf=>$conf ) %> + <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill', conf=>$conf ) %> +% # pkg_status_row($cust_pkg, 'Next bill', 'bill', conf=>$conf) + <% pkg_status_row_if( $cust_pkg, 'Expires', 'expire', conf=>$conf ) %> > @@ -244,7 +248,7 @@ Current packages <% pkg_status_row_colspan('One-time charge') %> - <% pkg_status_row($cust_pkg, 'Billed', 'setup') %> + <% pkg_status_row($cust_pkg, 'Billed', 'setup', conf=>$conf) %> % } else { % @@ -266,17 +270,17 @@ Current packages %> % } - <% pkg_status_row($cust_pkg, 'Setup', 'setup') %> + <% pkg_status_row($cust_pkg, 'Setup', 'setup', conf=>$conf) %> % } % % } - <% pkg_status_row_changed( $cust_pkg ) %> - <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill' ) %> - <% pkg_status_row_if( $cust_pkg, $next_bill_or_prepaid_until, 'bill' ) %> - <% pkg_status_row_if( $cust_pkg, 'Will suspend on', 'adjourn' ) %> - <% pkg_status_row_if( $cust_pkg, 'Expires', 'expire' ) %> + <% pkg_status_row_changed( $cust_pkg, conf=>$conf ) %> + <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill', conf=>$conf ) %> + <% pkg_status_row_if( $cust_pkg, $next_bill_or_prepaid_until, 'bill', conf=>$conf ) %> + <% pkg_status_row_if( $cust_pkg, 'Will suspend on', 'adjourn', conf=>$conf ) %> + <% pkg_status_row_if( $cust_pkg, 'Expires', 'expire', conf=>$conf ) %> % if ( $part_pkg->freq ) { @@ -410,7 +414,7 @@ sub pkg_status_row { $html .= qq($title ); $html .= qq() if length($color); $html .= qq(); - $html .= pkg_datestr($cust_pkg, $field, $conf).''; + $html .= pkg_datestr($cust_pkg, $field, $opt{conf}).''; $html; } @@ -421,9 +425,9 @@ sub pkg_status_row_if { } sub pkg_status_row_changed { - my($cust_pkg) = @_; + my( $cust_pkg, %opt ) = @_; return '' unless $cust_pkg->change_date; - my $html = pkg_status_row( $cust_pkg, 'Package changed', 'change_date' ); + my $html = pkg_status_row( $cust_pkg, 'Package changed', 'change_date', conf=>$opt{'conf'} ); my $old = $cust_pkg->old_cust_pkg; if ( $old ) { my $part_pkg = $old->part_pkg; @@ -624,7 +628,6 @@ sub pkg_customize_link { my $cust_pkg = shift or return ''; my $custnum = $cust_pkg->custnum; qq!Customize!;