zaikio-warehouse 0.6.1 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2590f6ed77b0a915a6f39139c9ef5db68f9e0689a495a22f56345cceb774d198
4
- data.tar.gz: 9fd1d968a29ffa13fbde63946adedcf6362adf27f8ffd09d4a054b504f6cb9f0
3
+ metadata.gz: 24bef06949baa056ec687f194f42e291a3677833edee126e088bceabe29a768c
4
+ data.tar.gz: 272d504fe279836b745aeea416dcafbd3d2ea5dd3370dd0bd398dfc61d67a4f8
5
5
  SHA512:
6
- metadata.gz: f3717a605c524eaf2768a9c893bae690b170f481c7841b28a0bd6427557392a1e258188b4196d47fcd542ac241a783b84d20cf40b3838fe7cc4b7395fb549be9
7
- data.tar.gz: 8869c76c6b1976f9fc671514f50ca21c864b95960b39a7ce82733054d802a87daf1fc205581a78e669859920ed25dff6abf6bd40a39e5be36da1a9a9654022c4
6
+ metadata.gz: f1526e49750651e652ec8ca9aa91bc3baed687946b71cc74841a1310949d9922a38568d9bd139a704ed74e5eb530ed36f150b050a0eec56d44f58c4bbac5f58d
7
+ data.tar.gz: 818b03f158d876ef69bb04637f51e54867ad2ee834dc653b31bd74879e140298038b28197384bfc952064e2478e865c41b54bfa264f8040194cd0b8d6211f25a
data/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.7.0] - 2023-12-13
11
+
12
+ - Add `customer_name` and `customer_reference_link` to `Workstep`
13
+ - Add `production_storage_area` to `MaterialRequirement`
14
+ - Add `production_storage_area_id` to `ConsumptionAnnouncement`
15
+ - Add `transfer_requests` to `ConsumptionAnnouncement`
16
+
10
17
  ## [0.6.1] - 2023-11-23
11
18
 
12
19
  - Add `ready_for_consumption_at` to worksteps and material requirements
@@ -68,7 +75,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
68
75
  - Update and reuse `zaikio-client-helpers` logic to support `Zaikio::Client.with_token`
69
76
  - Initial release
70
77
 
71
- [Unreleased]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.6.1..HEAD
78
+ [Unreleased]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.7.0..HEAD
79
+ [0.7.0]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.6.1..v0.7.0
72
80
  [0.6.1]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.6.0..v0.6.1
73
81
  [0.6.0]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.5.1..v0.6.0
74
82
  [0.5.1]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.5.0..v0.5.1
@@ -9,9 +9,10 @@ module Zaikio
9
9
  uri "consumption_announcements"
10
10
 
11
11
  attributes :consuming_reference, :consuming_reference_link, :amount_in_base_unit,
12
- :warehouse_id, :material_id, :sku_ids, :storage_area_ids
12
+ :warehouse_id, :material_id, :sku_ids, :storage_area_ids, :production_storage_area_id
13
13
 
14
14
  has_many :consumption_requests, uri: nil, class_name: "Zaikio::Warehouse::ConsumptionRequest"
15
+ has_many :transfer_requests, uri: nil, class_name: "Zaikio::Warehouse::TransferRequest"
15
16
  end
16
17
  end
17
18
  end
@@ -16,6 +16,7 @@ module Zaikio
16
16
  has_one :warehouse, uri: nil, class_name: "Zaikio::Warehouse::Warehouse"
17
17
  has_one :workstep, uri: nil, class_name: "Zaikio::Warehouse::Workstep"
18
18
  has_one :material, uri: nil, class_name: "Zaikio::Warehouse::Material"
19
+ has_one :production_storage_area, uri: nil, class_name: "Zaikio::Warehouse::StorageArea"
19
20
  has_many :open_consumption_requests, uri: "material_requirements/:material_requirement_id/consumption_requests",
20
21
  class_name: "Zaikio::Warehouse::ConsumptionRequest"
21
22
  has_many :open_transfer_requests, uri: "material_requirements/:material_requirement_id/transfer_requests",
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Zaikio
4
4
  module Warehouse
5
- VERSION = "0.6.1"
5
+ VERSION = "0.7.0"
6
6
  end
7
7
  end
@@ -10,6 +10,7 @@ module Zaikio
10
10
 
11
11
  attributes :created_at, :updated_at, :name, :phase, :reference,
12
12
  :reference_link, :job_title, :job_reference, :job_reference_link,
13
+ :customer_name, :customer_reference_link,
13
14
  :starting_at, :due_at, :allocated_at, :completed_at,
14
15
  :ready_for_consumption_at
15
16
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zaikio-warehouse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zaikio GmbH
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-11-23 00:00:00.000000000 Z
12
+ date: 2023-12-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport