Class: Elmas::SalesOrder
- Inherits:
-
Object
- Object
- Elmas::SalesOrder
- Includes:
- Resource, SharedSalesAttributes
- Defined in:
- lib/elmas/resources/sales_order.rb
Constant Summary
Constants included from SharedSalesAttributes
Elmas::SharedSalesAttributes::SHARED_LINE_ATTRIBUTES, Elmas::SharedSalesAttributes::SHARED_SALES_ATTRIBUTES
Instance Attribute Summary
Attributes included from Resource
Instance Method Summary collapse
Methods included from Resource
#delete, #find, #find_all, #find_by, #get, #id, #id?, #initialize, #method_missing, #save, #valid?
Methods included from Resource::Sanitizer
#sanitize, #sanitize_date_time, #sanitize_has_many, #sanitize_relationship
Methods included from Resource::UriMethods
#apply_filters, #apply_order, #apply_select, #base_filter, #basic_identifier_uri, #query_attribute, #sanitize_value, #uri
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Elmas::Resource
Instance Method Details
#base_path ⇒ Object
6 7 8 |
# File 'lib/elmas/resources/sales_order.rb', line 6 def base_path "salesorder/SalesOrders" end |
#mandatory_attributes ⇒ Object
10 11 12 |
# File 'lib/elmas/resources/sales_order.rb', line 10 def mandatory_attributes [:sales_order_lines, :ordered_by] end |
#other_attributes ⇒ Object
14 15 16 17 18 19 20 21 22 |
# File 'lib/elmas/resources/sales_order.rb', line 14 def other_attributes SHARED_SALES_ATTRIBUTES.inject( [ :deliver_to_contact_person, :delivery_date, :delivery_status, :sales_person, :shipping_method, :status, :tax_schedule, :warehouse_ID ], :<< ) end |