lib/nissen-collect/pdrequest.rb in nissen-collect-0.1.4 vs lib/nissen-collect/pdrequest.rb in nissen-collect-0.1.5

- old
+ new

@@ -1,21 +1,24 @@ # -*- encoding: utf-8 -*- module NissenCollect - class Pdrequest - attr_accessor :body + class Pdrequest < Action + attr_accessor :transaction,:pdrequest @@transaction_path = 'direct/autotransaction.do' # @bodyを初期化する # @param [Hash] body 生成時引数 - def initialize body=nil - @body = body ? body : [SHOPINFO,TRANSACTION,PDREQUEST].inject {|union,hash| union.merge hash} + def initialize + super + @transaction = TRANSACTION + @pdrequest = PDREQUEST end # APIコールを行う def call + body = [@@shopInfo,@transaction,@pdrequest].inject {|union,hash| union.merge hash} connect = NissenCollect::Client.new - connect.request('get',@@transaction_path,@body) + connect.request('get',@@transaction_path,body) end end end