Class: Logistics::Core::AirCargoLimit

Inherits:
ApplicationRecord show all
Defined in:
app/models/logistics/core/air_cargo_limit.rb

Class Method Summary collapse

Methods inherited from ApplicationRecord

as_json

Class Method Details

.generate_rate_for_air_cargo_services(effective_date) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'app/models/logistics/core/air_cargo_limit.rb', line 13

def self.generate_rate_for_air_cargo_services(effective_date)
  transaction_types = get_transaction_types
  service_delivery_units = get_delivery_units
  service_delivery_units.each { |sdu|
    transaction_types.each { |transaction_type|
      chargeable_services = get_chargeable_services(sdu.id)
      chargeable_services.each { |chargeable_service|
        air_cargo_rate = AirCargoLimit.where('transaction_type_id' =>transaction_type.id,
                                             'chargeable_service_unit_of_charge_id' => chargeable_service.id)
        if air_cargo_rate.count == 0
          AirCargoLimit.create('transaction_type_id' => transaction_type.id,'chargeable_service_unit_of_charge_id' =>
            chargeable_service.id, 'lower_limit' => 0, 'upper_limit' => 0,'over_charge_rate' => 0,'effective_date' => effective_date)
        end
      }
    }
  }
end

.get_chargeable_services(service_delivery_unit_id) ⇒ Object



7
8
9
10
11
# File 'app/models/logistics/core/air_cargo_limit.rb', line 7

def self.get_chargeable_services(service_delivery_unit_id)
  unit_of_charge_id = UnitOfCharge.select(:id).where('code' => 'KG')
  csuocs = ChargeableServiceUnitOfCharge.where('service_delivery_unit_id' => service_delivery_unit_id, 'unit_of_charge_id' => unit_of_charge_id )
  return csuocs
end