You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
4.1 KiB
136 lines
4.1 KiB
package NGCP::Panel::Form::CustomerFraudPreferences::PreferencesAPI;
|
|
use HTML::FormHandler::Moose;
|
|
use HTML::FormHandler::Widget::Block::Bootstrap;
|
|
extends 'HTML::FormHandler';
|
|
|
|
has_field 'current_fraud_interval_source' => (
|
|
readonly => 1,
|
|
required => 0,
|
|
type => 'Select',
|
|
label => 'Fraud preferences interval source (customer or billing_profile) (readonly)',
|
|
options => [
|
|
{ value => 'customer', label => 'Customer' },
|
|
{ value => 'billng_profile', label => 'Billing Profile' },
|
|
],
|
|
);
|
|
|
|
has_field 'fraud_interval_limit' => (
|
|
type => 'Integer',
|
|
label => 'Fraud detection threshold per month in cents',
|
|
);
|
|
|
|
has_field 'current_fraud_interval_limit' => (
|
|
readonly => 1,
|
|
type => 'Integer',
|
|
required => 0,
|
|
label => 'Current fraud detection threshold per month in cents (readonly)',
|
|
);
|
|
|
|
has_field 'fraud_interval_lock' => (
|
|
type => 'Select',
|
|
label => 'Lock level',
|
|
options => [
|
|
{ value => 0, label => 'none' },
|
|
{ value => 1, label => 'foreign calls' },
|
|
{ value => 2, label => 'all outgoing calls' },
|
|
{ value => 3, label => 'incoming and outgoing' },
|
|
{ value => 4, label => 'global (including CSC)' },
|
|
{ value => 5, label => 'ported (call forwarding only)' },
|
|
],
|
|
);
|
|
|
|
has_field 'current_fraud_interval_lock' => (
|
|
readonly => 1,
|
|
type => 'Select',
|
|
required => 0,
|
|
label => 'Current lock level (readonly)',
|
|
options => [
|
|
{ value => 0, label => 'none' },
|
|
{ value => 1, label => 'foreign calls' },
|
|
{ value => 2, label => 'all outgoing calls' },
|
|
{ value => 3, label => 'incoming and outgoing' },
|
|
{ value => 4, label => 'global (including CSC)' },
|
|
{ value => 5, label => 'ported (call forwarding only)' },
|
|
],
|
|
);
|
|
|
|
has_field 'fraud_interval_notify' => (
|
|
type => '+NGCP::Panel::Field::EmailList',
|
|
maxlength => 255,
|
|
label => 'Comma-separated list of e-mail addresses for notification'
|
|
);
|
|
|
|
has_field 'current_fraud_interval_notify' => (
|
|
readonly => 1,
|
|
type => '+NGCP::Panel::Field::EmailList',
|
|
required => 0,
|
|
maxlength => 255,
|
|
label => 'Current comma-separated list of e-mail addresses for notification (readonly)'
|
|
);
|
|
|
|
has_field 'current_fraud_daily_source' => (
|
|
readonly => 1,
|
|
required => 0,
|
|
type => 'Select',
|
|
label => 'Fraud daily preferences source (customer or billing_profile) (readonly)',
|
|
options => [
|
|
{ value => 'customer', label => 'Customer' },
|
|
{ value => 'billng_profile', label => 'Billing Profile' },
|
|
],
|
|
);
|
|
|
|
has_field 'fraud_daily_limit' => (
|
|
type => 'Integer',
|
|
label => 'Fraud detection threshold per day in cents',
|
|
);
|
|
|
|
has_field 'current_fraud_daily_limit' => (
|
|
readonly => 1,
|
|
type => 'Integer',
|
|
label => 'Current fraud detection threshold per day in cents (readonly)',
|
|
);
|
|
|
|
has_field 'fraud_daily_lock' => (
|
|
type => 'Select',
|
|
label => 'Daily lock level',
|
|
options => [
|
|
{ value => 0, label => 'none' },
|
|
{ value => 1, label => 'foreign calls' },
|
|
{ value => 2, label => 'all outgoing calls' },
|
|
{ value => 3, label => 'incoming and outgoing' },
|
|
{ value => 4, label => 'global (including CSC)' },
|
|
{ value => 5, label => 'ported (call forwarding only)' },
|
|
],
|
|
);
|
|
|
|
has_field 'current_fraud_daily_lock' => (
|
|
readonly => 1,
|
|
type => 'Select',
|
|
required => 0,
|
|
label => 'Current daily lock level (readonly)',
|
|
options => [
|
|
{ value => 0, label => 'none' },
|
|
{ value => 1, label => 'foreign calls' },
|
|
{ value => 2, label => 'all outgoing calls' },
|
|
{ value => 3, label => 'incoming and outgoing' },
|
|
{ value => 4, label => 'global (including CSC)' },
|
|
{ value => 5, label => 'ported (call forwarding only)' },
|
|
],
|
|
);
|
|
|
|
has_field 'fraud_daily_notify' => (
|
|
type => '+NGCP::Panel::Field::EmailList',
|
|
maxlength => 255,
|
|
label => 'Comma-separated list of e-mail addresses for notification'
|
|
);
|
|
|
|
has_field 'current_fraud_daily_notify' => (
|
|
readonly => 1,
|
|
type => '+NGCP::Panel::Field::EmailList',
|
|
required => 0,
|
|
maxlength => 255,
|
|
label => 'Current comma-separated list of e-mail addresses for notification (readonly)'
|
|
);
|
|
|
|
1;
|