diff options
| author | Mark Wells <mark@freeside.biz> | 2016-02-01 11:57:16 -0800 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2016-02-01 12:02:46 -0800 |
| commit | e0d137dcd3e28fcf8f307120ef86733b5814ffec (patch) | |
| tree | 92a8d00f8d0dbbdaa2a71f7a457f74de39efd186 /httemplate/edit | |
| parent | b9b18c46a93720ba3f635d71d32d13f355861c51 (diff) | |
add unused_credit flag to edit/reason.html for cancel reasons, #27911
Diffstat (limited to 'httemplate/edit')
| -rw-r--r-- | httemplate/edit/reason.html | 6 |
1 files changed, 4 insertions, 2 deletions
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', |
