blob: c0c4795a6d952024f5e13e198f70bf35c5563c60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<% include('/elements/header-popup.html', $success_msg ) %>
<SCRIPT TYPE="text/javascript">
<% $js %>
</SCRIPT>
</BODY>
</HTML>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Import');
$cgi->param('action') =~ /^(confirm|cancel|provision)$/ or die 'illegal action';
my $action = $1;
my $success_msg = '';
my $error = '';
my $js = 'window.top.location.reload();';
$cgi->param('ordernum') =~ /^(\d+)$/ or die 'illegal ordernum';
my $ordernum = $1;
my $did_order = qsearchs( {
'table' => 'did_order',
'hashref' => { 'ordernum' => $ordernum },
} );
die "No order $ordernum" unless $did_order;
if ( $action eq 'confirm' ) {
my $confirmed = '';
my $sucess_msg = 'DID order confirmed';
$confirmed = parse_datetime($cgi->param('confirmed'))
if $cgi->param('confirmed') && $cgi->param('confirmed') !~ /^\d+$/;
$confirmed = $1
if $cgi->param('confirmed') && $cgi->param('confirmed') =~ /^(\d+)$/;
die "invalid confirmation date" unless $confirmed;
$did_order->confirmed($confirmed);
$did_order->vendor_order_id($cgi->param('vendor_order_id'));
$error = $did_order->replace;
if ( $error ) {
$cgi->param('error', $error);
print $cgi->redirect(popurl(1). "did_order_confirm.html?". $cgi->query_string );
}
}
elsif ( $action eq 'cancel' ) {
my $sucess_msg = 'DID order cancelled';
$error = $did_order->delete;
$js = "window.location.href = '${p}browse/did_order.html'";
}
elsif ( $action eq 'provision' ) {
my $sucess_msg = 'DID order provisioned';
$cgi->param('pkgnum_svcpart') =~ /^(\d+)_(\d+)$/ or die 'illegal pkgnum_svcpart';
my $pkgnum = $1;
my $svcpart = $2;
my @dids = qsearch( 'phone_avail', { ordernum => $ordernum } );
die "no DIDs on order" unless scalar(@dids);
foreach my $did ( @dids ) {
my $svc_phone = new FS::svc_phone({
pkgnum => $pkgnum,
svcpart => $svcpart,
countrycode => 1,
phonenum => $did->npa.$did->nxx.$did->station,
});
$error = $svc_phone->insert;
last if $error;
}
}
</%init>
|