Afip 1.5.5 → 1.5.6
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 +1 -1
- data/lib/Afip/bill.rb +2 -2
- data/lib/Afip/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ad4975819120b21f08173fa96621aa9374044c8a4dc11984a6857daa1ad3e2e8
|
|
4
|
+
data.tar.gz: 5b02b04486f20e479b75aaac2cc9a65929246232dabdd4c5d616eaab7e8cf445
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22a2ccc56c83aa604d9f9c893ef644a4a23f6f8736143b17f3cd0d8fd4291607e59d1f7fc29c56ce3c98f0593869683e5f164adf4d721c7c99e77d7cc64ecc54
|
|
7
|
+
data.tar.gz: b5026aecc8b36cd95d9569682fa78969c2a941e5cecb5e993eedb6c2a86194c6218f7f2565fd0c6bbe0fbb306526901854e6eaa8f0fadc0d51a82ba8ef6e8bfb
|
data/Gemfile.lock
CHANGED
data/lib/Afip/bill.rb
CHANGED
|
@@ -28,7 +28,7 @@ module Afip
|
|
|
28
28
|
@total = net.to_f + iva_sum.to_f + exento.to_f + no_gravado.to_f + otros_imp.to_f
|
|
29
29
|
@tributos = attrs[:tributos] || []
|
|
30
30
|
@opcionales = attrs[:opcionales] || []
|
|
31
|
-
@cbte_asoc = attrs[:cbte_asoc]
|
|
31
|
+
@cbte_asoc = attrs[:cbte_asoc] || []
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
def self.get_ptos_vta
|
|
@@ -166,7 +166,7 @@ module Afip
|
|
|
166
166
|
end
|
|
167
167
|
|
|
168
168
|
if !cbte_asoc.empty?
|
|
169
|
-
|
|
169
|
+
detail["CbtesAsoc"] = array_associados
|
|
170
170
|
end
|
|
171
171
|
|
|
172
172
|
unless concepto == "Productos" # En "Productos" ("01"), si se mandan estos parámetros la afip rechaza.
|
data/lib/Afip/version.rb
CHANGED