add dsl_device to track mac addresses, RT#13656
[freeside.git] / httemplate / view / svc_dsl.cgi
1 <% include('elements/svc_Common.html',
2             'table'        => 'svc_dsl',
3             'labels'       => \%labels,
4             'fields'       => \@fields,
5             'svc_callback' => $svc_cb,
6             'html_foot'    => $html_foot,
7           )
8 %>
9 <%init>
10
11 # XXX: AJAX auto-pull
12
13 my $fields = FS::svc_dsl->table_info->{'fields'};
14 my %labels = map { $_ =>  ( ref($fields->{$_})
15                              ? $fields->{$_}{'label'}
16                              : $fields->{$_}
17                          );
18                  } keys %$fields;
19 my @fields = keys %$fields;
20
21 my $footer;
22
23 my $html_foot = sub {
24     return $footer;
25 };
26
27 my $svc_cb = sub {
28     my( $cgi,$svc_dsl, $part_svc,$cust_pkg, $fields1,$opt) = @_;
29
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 );
33     
34     # if no DSL-pulling exports, then just display everything, which is the
35     # default behaviour implemented above
36     if ( scalar(@exports) ) {
37
38       my $export = @exports[0];
39
40       @fields = (
41         'phonenum',
42         { field => 'loop_type', 
43           value => 'FS::part_export::'.$export->exporttype.'::loop_type_long'
44         },
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', },
50         'first',
51         'last',
52         'company',
53       );
54
55       my $status = '';
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 . " &nbsp; Status: " 
60                   . $svc_dsl->vendor_order_status;
61       }
62       # else add any other export-specific stuff here
63    
64       $footer = "<B>$status</B>";
65
66     }
67
68     $footer .= '<BR><BR>'.
69                include( '/view/elements/svc_devices.html',
70                           'svc_x'   => $svc_dsl,
71                           'table'   => 'dsl_device',
72                           'no_edit' => 1,
73                       );
74
75     my @notes = $svc_dsl->notes;
76     if ( @notes ) {
77
78       my $conf = new FS::Conf;
79       my $date_format = $conf->config('date_format') || '%m/%d/%Y';
80
81       $footer .=
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>';
84
85       foreach my $note ( @notes ) {
86         $footer .= "<TR>
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>";
91       }
92
93       $footer .= '</TABLE>';
94
95     }
96 };
97 </%init>