Sha256: b677066837a3716c0206ca2615ce5701ca709a741310a3761c240620e539e486

Contents?: true

Size: 1.76 KB

Versions: 5

Compression:

Stored size: 1.76 KB

Contents

module LedgerSync
  module Adaptors
    module QuickBooksOnline
      module Payment
        module Operations
          class Update < Operation::Update
            class Contract < LedgerSync::Adaptors::Contract
              schema do
                required(:ledger_id).filled(:string)
                required(:amount).filled(:integer)
                required(:currency).filled(:string)
                required(:customer).hash(Types::Reference)
              end
            end

            private

            def build
              build_customer_operation
              add_root_operation(self)
            end

            def operate
              ledger_resource_data = adaptor.find(
                resource: 'payment',
                id: resource.ledger_id
              )
              response = adaptor.upsert(
                resource: 'payment',
                payload: merge_into(from: local_resource_data, to: ledger_resource_data)
              )

              resource.ledger_id = response.dig('Id')
              success(response: response)
            rescue OAuth2::Error => e
              failure(e)
            end

            def build_customer_operation
              customer = Customer::Operations::Upsert.new(
                adaptor: adaptor,
                resource: resource.customer
              )

              add_before_operation(customer)
            end

            def local_resource_data
              {
                'TotalAmt': resource.amount,
                'CurrencyRef': {
                  'value': resource.currency,
                },
                'CustomerRef': {
                  'value': resource.customer.ledger_id,
                }
              }
            end
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ledger_sync-1.0.10 lib/ledger_sync/adaptors/quickbooks_online/payment/operations/update.rb
ledger_sync-1.0.9 lib/ledger_sync/adaptors/quickbooks_online/payment/operations/update.rb
ledger_sync-1.0.3 lib/ledger_sync/adaptors/quickbooks_online/payment/operations/update.rb
ledger_sync-1.0.2 lib/ledger_sync/adaptors/quickbooks_online/payment/operations/update.rb
ledger_sync-1.0.0 lib/ledger_sync/adaptors/quickbooks_online/payment/operations/update.rb