summaryrefslogtreecommitdiff
path: root/httemplate/view/svc_dsl.cgi
diff options
context:
space:
mode:
authorlevinse <levinse>2010-11-25 20:02:55 +0000
committerlevinse <levinse>2010-11-25 20:02:55 +0000
commit4d510fab209dcfd9e6ec75a55ee653593e2d1435 (patch)
tree44c05b53b42a40d97f96b381e7f14e1cdf5b266d /httemplate/view/svc_dsl.cgi
parent4683c4acd47d916cb96bf52e3afd654314c06a28 (diff)
more sane svc_dsl UI, RT7111
Diffstat (limited to 'httemplate/view/svc_dsl.cgi')
-rw-r--r--httemplate/view/svc_dsl.cgi32
1 files changed, 18 insertions, 14 deletions
diff --git a/httemplate/view/svc_dsl.cgi b/httemplate/view/svc_dsl.cgi
index b460c010e..fd998ae60 100644
--- a/httemplate/view/svc_dsl.cgi
+++ b/httemplate/view/svc_dsl.cgi
@@ -7,8 +7,8 @@
)
%>
<%init>
-my $conf = new FS::Conf;
-my $date_format = $conf->config('date_format') || '%m/%d/%Y';
+
+# XXX: AJAX auto-pull
my $fields = FS::svc_dsl->table_info->{'fields'};
my %labels = map { $_ => ( ref($fields->{$_})
@@ -38,21 +38,25 @@ my $svc_cb = sub {
my $export = @exports[0];
$opt->{'disable_unprovision'} = 1;
- # XXX: AJAX auto-pull
-
- @fields = qw( svctn first last company username password );
+ @fields = ( 'svctn',
+ { field => 'loop_type',
+ value => 'FS::part_export::'.$export->exporttype.'::loop_type_long'
+ },
+ { field => 'desired_dd', type => 'date', },
+ { field => 'dd', type => 'date', },
+ { field => 'pushed', type => 'datetime', },
+ { field => 'monitored', type => 'checkbox', },
+ { field => 'last_pull', type => 'datetime', },
+ 'first',
+ 'last',
+ 'company' );
if($export->exporttype eq 'ikano') {
- push @fields, 'isp_chg';
- push @fields, 'isp_prev';
- push @fields, 'staticips';
- }
- else {
- # XXX
+ push @fields, qw ( username password isp_chg isp_prev staticips );
}
+ # else add any other export-specific stuff here
- $footer = "<B>".$export->status_line($svc_x,$date_format,"<BR>")."</B>";
-
- # XXX: notes
+ $footer = "<B>".$export->status_line($svc_x)."</B>";
+ $footer .= "<BR><BR><BR>Order Notes:<BR>".$export->notes_html;
};
</%init>