blob: c3b161b70921ed7be61a698eb115150a47e5541a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
% if ( $contact ) {
<% $contact->line |h %>
% }
% if ( ! $cust_pkg->get('cancel')
% && $FS::CurrentUser::CurrentUser->access_right('Change customer package')
% )
% {
<FONT SIZE=-1>
%#XXX ( <%pkg_change_contact_link($cust_pkg)%> )
%# % if ( $cust_pkg->contactnum ) {
%# ( <%edit_contact_link($cust_pkg->contactnum)%> )
%# % }
</FONT>
% }
<%init>
my $conf = new FS::Conf;
my %opt = @_;
my $cust_pkg = $opt{'cust_pkg'};
my $contact = $cust_pkg->contact_obj;
sub pkg_change_contact_link {
my $cust_pkg = shift;
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'),
'actionlabel' => emt('Change'),
'cust_pkg' => $cust_pkg,
);
}
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'),
);
}
</%init>
|