ledger_accountable 0.0.6.pre → 0.0.7.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48f3873cdd4caaaaa4c8f344219e844ee8ef97283fa00fadd21a9e8859c64f2c
|
4
|
+
data.tar.gz: 34cea07b1a0ddd62b0b1287431e4c2269851c9b1a437dbe8e29372699a08553c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f13c5e378ea3c65ef9f917043d027b0f8ffc17179644ad29619874f8697e767ae6a5ea22db777cc6461474c83c9ef854dc7e4cd0f24d098398ffcd7b2f6711e8
|
7
|
+
data.tar.gz: ef5abc2f95dbae36a2a300c5ba7d1d28f4b137f4e0e87e2159c8cc4d5abe79bf64e5c4bc78909c2f12d5d1ebf24cba3cc5e32ef89a707c1133f4e34775b812b8
|
@@ -6,9 +6,11 @@ class LedgerEntry < ActiveRecord::Base
|
|
6
6
|
belongs_to :ledger_item, polymorphic: true, optional: false
|
7
7
|
|
8
8
|
enum entry_type: { addition: 0, deletion: 1, modification: 2 }
|
9
|
+
enum transaction_type: { debit: 0, credit: 1 }
|
9
10
|
|
10
11
|
store :metadata, coder: JSON
|
11
12
|
|
13
|
+
validates :transaction_type, presence: true
|
12
14
|
validates :amount_cents, presence: true
|
13
15
|
validates :entry_type, presence: true
|
14
16
|
|
@@ -3,6 +3,7 @@ class CreateLedgerEntries < ActiveRecord::Migration[6.1]
|
|
3
3
|
create_table :ledger_entries do |t|
|
4
4
|
t.references :owner, polymorphic: true, null: false
|
5
5
|
t.references :ledger_item, polymorphic: true, null: false
|
6
|
+
t.integer :transaction_type, null: false
|
6
7
|
t.integer :entry_type, null: false
|
7
8
|
t.integer :amount_cents, default: 0, null: false
|
8
9
|
t.text :metadata
|
data/lib/ledger_accountable.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# LedgerAccountable adds ledger functionality to any model that acts as an item in a ledger.
|
2
2
|
#
|
3
3
|
# It supports tracking two types of ledger entries:
|
4
|
-
# 1. Debits: items which decrease the ledger balance (for example, an item being sold)
|
5
|
-
# 2. Credits: items which increase the ledger balance (for example, a payment taken)
|
4
|
+
# 1. Debits: outgoing items which decrease the ledger balance (for example, an item being sold)
|
5
|
+
# 2. Credits: incoming items which increase the ledger balance (for example, a payment taken)
|
6
6
|
#
|
7
7
|
# Usage:
|
8
8
|
# Include LedgerAccountable in a model to have it generate ledger entries based on its
|
@@ -87,7 +87,7 @@ module LedgerAccountable
|
|
87
87
|
# the name of the attribute or method which determines the ledger amount
|
88
88
|
class_attribute :ledger_net_amount_method
|
89
89
|
# the type of ledger entry to create - debit or credit
|
90
|
-
class_attribute :
|
90
|
+
class_attribute :transaction_type
|
91
91
|
# attributes of the LedgerAccountable that should trigger a ledger entry when changed
|
92
92
|
class_attribute :ledger_attributes
|
93
93
|
end
|
@@ -97,7 +97,7 @@ module LedgerAccountable
|
|
97
97
|
# to be updated when the provided attributes (or ledger owner) are changed
|
98
98
|
def track_ledger(ledger_owner, options = {})
|
99
99
|
validate_and_assign_ledger_owner(ledger_owner)
|
100
|
-
|
100
|
+
validate_and_assign_transaction_type(options)
|
101
101
|
validate_and_assign_ledger_amount_attribute(options)
|
102
102
|
validate_net_amount_method(options)
|
103
103
|
validate_and_assign_ledger_attributes(options)
|
@@ -112,13 +112,13 @@ module LedgerAccountable
|
|
112
112
|
self.ledger_owner = ledger_owner
|
113
113
|
end
|
114
114
|
|
115
|
-
def
|
115
|
+
def validate_and_assign_transaction_type(options)
|
116
116
|
if options[:type].present?
|
117
117
|
raise 'LedgerAccountable type must be :debit or :credit' unless %i[debit credit].include?(options[:type])
|
118
118
|
|
119
|
-
self.
|
119
|
+
self.transaction_type = options[:type]
|
120
120
|
else
|
121
|
-
self.
|
121
|
+
self.transaction_type = :credit
|
122
122
|
end
|
123
123
|
end
|
124
124
|
|
@@ -162,7 +162,7 @@ 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.
|
165
|
+
ledger_amount_multiplier = self.class.transaction_type == :credit ? 1 : -1
|
166
166
|
ledger_amount_multiplier * (send(self.class.ledger_amount_attribute) || 0)
|
167
167
|
end
|
168
168
|
|
@@ -180,7 +180,7 @@ but did not provide an option for :net_amount. This can lead to unexpected ledge
|
|
180
180
|
"
|
181
181
|
end
|
182
182
|
previous_ledger_amount = attribute_was(self.class.ledger_amount_attribute)
|
183
|
-
ledger_amount_multiplier = self.class.
|
183
|
+
ledger_amount_multiplier = self.class.transaction_type == :credit ? 1 : -1
|
184
184
|
ledger_amount_multiplier * (ledger_amount - (previous_ledger_amount || 0))
|
185
185
|
end
|
186
186
|
end
|
@@ -305,6 +305,7 @@ but did not provide an option for :net_amount. This can lead to unexpected ledge
|
|
305
305
|
# which will rollback the attempt to save the LedgerAccountable object
|
306
306
|
owner: owner,
|
307
307
|
ledger_item: self,
|
308
|
+
transaction_type: self.transaction_type,
|
308
309
|
entry_type: entry_type,
|
309
310
|
amount_cents: amount,
|
310
311
|
metadata: metadata
|
@@ -379,3 +380,4 @@ but did not provide an option for :net_amount. This can lead to unexpected ledge
|
|
379
380
|
@_destroy_callback_already_called ||= false
|
380
381
|
end
|
381
382
|
end
|
383
|
+
|
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.
|
4
|
+
version: 0.0.7.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-
|
12
|
+
date: 2024-06-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activerecord
|