Class: ErpIntegration::Fulfil::Resources::CustomerShipment
- Inherits:
-
ApiResource
- Object
- ApiResource
- ErpIntegration::Fulfil::Resources::CustomerShipment
- Defined in:
- lib/erp_integration/fulfil/resources/customer_shipment.rb
Constant Summary
Constants included from PaginationMethods
PaginationMethods::DEFAULT_LIMIT, PaginationMethods::DEFAULT_OFFSET, PaginationMethods::MAX_LIMIT
Instance Attribute Summary
Attributes inherited from ApiResource
Attributes included from QueryMethods
#or_clauses, #selected_fields, #where_clauses
Attributes included from PaginationMethods
#limit_value, #offset_value, #page_number
Instance Method Summary collapse
-
#change_warehouse(id, options) ⇒ Object
Change the warehouse of a CustomerShipment in Fulfil.
-
#mark_as_packed!(id) ⇒ Object
Mark a CustomerShipment as packed in Fulfil.
-
#split(id, options) ⇒ Object
Split a CustomerShipment in Fulfil.
Methods inherited from ApiResource
#all, client, config, #count, #each, #find_each, #initialize, model_name, model_name=
Methods included from QueryMethods
#or, #or!, #select, #select!, #where, #where!, #where_domain, #where_ilike, #where_in, #where_less_or_equal_to, #where_less_than, #where_like, #where_more_or_equal_to, #where_more_than, #where_not, #where_not_in
Methods included from Persistence
Methods included from PaginationMethods
#limit, #limit!, #offset, #offset!, #page, #page!
Methods included from FinderMethods
Methods included from Context
Constructor Details
This class inherits a constructor from ErpIntegration::Fulfil::ApiResource
Instance Method Details
#change_warehouse(id, options) ⇒ Object
Change the warehouse of a CustomerShipment in Fulfil
14 15 16 |
# File 'lib/erp_integration/fulfil/resources/customer_shipment.rb', line 14 def change_warehouse(id, ) client.put("model/stock.shipment.out/#{id}/change_warehouse", ) end |
#mark_as_packed!(id) ⇒ Object
Mark a CustomerShipment as packed in Fulfil
29 30 31 |
# File 'lib/erp_integration/fulfil/resources/customer_shipment.rb', line 29 def mark_as_packed!(id) client.put("model/stock.shipment.out/#{id}/pack") end |
#split(id, options) ⇒ Object
Split a CustomerShipment in Fulfil
22 23 24 |
# File 'lib/erp_integration/fulfil/resources/customer_shipment.rb', line 22 def split(id, ) client.put("model/stock.shipment.out/#{id}/split", ) end |