1 <% include('elements/svc_Common.html',
5 'svc_callback' => $svc_cb,
6 'html_foot' => $html_foot,
13 my $fields = FS::svc_dsl->table_info->{'fields'};
14 my %labels = map { $_ => ( ref($fields->{$_})
15 ? $fields->{$_}{'label'}
19 my @fields = keys %$fields;
28 my( $cgi,$svc_dsl, $part_svc,$cust_pkg, $fields1,$opt) = @_;
30 my @exports = $part_svc->part_export_dsl_pull;
31 die "more than one DSL-pulling export attached to svcpart ".$part_svc->svcpart
32 if ( scalar(@exports) > 1 );
34 # if no DSL-pulling exports, then just display everything, which is the
35 # default behaviour implemented above
36 if ( scalar(@exports) ) {
38 my $export = @exports[0];
42 { field => 'loop_type',
43 value => 'FS::part_export::'.$export->exporttype.'::loop_type_long'
45 { field => 'desired_due_date', type => 'date', },
46 { field => 'due_date', type => 'date', },
47 { field => 'pushed', type => 'datetime', },
48 { field => 'monitored', type => 'checkbox', },
49 { field => 'last_pull', type => 'datetime', },
56 if($export->exporttype eq 'ikano') {
57 push @fields, qw ( username password isp_chg isp_prev staticips );
58 $status = "Ikano " . $svc_dsl->vendor_order_type . " order #"
59 . $svc_dsl->vendor_order_id . " Status: "
60 . $svc_dsl->vendor_order_status;
62 # else add any other export-specific stuff here
64 $footer = "<B>$status</B>";
68 $footer .= '<BR><BR>'.
69 include( '/view/elements/svc_devices.html',
71 'table' => 'dsl_device',
75 my @notes = $svc_dsl->notes;
78 my $conf = new FS::Conf;
79 my $date_format = $conf->config('date_format') || '%m/%d/%Y';
82 "Order Notes<BR>". ntable('#cccccc', 2). #id="dsl_notes"
83 '<TR><TH>Date</TH><TH>By</TH><TH>Priority</TH><TH>Note</TH></TR>';
85 foreach my $note ( @notes ) {
87 <TD>".time2str("$date_format %H:%M",$note->date)."</TD>
88 <TD>".$note->by."</TD>
89 <TD>". ($note->priority eq 'N' ? 'Normal' : 'High') ."</TD>
90 <TD>".$note->note."</TD></TR>";
93 $footer .= '</TABLE>';