erp_integration 0.24.0 → 0.26.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: 97c1c75b5b15e68c4fd472e18a6c3fc2a4f23e249e968d1e71aeee95f754a331
4
- data.tar.gz: 952602889086f2d727acd5a2fce5e956e9c510a86fac9b0f6f090ec6608a7bc2
3
+ metadata.gz: '0820135e4a0b603c15f4e46615a3682c229f415ac5f9023b6a8c8fdd118f2471'
4
+ data.tar.gz: e7a1cdb300cebb0c9005823160ccfc54162eb27b4037b427a391f79ce21cc822
5
5
  SHA512:
6
- metadata.gz: fe64267ae5b1f52918f4e212120914dfe5a10f02ee90d7232555301b876262c5a435b51b1bcd0b621315eb1812d496f47a7d64fbcadf761d1b6014e65a0db620
7
- data.tar.gz: aef83df0dacf867cf54447fa22c3187f2584e99769881bec06630664a4a5587401cf7a7b34dece12001219c7bc9e6fffa1a1ed6e4da4986cf62bfd1927d78b55
6
+ metadata.gz: f225c537e56518eab0d9356b965802a074ab67995ff0ee3aaabc23eafd383094c6eb0650add2589496fb9dbcbe9810cefec1677b278d46363082850f931cf0ec
7
+ data.tar.gz: 0d63e7169eb701247f5f89e0759de9f3a8f2a936a093e93b9cda449b9ba163e307010e0c25c059b9932935ca344e8d33613c2a669538a5ed49256bcb4747ae2e
@@ -15,4 +15,4 @@ jobs:
15
15
  steps:
16
16
  - uses: seferov/pr-lint-action@master
17
17
  with:
18
- title-regex: '^\[RELEASE|NO-TICKET|DL|UDL|AD|DU|AR|IN|CON|DIS|AS|MT|SCR|DEL-\d*\](\ )'
18
+ title-regex: '^\[RELEASE|NO-TICKET|DL|UDL|AD|DU|AR|IN|CON|DIS|AS|MT|SCR|RO|DEL-\d*\](\ )'
@@ -39,7 +39,7 @@ module ErpIntegration
39
39
  # Notice that logging headers will expose sensitive information
40
40
  # like api-key. To avoid use filters:
41
41
  # https://lostisland.github.io/faraday/middleware/logger
42
- faraday.response :logger, @logger, { headers: false, bodies: true }
42
+ faraday.response :logger, @logger, { headers: false, bodies: true } if @logger
43
43
 
44
44
  # Custom error handling for the error response
45
45
  faraday.use ErpIntegration::Middleware::ErrorHandling
@@ -10,6 +10,12 @@ module ErpIntegration
10
10
 
11
11
  def generate_shipping_label(id)
12
12
  client.put("model/#{model_name}/#{id}/generate_shipping_labels")
13
+ true
14
+ # Workaround: Fulfil api does not return a json when status code is 200 (a.k.a. "Ok")
15
+ # and faraday is having an error when trying to parse it. Let's skip the parse error
16
+ # and move on.
17
+ rescue Faraday::ParsingError
18
+ true
13
19
  end
14
20
 
15
21
  def create_default_package(id)
@@ -11,10 +11,9 @@ module ErpIntegration
11
11
  :invoice_address, :invoice_method, :invoice_state, :invoices,
12
12
  :lines, :metadata, :payment_term, :payment_total, :price_list,
13
13
  :reference, :sales_person, :shipment_amount, :shipment_method,
14
- :shipment_state, :shipments, :shipping_start_date, :state,
15
- :tax_amount, :total_amount, :total_quantity, :total_shipment_cost,
16
- :untaxed_amount, :warehouse, :weight, :weight_uom, :write_date,
17
- :write_uid
14
+ :shipment_returns, :shipment_state, :shipments, :shipping_start_date,
15
+ :state, :tax_amount, :total_amount, :total_quantity, :total_shipment_cost,
16
+ :untaxed_amount, :warehouse, :weight, :weight_uom, :write_date, :write_uid
18
17
 
19
18
  def cancel
20
19
  self.class.adapter.cancel(id)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ErpIntegration
4
- VERSION = '0.24.0'
4
+ VERSION = '0.26.0'
5
5
  end
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.24.0
4
+ version: 0.26.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-03-14 00:00:00.000000000 Z
11
+ date: 2023-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport