From 3a804ffb66fc7385774d087d9b2aa0024027ae6d Mon Sep 17 00:00:00 2001 From: Irina Peshinskaya Date: Mon, 11 May 2015 17:42:22 +0300 Subject: [PATCH] MT#7227 Temporary location for not unique billing_fees Change-Id: I602d073b8d36383f267ee4ed6a18efbbf188b46d --- lib/NGCP/Schema/Result/billing_fees_raw.pm | 281 +++++++++++++++++++++ lib/NGCP/Schema/Result/billing_profiles.pm | 6 + lib/NGCP/Schema/Result/billing_zones.pm | 6 + 3 files changed, 293 insertions(+) create mode 100644 lib/NGCP/Schema/Result/billing_fees_raw.pm diff --git a/lib/NGCP/Schema/Result/billing_fees_raw.pm b/lib/NGCP/Schema/Result/billing_fees_raw.pm new file mode 100644 index 00000000..95f7dbd7 --- /dev/null +++ b/lib/NGCP/Schema/Result/billing_fees_raw.pm @@ -0,0 +1,281 @@ +package NGCP::Schema::Result::billing_fees_raw; +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.billing_fees_raw"); + +__PACKAGE__->add_columns( + "id", + { + data_type => "integer", + extra => { unsigned => 1 }, + is_auto_increment => 1, + is_nullable => 0, + }, + "billing_profile_id", + { + data_type => "integer", + extra => { unsigned => 1 }, + is_foreign_key => 1, + is_nullable => 0, + }, + "billing_zone_id", + { + data_type => "integer", + extra => { unsigned => 1 }, + is_foreign_key => 1, + is_nullable => 1, + }, + "source", + { data_type => "varchar", default_value => ".", is_nullable => 0, size => 255 }, + "destination", + { data_type => "varchar", is_nullable => 0, size => 255 }, + "direction", + { + data_type => "enum", + default_value => "out", + extra => { list => ["in", "out"] }, + is_nullable => 0, + }, + "type", + { + data_type => "enum", + default_value => "call", + extra => { list => ["call", "sms"] }, + is_nullable => 0, + }, + "onpeak_init_rate", + { data_type => "double precision", default_value => 0, is_nullable => 0 }, + "onpeak_init_interval", + { + data_type => "integer", + default_value => 0, + extra => { unsigned => 1 }, + is_nullable => 0, + }, + "onpeak_follow_rate", + { data_type => "double precision", default_value => 0, is_nullable => 0 }, + "onpeak_follow_interval", + { + data_type => "integer", + default_value => 0, + extra => { unsigned => 1 }, + is_nullable => 0, + }, + "offpeak_init_rate", + { data_type => "double precision", default_value => 0, is_nullable => 0 }, + "offpeak_init_interval", + { + data_type => "integer", + default_value => 0, + extra => { unsigned => 1 }, + is_nullable => 0, + }, + "offpeak_follow_rate", + { data_type => "double precision", default_value => 0, is_nullable => 0 }, + "offpeak_follow_interval", + { + data_type => "integer", + default_value => 0, + extra => { unsigned => 1 }, + is_nullable => 0, + }, + "use_free_time", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, +); + +__PACKAGE__->set_primary_key("id"); + +__PACKAGE__->has_many( + "billing_fees", + "NGCP::Schema::Result::billing_fees_history", + { "foreign.id" => "self.id" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + +__PACKAGE__->belongs_to( + "billing_profile", + "NGCP::Schema::Result::billing_profiles", + { id => "billing_profile_id" }, + { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, +); + +__PACKAGE__->belongs_to( + "billing_zone", + "NGCP::Schema::Result::billing_zones", + { id => "billing_zone_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::billing_fees + +=head1 COMPONENTS LOADED + +=over 4 + +=item * L + +=item * L + +=back + +=head1 TABLE: C + +=head1 ACCESSORS + +=head2 id + + data_type: 'integer' + extra: {unsigned => 1} + is_auto_increment: 1 + is_nullable: 0 + +=head2 billing_profile_id + + data_type: 'integer' + extra: {unsigned => 1} + is_foreign_key: 1 + is_nullable: 0 + +=head2 billing_zone_id + + data_type: 'integer' + extra: {unsigned => 1} + is_foreign_key: 1 + is_nullable: 1 + +=head2 source + + data_type: 'varchar' + default_value: '.' + is_nullable: 0 + size: 255 + +=head2 destination + + data_type: 'varchar' + is_nullable: 0 + size: 255 + +=head2 direction + + data_type: 'enum' + default_value: 'out' + extra: {list => ["in","out"]} + is_nullable: 0 + +=head2 type + + data_type: 'enum' + default_value: 'call' + extra: {list => ["call","sms"]} + is_nullable: 0 + +=head2 onpeak_init_rate + + data_type: 'double precision' + default_value: 0 + is_nullable: 0 + +=head2 onpeak_init_interval + + data_type: 'integer' + default_value: 0 + extra: {unsigned => 1} + is_nullable: 0 + +=head2 onpeak_follow_rate + + data_type: 'double precision' + default_value: 0 + is_nullable: 0 + +=head2 onpeak_follow_interval + + data_type: 'integer' + default_value: 0 + extra: {unsigned => 1} + is_nullable: 0 + +=head2 offpeak_init_rate + + data_type: 'double precision' + default_value: 0 + is_nullable: 0 + +=head2 offpeak_init_interval + + data_type: 'integer' + default_value: 0 + extra: {unsigned => 1} + is_nullable: 0 + +=head2 offpeak_follow_rate + + data_type: 'double precision' + default_value: 0 + is_nullable: 0 + +=head2 offpeak_follow_interval + + data_type: 'integer' + default_value: 0 + extra: {unsigned => 1} + is_nullable: 0 + +=head2 use_free_time + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + +=head1 PRIMARY KEY + +=over 4 + +=item * L + +=back + +=head1 RELATIONS + +=head2 billing_fees_histories + +Type: has_many + +Related object: L + +=head2 billing_profile + +Type: belongs_to + +Related object: L + +=head2 billing_zone + +Type: belongs_to + +Related object: L diff --git a/lib/NGCP/Schema/Result/billing_profiles.pm b/lib/NGCP/Schema/Result/billing_profiles.pm index c338b24e..721ff523 100644 --- a/lib/NGCP/Schema/Result/billing_profiles.pm +++ b/lib/NGCP/Schema/Result/billing_profiles.pm @@ -109,6 +109,12 @@ __PACKAGE__->has_many( { "foreign.billing_profile_id" => "self.id" }, { cascade_copy => 0, cascade_delete => 0 }, ); +__PACKAGE__->has_many( + "billing_fees_raw", + "NGCP::Schema::Result::billing_fees_raw", + { "foreign.billing_profile_id" => "self.id" }, + { cascade_copy => 0, cascade_delete => 0 }, +); __PACKAGE__->has_many( "billing_mappings", diff --git a/lib/NGCP/Schema/Result/billing_zones.pm b/lib/NGCP/Schema/Result/billing_zones.pm index cfe28747..a4f5fab4 100644 --- a/lib/NGCP/Schema/Result/billing_zones.pm +++ b/lib/NGCP/Schema/Result/billing_zones.pm @@ -39,6 +39,12 @@ __PACKAGE__->has_many( { "foreign.billing_zone_id" => "self.id" }, { cascade_copy => 0, cascade_delete => 0 }, ); +__PACKAGE__->has_many( + "billing_fees_raw", + "NGCP::Schema::Result::billing_fees_raw", + { "foreign.billing_zone_id" => "self.id" }, + { cascade_copy => 0, cascade_delete => 0 }, +); __PACKAGE__->belongs_to( "billing_profile",