-
-
Notifications
You must be signed in to change notification settings - Fork 394
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0648f08
commit 38a4585
Showing
15 changed files
with
699 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php | ||
|
||
require 'autoload.php'; | ||
$beneficiario = new Eduardokum\LaravelBoleto\Pessoa([ | ||
'nome' => 'ACME', | ||
'endereco' => 'Rua um, 123', | ||
'bairro' => 'Bairro', | ||
'cep' => '99999-999', | ||
'uf' => 'UF', | ||
'cidade' => 'CIDADE', | ||
'documento' => '99.999.999/9999-99', | ||
]); | ||
|
||
$pagador = new Eduardokum\LaravelBoleto\Pessoa([ | ||
'nome' => 'Cliente', | ||
'endereco' => 'Rua um, 123', | ||
'bairro' => 'Bairro', | ||
'cep' => '99999-999', | ||
'uf' => 'UF', | ||
'cidade' => 'CIDADE', | ||
'documento' => '999.999.999-99', | ||
]); | ||
|
||
$boleto = new Eduardokum\LaravelBoleto\Boleto\Banco\Daycoval([ | ||
'logo' => realpath(__DIR__ . '/../logos/') . DIRECTORY_SEPARATOR . '707.png', | ||
'dataVencimento' => new Carbon\Carbon(), | ||
'valor' => 100, | ||
'multa' => false, | ||
'juros' => false, | ||
'numero' => '0004309540', | ||
'numeroDocumento' => 1, | ||
'descricaoDemonstrativo' => ['demonstrativo 1', 'demonstrativo 2', 'demonstrativo 3'], | ||
'instrucoes' => ['instrucao 1', 'instrucao 2', 'instrucao 3'], | ||
'aceite' => 'S', | ||
'especieDoc' => 'DM', | ||
'pagador' => $pagador, | ||
'beneficiario' => $beneficiario, | ||
'carteira' => 3, | ||
'operacao' => 1234567, | ||
'agencia' => '0001', | ||
'conta' => '7654321', | ||
]); | ||
|
||
$pdf = new Eduardokum\LaravelBoleto\Boleto\Render\Pdf(); | ||
$pdf->addBoleto($boleto); | ||
echo $pdf->gerarBoleto(); | ||
//$pdf->gerarBoleto($pdf::OUTPUT_SAVE, __DIR__ . DIRECTORY_SEPARATOR . 'arquivos' . DIRECTORY_SEPARATOR . 'daycoval.pdf'); |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
<?php | ||
|
||
namespace Eduardokum\LaravelBoleto\Boleto\Banco; | ||
|
||
use Eduardokum\LaravelBoleto\Util; | ||
use Eduardokum\LaravelBoleto\CalculoDV; | ||
use Eduardokum\LaravelBoleto\Boleto\AbstractBoleto; | ||
use Eduardokum\LaravelBoleto\Contracts\Boleto\Boleto; | ||
use Eduardokum\LaravelBoleto\Contracts\Boleto\Boleto as BoletoContract; | ||
|
||
class Daycoval extends AbstractBoleto implements BoletoContract | ||
{ | ||
/** | ||
* Código do banco | ||
* | ||
* @var string | ||
*/ | ||
protected $codigoBanco = Boleto::COD_BANCO_DAYCOVAL; | ||
|
||
/** | ||
* Define as carteiras disponíveis para este banco | ||
* 3 Cobrança Caucionada | ||
* @var array | ||
*/ | ||
protected $carteiras = [3]; | ||
|
||
/** | ||
* Espécie do documento, coódigo para remessa | ||
* | ||
* @var string | ||
*/ | ||
protected $especiesCodigo = [ | ||
'DM' => '01', // Duplicata Mercantil | ||
'RC' => '05', // Recibo | ||
'DS' => '12', // Duplicata de Serviço | ||
'O' => '99', // Outros | ||
]; | ||
|
||
/** | ||
* Moeda | ||
* | ||
* @var int | ||
*/ | ||
protected $moeda = 9; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
protected $operacao; | ||
|
||
/** | ||
* Código de range de composição do nosso número. | ||
* | ||
* @var int | ||
*/ | ||
protected $range = 0; | ||
|
||
public function __construct(array $params = []) | ||
{ | ||
parent::__construct($params); | ||
$this->setCamposObrigatorios('numero', 'agencia', 'carteira', 'operacao'); | ||
} | ||
|
||
/** | ||
* @return int | ||
*/ | ||
public function getRange() | ||
{ | ||
return $this->range; | ||
} | ||
|
||
/** | ||
* @param int $range | ||
* | ||
* @return Daycoval | ||
*/ | ||
public function setRange($range) | ||
{ | ||
$this->range = (int) $range; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getOperacao() | ||
{ | ||
return $this->operacao; | ||
} | ||
|
||
/** | ||
* @param $operacao | ||
* | ||
* @return Daycoval | ||
*/ | ||
public function setOperacao($operacao) | ||
{ | ||
$this->operacao = $operacao; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Retorna o número definido pelo cliente para compor o nosso número | ||
* | ||
* @return int | ||
*/ | ||
public function getNumero() | ||
{ | ||
return $this->numero < $this->getRange() ? $this->getRange() + $this->numero : $this->numero; | ||
} | ||
|
||
/** | ||
* Retorna o código da carteira (Com ou sem registro) | ||
* | ||
* @return string | ||
*/ | ||
public function getCarteira() | ||
{ | ||
return '112'; | ||
} | ||
|
||
/** | ||
* Gera o Nosso Número. | ||
* | ||
* @return string | ||
*/ | ||
protected function gerarNossoNumero() | ||
{ | ||
$nn = $this->getNumero(); | ||
$dv = CalculoDV::daycovalNossoNumero($this->getAgencia(), $this->getCarteira(), $nn); | ||
|
||
return Util::numberFormatGeral($nn, 10) . $dv; | ||
} | ||
|
||
/** | ||
* Método que retorna o nosso número usado no boleto. Alguns bancos possuem algumas diferenças. | ||
* | ||
* @return string | ||
*/ | ||
public function getNossoNumeroBoleto() | ||
{ | ||
return substr_replace($this->getNossoNumero(), '-', -1, 0); | ||
} | ||
|
||
/** | ||
* Método para gerar o código da posição de 20 a 44 | ||
* | ||
* @return string | ||
*/ | ||
protected function getCampoLivre() | ||
{ | ||
if ($this->campoLivre) { | ||
return $this->campoLivre; | ||
} | ||
|
||
$campoLivre = Util::numberFormatGeral($this->getAgencia(), 4); | ||
$campoLivre .= Util::numberFormatGeral($this->getCarteira(), 3); | ||
$campoLivre .= Util::numberFormatGeral($this->getOperacao(), 7); | ||
$campoLivre .= Util::numberFormatGeral($this->getNossoNumero(), 11); | ||
|
||
return $this->campoLivre = $campoLivre; | ||
} | ||
|
||
/** | ||
* @return bool | ||
*/ | ||
public function imprimeBoleto() | ||
{ | ||
return $this->getCarteira() == 112; | ||
} | ||
|
||
/** | ||
* Método onde qualquer boleto deve extender para gerar o código da posição de 20 a 44 | ||
* | ||
* @param $campoLivre | ||
* | ||
* @return array | ||
*/ | ||
public static function parseCampoLivre($campoLivre) | ||
{ | ||
return [ | ||
'convenio' => null, | ||
'agenciaDv' => null, | ||
'contaCorrenteDv' => null, | ||
'agencia' => substr($campoLivre, 0, 4), | ||
'carteira' => substr($campoLivre, 4, 3), | ||
'operacao' => substr($campoLivre, 7, 7), | ||
'nossoNumero' => substr($campoLivre, 14, 10), | ||
'nossoNumeroDv' => substr($campoLivre, 24, 1), | ||
'nossoNumeroFull' => substr($campoLivre, 14, 11), | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.