summaryrefslogtreecommitdiff
path: root/httemplate/edit/process
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2016-05-23 16:55:57 -0500
committerJonathan Prykop <jonathan@freeside.biz>2016-05-23 20:34:46 -0500
commit50fc1d226ec89bf5fb66622ee913ec9e470b8d6c (patch)
treeafc9abf9fae41aba69cf4b9685ea5e384ee52a2c /httemplate/edit/process
parente86b3578afbb298529e773506217cfc10e0257c4 (diff)
RT#40215: OFM - Separate permissions for edit dates and contract dates [v3 only]
Diffstat (limited to 'httemplate/edit/process')
-rwxr-xr-xhttemplate/edit/process/REAL_cust_pkg.cgi12
1 files changed, 8 insertions, 4 deletions
diff --git a/httemplate/edit/process/REAL_cust_pkg.cgi b/httemplate/edit/process/REAL_cust_pkg.cgi
index fd2893487..0757c7611 100755
--- a/httemplate/edit/process/REAL_cust_pkg.cgi
+++ b/httemplate/edit/process/REAL_cust_pkg.cgi
@@ -14,12 +14,16 @@
my $curuser = $FS::CurrentUser::CurrentUser;
die "access denied"
- unless $curuser->access_right('Edit customer package dates');
+ unless $curuser->access_right('Edit customer package dates')
+ or $curuser->access_right('Change package contract end date');
+
+my $contract_only = $curuser->access_right('Edit customer package dates') ? 0 : 1;
+$contract_only = 1 if $cgi->param('contract_only');
my $pkgnum = $cgi->param('pkgnum') or die;
my $old = qsearchs('cust_pkg',{'pkgnum'=>$pkgnum});
my %hash = $old->hash;
-foreach ( qw( start_date setup bill last_bill contract_end ) ) {
+foreach ( $contract_only ? qw( contract_end ) : qw( start_date setup bill last_bill contract_end ) ) {
if ( $cgi->param($_) =~ /^(\d+)$/ ) {
$hash{$_} = $1;
} else {
@@ -36,11 +40,11 @@ $error = $new->replace($old);
if (!$error) {
my @supp_pkgs = $old->supplemental_pkgs;
foreach $new (@supp_pkgs) {
- foreach ( qw( start_date setup contract_end ) ) {
+ foreach ( $contract_only ? qw( contract_end ) : qw( start_date setup contract_end ) ) {
# propagate these to supplementals
$new->set($_, $hash{$_});
}
- if ( $hash{'bill'} ne $old->get('bill') ) {
+ if (( $hash{'bill'} ne $old->get('bill') ) && !$contract_only ) {
if ( $hash{'bill'} and $old->get('bill') ) {
# adjust by the same interval
my $diff = $hash{'bill'} - $old->get('bill');