erp_integration 0.35.0 → 0.36.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/erp_integration/configuration.rb +18 -0
- data/lib/erp_integration/fulfil/resources/product_category.rb +13 -0
- data/lib/erp_integration/fulfil/resources/product_template.rb +13 -0
- data/lib/erp_integration/product_category.rb +9 -0
- data/lib/erp_integration/product_template.rb +9 -0
- data/lib/erp_integration/version.rb +1 -1
- data/lib/erp_integration.rb +2 -0
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60981ef82d7fc4ee99a747def31bb01d5bac2c6596e258e1025f11a52b60be09
|
4
|
+
data.tar.gz: 2bd4161b4acd66ef8878d4736a0909948e22b066c93de4c218a7f49246c887d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9f9d08096d1856a28b219d80a375a67d1e6b442785e531ee40e79148af2ea95d4cba9af23d4a20d9b6c15c6a818707cb7b2a3790140e57dfa1e9a4ba878a760
|
7
|
+
data.tar.gz: a48d617a9e48b83d015ce237e6c5a4e11cbfd0b132f0eb76a557a3c8cb9b42c6608ff1fff0ce253a766796be1451b59e2a9e864d3d29b4fa8230ecf568a28953
|
@@ -57,6 +57,16 @@ module ErpIntegration
|
|
57
57
|
# @return [Symbol] The configured adapter for the products.
|
58
58
|
attr_writer :product_adapter
|
59
59
|
|
60
|
+
# Allows configuring an adapter for the `ProductCategory` resource. When none is
|
61
|
+
# configured, it will default to Fulfil.
|
62
|
+
# @return [Symbol] The configured adapter for the product category.
|
63
|
+
attr_writer :product_category_adapter
|
64
|
+
|
65
|
+
# Allows configuring an adapter for the `ProductTemplate` resource. When none is
|
66
|
+
# configured, it will default to Fulfil.
|
67
|
+
# @return [Symbol] The configured adapter for the product templates.
|
68
|
+
attr_writer :product_template_adapter
|
69
|
+
|
60
70
|
# Allows configuring an adapter for the `ProductionOrder` resource. When
|
61
71
|
# none is configured, it will default to Fulfil.
|
62
72
|
# @return [Symbol] The configured adapter for the production_order.
|
@@ -172,6 +182,14 @@ module ErpIntegration
|
|
172
182
|
@product_adapter || :fulfil
|
173
183
|
end
|
174
184
|
|
185
|
+
def product_category_adapter
|
186
|
+
@product_category_adapter || :fulfil
|
187
|
+
end
|
188
|
+
|
189
|
+
def product_template_adapter
|
190
|
+
@product_template_adapter || :fulfil
|
191
|
+
end
|
192
|
+
|
175
193
|
def production_order_adapter
|
176
194
|
@production_order_adapter || :fulfil
|
177
195
|
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ErpIntegration
|
4
|
+
# The `ErpIntegration::ProductTemplate` exposes an uniformed API for interaction with
|
5
|
+
# third-party ERP vendors.
|
6
|
+
class ProductTemplate < Resource
|
7
|
+
attr_accessor :id, :name, :account_category
|
8
|
+
end
|
9
|
+
end
|
data/lib/erp_integration.rb
CHANGED
@@ -31,6 +31,8 @@ module ErpIntegration
|
|
31
31
|
autoload :CustomerShipment, 'erp_integration/customer_shipment'
|
32
32
|
autoload :CustomerShipmentReturn, 'erp_integration/customer_shipment_return'
|
33
33
|
autoload :Product, 'erp_integration/product'
|
34
|
+
autoload :ProductCategory, 'erp_integration/product_category'
|
35
|
+
autoload :ProductTemplate, 'erp_integration/product_template'
|
34
36
|
autoload :ProductionOrder, 'erp_integration/production_order'
|
35
37
|
autoload :PurchaseOrder, 'erp_integration/purchase_order'
|
36
38
|
autoload :PurchaseOrderLine, 'erp_integration/purchase_order_line'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: erp_integration
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.36.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stefan Vermaas
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -290,6 +290,8 @@ files:
|
|
290
290
|
- lib/erp_integration/fulfil/resources/customer_shipment_return.rb
|
291
291
|
- lib/erp_integration/fulfil/resources/gift_card.rb
|
292
292
|
- lib/erp_integration/fulfil/resources/product.rb
|
293
|
+
- lib/erp_integration/fulfil/resources/product_category.rb
|
294
|
+
- lib/erp_integration/fulfil/resources/product_template.rb
|
293
295
|
- lib/erp_integration/fulfil/resources/production_order.rb
|
294
296
|
- lib/erp_integration/fulfil/resources/purchase_order.rb
|
295
297
|
- lib/erp_integration/fulfil/resources/purchase_order_line.rb
|
@@ -307,6 +309,8 @@ files:
|
|
307
309
|
- lib/erp_integration/gift_card.rb
|
308
310
|
- lib/erp_integration/middleware/error_handling.rb
|
309
311
|
- lib/erp_integration/product.rb
|
312
|
+
- lib/erp_integration/product_category.rb
|
313
|
+
- lib/erp_integration/product_template.rb
|
310
314
|
- lib/erp_integration/production_order.rb
|
311
315
|
- lib/erp_integration/purchase_order.rb
|
312
316
|
- lib/erp_integration/purchase_order_line.rb
|
@@ -349,7 +353,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
349
353
|
- !ruby/object:Gem::Version
|
350
354
|
version: '0'
|
351
355
|
requirements: []
|
352
|
-
rubygems_version: 3.
|
356
|
+
rubygems_version: 3.3.7
|
353
357
|
signing_key:
|
354
358
|
specification_version: 4
|
355
359
|
summary: Connects Mejuri with third-party ERP vendors
|