zaikio-warehouse 0.6.1 → 0.8.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: d7c35ba0b7e36cf98fc06f39a75fd9cb99fc51eec7e84a9a889394f3e1eea0c6
|
4
|
+
data.tar.gz: 94ef321204bdd71d4d39e8039b641f2cd5feaa0145091e988aae0327ea231b25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5c8fa603d3d0029c5221043526c1c4a04ba6c7ff8d8aef55f444032b88720e44ac8522b9130c25caa39d940506d93b776508757d03fb4b51469995bb86090a7
|
7
|
+
data.tar.gz: b7879550e7e0417e26e699e591ec0ad531184aa877a1bd1b26ad885d8b6260bebfaf034ee8df27c2065bb592e3c00d9e2a5ec61adefaf7327dc445c68ca38364
|
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.8.0] - 2023-12-15
|
11
|
+
|
12
|
+
- Add `component_name` to `Workstep`
|
13
|
+
|
14
|
+
## [0.7.0] - 2023-12-13
|
15
|
+
|
16
|
+
- Add `customer_name` and `customer_reference_link` to `Workstep`
|
17
|
+
- Add `production_storage_area` to `MaterialRequirement`
|
18
|
+
- Add `production_storage_area_id` to `ConsumptionAnnouncement`
|
19
|
+
- Add `transfer_requests` to `ConsumptionAnnouncement`
|
20
|
+
|
10
21
|
## [0.6.1] - 2023-11-23
|
11
22
|
|
12
23
|
- Add `ready_for_consumption_at` to worksteps and material requirements
|
@@ -68,7 +79,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
68
79
|
- Update and reuse `zaikio-client-helpers` logic to support `Zaikio::Client.with_token`
|
69
80
|
- Initial release
|
70
81
|
|
71
|
-
[Unreleased]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.
|
82
|
+
[Unreleased]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.7.0..HEAD
|
83
|
+
[0.7.0]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.6.1..v0.7.0
|
72
84
|
[0.6.1]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.6.0..v0.6.1
|
73
85
|
[0.6.0]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.5.1..v0.6.0
|
74
86
|
[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",
|
@@ -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
|
+
:component_name, :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.
|
4
|
+
version: 0.8.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-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|