Eduardokum\LaravelBoleto\Cnab\Remessa\Banco\Hsbc::addBoleto PHP Метод

addBoleto() публичный Метод

public addBoleto ( Eduardokum\LaravelBoleto\Contracts\Boleto\Boleto $boleto )
$boleto Eduardokum\LaravelBoleto\Contracts\Boleto\Boleto
    public function addBoleto(BoletoContract $boleto)
    {
        $this->iniciaDetalhe();
        $this->add(1, 1, '1');
        $this->add(2, 3, strlen(Util::onlyNumbers($this->getBeneficiario()->getDocumento())) == 14 ? '02' : '01');
        $this->add(4, 17, Util::formatCnab('NL', $this->getBeneficiario()->getDocumento(), 14));
        $this->add(18, 18, 0);
        $this->add(19, 22, Util::formatCnab('N', $this->getAgencia(), 4));
        $this->add(23, 24, '55');
        $this->add(25, 28, Util::formatCnab('NL', $this->getAgencia(), 4));
        $this->add(29, 34, Util::formatCnab('NL', $this->getConta(), 6));
        $this->add(35, 35, Util::formatCnab('NL', $this->getContaDv(), 1));
        $this->add(36, 37, Util::formatCnab('X', '', 2));
        $this->add(38, 62, Util::formatCnab('X', '', 25));
        // numero de controle
        $this->add(63, 73, Util::formatCnab('N', $boleto->getNossoNumero(), 11));
        $this->add(74, 79, '000000');
        $this->add(80, 90, Util::formatCnab('N', 0, 11, 2));
        $this->add(91, 96, '000000');
        $this->add(97, 107, Util::formatCnab('N', 0, 11, 2));
        $this->add(108, 108, $this->getCarteiraNumero());
        $this->add(109, 110, '01');
        // REGISTRO
        if ($boleto->getStatus() == $boleto::STATUS_BAIXA) {
            $this->add(109, 110, '02');
            // BAIXA
        }
        if ($boleto->getStatus() == $boleto::STATUS_ALTERACAO) {
            $this->add(109, 110, '48');
            // ALTERAR VENCIMENTO
        }
        $this->add(111, 120, Util::formatCnab('X', $boleto->getNumeroDocumento(), 10));
        $this->add(121, 126, $boleto->getDataVencimento()->format('dmy'));
        $this->add(127, 139, Util::formatCnab('N', $boleto->getValor(), 13, 2));
        $this->add(140, 142, $this->getCodigoBanco());
        $this->add(143, 147, '00000');
        $this->add(148, 149, $boleto->getEspecieDocCodigo());
        $this->add(150, 150, $boleto->getAceite());
        $this->add(151, 156, $boleto->getDataDocumento()->format('dmy'));
        $this->add(157, 158, '00');
        $this->add(159, 160, '57');
        if ($boleto->getDiasProtesto() !== false) {
            $this->add(157, 158, '84');
        }
        if ($boleto->getMulta() !== false) {
            $this->add(159, 160, '74');
            $this->add(206, 211, Util::formatCnab('X', '', 6));
            $this->add(206, 215, Util::formatCnab('9', $boleto->getMulta(), 2, 2));
            $this->add(206, 218, Util::formatCnab('9', $boleto->getJurosApos(0), 3));
        } else {
            $this->add(206, 218, Util::formatCnab('9', $boleto->getDescontosAbatimentos(), 13, 2));
        }
        $juros = 0;
        if ($boleto->getJuros() !== false) {
            $juros = Util::percent($boleto->getValor(), $boleto->getJuros()) / 30;
        }
        $this->add(161, 173, Util::formatCnab('9', $juros, 13, 2));
        $this->add(174, 179, '000000');
        $this->add(180, 192, Util::formatCnab('9', 0, 13, 2));
        $this->add(193, 205, Util::formatCnab('9', 0, 13, 2));
        $this->add(219, 220, strlen(Util::onlyNumbers($boleto->getPagador()->getDocumento())) == 14 ? '02' : '01');
        $this->add(221, 234, Util::formatCnab('NL', $boleto->getPagador()->getDocumento(), 14));
        $this->add(235, 274, Util::formatCnab('X', $boleto->getPagador()->getNome(), 40));
        $this->add(275, 312, Util::formatCnab('X', $boleto->getPagador()->getEndereco(), 38));
        $this->add(313, 314, '00');
        $this->add(315, 326, Util::formatCnab('X', '', 12));
        $this->add(327, 334, Util::formatCnab('NL', $boleto->getPagador()->getCep(), 8));
        $this->add(335, 349, Util::formatCnab('X', $boleto->getPagador()->getCidade(), 15));
        $this->add(350, 351, Util::formatCnab('X', $boleto->getPagador()->getUf(), 2));
        $this->add(352, 390, Util::formatCnab('X', $boleto->getSacadorAvalista() ? $boleto->getSacadorAvalista()->getNome() : '', 39));
        $this->add(391, 391, '');
        $this->add(392, 393, Util::formatCnab('N', $boleto->getDiasProtesto('  '), 2));
        $this->add(394, 394, $boleto->getMoeda());
        $this->add(395, 400, Util::formatCnab('N', $this->iRegistros + 1, 6));
    }