Class: Logistics::Core::ContractBillOfLadingRate

Inherits:
ContractRate show all
Defined in:
app/models/logistics/core/contract_bill_of_lading_rate.rb

Class Method Summary collapse

Methods inherited from ApplicationRecord

as_json

Class Method Details

.generate_rate_for_bill_of_loading_service(client_contract_id) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'app/models/logistics/core/contract_bill_of_lading_rate.rb', line 19

def self.generate_rate_for_bill_of_loading_service(client_contract_id)
  service_delivery_units = get_service_delivery_units
  transaction_types = TransactionType.all
  service_delivery_units.each{ |sdu|
    transaction_types.each { |transaction_type|
      chargeable_services = get_chargeable_services(sdu.id)
      chargeable_services.each { |cs|
        service_rate = ContractBillOfLadingRate.where('chargeable_service_unit_of_charge_id' => cs.id, 'transaction_type_id' => transaction_type.id,
                                                      'contract_id' => client_contract_id)
        if service_rate.count == 0
          ContractBillOfLadingRate.create('chargeable_service_unit_of_charge_id' => cs.id, 'transaction_type_id' => transaction_type.id,
                                          'rate' => 0, 'contract_id' => client_contract_id, 'margin' => 0)
        end
      }
    }
  }
end

.get_chargeable_services(service_delivery_unit_id) ⇒ Object



13
14
15
16
17
# File 'app/models/logistics/core/contract_bill_of_lading_rate.rb', line 13

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

.get_service_delivery_unitsObject



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

def self.get_service_delivery_units
  transport_id = ServiceDeliveryUnitType.select(:id).where('lower(name) = ?', 'Transport'.downcase)
  return ServiceDeliveryUnit.where.not('service_delivery_unit_type_id' => transport_id)
end