diff options
| author | mark <mark> | 2010-12-29 22:56:47 +0000 |
|---|---|---|
| committer | mark <mark> | 2010-12-29 22:56:47 +0000 |
| commit | 6fc8a42e503e4e1f12659e1cfef7f5f26577034f (patch) | |
| tree | fcac659b42217a4013afe04a98ac956f2c650cdb /httemplate/view/cust_main/packages/location.html | |
| parent | 15a9fae1bde88fb279534de4effae20e43fbee27 (diff) | |
cust_location editing features, RT#10766
Diffstat (limited to 'httemplate/view/cust_main/packages/location.html')
| -rw-r--r-- | httemplate/view/cust_main/packages/location.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/httemplate/view/cust_main/packages/location.html b/httemplate/view/cust_main/packages/location.html index 41155cbae..40a7de59f 100644 --- a/httemplate/view/cust_main/packages/location.html +++ b/httemplate/view/cust_main/packages/location.html @@ -21,12 +21,16 @@ % { <FONT SIZE=-1> ( <%pkg_change_location_link($cust_pkg)%> ) +% if ( $cust_pkg->locationnum ) { + ( <%edit_location_link($cust_pkg->locationnum)%> ) +% } </FONT> % } </TD> <%init> +my $conf = new FS::Conf; my %opt = @_; my $bgcolor = $opt{'bgcolor'}; @@ -50,4 +54,13 @@ sub pkg_change_location_link { ); } +sub edit_location_link { + my $locationnum = shift; + include( '/elements/popup_link.html', + 'action' => $p. "edit/cust_location.cgi?locationnum=$locationnum", + 'label' => 'Edit location', + 'actionlabel' => 'Edit', + ); +} + </%init> |
