getInstrucoes() public method

public getInstrucoes ( ) : mixed
return mixed
Example #1
0
 public function addBoleto(BoletoContract $boleto)
 {
     if (!$boleto->isComRegistro()) {
         return $this;
     }
     $this->iniciaDetalhe();
     $this->add(1, 1, '1');
     $this->add(2, 2, 'A');
     $this->add(3, 3, 'A');
     $this->add(4, 4, 'A');
     $this->add(5, 16, '');
     $this->add(17, 17, 'A');
     $this->add(18, 18, 'A');
     $this->add(19, 19, 'B');
     $this->add(20, 47, '');
     $this->add(48, 56, Util::formatCnab('9', $boleto->getNossoNumero(), 9));
     $this->add(57, 62, '');
     $this->add(63, 70, Carbon::now()->format('Ymd'));
     $this->add(71, 71, '');
     $this->add(72, 72, $boleto->getByte() == 1 ? 'S' : 'N');
     $this->add(73, 73, '');
     $this->add(74, 74, $boleto->getByte() == 1 ? 'A' : 'B');
     $this->add(75, 76, '');
     $this->add(77, 78, '');
     $this->add(79, 82, '');
     $this->add(83, 92, Util::formatCnab('9', 0, 10, 2));
     $this->add(93, 96, Util::formatCnab('9', $boleto->getMulta(), 4, 2));
     $this->add(97, 108, '');
     $this->add(109, 110, self::OCORRENCIA_REMESSA);
     // REGISTRO
     if ($boleto->getStatus() == $boleto::STATUS_BAIXA) {
         $this->add(109, 110, self::OCORRENCIA_BAIXA);
         // BAIXA
     }
     if ($boleto->getStatus() == $boleto::STATUS_ALTERACAO) {
         $this->add(109, 110, self::OCORRENCIA_ALT_VENCIMENTO);
         // 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('9', $boleto->getValor(), 13, 2));
     $this->add(140, 148, '');
     $this->add(149, 149, $boleto->getEspecieDocCodigo('A'));
     $this->add(150, 150, $boleto->getAceite());
     $this->add(151, 156, $boleto->getDataDocumento()->format('dmy'));
     $this->add(157, 158, self::INSTRUCAO_SEM);
     $this->add(159, 160, self::INSTRUCAO_SEM);
     if ($boleto->getDiasProtesto() > 0) {
         $this->add(157, 158, self::INSTRUCAO_PROTESTO);
         $this->add(159, 160, Util::formatCnab('9', $boleto->getDiasProtesto(), 2));
     }
     $this->add(161, 173, Util::formatCnab('9', $boleto->getJuros(), 13, 2));
     $this->add(174, 179, $boleto->getDataVencimento()->format('dmy'));
     $this->add(180, 192, Util::formatCnab('9', $boleto->getDescontosAbatimentos(), 13, 2));
     $this->add(193, 205, Util::formatCnab('9', 0, 13, 2));
     $this->add(206, 218, Util::formatCnab('9', $boleto->getDescontosAbatimentos(), 13, 2));
     $this->add(219, 220, strlen(Util::onlyNumbers($boleto->getPagador()->getDocumento())) == 14 ? '20' : '10');
     $this->add(221, 234, Util::formatCnab('9L', $boleto->getPagador()->getDocumento(), 14));
     $this->add(235, 274, Util::formatCnab('X', $boleto->getPagador()->getNome(), 40));
     $this->add(275, 314, Util::formatCnab('X', $boleto->getPagador()->getEndereco(), 40));
     $this->add(315, 319, '00000');
     $this->add(320, 325, '000000');
     $this->add(326, 326, ' ');
     $this->add(327, 334, Util::formatCnab('9L', $boleto->getPagador()->getCep(), 8));
     $this->add(335, 339, '00000');
     $this->add(340, 353, Util::formatCnab('9L', $boleto->getSacadorAvalista() ? $boleto->getSacadorAvalista()->getDocumento() : '', 14));
     $this->add(354, 394, Util::formatCnab('X', $boleto->getSacadorAvalista() ? $boleto->getSacadorAvalista()->getNome() : '', 41));
     $this->add(395, 400, Util::formatCnab('9', $this->iRegistros + 1, 6));
     if ($boleto->getByte() == 1) {
         $this->iniciaDetalhe();
         $this->add(1, 1, '2');
         $this->add(2, 12, '');
         $this->add(13, 21, Util::formatCnab('9', $boleto->getNossoNumero(), 9));
         $this->add(22, 101, Util::formatCnab('X', $boleto->getInstrucoes()[0], 80));
         $this->add(102, 181, Util::formatCnab('X', $boleto->getInstrucoes()[1], 80));
         $this->add(122, 261, Util::formatCnab('X', $boleto->getInstrucoes()[2], 80));
         $this->add(262, 341, Util::formatCnab('X', $boleto->getInstrucoes()[3], 80));
         $this->add(342, 351, Util::formatCnab('9', $boleto->getNumeroDocumento(), 10));
         $this->add(352, 394, '');
         $this->add(395, 400, Util::formatCnab('9', $this->iRegistros + 1, 6));
     }
     return $this;
 }