From: Mark Wells Date: Mon, 1 Feb 2016 19:57:16 +0000 (-0800) Subject: add unused_credit flag to edit/reason.html for cancel reasons, #27911 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=e0d137dcd3e28fcf8f307120ef86733b5814ffec add unused_credit flag to edit/reason.html for cancel reasons, #27911 --- diff --git a/httemplate/browse/reason.html b/httemplate/browse/reason.html index bdbcf3704..7f62ada84 100644 --- a/httemplate/browse/reason.html +++ b/httemplate/browse/reason.html @@ -65,11 +65,8 @@ my @links = ( my $align = 'rll'; -if ( $class eq 'S' ) { - push @header, - 'Credit unused service', - 'Suspension fee', - ; +if ( $class eq 'S' or $class eq 'C' ) { + push @header, 'Credit unused service'; push @fields, sub { my $reason = shift; @@ -78,7 +75,12 @@ if ( $class eq 'S' ) { } else { return 'NO'; } - }, + }; + $align .= 'c'; +} +if ( $class eq 'S' ) { + push @header, 'Suspension fee'; + push @fields, sub { my $reason = shift; my $feepart = $reason->feepart; @@ -107,7 +109,7 @@ if ( $class eq 'S' ) { $text .= ''; } ; - $align .= 'cl'; + $align .= 'l'; } # reason merge handling diff --git a/httemplate/edit/reason.html b/httemplate/edit/reason.html index 30168d551..331db4439 100644 --- a/httemplate/edit/reason.html +++ b/httemplate/edit/reason.html @@ -65,12 +65,14 @@ my @fields = ( }, ); -if ( $class eq 'S' ) { +if ( $class eq 'S' or $class eq 'C' ) { push @fields, { 'field' => 'unused_credit', 'type' => 'checkbox', 'value' => 'Y', - }, + }; +} +if ( $class eq 'S' ) { { 'type' => 'tablebreak-tr-title' }, { 'field' => 'feepart', 'type' => 'select-table',