Sha256: 3f961765c00a512e139d4d045f603776f5f9e3ece4097809ebbc095c6733b189
Contents?: true
Size: 1.89 KB
Versions: 1
Compression:
Stored size: 1.89 KB
Contents
require 'atol/errors' module Atol module Request class PostDocument module Sell class Body def initialize(external_id:, phone: '', email: '', items:, config: nil) raise(Atol::EmptyClientContactError) if phone.empty? && email.empty? raise(Atol::EmptySellItemsError) if items.empty? @config = config || Atol.config @external_id = external_id @phone = phone @email = email @items = items end def to_h body.clone end def to_json body.to_json end private def body @body ||= body_template.tap do |result| result[:external_id] = @external_id result[:receipt][:attributes][:email] = @email unless @email.empty? result[:receipt][:attributes][:phone] = @phone unless @phone.empty? result[:service][:callback_url] = @config.callback_url if @config.callback_url total = @items.inject(0) { |sum, item| sum += item[:sum] } result[:receipt][:total] = total result[:receipt][:payments][0][:sum] = total result[:receipt][:items] = @items end end def body_template { receipt: { attributes: { sno: @config.default_sno }, items: [], payments: [ { sum: 0, type: @config.default_payment_type } ] }, service: { inn: @config.inn.to_s, payment_address: @config.payment_address }, timestamp: Time.now.strftime(Atol::TIMESTAMP_FORMAT) } end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
atol-0.4.1 | lib/atol/request/post_document/sell/body.rb |