diff --git a/lib/NGCP/Panel/Form/BillingProfile/Reseller.pm b/lib/NGCP/Panel/Form/BillingProfile/Reseller.pm index c647f5c013..284918db3d 100644 --- a/lib/NGCP/Panel/Form/BillingProfile/Reseller.pm +++ b/lib/NGCP/Panel/Form/BillingProfile/Reseller.pm @@ -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, diff --git a/lib/NGCP/Panel/Form/CustomerDailyFraud.pm b/lib/NGCP/Panel/Form/CustomerDailyFraud.pm index 5f0be1ea64..a12ba66aeb 100644 --- a/lib/NGCP/Panel/Form/CustomerDailyFraud.pm +++ b/lib/NGCP/Panel/Form/CustomerDailyFraud.pm @@ -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' => ( diff --git a/lib/NGCP/Panel/Form/CustomerMonthlyFraud.pm b/lib/NGCP/Panel/Form/CustomerMonthlyFraud.pm index 21a1001b64..5f392048c2 100644 --- a/lib/NGCP/Panel/Form/CustomerMonthlyFraud.pm +++ b/lib/NGCP/Panel/Form/CustomerMonthlyFraud.pm @@ -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' => (