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
47
48
49
50
51
52
53
54
55
56
57
|
% if ( $contact ) {
<% $contact->line |h %>
% if ( $show_link ) {
<FONT SIZE=-1>
( <%pkg_change_contact_link($cust_pkg)%> )
</FONT>
% }
% } elsif ( $show_link ) {
<FONT SIZE=-1>
( <%pkg_add_contact_link($cust_pkg)%> )
</FONT>
% }
<%init>
my $conf = new FS::Conf;
my %opt = @_;
my $cust_pkg = $opt{'cust_pkg'};
my $show_link =
! $cust_pkg->get('cancel')
&& $FS::CurrentUser::CurrentUser->access_right('Change customer package');
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',
'action' => $p. "misc/change_pkg_contact.html",
'label' => emt('Change'), # contact'),
'actionlabel' => emt('Change'),
'cust_pkg' => $cust_pkg,
);
}
sub pkg_add_contact_link {
my $cust_pkg = shift;
#my $pkgpart = $cust_pkg->pkgpart;
include( '/elements/popup_link-cust_pkg.html',
'action' => $p. "misc/change_pkg_contact.html",
'label' => emt('Add 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>
|