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.
517 lines
11 KiB
517 lines
11 KiB
package NGCP::Schema::Result::contracts;
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Scalar::Util qw(blessed);
|
|
use parent 'DBIx::Class::Core';
|
|
|
|
our $VERSION = '2.007';
|
|
|
|
__PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON");
|
|
|
|
__PACKAGE__->table("billing.contracts");
|
|
|
|
__PACKAGE__->add_columns(
|
|
"id",
|
|
{
|
|
data_type => "integer",
|
|
extra => { unsigned => 1 },
|
|
is_auto_increment => 1,
|
|
is_nullable => 0,
|
|
},
|
|
"customer_id",
|
|
{
|
|
data_type => "integer",
|
|
extra => { unsigned => 1 },
|
|
is_foreign_key => 1,
|
|
is_nullable => 1,
|
|
},
|
|
"contact_id",
|
|
{
|
|
data_type => "integer",
|
|
extra => { unsigned => 1 },
|
|
is_foreign_key => 1,
|
|
is_nullable => 1,
|
|
},
|
|
"order_id",
|
|
{
|
|
data_type => "integer",
|
|
extra => { unsigned => 1 },
|
|
is_foreign_key => 1,
|
|
is_nullable => 1,
|
|
},
|
|
"profile_package_id",
|
|
{
|
|
data_type => "integer",
|
|
extra => { unsigned => 1 },
|
|
is_foreign_key => 1,
|
|
is_nullable => 1,
|
|
},
|
|
"status",
|
|
{
|
|
data_type => "enum",
|
|
default_value => "active",
|
|
extra => { list => ["pending", "active", "locked", "terminated"] },
|
|
is_nullable => 0,
|
|
},
|
|
"external_id",
|
|
{ data_type => "varchar", is_nullable => 1, size => 255 },
|
|
"send_invoice",
|
|
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
|
|
"modify_timestamp",
|
|
{
|
|
data_type => "timestamp",
|
|
datetime_undef_if_invalid => 1,
|
|
default_value => \"current_timestamp",
|
|
is_nullable => 0,
|
|
},
|
|
"create_timestamp",
|
|
{
|
|
data_type => "timestamp",
|
|
datetime_undef_if_invalid => 1,
|
|
default_value => "0000-00-00 00:00:00",
|
|
is_nullable => 0,
|
|
},
|
|
"activate_timestamp",
|
|
{
|
|
data_type => "timestamp",
|
|
datetime_undef_if_invalid => 1,
|
|
is_nullable => 1,
|
|
},
|
|
"terminate_timestamp",
|
|
{
|
|
data_type => "timestamp",
|
|
datetime_undef_if_invalid => 1,
|
|
is_nullable => 1,
|
|
},
|
|
"max_subscribers",
|
|
{
|
|
data_type => "integer",
|
|
extra => { unsigned => 1 },
|
|
is_nullable => 1,
|
|
},
|
|
"subscriber_email_template_id",
|
|
{
|
|
data_type => "integer",
|
|
extra => { unsigned => 1 },
|
|
is_nullable => 1,
|
|
},
|
|
"passreset_email_template_id",
|
|
{
|
|
data_type => "integer",
|
|
extra => { unsigned => 1 },
|
|
is_nullable => 1,
|
|
},
|
|
"invoice_email_template_id",
|
|
{
|
|
data_type => "integer",
|
|
extra => { unsigned => 1 },
|
|
is_nullable => 1
|
|
},
|
|
"invoice_template_id",
|
|
{
|
|
data_type => "integer",
|
|
extra => { unsigned => 1 },
|
|
is_nullable => 1
|
|
},
|
|
"vat_rate",
|
|
{ data_type => "decimal", is_nullable => 0, size => [14, 6] },
|
|
"add_vat",
|
|
{ data_type => "tinyint", extra => { unsigned => 1 }, default_value => 0, is_nullable => 0 },
|
|
"product_id",
|
|
{
|
|
data_type => "integer",
|
|
extra => { unsigned => 1 },
|
|
is_foreign_key => 1,
|
|
is_nullable => 1,
|
|
},
|
|
|
|
);
|
|
|
|
__PACKAGE__->set_primary_key("id");
|
|
|
|
__PACKAGE__->has_many(
|
|
"billing_mappings",
|
|
"NGCP::Schema::Result::legacy_billing_mappings",
|
|
{ "foreign.contract_id" => "self.id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->belongs_to(
|
|
"contact",
|
|
"NGCP::Schema::Result::contacts",
|
|
{ id => "contact_id" },
|
|
{
|
|
is_deferrable => 1,
|
|
join_type => "LEFT",
|
|
on_delete => "SET NULL",
|
|
on_update => "CASCADE",
|
|
},
|
|
);
|
|
|
|
__PACKAGE__->has_many(
|
|
"contract_balances",
|
|
"NGCP::Schema::Result::contract_balances",
|
|
{ "foreign.contract_id" => "self.id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->might_have(
|
|
"contract_fraud_preference",
|
|
"NGCP::Schema::Result::contract_fraud_preferences",
|
|
{ "foreign.contract_id" => "self.id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->has_many(
|
|
"contract_registers",
|
|
"NGCP::Schema::Result::contract_registers",
|
|
{ "foreign.contract_id" => "self.id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->belongs_to(
|
|
"customer",
|
|
"NGCP::Schema::Result::customers",
|
|
{ id => "customer_id" },
|
|
{
|
|
is_deferrable => 1,
|
|
join_type => "LEFT",
|
|
on_delete => "CASCADE",
|
|
on_update => "CASCADE",
|
|
},
|
|
);
|
|
|
|
__PACKAGE__->belongs_to(
|
|
"order",
|
|
"NGCP::Schema::Result::orders",
|
|
{ id => "order_id" },
|
|
{
|
|
is_deferrable => 1,
|
|
join_type => "LEFT",
|
|
on_delete => "SET NULL",
|
|
on_update => "CASCADE",
|
|
},
|
|
);
|
|
|
|
__PACKAGE__->has_many(
|
|
"voip_subscribers",
|
|
"NGCP::Schema::Result::voip_subscribers",
|
|
{ "foreign.contract_id" => "self.id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->has_many(
|
|
"autoprov_field_devices",
|
|
"NGCP::Schema::Result::autoprov_field_devices",
|
|
{ "foreign.contract_id" => "self.id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->has_many(
|
|
"voip_sound_sets",
|
|
"NGCP::Schema::Result::voip_sound_sets",
|
|
{ "foreign.contract_id" => "self.id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->belongs_to(
|
|
"subscriber_email_template",
|
|
"NGCP::Schema::Result::email_templates",
|
|
{ "foreign.id" => "self.subscriber_email_template_id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->belongs_to(
|
|
"passreset_email_template",
|
|
"NGCP::Schema::Result::email_templates",
|
|
{ "foreign.id" => "self.passreset_email_template_id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->belongs_to(
|
|
"invoice_email_template",
|
|
"NGCP::Schema::Result::email_templates",
|
|
{ "foreign.id" => "self.invoice_email_template_id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->belongs_to(
|
|
"invoice_template",
|
|
"NGCP::Schema::Result::invoice_templates",
|
|
{ "foreign.id" => "self.invoice_template_id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->has_many(
|
|
"invoices",
|
|
"NGCP::Schema::Result::invoices",
|
|
{ "foreign.contract_id" => "self.id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->has_many(
|
|
"voip_contract_preferences",
|
|
"NGCP::Schema::Result::voip_contract_preferences",
|
|
{ "foreign.contract_id" => "self.id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->has_many(
|
|
"voip_contract_locations",
|
|
"NGCP::Schema::Result::voip_contract_locations",
|
|
{ "foreign.contract_id" => "self.id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->belongs_to(
|
|
"profile_package",
|
|
"NGCP::Schema::Result::profile_packages",
|
|
{ id => "profile_package_id" },
|
|
{
|
|
is_deferrable => 1,
|
|
join_type => "LEFT",
|
|
on_delete => "SET NULL",
|
|
on_update => "CASCADE",
|
|
},
|
|
);
|
|
|
|
__PACKAGE__->has_many(
|
|
"topup_log",
|
|
"NGCP::Schema::Result::topup_logs",
|
|
{ 'foreign.contract_id' => 'self.id' },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->has_many(
|
|
"phonebook",
|
|
"NGCP::Schema::Result::contract_phonebook",
|
|
{ "foreign.contract_id" => "self.id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->might_have(
|
|
"timezone",
|
|
'NGCP::Schema::Result::contract_timezone',
|
|
{ 'foreign.contract_id' => 'self.id' },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->might_have(
|
|
"actual_billing_profile",
|
|
'NGCP::Schema::Result::actual_billing_profiles',
|
|
{ 'foreign.contract_id' => 'self.id' },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->belongs_to(
|
|
"product",
|
|
"NGCP::Schema::Result::products",
|
|
{ id => "product_id" },
|
|
{
|
|
is_deferrable => 1,
|
|
join_type => "LEFT",
|
|
on_delete => "RESTRICT",
|
|
on_update => "CASCADE",
|
|
},
|
|
);
|
|
|
|
sub TO_JSON {
|
|
my ($self) = @_;
|
|
return {
|
|
map { blessed($_) && $_->isa('DateTime') ? $_->datetime : $_ } %{ $self->next::method }
|
|
};
|
|
}
|
|
|
|
1;
|
|
__END__
|
|
|
|
=encoding UTF-8
|
|
|
|
=head1 NAME
|
|
|
|
NGCP::Schema::Result::contracts
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
This module is a schema class for the NGCP database table "billing.contracts".
|
|
|
|
=head1 COMPONENTS LOADED
|
|
|
|
=over 4
|
|
|
|
=item * L<DBIx::Class::InflateColumn::DateTime>
|
|
|
|
=item * L<DBIx::Class::Helper::Row::ToJSON>
|
|
|
|
=back
|
|
|
|
=head1 TABLE: C<billing.contracts>
|
|
|
|
=head1 ACCESSORS
|
|
|
|
=head2 id
|
|
|
|
data_type: 'integer'
|
|
extra: {unsigned => 1}
|
|
is_auto_increment: 1
|
|
is_nullable: 0
|
|
|
|
=head2 customer_id
|
|
|
|
data_type: 'integer'
|
|
extra: {unsigned => 1}
|
|
is_foreign_key: 1
|
|
is_nullable: 1
|
|
|
|
=head2 contact_id
|
|
|
|
data_type: 'integer'
|
|
extra: {unsigned => 1}
|
|
is_foreign_key: 1
|
|
is_nullable: 1
|
|
|
|
=head2 order_id
|
|
|
|
data_type: 'integer'
|
|
extra: {unsigned => 1}
|
|
is_foreign_key: 1
|
|
is_nullable: 1
|
|
|
|
=head2 status
|
|
|
|
data_type: 'enum'
|
|
default_value: 'active'
|
|
extra: {list => ["pending","active","locked","terminated"]}
|
|
is_nullable: 0
|
|
|
|
=head2 external_id
|
|
|
|
data_type: 'varchar'
|
|
is_nullable: 1
|
|
size: 255
|
|
|
|
=head2 modify_timestamp
|
|
|
|
data_type: 'timestamp'
|
|
datetime_undef_if_invalid: 1
|
|
default_value: current_timestamp
|
|
is_nullable: 0
|
|
|
|
=head2 create_timestamp
|
|
|
|
data_type: 'timestamp'
|
|
datetime_undef_if_invalid: 1
|
|
default_value: '0000-00-00 00:00:00'
|
|
is_nullable: 0
|
|
|
|
=head2 activate_timestamp
|
|
|
|
data_type: 'timestamp'
|
|
datetime_undef_if_invalid: 1
|
|
is_nullable: 1
|
|
|
|
=head2 terminate_timestamp
|
|
|
|
data_type: 'timestamp'
|
|
datetime_undef_if_invalid: 1
|
|
is_nullable: 1
|
|
|
|
=head1 PRIMARY KEY
|
|
|
|
=over 4
|
|
|
|
=item * L</id>
|
|
|
|
=back
|
|
|
|
=head1 RELATIONS
|
|
|
|
=head2 active_reseller
|
|
|
|
Type: might_have
|
|
|
|
Related object: L<NGCP::Schema::Result::resellers>
|
|
|
|
=head2 billing_mappings
|
|
|
|
Type: has_many
|
|
|
|
Related object: L<NGCP::Schema::Result::billing_mappings>
|
|
|
|
=head2 contact
|
|
|
|
Type: belongs_to
|
|
|
|
Related object: L<NGCP::Schema::Result::contacts>
|
|
|
|
=head2 contract_balances
|
|
|
|
Type: has_many
|
|
|
|
Related object: L<NGCP::Schema::Result::contract_balances>
|
|
|
|
=head2 contract_fraud_preference
|
|
|
|
Type: might_have
|
|
|
|
Related object: L<NGCP::Schema::Result::contract_fraud_preferences>
|
|
|
|
=head2 contract_registers
|
|
|
|
Type: has_many
|
|
|
|
Related object: L<NGCP::Schema::Result::contract_registers>
|
|
|
|
=head2 customer
|
|
|
|
Type: belongs_to
|
|
|
|
Related object: L<NGCP::Schema::Result::customers>
|
|
|
|
=head2 order
|
|
|
|
Type: belongs_to
|
|
|
|
Related object: L<NGCP::Schema::Result::orders>
|
|
|
|
=head2 reseller
|
|
|
|
Type: belongs_to
|
|
|
|
Related object: L<NGCP::Schema::Result::resellers>
|
|
|
|
=head2 voip_subscribers
|
|
|
|
Type: has_many
|
|
|
|
Related object: L<NGCP::Schema::Result::voip_subscribers>
|
|
|
|
=head2 voip_pbx_groups
|
|
|
|
Type: has_many
|
|
|
|
Related object: L<NGCP::Schema::Result::voip_pbx_groups>
|
|
|
|
=head1 AUTHOR
|
|
|
|
Sipwise Development Team C<< <support@sipwise.com> >>
|
|
|
|
=head1 LICENSE
|
|
|
|
This software is Copyright © 2017 by Sipwise GmbH, Austria.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this package. If not, see <https://www.gnu.org/licenses/>.
|