Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adicionando helper para remessa Multipag Bradesco #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/cnab240.rb
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
require 'cnab240/helper/helper'
require 'cnab240/helper/pagamento_itau'
require 'cnab240/helper/pagamento_bradesco'
require 'cnab240/helper/pagamento_multipag'
require 'cnab240/helper/pagamento_bb'

require 'cnab240/helper/transferencia_sicoob'
Expand Down
66 changes: 66 additions & 0 deletions lib/cnab240/helper/pagamento_multipag.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
module Cnab240
class PagamentoMultipag < Helper
def initialize(campos = {})
campos[:controle_banco] ||= '237'
campos[:banco_nome] ||= 'BANCO BRADESCO'
campos[:empresa_tipo] ||= '2'
campos[:arquivo_layout] = '089'
campos[:arquivo_data_geracao] ||= (Time.respond_to?(:current) ? Time.current : Time.now).strftime('%d%m%Y')
campos[:arquivo_hora_geracao] ||= (Time.respond_to?(:current) ? Time.current : Time.now).strftime('%H%M%S')
campos[:arquivo_codigo] ||= '1'
campos[:arquivo_densidade] ||= '06250'
campos[:servico_layout] = '045'
campos[:brancos_4] = "01 "

@arquivo = Cnab240::Arquivo::Arquivo.new('V60')
@arquivo.lotes << lote = Cnab240::Lote.new(operacao: :pagamento, tipo: :remessa, versao: 'V60')

fill campos, arquivo.header, arquivo.trailer

campos[:servico_operacao] ||= 'C'
campos[:controle_lote] ||= '0001'

fill campos, lote.header, lote.trailer
end

def add_lote(campos = {})
@arquivo.lotes << lote = Cnab240::Lote.new(operacao: :pagamento, tipo: :remessa, versao: 'V60')

campos[:controle_banco] ||= '237'
campos[:servico_operacao] ||= 'C'
campos[:controle_lote] = (@arquivo.lotes.length).to_s

fill campos, lote.header, lote.trailer
end

def << (campos)
lote = @arquivo.lotes.last

campos[:controle_banco] ||= '237'
campos[:controle_lote] = @arquivo.lotes.length.to_s
campos[:servico_numero_registro] = (lote.segmentos.length + 1).to_s
# 000 para inclusao e 999 para exclusao
campos[:servico_tipo_movimento] ||= '000'
campos[:credito_moeda_tipo] ||= 'BRL'
# [018] TED (STR,CIP) ou [700] DOC.
campos[:favorecido_camara] = favorecido_camara(lote, campos)

segmento_a = Cnab240::V60::SegmentoA.new
fill campos, segmento_a
lote << segmento_a

campos[:controle_lote] = @arquivo.lotes.length.to_s
campos[:servico_numero_registro] = (lote.segmentos.length + 1).to_s
campos[:pagamento_data_vencimento] ||= (Time.respond_to?(:current) ? Time.current : Time.now).strftime('%d%m%Y')

segmento_b = Cnab240::V60::SegmentoB.new
fill campos, segmento_b
lote << segmento_b
end

# [018] TED (STR,CIP) ou [700] DOC (COMPE)
def favorecido_camara(lote, campos)
lote.header[:servico_forma] == '01' ? '000' : (campos[:credito_valor_pagamento].to_i < 749) ? '700' : '018'
end
end
end
70 changes: 70 additions & 0 deletions spec/helper/pagamento_multipag_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# -*- encoding: utf-8 -*-
require 'spec_helper'

include Cnab240

RSpec.describe PagamentoMultipag do
it 'deve criar pagamento' do
favorecido = {
favorecido_banco: '001',
favorecido_agencia_codigo: '4444',
favorecido_conta_numero: '8888',
favorecido_conta_dv: '0',
credito_seu_numero: '1',
credito_data_pagamento: '05082014',
credito_valor_pagamento: '102',
pagamento_valor_documento: '102',
favorecido_nome: 'JOAO BARBOSA',
favorecido_inscricao_tipo: '1',
favorecido_inscricao_numero: '00022233344',
favorecido_endereco_logradouro: 'Av. Pres. Vargas'
}

# servico_forma
# '01' = Crédito em Conta Corrente
# '02' = Cheque Pagamento / Administrativo
# '03' = DOC/TED (1)
# '31' = Pagamento de Títulos de Outros Bancos
#
# servico_tipo
# '20' = Pagamento Fornecedor '30' = Pagamento Salários
beneficiario = {
empresa_numero: '111222000126',
empresa_nome: 'MINHA EMPRESA LTDA',
empresa_agencia_codigo: '00013',
empresa_conta_numero: '000004007078',
arquivo_sequencia: '1',
endereco_logradouro: 'AV BRASIL',
endereco_numero: '123',
endereco_cidade: 'RIO DE JANEIRO',
endereco_cep: '12123412',
endereco_estado: 'RJ',
servico_tipo: '20',
servico_forma: '03'
}

# Cria pagamento já com 1 lote criado
pagamento = PagamentoMultipag.new(beneficiario)

# Adiciona primeiro lote
pagamento.add_lote(beneficiario)

# adiciona pagamentos no último lote criado
pagamento << favorecido # primeiro pagamento
pagamento << favorecido.merge(credito_valor_pagamento: '202',
pagamento_valor_documento: '202',
credito_seu_numero: '2') # segundo pagamento

# Adiciona segundo lote
pagamento.add_lote(beneficiario.merge(servico_forma: '01'))

# adiciona pagamentos no último lote criado
pagamento << favorecido.merge(credito_valor_pagamento: '502',
pagamento_valor_documento: '502',
credito_seu_numero: '3',
favorecido_banco: '000')

expect(pagamento.arquivo.header.banco_nome.strip).to eq 'BANCO BRADESCO'
expect(pagamento.arquivo.header.arquivo_layout.strip). to eq '089'
end
end