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.
ngcp-panel/lib/NGCP/Panel/Form/Invoice/InvoiceAPI.pm

107 lines
2.3 KiB

package NGCP::Panel::Form::Invoice::InvoiceAPI;
use HTML::FormHandler::Moose;
extends 'HTML::FormHandler';
has_field 'customer_id' => (
type => 'PosInteger',
label => 'Customer',
required => 1,
element_attr => {
rel => ['tooltip'],
title => ['The customer this invoice belongs to.']
},
);
has_field 'template_id' => (
type => 'PosInteger',
label => 'Template',
required => 1,
element_attr => {
rel => ['tooltip'],
title => ['The template is used to generate invoice.']
},
);
has_field 'serial' => (
type => 'Text',
label => 'Serial',
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['The invoice serial number.']
},
);
has_field 'period_start' => (
type => '+NGCP::Panel::Field::DateTime',
label => 'Invoice Period Start',
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['The start of the invoice period.']
},
);
has_field 'period_end' => (
type => '+NGCP::Panel::Field::DateTime',
label => 'Invoice Period End',
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['The end of the invoice period.']
},
);
has_field 'period' => (
label => 'Invoice Periods',
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['Invoice period.']
},
);
has_field 'amount_net' => (
type => 'Money',
label => 'Net Amount',
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['The net amount of the invoice in USD, EUR etc.']
},
);
has_field 'amount_vat' => (
type => 'Money',
label => 'VAT Amount',
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['The vat amount of the invoice in USD, EUR etc.']
},
);
has_field 'amount_total' => (
type => 'Money',
label => 'Total Amount',
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['The vat amount of the invoice in USD, EUR etc.']
},
);
has_field 'sent_date' => (
type => '+NGCP::Panel::Field::DateTime',
label => 'Invoice Period Start',
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['The date the invoice has been sent by email or null if not sent.']
},
);
1;
# vim: set tabstop=4 expandtab: