MT#4317 fraud limits: fix labelling

seems to be in cents instead of Euros,
also add the label where it had been missing
ldieckow/cert-manage
Gerhard Jungwirth 13 years ago
parent 3f2ecc2da3
commit 029c3832cc

@ -71,7 +71,7 @@ has_field 'fraud_interval_limit' => (
label => 'Fraud Monthly Limit',
element_attr => {
rel => ['tooltip'],
title => ['fraud detection threshold, per month, float, specifying EUR, USD, etc.']
title => ['fraud detection threshold per month, specifying cents']
},
);
@ -105,7 +105,7 @@ has_field 'fraud_daily_limit' => (
type => 'Integer',
element_attr => {
rel => ['tooltip'],
title => ['fraud detection threshold, per day, float, specifying EUR, USD, etc.']
title => ['fraud detection threshold per day, specifying cents']
},
required => 0,
default => undef,

@ -15,6 +15,10 @@ has_field 'fraud_daily_limit' => (
type => 'Integer',
label => 'Daily Fraud Limit',
required => 1,
element_attr => {
rel => ['tooltip'],
title => ['fraud detection threshold per day, specifying cents']
},
);
has_field 'fraud_daily_lock' => (
@ -33,6 +37,10 @@ has_field 'fraud_daily_notify' => (
type => '+NGCP::Panel::Field::EmailList',
label => 'Notify Emails',
maxlength => 255,
element_attr => {
rel => ['tooltip'],
title => ['where e-mail notifications are sent, a list of e-mail addreses separated by comma']
},
);
has_field 'save' => (

@ -15,6 +15,10 @@ has_field 'fraud_interval_limit' => (
type => 'Integer',
label => 'Monthly Fraud Limit',
required => 1,
element_attr => {
rel => ['tooltip'],
title => ['fraud detection threshold per month, specifying cents']
},
);
has_field 'fraud_interval_lock' => (
@ -33,6 +37,10 @@ has_field 'fraud_interval_notify' => (
type => '+NGCP::Panel::Field::EmailList',
label => 'Notify Emails',
maxlength => 255,
element_attr => {
rel => ['tooltip'],
title => ['where e-mail notifications are sent, a list of e-mail addreses separated by comma']
},
);
has_field 'save' => (

Loading…
Cancel
Save