Sha256: 5dbfc9ff1bdd1a2b782fa83fe37c4a0893091faee0719424a61bd94789041f8f

Contents?: true

Size: 1.26 KB

Versions: 10

Compression:

Stored size: 1.26 KB

Contents

# frozen_string_literal: true

module ErpIntegration
  # The `ErpIntegration::SalesOrder` exposes an uniformed API for interaction with
  # third-party ERP vendors.
  class SalesOrder < Resource
    attr_accessor :id, :channel, :number, :party, :sale_date, :shipment_address,
                  :amount_invoiced, :attachments, :carrier, :carrier_service,
                  :channel_identifier, :comment, :company, :confirmation_time,
                  :create_date, :currency, :description, :gateway_transaction,
                  :invoice_address, :invoice_method, :invoice_state, :invoices,
                  :lines, :metadata, :payment_term, :payment_total, :price_list,
                  :reference, :sales_person, :shipment_amount, :shipment_method,
                  :shipment_state, :shipments, :shipping_start_date, :state,
                  :tax_amount, :total_amount, :total_quantity, :total_shipment_cost,
                  :untaxed_amount, :warehouse, :weight, :weight_uom, :write_date,
                  :write_uid

    def cancel
      self.class.adapter.cancel(id)
    end

    def duplicate
      self.class.adapter.duplicate(id)
    end

    def confirm
      self.class.adapter.confirm(id)
    end

    def process
      self.class.adapter.process(id)
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
erp_integration-0.21.0 lib/erp_integration/sales_order.rb
erp_integration-0.20.0 lib/erp_integration/sales_order.rb
erp_integration-0.19.0 lib/erp_integration/sales_order.rb
erp_integration-0.18.0 lib/erp_integration/sales_order.rb
erp_integration-0.17.0 lib/erp_integration/sales_order.rb
erp_integration-0.16.0 lib/erp_integration/sales_order.rb
erp_integration-0.15.0 lib/erp_integration/sales_order.rb
erp_integration-0.14.0 lib/erp_integration/sales_order.rb
erp_integration-0.13.0 lib/erp_integration/sales_order.rb
erp_integration-0.12.0 lib/erp_integration/sales_order.rb