billing 0.0.7d → 0.0.7e
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 +4 -4
- data/app/models/billing/report.rb +1 -1
- data/lib/billing/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 372a49ba72a93955ca4508c334463629b9e73683
|
|
4
|
+
data.tar.gz: 2e7eff4b288280bb857c4e4bb1b52d2952d7d3bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19e435c9c58a9b8e176de78ab838909c257412e4d2f3749e3f30b3dbc61dcf0f67649ca9d768736190b8dac37fcce1316af72e3afc66c053b12043dcba59cead
|
|
7
|
+
data.tar.gz: 17bd694ea1398b1e10d2039190fea28fba72bd50fd34641f4f7a1e7314a145e8b8a0a24d109e1310292e97ae7c4d47a4cf04b8e5e7a3b2e1b1690964ca9d996b
|
|
@@ -6,7 +6,7 @@ module Billing
|
|
|
6
6
|
FISCAL_PAYED_RECVD = 'payed_recvd'.freeze
|
|
7
7
|
F_OPERATIONS = [FISCAL_X_REPORT, FISCAL_Z_REPORT, FISCAL_PERIOD_REPORT, FISCAL_PAYED_RECVD].freeze
|
|
8
8
|
|
|
9
|
-
acts_as_paranoid
|
|
9
|
+
acts_as_paranoid if respond_to?(:acts_as_paranoid)
|
|
10
10
|
has_paper_trail class_name: 'Billing::Version'
|
|
11
11
|
belongs_to :origin, inverse_of: :reports
|
|
12
12
|
has_many :bills, inverse_of: :report, autosave: true
|
data/lib/billing/version.rb
CHANGED