summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorivan <ivan>2008-07-21 19:09:36 +0000
committerivan <ivan>2008-07-21 19:09:36 +0000
commit3c4456c1de9701d93b64fcbadcfaca598a0347d8 (patch)
tree3882ec86c37ec3cc6be6cc969203398e96088fd4 /httemplate/elements
parent9a90f2af0663c9b4e9611e044fd25349425d1aec (diff)
signup w/globalpops DID selection via mason components pass-through
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/select-did.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/elements/select-did.html b/httemplate/elements/select-did.html
index 999274fea..a8ef09d61 100644
--- a/httemplate/elements/select-did.html
+++ b/httemplate/elements/select-did.html
@@ -4,7 +4,10 @@ Example:
include('/elements/select-did.html',
'field' => 'phonenum',
+
'svcpart' => 5,
+ #OR
+ 'object' => $svc_phone,
);
</%doc>
@@ -65,7 +68,7 @@ my $conf = new FS::Conf;
my $country = $conf->config('countrydefault') || 'US';
#XXX make sure this comes through on errors too
-my $svcpart = $opt{'object'}->svcpart;
+my $svcpart = $opt{'svcpart'} || $opt{'object'}->svcpart;
my $part_svc = qsearchs('part_svc', { 'svcpart'=>$svcpart } );
die "unknown svcpart $svcpart" unless $part_svc;