ruby-brightpearl 0.7.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +1 -1
- data/lib/brightpearl/resources/goods_out_note.rb +52 -0
- data/lib/brightpearl/resources.rb +2 -0
- data/lib/brightpearl/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 499b1eb7f7e7ce054f49f19ba9dfd25602c3135b200c3d15c6934ec37379aca6
|
|
4
|
+
data.tar.gz: 62a70dfaff891786c97f0524825be9475fed68e2b6ca57a826349a4afea4fdd5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 98df0eadf345303d0163af51e20b55b401cfab34fe2585c016fada116c12fa4bad89ba0e2828498e5954ffce9427311855396ab2a7f738fa1b6a7aab962aaf86
|
|
7
|
+
data.tar.gz: 3c5c601b90a6b20d2827965f2879377195d994fc393ccb60fdc8e67caa6b555e7b00b67c70ea67a3c2725e84d9413641b44e07ae090973d666d14ea63e9ed0fb
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
module Brightpearl
|
|
2
|
+
# Goods-Out Notes are used to represent stock permanently leaving your stock control system. The most common use of a Goods-Out Note is to facilitate the fulfilment of a Sales Order.
|
|
3
|
+
#
|
|
4
|
+
# When a Goods-Out Note is successfully created, stock is allocated to the specified Sales Order and is not available for the purposes of sales, Internal Transfers, External Transfers, Reservations or Stock Corrections.
|
|
5
|
+
#
|
|
6
|
+
# Unlike the majority of resources that can be manipulated via the warehouse service, Goods-Out Notes have a temporal component, represented by lifecycle events.
|
|
7
|
+
#
|
|
8
|
+
# A Goods-Out Note POST creates a Goods-Out Note with a created event, but for accounting and reporting purposes, the stock is still considered present in its original Warehouse and Locations
|
|
9
|
+
#
|
|
10
|
+
# You should issue one or more Goods-Out Note Event POSTs to add lifecycle events such as picked, packed and shipped to the Goods-Note Out. The stock is not considered to have left a Warehouse until the shipped event is added to the Goods-Note Out.
|
|
11
|
+
#
|
|
12
|
+
# A separate mechanism for creating a Goods-Out Note is provided by the External Transfer resource, which allows the movement of stock between two Warehouses
|
|
13
|
+
#
|
|
14
|
+
# https://api-docs.brightpearl.com/warehouse/goods-out-note/index.html
|
|
15
|
+
class GoodsOutNote < Resource
|
|
16
|
+
class << self
|
|
17
|
+
# You may query for goods-out notes in several different ways:
|
|
18
|
+
# * By goods-out note ID: `/order/*/goods-note/goods-out/4`
|
|
19
|
+
# * By an ID set of goods-out note IDs: `/order/*/goods-note/goods-out/4-99,1,2`
|
|
20
|
+
# * By an order ID: `/order/55/goods-note/goods-out/`
|
|
21
|
+
# * By a set of order IDs: `/order/55-90,45/goods-note/goods-out/`
|
|
22
|
+
# * By a combination of order IDs and goods-out note IDs: `/order/100-500/goods-note/goods-out/40-45`
|
|
23
|
+
# https://api-docs.brightpearl.com/warehouse/goods-out-note/get.html
|
|
24
|
+
def get(order_id_set:, gon_id_set: "")
|
|
25
|
+
url = "warehouse-service/order/#{order_id_set}/goods-note/goods-out/#{gon_id_set}"
|
|
26
|
+
send_request(path: url, method: :get)
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
# https://api-docs.brightpearl.com/warehouse/goods-out-note/post.html
|
|
30
|
+
def post(order_id:, **params)
|
|
31
|
+
url = "warehouse-service/order/#{order_id}/goods-note/goods-out"
|
|
32
|
+
send_request(path: url, method: :post, body: params)
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# https://api-docs.brightpearl.com/warehouse/goods-out-note/put.html
|
|
36
|
+
def put(id:, **params)
|
|
37
|
+
url = "warehouse-service/goods-note/goods-out/#{id}"
|
|
38
|
+
send_request(path: url, method: :put, body: params)
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# https://api-docs.brightpearl.com/warehouse/goods-out-note/delete.html
|
|
42
|
+
def delete(order_id:, gon_id:)
|
|
43
|
+
url = "warehouse-service/order/#{order_id}/goods-note/goods-out/#{gon_id}"
|
|
44
|
+
send_request(path: url, method: :delete)
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# search (TODO)
|
|
48
|
+
# https://api-docs.brightpearl.com/warehouse/goods-out-note/search.html
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
end
|
|
52
|
+
end
|
|
@@ -10,6 +10,8 @@ require 'brightpearl/resources/order_status'
|
|
|
10
10
|
require 'brightpearl/resources/order_status_update'
|
|
11
11
|
require 'brightpearl/resources/order_custom_field'
|
|
12
12
|
|
|
13
|
+
require 'brightpearl/resources/goods_out_note'
|
|
14
|
+
|
|
13
15
|
require 'brightpearl/resources/product'
|
|
14
16
|
require 'brightpearl/resources/product_price'
|
|
15
17
|
require 'brightpearl/resources/price_list'
|
data/lib/brightpearl/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-brightpearl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vicvans20
|
|
@@ -154,6 +154,7 @@ files:
|
|
|
154
154
|
- lib/brightpearl/resources.rb
|
|
155
155
|
- lib/brightpearl/resources/customer.rb
|
|
156
156
|
- lib/brightpearl/resources/customer_custom_field.rb
|
|
157
|
+
- lib/brightpearl/resources/goods_out_note.rb
|
|
157
158
|
- lib/brightpearl/resources/order.rb
|
|
158
159
|
- lib/brightpearl/resources/order_custom_field.rb
|
|
159
160
|
- lib/brightpearl/resources/order_row.rb
|