Skip to content

Commit

Permalink
TIPO 54 alterado OUTRAS_DESPESAS para DESCONTO
Browse files Browse the repository at this point in the history
  • Loading branch information
robmachado committed May 19, 2021
1 parent 4f990eb commit 127d06b
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/testZ54.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
$std->CODIGO_PRODUTO = 'Prod1';//Obrig Código do produto ou serviço do informante
$std->QUANTIDADE = 1.000; //Obrig Quantidade do produto (com 3 decimais)
$std->VL_PRODUTO = 100.00; //Obrig Valor bruto do produto (valor unitário multiplicado por quantidade) - com 2 decimais
$std->OUTRAS_DESPESAS = 0.00; ////Obrig Valor do Desconto Concedido no item (com 2 decimais)
$std->DESCONTO = 0.00; ////Obrig Valor do Desconto Concedido no item (com 2 decimais)
$std->VL_BC_ICMS = 100.00; //Obrig Base de cálculo do ICMS (com 2 decimais)
$std->VL_BC_ICMS_ST = 0.00; //Obrig Base de cálculo do ICMS de retenção na Substituição Tributária (com 2 decimais)
$std->VL_IPI = 10.00; //Obrig Valor do IPI (com 2 decimais)
Expand Down
36 changes: 36 additions & 0 deletions local/testJson.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?php

$arr = [
"mes" => 1,
"ano" => 2021,
"registros" => [
0 => '50',
1 => '51',
2 => '53',
3 => '54',
4 => '55',
5 => '56',
6 => '57',
7 => '60',
8 => '60A',
9 => '60D',
10 => '60I',
11 => '60M',
12 => '60R',
13 => '61',
14 => '61R',
15 => '70',
16 => '71',
17 => '74',
18 => '75',
19 => '85',
20 => '86',
]
];


$json = json_encode($arr, JSON_PRETTY_PRINT);

header('Content-Type: application/json');
echo $json;

2 changes: 1 addition & 1 deletion src/Elements/Z54.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class Z54 extends Element implements ElementInterface
'format' => 'totalNumber',
'length' => 12
],
'OUTRAS_DESPESAS' => [
'DESCONTO' => [
'type' => 'numeric',
'regex' => '^\d+(\.\d*)?|\.\d+$',
'required' => true,
Expand Down

0 comments on commit 127d06b

Please sign in to comment.