#
#= customer_ledger_details モデル
# Authors:: Sumiyo Yamamoto
# Copyright:: Copyright (C) OrbusNeich Medical K.K.  2010.
#--
# date        name                   note
# 2010.12.6   Sumiyo Yamamoto        新規登録
#-------------------------------------------------------------------------------
#++
class CustomerLedgerDetail < CommLogistics::Base::Model::Detail
  belongs_to  :customer_ledger
  named_scope :child, lambda {|id| {:conditions => ["customer_ledger_id = ?", id]}}
end
