zaikio-warehouse 0.6.0 → 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24bef06949baa056ec687f194f42e291a3677833edee126e088bceabe29a768c
|
4
|
+
data.tar.gz: 272d504fe279836b745aeea416dcafbd3d2ea5dd3370dd0bd398dfc61d67a4f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1526e49750651e652ec8ca9aa91bc3baed687946b71cc74841a1310949d9922a38568d9bd139a704ed74e5eb530ed36f150b050a0eec56d44f58c4bbac5f58d
|
7
|
+
data.tar.gz: 818b03f158d876ef69bb04637f51e54867ad2ee834dc653b31bd74879e140298038b28197384bfc952064e2478e865c41b54bfa264f8040194cd0b8d6211f25a
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,17 @@ 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
|
+
|
17
|
+
## [0.6.1] - 2023-11-23
|
18
|
+
|
19
|
+
- Add `ready_for_consumption_at` to worksteps and material requirements
|
20
|
+
|
10
21
|
## [0.6.0] - 2023-11-15
|
11
22
|
|
12
23
|
- Support creation of nested material requirement operations
|
@@ -64,7 +75,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
64
75
|
- Update and reuse `zaikio-client-helpers` logic to support `Zaikio::Client.with_token`
|
65
76
|
- Initial release
|
66
77
|
|
67
|
-
[Unreleased]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.
|
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
|
80
|
+
[0.6.1]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.6.0..v0.6.1
|
68
81
|
[0.6.0]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.5.1..v0.6.0
|
69
82
|
[0.5.1]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.5.0..v0.5.1
|
70
83
|
[0.5.0]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.4.0..v0.5.0
|
@@ -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
|
@@ -10,12 +10,13 @@ module Zaikio
|
|
10
10
|
attributes :created_at, :updated_at, :reference, :reference_link,
|
11
11
|
:estimated_amount_in_base_unit, :planned_amount_in_base_unit,
|
12
12
|
:actual_amount_in_base_unit, :allocation_mode, :allocated_at,
|
13
|
-
:completed_at
|
13
|
+
:completed_at, :ready_for_consumption_at
|
14
14
|
|
15
15
|
has_one :operator, uri: nil, class_name: "Zaikio::Warehouse::Organization"
|
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",
|
@@ -10,7 +10,9 @@ 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
|
-
:
|
13
|
+
:customer_name, :customer_reference_link,
|
14
|
+
:starting_at, :due_at, :allocated_at, :completed_at,
|
15
|
+
:ready_for_consumption_at
|
14
16
|
|
15
17
|
has_one :operator, uri: nil, class_name: "Zaikio::Warehouse::Organization"
|
16
18
|
has_one :warehouse, uri: nil, class_name: "Zaikio::Warehouse::Warehouse"
|
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.
|
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-
|
12
|
+
date: 2023-12-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|