ledger_accountable 0.0.7.pre → 0.0.8.pre

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 48f3873cdd4caaaaa4c8f344219e844ee8ef97283fa00fadd21a9e8859c64f2c
4
- data.tar.gz: 34cea07b1a0ddd62b0b1287431e4c2269851c9b1a437dbe8e29372699a08553c
3
+ metadata.gz: 1276ff12e3d9530cc0828b419d62138ce14291afe0265be521ae41bbe938a629
4
+ data.tar.gz: 9895169c6b508de3060d4b0289093332a6df38cb68814a6e822410689579fbed
5
5
  SHA512:
6
- metadata.gz: f13c5e378ea3c65ef9f917043d027b0f8ffc17179644ad29619874f8697e767ae6a5ea22db777cc6461474c83c9ef854dc7e4cd0f24d098398ffcd7b2f6711e8
7
- data.tar.gz: ef5abc2f95dbae36a2a300c5ba7d1d28f4b137f4e0e87e2159c8cc4d5abe79bf64e5c4bc78909c2f12d5d1ebf24cba3cc5e32ef89a707c1133f4e34775b812b8
6
+ metadata.gz: 91c8da55c86246f96deb68a530dd94d17249f495cfc3b370e8837418144417c71ea12ef335a6dbd53dacbf67a721455991cd8b67d1f56b9058865653c644ce12
7
+ data.tar.gz: 1b43cf14d6dfbaca1453e64ab1ddd5cf2a5564dd8de76c82d33f5b94a259759cd266d8e7e5e9031c0d3c489fc42bc31891ab0ddc37e27fda952bf3c9a162dcf1
@@ -14,6 +14,9 @@ class LedgerEntry < ActiveRecord::Base
14
14
  validates :amount_cents, presence: true
15
15
  validates :entry_type, presence: true
16
16
 
17
+ scope :debits, -> { where(transaction_type: :debit) }
18
+ scope :credits, -> { where(transaction_type: :credit) }
19
+
17
20
  def to_itemized_s(line_type = :line)
18
21
  I18n.t! "#{TRANSLATION_PREFIX}.#{ledger_item_type.constantize.model_name.param_key}.#{line_type}",
19
22
  metadata.symbolize_keys
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LedgerAccountable
4
- VERSION = "0.0.7.pre".freeze
4
+ VERSION = "0.0.8.pre".freeze
5
5
  end
@@ -162,7 +162,6 @@ module LedgerAccountable
162
162
  "LedgerAccountable model '#{model_name}' specified #{self.class.ledger_amount_attribute} for track_ledger :amount, but does not implement #{self.class.ledger_amount_attribute}"
163
163
  end
164
164
 
165
- ledger_amount_multiplier = self.class.transaction_type == :credit ? 1 : -1
166
165
  ledger_amount_multiplier * (send(self.class.ledger_amount_attribute) || 0)
167
166
  end
168
167
 
@@ -170,7 +169,8 @@ module LedgerAccountable
170
169
  # stored on the LedgerAccountable object
171
170
  def net_ledger_amount
172
171
  if self.class.ledger_net_amount_method
173
- send(self.class.ledger_net_amount_method)
172
+ net_amount_result = send(self.class.ledger_net_amount_method)
173
+ ledger_amount_multiplier * net_amount_result
174
174
  else
175
175
  unless attribute_method?(self.class.ledger_amount_attribute.to_s)
176
176
  # if a method is provided to compute ledger_amount,
@@ -179,9 +179,9 @@ LedgerAccountable model '#{model_name}' appears to use a method for track_ledger
179
179
  but did not provide an option for :net_amount. This can lead to unexpected ledger entry amounts when modifying #{model_name}.
180
180
  "
181
181
  end
182
- previous_ledger_amount = attribute_was(self.class.ledger_amount_attribute)
183
- ledger_amount_multiplier = self.class.transaction_type == :credit ? 1 : -1
184
- ledger_amount_multiplier * (ledger_amount - (previous_ledger_amount || 0))
182
+
183
+ previous_ledger_amount = ledger_amount_multiplier * attribute_was(self.class.ledger_amount_attribute)
184
+ ledger_amount - (previous_ledger_amount || 0)
185
185
  end
186
186
  end
187
187
 
@@ -353,6 +353,10 @@ but did not provide an option for :net_amount. This can lead to unexpected ledge
353
353
  end
354
354
  end
355
355
 
356
+ def ledger_amount_multiplier
357
+ self.class.transaction_type == :credit ? 1 : -1
358
+ end
359
+
356
360
  # An overrideable method to determine if the object should be persisted in the ledger
357
361
  #
358
362
  # For example, payments should not be recorded in a ledger until they're finalized
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ledger_accountable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7.pre
4
+ version: 0.0.8.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brendan Maclean
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-06-20 00:00:00.000000000 Z
12
+ date: 2024-06-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activerecord