summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2010-03-01 21:05:44 +0000
committerivan <ivan>2010-03-01 21:05:44 +0000
commit1994b5c72b81dbfeda467a3bf2c8378bdceae034 (patch)
tree24320890dcf5b946a1e9860ed4492060f7521d18
parent2d338b5a6e7594c0bd95e9490c3d21e7052b45c7 (diff)
fix inventory item links to non-svc_acct services, RT#7010
-rw-r--r--httemplate/search/inventory_item.html12
1 files changed, 11 insertions, 1 deletions
diff --git a/httemplate/search/inventory_item.html b/httemplate/search/inventory_item.html
index cd37e267b..ba449ecd7 100644
--- a/httemplate/search/inventory_item.html
+++ b/httemplate/search/inventory_item.html
@@ -9,6 +9,7 @@
'hashref' => { 'classnum' => $classnum },
'select' => join(', ',
'inventory_item.*',
+ 'part_svc.svcdb',
'cust_main.custnum',
FS::UI::Web::cust_sql_fields(),
),
@@ -103,7 +104,16 @@ my $count_query =
my $link = sub {
my $inventory_item = shift;
if ( $inventory_item->svcnum ) {
- [ "${p}view/svc_acct.cgi?", 'svcnum' ];
+
+ #[ "${p}view/svc_acct.cgi?", 'svcnum' ];
+ my $url = svc_url(
+ 'm' => $m,
+ 'action' => 'view',
+ #'svcdb' => $inventory_item->cust_svc->part_svc->svcdb,
+ 'svcdb' => $inventory_item->svcdb, #we have it from the joined search
+ 'query' => '',
+ );
+ [ $url, 'svcnum' ];
} else {
'';
}