Sha256: 7c7504b644bca1e226d83677d61603aeb727fc5edb3f2ab0a1aa61b61a0202ac
Contents?: true
Size: 1.21 KB
Versions: 15
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true require_relative '../operation' module LedgerSync module NetSuite class Operation class Update include NetSuite::Operation::Mixin private def update_in_ledger case response.status when 200..299 LedgerSync::Result.Success(response) else failure( Error::OperationError.new( operation: self, response: response ) ) end end def find resource.ledger_id = ledger_id self.class.operations_module::Find.new( client: client, resource: resource ).perform end def operate update_in_ledger .and_then { success } end def response @response ||= client.patch( body: serializer.serialize(resource: resource), path: ledger_resource_path ) end def success find.and_then do |find_result| super( resource: find_result.resource, response: response ) end end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems