diff options
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/edit/svc_dsl.cgi | 2 | ||||
-rw-r--r-- | httemplate/view/svc_dsl.cgi | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/httemplate/edit/svc_dsl.cgi b/httemplate/edit/svc_dsl.cgi index 4fca0cd9f..79aeb1a10 100644 --- a/httemplate/edit/svc_dsl.cgi +++ b/httemplate/edit/svc_dsl.cgi @@ -113,7 +113,7 @@ my $new_cb = sub { value => $vendor_qual_id, }, { field => 'vendor_order_type', type => 'hidden', - value => 'N' }, + value => 'NEW' }, { field => 'desired_due_date', type => 'fixed', formatted_value => diff --git a/httemplate/view/svc_dsl.cgi b/httemplate/view/svc_dsl.cgi index 14c1eb26d..7bbdca1c7 100644 --- a/httemplate/view/svc_dsl.cgi +++ b/httemplate/view/svc_dsl.cgi @@ -51,12 +51,16 @@ my $svc_cb = sub { 'last', 'company' ); + my $status = ''; if($export->exporttype eq 'ikano') { push @fields, qw ( username password isp_chg isp_prev staticips ); + $status = "Ikano " . $svc_x->vendor_order_type . " order #" + . $svc_x->vendor_order_id . " Status: " + . $svc_x->vendor_order_status; } # else add any other export-specific stuff here - $footer = "<B>".$export->status_line($svc_x)."</B>"; + $footer = "<B>$status</B>"; $footer .= "<BR><BR><BR><B>Order Notes:</B><BR>".$export->notes_html($svc_x); }; </%init> |