X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fpackages%2Fcontact.html;h=8c596155278d612ed808525e84ed34f8874f267b;hb=5f4157a6abad950e88e4c2b095f9399d9120183a;hp=bb9453470093a8f035d889f338a82ce16a48dc39;hpb=7ce77a80cf98d1b97e8bcd942d03905902b9d653;p=freeside.git diff --git a/httemplate/view/cust_main/packages/contact.html b/httemplate/view/cust_main/packages/contact.html index bb9453470..8c5961552 100644 --- a/httemplate/view/cust_main/packages/contact.html +++ b/httemplate/view/cust_main/packages/contact.html @@ -1,46 +1,66 @@ % if ( $contact ) { <% $contact->line |h %> +% if ( $show_change_link && ! $opt{no_links} ) { + + ( <%pkg_change_contact_link($cust_pkg)%> ) + +% } +% if ( $show_detach_link && ! $opt{no_links} ) { + + ( <%pkg_detach_link($cust_pkg)%> ) + +% } +
% } - -% if ( ! $cust_pkg->get('cancel') -% && $FS::CurrentUser::CurrentUser->access_right('Change customer package') -% ) -% { - -%#XXX ( <%pkg_change_contact_link($cust_pkg)%> ) -%# % if ( $cust_pkg->contactnum ) { -%# ( <%edit_contact_link($cust_pkg->contactnum)%> ) -%# % } - -% } <%init> -my $conf = new FS::Conf; my %opt = @_; my $cust_pkg = $opt{'cust_pkg'}; -my $contact = $cust_pkg->pkg_contact; +my $show_change_link = + ! $cust_pkg->get('cancel') + && $FS::CurrentUser::CurrentUser->access_right('Change customer package'); + +my $show_detach_link = + ! $cust_pkg->get('cancel') + && $FS::CurrentUser::CurrentUser->access_right('Detach customer package'); + +my $contact = $cust_pkg->contact_obj; sub pkg_change_contact_link { my $cust_pkg = shift; - my $pkgpart = $cust_pkg->pkgpart; + #my $pkgpart = $cust_pkg->pkgpart; include( '/elements/popup_link-cust_pkg.html', -#XXX - 'action' => $p. "misc/change_pkg.cgi?contactnum=-1", - 'label' => emt('Change contact'), + 'action' => $p. "misc/change_pkg_contact.html", + 'label' => emt('Change'), # contact'), 'actionlabel' => emt('Change'), 'cust_pkg' => $cust_pkg, + 'width' => 616, + 'height' => 220, ); } -sub edit_contact_link { - my $contactnum = shift; - include( '/elements/popup_link.html', - 'action' => $p. "edit/cust_contact.cgi?contactnum=$contactnum", - 'label' => emt('Edit contact'), - 'actionlabel' => emt('Edit'), +sub pkg_detach_link { + my $cust_pkg = shift; + #my $pkgpart = $cust_pkg->pkgpart; + include( '/elements/popup_link-cust_pkg.html', + 'action' => $p. "misc/detach_pkg.html", + 'label' => emt('Detach'), + 'actionlabel' => emt('Detach'), + 'cust_pkg' => $cust_pkg, + 'width' => 616, + 'height' => 720, ); } +#sub edit_contact_link { +# my $contactnum = shift; +# include( '/elements/popup_link.html', +# 'action' => $p. "edit/cust_contact.cgi?contactnum=$contactnum", +# 'label' => emt('Edit contact'), +# 'actionlabel' => emt('Edit'), +# ); +#} +