diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-05-15 10:49:38 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-05-15 10:49:38 -0700 |
commit | 1cd83e5112019111a8f6c16eacd5264a95abcfb2 (patch) | |
tree | f2168c6a593233a54de0a67bbc0a0f7390d2f1e4 /httemplate/view/cust_main | |
parent | 9d1c56465919772772ec8b11fec196c8506865bb (diff) |
separate edit and delete rights for customer notes, RT#76001
Diffstat (limited to 'httemplate/view/cust_main')
-rw-r--r-- | httemplate/view/cust_main/menu.html | 2 | ||||
-rw-r--r-- | httemplate/view/cust_main/notes/notes.html | 16 |
2 files changed, 10 insertions, 8 deletions
diff --git a/httemplate/view/cust_main/menu.html b/httemplate/view/cust_main/menu.html index 9e910f861..dcba1fb00 100644 --- a/httemplate/view/cust_main/menu.html +++ b/httemplate/view/cust_main/menu.html @@ -206,7 +206,7 @@ my @menu = ( confexists => '!cust_main-disable_notes', acl => 'Add customer note', width => 875, - height => 538, + height => 548, }, { label => 'Attach file', diff --git a/httemplate/view/cust_main/notes/notes.html b/httemplate/view/cust_main/notes/notes.html index f998ba4c0..c64300384 100644 --- a/httemplate/view/cust_main/notes/notes.html +++ b/httemplate/view/cust_main/notes/notes.html @@ -69,19 +69,21 @@ function display_notes_classnum (classnum) { % "?custnum=$custnum". % ";notenum=$notenum", % 'actionlabel' => emt('Edit customer note'), -% 'width' => 616, -% 'height' => 575, +% 'width' => 875, +% 'height' => 548, % 'frame' => 'top', % ); % my $clickjs = qq!onclick="$onclick"!; % % my $edit = ''; -% if ($curuser->access_right('Edit customer note') ) { +% if ( $curuser->access_right('Edit customer note') ) { +% $edit = qq! <A HREF="javascript:void(0);" $clickjs>(!.emt('edit').')</A>'; +% } +% if ( $curuser->access_right('Delete customer note') ) { % my $delete_url = $fsurl.'misc/delete-note.html?'.$notenum; -% $edit = qq! <A HREF="javascript:void(0);" $clickjs>(!.emt('edit').')</A>'. -% qq! <A HREF="$delete_url" !. -% qq! onclick="return confirm('Delete this note?')">!. -% '('.emt('delete').')</A>'; +% $edit .= qq! <A HREF="$delete_url" !. +% qq! onclick="return confirm('Delete this note?')">!. +% '('.emt('delete').')</A>'; % } % <TR CLASS="grid custnote<% $note->sticky ? ' stickynote' : '' %>" |