invoicing_payments_processing 1.1.68 → 1.1.69

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
  SHA1:
3
- metadata.gz: 36b5fd6212a599f4855cbfce22cf021275bef49c
4
- data.tar.gz: 98bf47011621c2518e1f377a80cadfbb3114d786
3
+ metadata.gz: 8a2630a4138eed9ce9bff82ca451f20580270ed4
4
+ data.tar.gz: d3889d1e0d0d880681b7bbc289c28b2032a349c6
5
5
  SHA512:
6
- metadata.gz: ff41e764185ebcc320595801cbddf48aecc34fc28dc48b8f82bdceb4660d63a74d88b25c51b53c93895685397dd38524fa023443fe040bcfab4300019ffb31b7
7
- data.tar.gz: e6f2aa52eeb41fdd00f9f4b1635d81d73d5982f737312868615c1a076ac5a3dbf5b09da0658e2e0e92febf0fc7d6424fc90214e82f764d5efb7e7f9faf5d8fc5
6
+ metadata.gz: 0c3138defd98ac56b073e3b004eb81586bef46c462a2d9746512fd77e65ecd7b0595eff0b57e0163fec87d4ddc8604f349592abf55cd67424fedb02c4697c6c7
7
+ data.tar.gz: 26c8b39c421aa4fb18aa21f70d8ced37a117dd5d3263a2718e6d669575972b77fe93c7b9aff3ec1bdc26e982ffd1e43ed060e1bf62be4e761630823e8e1cb390
@@ -42,27 +42,32 @@ module BlackStack
42
42
  # 3) haciendo coincidir el primer guid en el codigo de invoice, con el id del cliente
43
43
  def get_client()
44
44
  puts
45
- puts "BlackStack::BufferPayPalNotification::get_client"
46
- puts 'debug info:'
47
- puts "self.invoice:#{self.invoice.to_s}:."
45
+ puts "get_client: BlackStack::BufferPayPalNotification::get_client"
46
+ puts "get_client: self.invoice:#{self.invoice.to_s}:."
48
47
  # obtengo el cliente que machea con este perfil
49
48
  c = nil
50
49
  if c.nil?
50
+ puts 'get_client: a'
51
51
  if self.invoice.guid?
52
+ puts 'get_client: a1'
52
53
  i = BlackStack::Invoice.where(:id=>self.invoice).first
53
54
  c = i.client if !i.nil?
54
55
  end
55
56
  end
56
57
  if c.nil?
58
+ puts 'get_client: b'
57
59
  iid = self.invoice.split(".").last.to_s
58
60
  if iid.guid?
61
+ puts 'get_client: b1'
59
62
  i = BlackStack::Invoice.where(:id=>iid).first
60
63
  c = i.client if !i.nil?
61
64
  end
62
65
  end
63
66
  if c.nil?
67
+ puts 'get_client: c'
64
68
  cid = self.invoice.split(".").first.to_s
65
69
  if cid.guid?
70
+ puts 'get_client: c1'
66
71
  c = BlackStack::Client.where(:id=>cid).first
67
72
  end
68
73
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: invoicing_payments_processing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.68
4
+ version: 1.1.69
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leandro Daniel Sardi