1 | <?php |
||
9 | class C500 extends Element implements ElementInterface |
||
10 | { |
||
11 | const REG = 'C500'; |
||
12 | const LEVEL = 3; |
||
13 | const PARENT = 'C001'; |
||
14 | |||
15 | protected $parameters = [ |
||
16 | 'COD_PART' => [ |
||
17 | 'type' => 'string', |
||
18 | 'regex' => '^.{0,60}$', |
||
19 | 'required' => false, |
||
20 | 'info' => 'Código do participante do fornecedor (campo 02 do Registro 0150).', |
||
21 | 'format' => '' |
||
22 | ], |
||
23 | 'COD_MOD' => [ |
||
24 | 'type' => 'string', |
||
25 | 'regex' => '^(00|01|02|03|06|07|08)$', |
||
26 | 'required' => false, |
||
27 | 'info' => 'Código do modelo do documento fiscal, conforme a Tabela 4.1.1', |
||
28 | 'format' => '' |
||
29 | ], |
||
30 | 'COD_SIT' => [ |
||
31 | 'type' => 'numeric', |
||
32 | 'regex' => '^(\d{2})$', |
||
33 | 'required' => false, |
||
34 | 'info' => 'Código da situação do documento fiscal, conforme a Tabela 4.1.2', |
||
35 | 'format' => '' |
||
36 | ], |
||
37 | 'SER' => [ |
||
38 | 'type' => 'string', |
||
39 | 'regex' => '^.{0,4}$', |
||
40 | 'required' => false, |
||
41 | 'info' => 'Série do documento fiscal', |
||
42 | 'format' => '' |
||
43 | ], |
||
44 | 'SUB' => [ |
||
45 | 'type' => 'numeric', |
||
46 | 'regex' => '^(\d{0,3})$', |
||
47 | 'required' => false, |
||
48 | 'info' => 'Subsérie do documento fiscal', |
||
49 | 'format' => '' |
||
50 | ], |
||
51 | 'NUM_DOC' => [ |
||
52 | 'type' => 'numeric', |
||
53 | 'regex' => '^(\d{0,9})$', |
||
54 | 'required' => false, |
||
55 | 'info' => 'Número do documento fiscal', |
||
56 | 'format' => '' |
||
57 | ], |
||
58 | 'DT_DOC' => [ |
||
59 | 'type' => 'string', |
||
60 | 'regex' => '^(0[1-9]|[1-2][0-9]|31(?!(?:0[2469]|11))|30(?!02))(0[1-9]|1[0-2])([12]\d{3})$', |
||
61 | 'required' => false, |
||
62 | 'info' => 'Data da emissão do documento fiscal', |
||
63 | 'format' => '' |
||
64 | ], |
||
65 | 'DT_ENT' => [ |
||
66 | 'type' => 'string', |
||
67 | 'regex' => '^(0[1-9]|[1-2][0-9]|31(?!(?:0[2469]|11))|30(?!02))(0[1-9]|1[0-2])([12]\d{3})$', |
||
68 | 'required' => false, |
||
69 | 'info' => 'Data da entrada', |
||
70 | 'format' => '' |
||
71 | ], |
||
72 | 'VL_DOC' => [ |
||
73 | 'type' => 'numeric', |
||
74 | 'regex' => '^\d+(\.\d*)?|\.\d+$', |
||
75 | 'required' => false, |
||
76 | 'info' => 'Valor total do documento fiscal', |
||
77 | 'format' => '15v2' |
||
78 | ], |
||
79 | 'VL_ICMS' => [ |
||
80 | 'type' => 'numeric', |
||
81 | 'regex' => '^\d+(\.\d*)?|\.\d+$', |
||
82 | 'required' => false, |
||
83 | 'info' => 'Valor acumulado do ICMS', |
||
84 | 'format' => '15v2' |
||
85 | ], |
||
86 | 'COD_INF' => [ |
||
87 | 'type' => 'string', |
||
88 | 'regex' => '^.{0,6}$', |
||
89 | 'required' => false, |
||
90 | 'info' => 'Código da informação complementar do documento fiscal (campo 02 do Registro 0450)', |
||
91 | 'format' => '' |
||
92 | ], |
||
93 | 'VL_PIS' => [ |
||
94 | 'type' => 'numeric', |
||
95 | 'regex' => '^\d+(\.\d*)?|\.\d+$', |
||
96 | 'required' => false, |
||
97 | 'info' => 'Valor do PIS/PASEP', |
||
98 | 'format' => '15v2' |
||
99 | ], |
||
100 | 'VL_COFINS' => [ |
||
101 | 'type' => 'numeric', |
||
102 | 'regex' => '^\d+(\.\d*)?|\.\d+$', |
||
103 | 'required' => false, |
||
104 | 'info' => 'Valor da COFINS', |
||
105 | 'format' => '15v2' |
||
106 | ], |
||
107 | |||
108 | ]; |
||
109 | |||
110 | /** |
||
111 | * Constructor |
||
112 | * @param \stdClass $std |
||
113 | */ |
||
114 | public function __construct(\stdClass $std) |
||
120 | |||
121 | public function postValidation() |
||
128 | } |
||
129 |