diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-03-31 13:56:41 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-03-31 13:56:41 -0500 |
commit | b7ef80d945a1d5919e6f25437cf765e6355e5cb5 (patch) | |
tree | 744bafd1076b8402aa105332efd1c0a826587e8d /httemplate/misc/process | |
parent | 892ffefd1fda5aea9c6a3fe980613a3ab2e976b9 (diff) | |
parent | 92b6628c08e4478e48b6f250320a3e3e93262ec2 (diff) |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'httemplate/misc/process')
-rw-r--r-- | httemplate/misc/process/elements/reason | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/misc/process/elements/reason b/httemplate/misc/process/elements/reason index ae92a7528..f57f11ff5 100644 --- a/httemplate/misc/process/elements/reason +++ b/httemplate/misc/process/elements/reason @@ -8,7 +8,8 @@ my $error; if ($reasonnum == -1) { my $new_reason = FS::reason->new({ map { $_ => scalar( $cgi->param("reasonnum_new_$_") ) } - qw( reason_type reason unsuspend_pkgpart unsuspend_hold unused_credit ) + qw( reason_type reason unsuspend_pkgpart unsuspend_hold unused_credit + feepart fee_on_unsuspend fee_hold ) }); # not sanitizing them here, but check() will do it $error = $new_reason->insert; $reasonnum = $new_reason->reasonnum; |