Sha256: 5d81f29ca7b7b97b3cda5174a1e502205ed64a6c9de6a41ebd4ecd994e5565f8

Contents?: true

Size: 1.33 KB

Versions: 1

Compression:

Stored size: 1.33 KB

Contents

# Price 是价格。

class Unidom::Price::Price < ActiveRecord::Base

  self.table_name = 'unidom_prices'

  include Unidom::Common::Concerns::ModelExtension

  validates :amount, presence: true, numericality: { less_than: 1000000000, greater_than: 0 }

  belongs_to :priced, polymorphic: true
  belongs_to :pricer, polymorphic: true

  scope :priced_by, ->(pricer) { where pricer: pricer }
  scope :priced_is, ->(priced) { where priced: priced }

  def self.price!(priced, amount, pricer = nil, calculation_code = 'AMNT', pricing_code = 'BASE', charging_code = 'ONCE', opened_at = Time.now)
    price = priced_is(priced).calculation_coded_as(calculation_code).pricing_coded_as(pricing_code).charging_coded_as(charging_code).valid_at.alive.first
    if price.present?
      price.amount = amount
      if pricer.present?
        price.pricer = pricer
      else
        price.pricer_id   = Unidom::Common::NULL_UUID
        price.pricer_type = ''
      end
    else
      attributes = { priced: priced, amount: amount, calculation_code: calculation_code, pricing_code: pricing_code, charging_code: charging_code, opened_at: opened_at }
      if pricer.present?
        attributes[:pricer] = pricer
      else
        attributes[:pricer_id]   = Unidom::Common::NULL_UUID
        attributes[:pricer_type] = ''
      end
      create! attributes
    end
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
unidom-price-0.3 app/models/unidom/price/price.rb