abo_parser 1.0.6 → 1.0.7

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: f9348b282479e8d0c1aee18b96fa5447b306e1eacc0bb6caadf507bfba9ce2c5
4
- data.tar.gz: cf7c527a3e7a491ee112076c49ca506c07ec69d748fb3601d1d010e23e064b99
3
+ metadata.gz: bedd61dfabcfdb6282d302036eea42424235150758b28483466cd264b6aceaa2
4
+ data.tar.gz: 883e4e3be76cff14c19685ea9a1d0309ed7b92808e8c8c97412732143c13a722
5
5
  SHA512:
6
- metadata.gz: 0bd3461f71c419329f541f0f21afcd5e94e01607838bd47c872662759647ab7be41597b0f5032971f8fc0b5fca7c75c650acc6197d6dc7fc09b0f9bc03f45d3a
7
- data.tar.gz: b9551ce3429abc3380cfcaf70c274220a836615588f3ebe3ef19301474d400cfe8df5e24ebec89e5320caf85d992449deeb682edff5adffc1faacb1720834e2e
6
+ metadata.gz: c45668baf21904f20f5ebed9d2d87cb8e433ad64387d74dc3f47bdba51c51258c0ddefae07905c843c58248ec92066040b6ad15e63f30e0fc8fdeeee7a6aa679
7
+ data.tar.gz: 5c32caa4958cdc9a83d921109bb1e41c10a31809174e623cefee13e6fa3936c9d7896353d8bd70020fd961bf853c799d2b5095ba2b066e626dc3dffba79ab410
data/lib/abo.rb CHANGED
@@ -113,7 +113,7 @@ class Abo
113
113
  gpc += transaction[:counter_account_number].to_s.rjust(10, "0")
114
114
  gpc += transaction[:document_number].to_s.ljust(13, " ")
115
115
  gpc += (transaction[:amount] * 100).to_i.to_s.rjust(12, "0")
116
- gpc += transaction[:posting_code].to_s.rjust(1, "0")
116
+ gpc += transaction[:posting_code].to_s
117
117
  gpc += transaction[:variable_symbol].to_s.rjust(10, "0")
118
118
  gpc += (transaction[:counter_account_bank_code].rjust(4, "0") +
119
119
  transaction[:constant_symbol].rjust(4, "0")).rjust(
@@ -274,16 +274,14 @@ class Abo
274
274
  case transaction.posting_code
275
275
  when POSTING_CODE_DEBIT
276
276
  transaction.debit = transaction.amount
277
- transaction.posting_code = "Debit"
277
+ transaction.amount = transaction.amount * -1.0
278
278
  when POSTING_CODE_CREDIT
279
279
  transaction.credit = transaction.amount
280
- transaction.posting_code = "Credit"
281
280
  when POSTING_CODE_DEBIT_REVERSAL
282
- transaction.debit = transaction.amount * -1.0
283
- transaction.posting_code = "Debit Reversal"
281
+ transaction.debit = transaction.amount
284
282
  when POSTING_CODE_CREDIT_REVERSAL
285
- transaction.credit = transaction.amount * -1.0
286
- transaction.posting_code = "Credit Reversal"
283
+ transaction.credit = transaction.amount
284
+ transaction.amount = transaction.amount * -1.0
287
285
  end
288
286
 
289
287
  transaction
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AboParser
4
- VERSION = "1.0.6"
4
+ VERSION = "1.0.7"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: abo_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rhemery
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-07 00:00:00.000000000 Z
11
+ date: 2023-07-14 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: