Na linha 3037 do Danfe.php, onde está:
if ($this->getTagValue($this->emit, 'CRT') == '1') {
$texto = 'O/CSOSN'; //Regime do Simples CRT = 1
}
Deveria ser o código a seguir quando o CRT for 4:
if ($this->getTagValue($this->emit, 'CRT') == '1' || $this->getTagValue($this->emit, 'CRT') == '4') {
$texto = 'O/CSOSN'; // Regime do Simples CRT = 1 ou 4
}
Na linha 3037 do Danfe.php, onde está:
if ($this->getTagValue($this->emit, 'CRT') == '1') {
$texto = 'O/CSOSN'; //Regime do Simples CRT = 1
}
Deveria ser o código a seguir quando o CRT for 4:
if ($this->getTagValue($this->emit, 'CRT') == '1' || $this->getTagValue($this->emit, 'CRT') == '4') {
$texto = 'O/CSOSN'; // Regime do Simples CRT = 1 ou 4
}