abank 0.7.0 → 0.7.2
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/Gemfile.lock +8 -7
- data/lib/abank/big.rb +19 -4
- data/lib/abank/folha.rb +42 -17
- data/lib/abank/version.rb +1 -1
- data/lib/abank.rb +7 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 18f8a44c8a32fc138ee5184b0bab2b57608041f74960cba12061cd4e00294e21
|
4
|
+
data.tar.gz: a0278c5241cbed5417f1be08bf7fe0c9f7dd3957c6e059866d5eec2fd5f1512d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad0df9fa07cbacf1e63bf02863d912ce4ebbe963ae3dece73c3d5f61ff07552d848f6625891d7a600452ddc97faf8a816bc69a61099380c359b5f4b0d13ff9f8
|
7
|
+
data.tar.gz: bcb08fcba8e4299d3e87d35cc814c5bda1781c98e0f866fba9f4f9017e5ae33e45c307380747f8916d9ab3565c160f84aad3c6056b15183e60ffc9ffba5bbe1c
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
abank (0.7.
|
4
|
+
abank (0.7.2)
|
5
5
|
google-cloud-bigquery
|
6
6
|
roo
|
7
7
|
thor
|
@@ -75,11 +75,12 @@ GEM
|
|
75
75
|
google-cloud-core (1.8.0)
|
76
76
|
google-cloud-env (>= 1.0, < 3.a)
|
77
77
|
google-cloud-errors (~> 1.0)
|
78
|
-
google-cloud-env (2.2.
|
78
|
+
google-cloud-env (2.2.2)
|
79
|
+
base64 (~> 0.2)
|
79
80
|
faraday (>= 1.0, < 3.a)
|
80
81
|
google-cloud-errors (1.5.0)
|
81
82
|
google-logging-utils (0.1.0)
|
82
|
-
googleauth (1.
|
83
|
+
googleauth (1.14.0)
|
83
84
|
faraday (>= 1.0, < 3.a)
|
84
85
|
google-cloud-env (~> 2.2)
|
85
86
|
google-logging-utils (~> 0.1)
|
@@ -106,10 +107,10 @@ GEM
|
|
106
107
|
mutex_m (0.3.0)
|
107
108
|
net-http (0.6.0)
|
108
109
|
uri
|
109
|
-
nokogiri (1.18.
|
110
|
+
nokogiri (1.18.4)
|
110
111
|
mini_portile2 (~> 2.8.2)
|
111
112
|
racc (~> 1.4)
|
112
|
-
nokogiri (1.18.
|
113
|
+
nokogiri (1.18.4-x86_64-linux-gnu)
|
113
114
|
racc (~> 1.4)
|
114
115
|
observer (0.1.2)
|
115
116
|
os (1.1.4)
|
@@ -142,7 +143,7 @@ GEM
|
|
142
143
|
roo (2.10.1)
|
143
144
|
nokogiri (~> 1)
|
144
145
|
rubyzip (>= 1.3.0, < 3.0.0)
|
145
|
-
rubocop (1.
|
146
|
+
rubocop (1.74.0)
|
146
147
|
json (~> 2.3)
|
147
148
|
language_server-protocol (~> 3.17.0.2)
|
148
149
|
lint_roller (~> 1.1.0)
|
@@ -213,4 +214,4 @@ DEPENDENCIES
|
|
213
214
|
yard
|
214
215
|
|
215
216
|
BUNDLED WITH
|
216
|
-
2.6.
|
217
|
+
2.6.5
|
data/lib/abank/big.rb
CHANGED
@@ -17,6 +17,7 @@ module Abank
|
|
17
17
|
# acesso a base dados abank no bigquery
|
18
18
|
# @param [Thor::CoreExt::HashWithIndifferentAccess] opcoes trabalho
|
19
19
|
# @option opcoes [String] :k ('') movimentos a apagar (keysin.mv)
|
20
|
+
# @option opcoes [Integer] :n (0) conta apagar movimentos >3 outras (mv)
|
20
21
|
# @option opcoes [String] :c ('') id contrato arrendamento (re)
|
21
22
|
# @option opcoes [String] :d ('') data inicio contrato arrendamento (re)
|
22
23
|
# @option opcoes [Boolean] :t (false) trabalha todas as rendas? (re)
|
@@ -40,10 +41,15 @@ module Abank
|
|
40
41
|
# @return [Big] acesso a base dados abank no bigquery
|
41
42
|
def mv_delete
|
42
43
|
@ctlct = []
|
43
|
-
return self if mvkys.empty?
|
44
|
+
return self if mvkys.empty? && contadel.zero?
|
44
45
|
|
45
46
|
# obtem lista contratos arrendamento associados aos movimentos a apagar
|
46
|
-
@ctlct =
|
47
|
+
@ctlct =
|
48
|
+
if contadel.zero?
|
49
|
+
sql("select distinct ct from #{BD}.gmr where ky IN UNNEST(@kys)", kys: mvkys)
|
50
|
+
else
|
51
|
+
sql("select distinct ct from #{BD}.gmr where nc=@nc", nc: contadel)
|
52
|
+
end
|
47
53
|
re_apaga
|
48
54
|
mv_delete_dml
|
49
55
|
self
|
@@ -92,7 +98,7 @@ module Abank
|
|
92
98
|
opcao[:c] = ctr[:ct]
|
93
99
|
lre = sql("select * from #{BD}.glr where ct=@ct order by ano desc,cnt desc limit 1", ct: opcao[:c]).first
|
94
100
|
lre[:dl] -= 1 if lre[:cnt].zero?
|
95
|
-
ctr.merge(lre, mv: sql("select * from #{BD}.
|
101
|
+
ctr.merge(lre, mv: sql("select * from #{BD}.gmr where ct=@ct and dv>=@ud order by 1,2", ct: opcao[:c], ud: lre[:dl] + 1))
|
96
102
|
end
|
97
103
|
self
|
98
104
|
end
|
@@ -124,6 +130,11 @@ module Abank
|
|
124
130
|
@bqapi ||= Google::Cloud::Bigquery.new
|
125
131
|
end
|
126
132
|
|
133
|
+
# @return [Integer] numero conta apagar movimentos
|
134
|
+
def contadel
|
135
|
+
@contadel ||= opcao[:n] > 3 ? opcao[:n] : 0
|
136
|
+
end
|
137
|
+
|
127
138
|
# @return [String] movimentos a apagar (keysin.mv)
|
128
139
|
def mvkys
|
129
140
|
@mvkys ||= opcao[:k].to_s.scan(/[-+]?\d+/).map(&:to_i)
|
@@ -204,7 +215,11 @@ module Abank
|
|
204
215
|
|
205
216
|
# apaga movimentos no bigquery
|
206
217
|
def mv_delete_dml
|
207
|
-
|
218
|
+
if contadel.zero?
|
219
|
+
dml("delete from #{BD}.mv where #{BD}.ky(dl,dv,ds,vl,nc,ex) IN UNNEST(@kys)", kys: mvkys)
|
220
|
+
else
|
221
|
+
dml("delete from #{BD}.mv where nc=@nc", nc: contadel)
|
222
|
+
end
|
208
223
|
puts("MOVIMENTOS APAGADOS #{bqnrs}")
|
209
224
|
end
|
210
225
|
|
data/lib/abank/folha.rb
CHANGED
@@ -15,17 +15,27 @@ module Abank
|
|
15
15
|
# @option opcoes [Boolean] :s (false) apaga movimento similar? (mv)
|
16
16
|
# @option opcoes [Boolean] :e (false) apaga movimento igual? (mv)
|
17
17
|
# @option opcoes [Boolean] :i (false) insere movimento novo? (mv)
|
18
|
+
# @option opcoes [Integer] :n (0) conta dos movimentos (mv)
|
18
19
|
# @option opcoes [String] :v ('') data valor movimentos (mv)
|
19
20
|
# @option opcoes [String] :g ('') classificacao movimentos (mv)
|
20
21
|
def initialize(opcoes = {})
|
21
22
|
super
|
22
|
-
@opcao = opcao.merge(
|
23
|
+
@opcao = opcao.merge(
|
24
|
+
s: opcoes.fetch(:s, false),
|
25
|
+
e: opcoes.fetch(:e, false),
|
26
|
+
i: opcoes.fetch(:i, false),
|
27
|
+
n: opcoes.fetch(:n, 0),
|
28
|
+
v: opcoes.fetch(:v, ''),
|
29
|
+
g: opcoes.fetch(:g, ''),
|
30
|
+
k: +'',
|
31
|
+
f: opcoes[:f]
|
32
|
+
)
|
23
33
|
@mvvls = []
|
24
34
|
end
|
25
35
|
|
26
36
|
# carrega/mostra folha calculo
|
27
37
|
def processa_xls
|
28
|
-
puts("\n#{
|
38
|
+
puts("\n#{opcao[:f]}")
|
29
39
|
mvs = sql("select * from #{BD}.gmv where nc=@nc", nc: conta).group_by { |m| [m[:dl], m[:vl].to_f] }
|
30
40
|
folha.sheet(0).parse(header_search: ['Data Lanc.', 'Data Valor', 'Descrição', 'Valor']) do |r|
|
31
41
|
next unless valid?(r.values)
|
@@ -43,24 +53,45 @@ module Abank
|
|
43
53
|
end
|
44
54
|
return unless opcao[:i]
|
45
55
|
|
56
|
+
# para nao apagar movimentos duma conta, por aqui somente com keys opcao[:k]
|
57
|
+
opcao[:n] = 0
|
46
58
|
mv_delete.mv_insert.ct_dados.re_insert
|
47
59
|
end
|
48
60
|
|
49
61
|
private
|
50
62
|
|
51
|
-
# @return [Roo::Excelx] folha
|
63
|
+
# @return [Roo::Excelx] folha a processar
|
52
64
|
def folha
|
53
65
|
@folha ||= Roo::Spreadsheet.open(opcao[:f])
|
54
66
|
rescue StandardError
|
55
67
|
raise("Erro ao abrir a folha de cálculo: #{opcao[:f]}")
|
56
68
|
end
|
57
69
|
|
70
|
+
# @return [Integer] multiplicador valores
|
71
|
+
def sig
|
72
|
+
@sig ||= cartao? ? -1 : 1
|
73
|
+
end
|
74
|
+
|
58
75
|
# @example
|
59
|
-
# mov*.xlsx
|
60
|
-
# movCard*.xlsx
|
61
|
-
#
|
76
|
+
# mov*.xlsx 1 --> corrente
|
77
|
+
# movCard*.xlsx 2 --> cartao
|
78
|
+
# opcao[:n] 3 --> cash
|
79
|
+
# opcao[:n] n --> outras
|
80
|
+
# @return [Integer] numero conta
|
62
81
|
def conta
|
63
|
-
@conta ||=
|
82
|
+
@conta ||= fconta
|
83
|
+
end
|
84
|
+
|
85
|
+
# @return [Boolean] folha cartao credito
|
86
|
+
def cartao?
|
87
|
+
opcao[:f].match?(/card/i)
|
88
|
+
end
|
89
|
+
|
90
|
+
# @return [Integer] obter numero conta
|
91
|
+
def fconta
|
92
|
+
return opcao[:n] if opcao[:n] > 2
|
93
|
+
|
94
|
+
cartao? ? 2 : 1
|
64
95
|
end
|
65
96
|
|
66
97
|
# @param [Array] row folha calculo em processamento
|
@@ -69,7 +100,7 @@ module Abank
|
|
69
100
|
return false unless row[0].is_a?(Date) && row[1].is_a?(Date)
|
70
101
|
|
71
102
|
row[2] = row[2].to_s.strip.gsub("'", '').gsub('\\', '') # Descrição
|
72
|
-
row[3] = row[3].to_f *
|
103
|
+
row[3] = row[3].to_f * sig # Valor
|
73
104
|
@rowfc = row
|
74
105
|
true
|
75
106
|
rescue StandardError => e
|
@@ -84,7 +115,7 @@ module Abank
|
|
84
115
|
|
85
116
|
# @return [String] novo texto base formatado para display
|
86
117
|
def lnexi
|
87
|
-
@mvvls << "('#{rowfc[0].iso8601}','#{dvc.iso8601}','#{rowfc[2]}',#{rowfc[3]},#{conta},#{dvc.year},#{dvc.month}
|
118
|
+
@mvvls << "('#{rowfc[0].iso8601}','#{dvc.iso8601}','#{rowfc[2]}',#{rowfc[3]},#{conta},#{dvc.year},#{dvc.month},#{ctc},null,null)"
|
88
119
|
"#{lbase} NOVO"
|
89
120
|
end
|
90
121
|
|
@@ -111,10 +142,9 @@ module Abank
|
|
111
142
|
|
112
143
|
# @return [Date] data valor corrigida
|
113
144
|
def dvc
|
114
|
-
|
115
|
-
|
145
|
+
d = opcao[:v].to_s
|
146
|
+
d.empty? ? rowfc[1] : Date.parse(d)
|
116
147
|
rescue ArgumentError
|
117
|
-
puts("Invalid date format in #{opcao[:v].inspect}")
|
118
148
|
rowfc[1]
|
119
149
|
end
|
120
150
|
|
@@ -123,10 +153,5 @@ module Abank
|
|
123
153
|
cmv = opcao[:g].to_s
|
124
154
|
cmv.empty? ? 'null' : "'#{cmv}'"
|
125
155
|
end
|
126
|
-
|
127
|
-
# @return [String] tipo movimento c[redito] ou d[ebito]
|
128
|
-
def tpc
|
129
|
-
rowfc[3].positive? ? 'c' : 'd'
|
130
|
-
end
|
131
156
|
end
|
132
157
|
end
|
data/lib/abank/version.rb
CHANGED
data/lib/abank.rb
CHANGED
@@ -18,8 +18,9 @@ module Abank
|
|
18
18
|
Big.new(options.to_h).mv_classifica.ct_dados.re_insert
|
19
19
|
end
|
20
20
|
|
21
|
-
desc 'apagamv', 'apaga movimentos'
|
22
|
-
option :k, banner: 'KEY[,KEY...]',
|
21
|
+
desc 'apagamv', 'apaga movimentos keys|conta'
|
22
|
+
option :k, banner: 'KEY[,KEY...]', default: '', desc: 'keys movimentos apagar'
|
23
|
+
option :n, banner: 'CONTA', type: :numeric, default: 0, desc: 'conta movimentos apagar (>3 outras)'
|
23
24
|
# apaga movimentos
|
24
25
|
def apagamv
|
25
26
|
Big.new(options.transform_keys(&:to_sym)).mv_delete.ct_dados.re_insert
|
@@ -60,7 +61,8 @@ module Abank
|
|
60
61
|
desc 'work', 'carrega/apaga dados da folha calculo'
|
61
62
|
option :s, type: :boolean, default: false, desc: 'apaga movimento similar (=data,=valor,<>descricao)'
|
62
63
|
option :e, type: :boolean, default: false, desc: 'apaga movimento igual'
|
63
|
-
option :
|
64
|
+
option :n, banner: 'CONTA', type: :numeric, default: 0, desc: 'conta destino (0 auto,1 corrente,2 cartao,3 chash,> outras)'
|
65
|
+
option :v, banner: 'DATA', default: '', desc: 'data lancamento para movimentos a carregar'
|
64
66
|
option :g, banner: 'TAG', default: '', desc: 'classificacao para movimentos a carregar'
|
65
67
|
# carrega/apaga dados da folha calculo
|
66
68
|
def work
|
@@ -70,10 +72,11 @@ module Abank
|
|
70
72
|
end
|
71
73
|
|
72
74
|
desc 'show', 'mostra dados da folha calculo'
|
75
|
+
option :n, banner: 'CONTA', type: :numeric, default: 0, desc: 'conta destino (0 auto,1 corrente,2 cartao,3 chash,> outras)'
|
73
76
|
# mostra folha calculo
|
74
77
|
def show
|
75
78
|
Dir.glob("#{DR}/*.xlsx").each do |file|
|
76
|
-
Folha.new(options.merge(f: file)).processa_xls
|
79
|
+
Folha.new(options.transform_keys(&:to_sym).merge(f: file)).processa_xls
|
77
80
|
end
|
78
81
|
end
|
79
82
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: abank
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hernâni Rodrigues Vaz
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-14 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: bundler
|
@@ -197,7 +197,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
197
197
|
- !ruby/object:Gem::Version
|
198
198
|
version: '0'
|
199
199
|
requirements: []
|
200
|
-
rubygems_version: 3.6.
|
200
|
+
rubygems_version: 3.6.5
|
201
201
|
specification_version: 4
|
202
202
|
summary: Arquiva movimentos conta-corrente, conta-cartao do activobank no bigquery.
|
203
203
|
test_files: []
|