X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Fselect-discount.html;h=b7f1fa5bea89572f06dff24843161d10d770b8fe;hb=ea3ce8d7f076e7fecff4be7ae63bc413adb0adf5;hp=e0b6e6cbe5712bb4037c8631cc9caa337816ff7d;hpb=2d5f9e43a60773a9b079e96c330cb9e0e089800a;p=freeside.git diff --git a/httemplate/elements/select-discount.html b/httemplate/elements/select-discount.html index e0b6e6cbe..b7f1fa5be 100644 --- a/httemplate/elements/select-discount.html +++ b/httemplate/elements/select-discount.html @@ -1,10 +1,11 @@ <% include( '/elements/select-table.html', - 'table' => 'discount', - 'name_col' => 'description', - 'order_by' => 'ORDER BY discountnum', #XXX weight - 'value' => $discountnum, - 'empty_label' => '(none)', - 'hashref' => { 'disabled' => '' }, + 'table' => 'discount', + 'name_col' => 'description', + 'order_by' => 'ORDER BY discountnum', #XXX weight + 'value' => $discountnum, + 'empty_label' => '(none)', + 'hashref' => { 'disabled' => '' }, + 'post_options' => $post_options, %opt, ) %> @@ -16,5 +17,12 @@ my $discountnum = $opt{'curr_value'} || $opt{'value'}; $opt{'records'} = delete $opt{'discount'} if $opt{'discount'}; +my $curuser = $FS::CurrentUser::CurrentUser; + +#make an opt if we need to turn this off +my $post_options = $curuser->access_right('Custom discount customer package') + ? [ -1 => 'Custom discount' ] + : []; +