Sha256: a839d7e5cb56e5410912abbdd0408345ea9455bf92b97a5cfeac3b59e588aedf
Contents?: true
Size: 1.79 KB
Versions: 9
Compression:
Stored size: 1.79 KB
Contents
module Logistics module Core class ContractFreightTonRate < ContractRate belongs_to :contract belongs_to :transaction_type belongs_to :chargeable_service_unit_of_charge 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 def self.get_chargeable_services(service_delivery_unit_id) unit_of_charge_id = UnitOfCharge.select(:id).where('code' => 'FT') acsuocs = ChargeableServiceUnitOfCharge.where('service_delivery_unit_id' => service_delivery_unit_id, 'unit_of_charge_id' => unit_of_charge_id ) return acsuocs end def self.generate_rate_for_freight_ton_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 = ContractFreightTonRate.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 ContractFreightTonRate.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 end end end
Version data entries
9 entries across 9 versions & 1 rubygems