And to billing fees; And also go through uniquizer for the billing_plan cloning Change-Id: Ia53519f28970c4c717fd011f119143a6323235e5changes/39/2439/3
parent
ff75e75138
commit
0512e767b9
@ -0,0 +1,23 @@
|
||||
package NGCP::Panel::Form::BillingZone::API;
|
||||
|
||||
use HTML::FormHandler::Moose;
|
||||
extends 'NGCP::Panel::Form::BillingZone';
|
||||
use Moose::Util::TypeConstraints;
|
||||
|
||||
has_field 'billing_profile_id' => (
|
||||
type => 'PosInteger',
|
||||
required => 1,
|
||||
element_attr => {
|
||||
rel => ['tooltip'],
|
||||
title => ['The billing profile this billing zone belongs to.']
|
||||
},
|
||||
);
|
||||
|
||||
has_block 'fields' => (
|
||||
tag => 'div',
|
||||
class => [qw/modal-body/],
|
||||
render_list => [qw/billing_profile_id zone detail/],
|
||||
);
|
||||
|
||||
1;
|
||||
# vim: set tabstop=4 expandtab:
|
||||
Loading…
Reference in new issue