X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fbrowse%2Freason.html;h=8af88a95007025c532d886bfc62cebfa4b9b7e0d;hb=98f6d91ec7eaa907204afbfeb90ede1e3bff656d;hp=b017f8f587018e2215c58c02d35869af4db8a9ee;hpb=15777da47bab33e8f0021e6dd9aa6b434fa9be30;p=freeside.git diff --git a/httemplate/browse/reason.html b/httemplate/browse/reason.html index b017f8f58..8af88a950 100644 --- a/httemplate/browse/reason.html +++ b/httemplate/browse/reason.html @@ -1,31 +1,23 @@ <% include( 'elements/browse.html', 'title' => ucfirst($classname) . ' Reasons', - 'menubar' => [ # 'Main menu' => $p, - ucfirst($classname) . ' Reason Types' => - $p.'browse/reason_type.html?class='. - $class, + 'menubar' => [ ucfirst($classname).' Reason Types' => + $p."browse/reason_type.html?class=$class" ], 'html_init' => $html_init, 'name' => $classname . ' reasons', + 'disableable' => 1, + 'disabled_statuspos' => 3, 'query' => { 'table' => 'reason', 'hashref' => {}, - 'extra_sql' => $where_clause . - 'ORDER BY reason_type', + 'extra_sql' => $where_clause. + ' ORDER BY reason_type', 'addl_from' => 'LEFT JOIN reason_type ON reason_type.typenum = reason.reason_type', }, 'count_query' => $count_query, - 'header' => [ '#', - ucfirst($classname) . ' Reason Type', - ucfirst($classname) . ' Reason', - ], - 'fields' => [ 'reasonnum', - sub { shift->reasontype->type }, - 'reason', - ], - 'links' => [ $link, - $link, - '', - ], + 'header' => \@header, + 'fields' => \@fields, + 'links' => \@links, + 'align' => $align, ) %> <%init> @@ -36,33 +28,84 @@ die "access denied" $cgi->param('class') =~ /^(\w)$/ or die "illegal class"; my $class = $1; -my %classmap = ( 'C' => 'cancel', - 'S' => 'suspend', - ); - -my $classname = $classmap{$class}; +my $classname = $FS::reason_type::class_name{$class}; +my $classpurpose = $FS::reason_type::class_purpose{$class}; -my $html_init = ucfirst($classname) . -" reasons explain why we $classname a package.

". +my $html_init = ucfirst($classname). " reasons $classpurpose.

". qq!!. "Add a $classname reason

"; -my $where_clause = "WHERE class='$class'"; -$where_clause .= " AND (disabled = '' OR disabled IS NULL)" -unless $cgi->param('showdisabled'); - -my $disabledurl = $cgi->param('showdisabled') - ? do { $cgi->param('showdisabled', 0); - '( hide disabled reasons )'; } - : do { $cgi->param('showdisabled', 1); - '( show disabled reasons )'; } - ; - -$html_init .= $disabledurl; +my $where_clause = " WHERE class='$class' "; my $count_query = 'SELECT COUNT(*) FROM reason LEFT JOIN reason_type on ' . 'reason_type.typenum = reason.reason_type ' . $where_clause; my $link = [ $p."edit/reason.html?class=$class&reasonnum=", 'reasonnum' ]; +my @header = ( + '#', + ucfirst($classname) . ' reason type', + ucfirst($classname) . ' reason', +); + +my @fields = ( + 'reasonnum', + sub { shift->reasontype->type }, + 'reason', +); + +my @links = ( + $link, + $link, + '', +); + +my $align = 'rll'; + +if ( $class eq 'S' ) { + push @header, + 'Credit unused service', + 'Suspension fee', + ; + push @fields, + sub { + my $reason = shift; + if ( $reason->unused_credit ) { + return 'YES'; + } else { + return 'NO'; + } + }, + sub { + my $reason = shift; + my $feepart = $reason->feepart; + my ($href, $text, $detail); + if ( $feepart ) { + my $part_fee = FS::part_fee->by_key($feepart) or return ''; + $text = $part_fee->itemdesc . ': ' . $part_fee->explanation; + $detail = $reason->fee_on_unsuspend ? 'unsuspension' : 'suspension'; + if ( $reason->fee_hold ) { + $detail = "next bill after $detail"; + } + $detail = "(on $detail)"; + $href = $p."edit/part_fee.html?$feepart"; + } else { + my $pkgpart = $reason->unsuspend_pkgpart; + my $part_pkg = FS::part_pkg->by_key($pkgpart) or return ''; + $text = $part_pkg->pkg_comment; + $href = $p."edit/part_pkg.cgi?$pkgpart"; + $detail = $reason->unsuspend_hold ? + '(on next bill after unsuspension)' : '(on unsuspension)'; + } + return '' unless length($text); + + $text = qq!! . encode_entities($text) . " ". + "$detail"; + $text .= ''; + } + ; + $align .= 'cl'; +} + +