mdz-enum 1.1.15 → 1.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.MD +1 -1
- package/dist/commercial/index.d.ts +64 -64
- package/dist/commercial/index.js +185 -185
- package/dist/config/index.d.ts +69 -73
- package/dist/config/index.js +200 -211
- package/dist/finance/index.d.ts +112 -112
- package/dist/finance/index.js +324 -324
- package/dist/fiscal/index.d.ts +291 -291
- package/dist/fiscal/index.js +862 -862
- package/dist/functions.d.ts +4 -4
- package/dist/functions.js +37 -37
- package/dist/general/index.d.ts +56 -56
- package/dist/general/index.js +205 -205
- package/dist/index.d.ts +10 -10
- package/dist/index.js +96 -97
- package/dist/logistics/index.d.ts +45 -45
- package/dist/logistics/index.js +132 -132
- package/dist/people/index.d.ts +15 -15
- package/dist/people/index.js +45 -45
- package/dist/plataform/index.d.ts +12 -12
- package/dist/plataform/index.js +37 -37
- package/dist/reports/index.d.ts +12 -12
- package/dist/reports/index.js +33 -33
- package/package.json +33 -32
package/dist/config/index.js
CHANGED
|
@@ -1,211 +1,200 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.TipoPermissao = {
|
|
5
|
-
Visualizacao: '1',
|
|
6
|
-
Funcao: '2',
|
|
7
|
-
description(val) {
|
|
8
|
-
switch (val) {
|
|
9
|
-
case this.Visualizacao:
|
|
10
|
-
return 'Visualização';
|
|
11
|
-
case this.Funcao:
|
|
12
|
-
return 'Função';
|
|
13
|
-
default:
|
|
14
|
-
return 'enum not found';
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
};
|
|
18
|
-
exports.TipoDispositivo = {
|
|
19
|
-
Cliente: '1',
|
|
20
|
-
Servidor: '2',
|
|
21
|
-
description(val) {
|
|
22
|
-
switch (val) {
|
|
23
|
-
case this.Cliente:
|
|
24
|
-
return 'Cliente';
|
|
25
|
-
case this.Servidor:
|
|
26
|
-
return 'Servidor';
|
|
27
|
-
default:
|
|
28
|
-
return 'enum not found';
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
};
|
|
32
|
-
exports.TipoPeriferico = {
|
|
33
|
-
Impressora: '1',
|
|
34
|
-
Balanca: '2',
|
|
35
|
-
Sat: '3',
|
|
36
|
-
description(val) {
|
|
37
|
-
switch (val) {
|
|
38
|
-
case this.Impressora:
|
|
39
|
-
return 'Impressora';
|
|
40
|
-
case this.Balanca:
|
|
41
|
-
return 'Balanca';
|
|
42
|
-
case this.Sat:
|
|
43
|
-
return 'Sat';
|
|
44
|
-
default:
|
|
45
|
-
return 'enum not found';
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
};
|
|
49
|
-
exports.ModeloSat = {
|
|
50
|
-
Bematech: '1',
|
|
51
|
-
Gertec: '2',
|
|
52
|
-
Urano: '3',
|
|
53
|
-
Generica: '4',
|
|
54
|
-
Sweda: '5',
|
|
55
|
-
Tanca: '6',
|
|
56
|
-
Dimep: '7',
|
|
57
|
-
Nitere: '9',
|
|
58
|
-
Elgin: '10',
|
|
59
|
-
Care: '11',
|
|
60
|
-
Epson: '12',
|
|
61
|
-
ControlId: '13',
|
|
62
|
-
description(val) {
|
|
63
|
-
switch (val) {
|
|
64
|
-
case this.Bematech:
|
|
65
|
-
return 'Bematech';
|
|
66
|
-
case this.Gertec:
|
|
67
|
-
return 'Gertec';
|
|
68
|
-
case this.Urano:
|
|
69
|
-
return 'Urano';
|
|
70
|
-
case this.Generica:
|
|
71
|
-
return 'Generica';
|
|
72
|
-
case this.Sweda:
|
|
73
|
-
return 'Sweda';
|
|
74
|
-
case this.Tanca:
|
|
75
|
-
return 'Tanca';
|
|
76
|
-
case this.Dimep:
|
|
77
|
-
return 'Dimep';
|
|
78
|
-
case this.Nitere:
|
|
79
|
-
return 'Nitere';
|
|
80
|
-
case this.Elgin:
|
|
81
|
-
return 'Elgin';
|
|
82
|
-
case this.Care:
|
|
83
|
-
return 'Care';
|
|
84
|
-
case this.Epson:
|
|
85
|
-
return 'Epson';
|
|
86
|
-
case this.ControlId:
|
|
87
|
-
return 'ControlId';
|
|
88
|
-
default:
|
|
89
|
-
return 'enum not found';
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
};
|
|
93
|
-
exports.VersaoLayoutSat = {
|
|
94
|
-
Layout007: '0.07',
|
|
95
|
-
Layout008: '0.08',
|
|
96
|
-
description(val) {
|
|
97
|
-
switch (val) {
|
|
98
|
-
case this.Layout007:
|
|
99
|
-
return 'Layout 0.07';
|
|
100
|
-
case this.Layout008:
|
|
101
|
-
return 'Layout 0.08';
|
|
102
|
-
default:
|
|
103
|
-
return 'enum not found';
|
|
104
|
-
}
|
|
105
|
-
},
|
|
106
|
-
};
|
|
107
|
-
exports.ModoFinalizacao = {
|
|
108
|
-
ImprimirDireto: '1',
|
|
109
|
-
SolicitarModal: '2',
|
|
110
|
-
description(val) {
|
|
111
|
-
switch (val) {
|
|
112
|
-
case this.ImprimirDireto:
|
|
113
|
-
return 'Imprimir Direto';
|
|
114
|
-
case this.SolicitarModal:
|
|
115
|
-
return 'Solicitar Compartilhamento';
|
|
116
|
-
default:
|
|
117
|
-
return 'enum not found';
|
|
118
|
-
}
|
|
119
|
-
},
|
|
120
|
-
};
|
|
121
|
-
exports.TipoPrecoPadrao = {
|
|
122
|
-
Varejo: '0',
|
|
123
|
-
Atacado: '1',
|
|
124
|
-
description(val) {
|
|
125
|
-
switch (val) {
|
|
126
|
-
case this.Varejo:
|
|
127
|
-
return 'Varejo';
|
|
128
|
-
case this.Atacado:
|
|
129
|
-
return 'Atacado';
|
|
130
|
-
default:
|
|
131
|
-
return 'enum not found';
|
|
132
|
-
}
|
|
133
|
-
},
|
|
134
|
-
};
|
|
135
|
-
exports.TipoEtiqueta = {
|
|
136
|
-
Produto: '1',
|
|
137
|
-
Pedido: '2',
|
|
138
|
-
description(val) {
|
|
139
|
-
switch (val) {
|
|
140
|
-
case this.Produto:
|
|
141
|
-
return 'Produto';
|
|
142
|
-
case this.Pedido:
|
|
143
|
-
return 'Pedido';
|
|
144
|
-
default:
|
|
145
|
-
return 'enum not found';
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
};
|
|
149
|
-
exports.ModeloEtiqueta = {
|
|
150
|
-
Personalizada: '1',
|
|
151
|
-
PreDefinida: '2',
|
|
152
|
-
description(val) {
|
|
153
|
-
switch (val) {
|
|
154
|
-
case this.PreDefinida:
|
|
155
|
-
return 'Pré Definida';
|
|
156
|
-
case this.Personalizada:
|
|
157
|
-
return 'Personalizada';
|
|
158
|
-
default:
|
|
159
|
-
return 'enum not found';
|
|
160
|
-
}
|
|
161
|
-
},
|
|
162
|
-
};
|
|
163
|
-
exports.ParametroEtiquetaProduto = {
|
|
164
|
-
Sku: '1',
|
|
165
|
-
DescricaoProduto: '2',
|
|
166
|
-
CodigoBarras: '3',
|
|
167
|
-
Marca: '4',
|
|
168
|
-
VariacaoA: '5',
|
|
169
|
-
VariacaoB: '6',
|
|
170
|
-
PrecoVarejo: '7',
|
|
171
|
-
PrecoAtacado: '8',
|
|
172
|
-
PrecoVarProm: '9',
|
|
173
|
-
PrecoAtacProm: '10',
|
|
174
|
-
description(val) {
|
|
175
|
-
switch (val) {
|
|
176
|
-
case this.Sku:
|
|
177
|
-
return 'Sku';
|
|
178
|
-
case this.DescricaoProduto:
|
|
179
|
-
return 'Descrição';
|
|
180
|
-
case this.CodigoBarras:
|
|
181
|
-
return 'Codigo de Barras';
|
|
182
|
-
case this.Marca:
|
|
183
|
-
return 'Marca';
|
|
184
|
-
case this.VariacaoA:
|
|
185
|
-
return 'Variação A';
|
|
186
|
-
case this.VariacaoB:
|
|
187
|
-
return 'Variação B';
|
|
188
|
-
case this.PrecoVarejo:
|
|
189
|
-
return 'Preço Varejo';
|
|
190
|
-
case this.PrecoAtacado:
|
|
191
|
-
return 'Preço Atacado';
|
|
192
|
-
case this.PrecoVarProm:
|
|
193
|
-
return 'Preço Varejo Promocional';
|
|
194
|
-
case this.PrecoAtacProm:
|
|
195
|
-
return 'Preço Atacado Promocional';
|
|
196
|
-
default:
|
|
197
|
-
return 'enum not found';
|
|
198
|
-
}
|
|
199
|
-
},
|
|
200
|
-
};
|
|
201
|
-
exports.ModeloPimaco = {
|
|
202
|
-
A4351: 'A4351',
|
|
203
|
-
description(val) {
|
|
204
|
-
switch (val) {
|
|
205
|
-
case this.A4351:
|
|
206
|
-
return 'A4351';
|
|
207
|
-
default:
|
|
208
|
-
return 'enum not found';
|
|
209
|
-
}
|
|
210
|
-
},
|
|
211
|
-
};
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ParametroEtiquetaProduto = exports.ModeloEtiqueta = exports.TipoEtiqueta = exports.TipoPrecoPadrao = exports.ModoFinalizacao = exports.VersaoLayoutSat = exports.ModeloSat = exports.TipoPeriferico = exports.TipoDispositivo = exports.TipoPermissao = void 0;
|
|
4
|
+
exports.TipoPermissao = {
|
|
5
|
+
Visualizacao: '1',
|
|
6
|
+
Funcao: '2',
|
|
7
|
+
description(val) {
|
|
8
|
+
switch (val) {
|
|
9
|
+
case this.Visualizacao:
|
|
10
|
+
return 'Visualização';
|
|
11
|
+
case this.Funcao:
|
|
12
|
+
return 'Função';
|
|
13
|
+
default:
|
|
14
|
+
return 'enum not found';
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
exports.TipoDispositivo = {
|
|
19
|
+
Cliente: '1',
|
|
20
|
+
Servidor: '2',
|
|
21
|
+
description(val) {
|
|
22
|
+
switch (val) {
|
|
23
|
+
case this.Cliente:
|
|
24
|
+
return 'Cliente';
|
|
25
|
+
case this.Servidor:
|
|
26
|
+
return 'Servidor';
|
|
27
|
+
default:
|
|
28
|
+
return 'enum not found';
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
exports.TipoPeriferico = {
|
|
33
|
+
Impressora: '1',
|
|
34
|
+
Balanca: '2',
|
|
35
|
+
Sat: '3',
|
|
36
|
+
description(val) {
|
|
37
|
+
switch (val) {
|
|
38
|
+
case this.Impressora:
|
|
39
|
+
return 'Impressora';
|
|
40
|
+
case this.Balanca:
|
|
41
|
+
return 'Balanca';
|
|
42
|
+
case this.Sat:
|
|
43
|
+
return 'Sat';
|
|
44
|
+
default:
|
|
45
|
+
return 'enum not found';
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
exports.ModeloSat = {
|
|
50
|
+
Bematech: '1',
|
|
51
|
+
Gertec: '2',
|
|
52
|
+
Urano: '3',
|
|
53
|
+
Generica: '4',
|
|
54
|
+
Sweda: '5',
|
|
55
|
+
Tanca: '6',
|
|
56
|
+
Dimep: '7',
|
|
57
|
+
Nitere: '9',
|
|
58
|
+
Elgin: '10',
|
|
59
|
+
Care: '11',
|
|
60
|
+
Epson: '12',
|
|
61
|
+
ControlId: '13',
|
|
62
|
+
description(val) {
|
|
63
|
+
switch (val) {
|
|
64
|
+
case this.Bematech:
|
|
65
|
+
return 'Bematech';
|
|
66
|
+
case this.Gertec:
|
|
67
|
+
return 'Gertec';
|
|
68
|
+
case this.Urano:
|
|
69
|
+
return 'Urano';
|
|
70
|
+
case this.Generica:
|
|
71
|
+
return 'Generica';
|
|
72
|
+
case this.Sweda:
|
|
73
|
+
return 'Sweda';
|
|
74
|
+
case this.Tanca:
|
|
75
|
+
return 'Tanca';
|
|
76
|
+
case this.Dimep:
|
|
77
|
+
return 'Dimep';
|
|
78
|
+
case this.Nitere:
|
|
79
|
+
return 'Nitere';
|
|
80
|
+
case this.Elgin:
|
|
81
|
+
return 'Elgin';
|
|
82
|
+
case this.Care:
|
|
83
|
+
return 'Care';
|
|
84
|
+
case this.Epson:
|
|
85
|
+
return 'Epson';
|
|
86
|
+
case this.ControlId:
|
|
87
|
+
return 'ControlId';
|
|
88
|
+
default:
|
|
89
|
+
return 'enum not found';
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
};
|
|
93
|
+
exports.VersaoLayoutSat = {
|
|
94
|
+
Layout007: '0.07',
|
|
95
|
+
Layout008: '0.08',
|
|
96
|
+
description(val) {
|
|
97
|
+
switch (val) {
|
|
98
|
+
case this.Layout007:
|
|
99
|
+
return 'Layout 0.07';
|
|
100
|
+
case this.Layout008:
|
|
101
|
+
return 'Layout 0.08';
|
|
102
|
+
default:
|
|
103
|
+
return 'enum not found';
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
};
|
|
107
|
+
exports.ModoFinalizacao = {
|
|
108
|
+
ImprimirDireto: '1',
|
|
109
|
+
SolicitarModal: '2',
|
|
110
|
+
description(val) {
|
|
111
|
+
switch (val) {
|
|
112
|
+
case this.ImprimirDireto:
|
|
113
|
+
return 'Imprimir Direto';
|
|
114
|
+
case this.SolicitarModal:
|
|
115
|
+
return 'Solicitar Compartilhamento';
|
|
116
|
+
default:
|
|
117
|
+
return 'enum not found';
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
};
|
|
121
|
+
exports.TipoPrecoPadrao = {
|
|
122
|
+
Varejo: '0',
|
|
123
|
+
Atacado: '1',
|
|
124
|
+
description(val) {
|
|
125
|
+
switch (val) {
|
|
126
|
+
case this.Varejo:
|
|
127
|
+
return 'Varejo';
|
|
128
|
+
case this.Atacado:
|
|
129
|
+
return 'Atacado';
|
|
130
|
+
default:
|
|
131
|
+
return 'enum not found';
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
};
|
|
135
|
+
exports.TipoEtiqueta = {
|
|
136
|
+
Produto: '1',
|
|
137
|
+
Pedido: '2',
|
|
138
|
+
description(val) {
|
|
139
|
+
switch (val) {
|
|
140
|
+
case this.Produto:
|
|
141
|
+
return 'Produto';
|
|
142
|
+
case this.Pedido:
|
|
143
|
+
return 'Pedido';
|
|
144
|
+
default:
|
|
145
|
+
return 'enum not found';
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
};
|
|
149
|
+
exports.ModeloEtiqueta = {
|
|
150
|
+
Personalizada: '1',
|
|
151
|
+
PreDefinida: '2',
|
|
152
|
+
description(val) {
|
|
153
|
+
switch (val) {
|
|
154
|
+
case this.PreDefinida:
|
|
155
|
+
return 'Pré Definida';
|
|
156
|
+
case this.Personalizada:
|
|
157
|
+
return 'Personalizada';
|
|
158
|
+
default:
|
|
159
|
+
return 'enum not found';
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
};
|
|
163
|
+
exports.ParametroEtiquetaProduto = {
|
|
164
|
+
Sku: '1',
|
|
165
|
+
DescricaoProduto: '2',
|
|
166
|
+
CodigoBarras: '3',
|
|
167
|
+
Marca: '4',
|
|
168
|
+
VariacaoA: '5',
|
|
169
|
+
VariacaoB: '6',
|
|
170
|
+
PrecoVarejo: '7',
|
|
171
|
+
PrecoAtacado: '8',
|
|
172
|
+
PrecoVarProm: '9',
|
|
173
|
+
PrecoAtacProm: '10',
|
|
174
|
+
description(val) {
|
|
175
|
+
switch (val) {
|
|
176
|
+
case this.Sku:
|
|
177
|
+
return 'Sku';
|
|
178
|
+
case this.DescricaoProduto:
|
|
179
|
+
return 'Descrição';
|
|
180
|
+
case this.CodigoBarras:
|
|
181
|
+
return 'Codigo de Barras';
|
|
182
|
+
case this.Marca:
|
|
183
|
+
return 'Marca';
|
|
184
|
+
case this.VariacaoA:
|
|
185
|
+
return 'Variação A';
|
|
186
|
+
case this.VariacaoB:
|
|
187
|
+
return 'Variação B';
|
|
188
|
+
case this.PrecoVarejo:
|
|
189
|
+
return 'Preço Varejo';
|
|
190
|
+
case this.PrecoAtacado:
|
|
191
|
+
return 'Preço Atacado';
|
|
192
|
+
case this.PrecoVarProm:
|
|
193
|
+
return 'Preço Varejo Promocional';
|
|
194
|
+
case this.PrecoAtacProm:
|
|
195
|
+
return 'Preço Atacado Promocional';
|
|
196
|
+
default:
|
|
197
|
+
return 'enum not found';
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
};
|
package/dist/finance/index.d.ts
CHANGED
|
@@ -1,112 +1,112 @@
|
|
|
1
|
-
export declare const MeioPagamento: {
|
|
2
|
-
Dinheiro: string;
|
|
3
|
-
Cheque: string;
|
|
4
|
-
CartaoCredito: string;
|
|
5
|
-
CartaoDebito: string;
|
|
6
|
-
CreditoLoja: string;
|
|
7
|
-
ValeAlimentacao: string;
|
|
8
|
-
ValeRefeicao: string;
|
|
9
|
-
ValePresente: string;
|
|
10
|
-
ValeCombustivel: string;
|
|
11
|
-
BoletoBancario: string;
|
|
12
|
-
DepositoBancario: string;
|
|
13
|
-
PIX: string;
|
|
14
|
-
TransferenciaBancaria: string;
|
|
15
|
-
ProgramaFidelidade: string;
|
|
16
|
-
SemPagamento: string;
|
|
17
|
-
Outros: string;
|
|
18
|
-
description(val: string): "enum not found" | "Dinheiro" | "Cheque" | "Cartão de Crédito" | "Cartão de Débito" | "Crédito Loja" | "Vale Alimentação" | "Vale Refeição" | "Vale Presente" | "Vale Combustível" | "Boleto Bancário" | "Depósito Bancário" | "PIX" | "Transferência Bancária" | "Programa de Fidelidade" | "Sem Pagamento" | "Outros";
|
|
19
|
-
};
|
|
20
|
-
export declare const IndicadorFormaPagamento: {
|
|
21
|
-
PagamentoAVista: string;
|
|
22
|
-
PagamentoAPrazo: string;
|
|
23
|
-
description(val: string): "enum not found" | "Pagamento à Vista" | "Pagamento à Prazo";
|
|
24
|
-
};
|
|
25
|
-
export declare const OperacaoOperadoraCartao: {
|
|
26
|
-
Credito: string;
|
|
27
|
-
Debito: string;
|
|
28
|
-
description(val: string): "enum not found" | "Crédito" | "Débito";
|
|
29
|
-
};
|
|
30
|
-
export declare const BandeiraCartao: {
|
|
31
|
-
Visa: string;
|
|
32
|
-
Mastercard: string;
|
|
33
|
-
AmericanExpress: string;
|
|
34
|
-
Sorocred: string;
|
|
35
|
-
DinersClub: string;
|
|
36
|
-
Elo: string;
|
|
37
|
-
Hipercard: string;
|
|
38
|
-
Aura: string;
|
|
39
|
-
Cabal: string;
|
|
40
|
-
Outros: string;
|
|
41
|
-
description(val: string): "enum not found" | "Outros" | "Visa" | "Mastercard" | "American Express" | "Sorocred" | "Diners Club" | "Elo" | "Hipercard" | "Aura" | "Cabal";
|
|
42
|
-
};
|
|
43
|
-
export declare const TipoCalculoParcelamento: {
|
|
44
|
-
Simples: string;
|
|
45
|
-
Composto: string;
|
|
46
|
-
description(val: string): "enum not found" | "Simples" | "Composto";
|
|
47
|
-
};
|
|
48
|
-
export declare const TipoPromocao: {
|
|
49
|
-
Percentual: string;
|
|
50
|
-
Valor: string;
|
|
51
|
-
description(val: string): "enum not found" | "Valor" | "Percentual";
|
|
52
|
-
};
|
|
53
|
-
export declare const SituacaoDocumentoFinanceiro: {
|
|
54
|
-
Aberto: string;
|
|
55
|
-
Quitado: string;
|
|
56
|
-
Estornado: string;
|
|
57
|
-
description(val: string): "enum not found" | "Aberto" | "Quitado" | "Estornado";
|
|
58
|
-
};
|
|
59
|
-
export declare const TipoDataDocumentoFinanceiro: {
|
|
60
|
-
Emissao: string;
|
|
61
|
-
Quitacao: string;
|
|
62
|
-
Vencimento: string;
|
|
63
|
-
description(val: string): "enum not found" | "Emissão" | "Quitação" | "Vencimento";
|
|
64
|
-
};
|
|
65
|
-
export declare const TipoLancamentoDocumentoFinanceiro: {
|
|
66
|
-
Abertura: string;
|
|
67
|
-
Pagamento: string;
|
|
68
|
-
Desconto: string;
|
|
69
|
-
Acrescimo: string;
|
|
70
|
-
Juros: string;
|
|
71
|
-
Multa: string;
|
|
72
|
-
description(val: string): "enum not found" | "Desconto" | "Acréscimo" | "Abertura" | "Pagamento" | "Juros" | "Multa";
|
|
73
|
-
};
|
|
74
|
-
export declare const TipoCaixaOperacao: {
|
|
75
|
-
Abertura: string;
|
|
76
|
-
Entrada: string;
|
|
77
|
-
Saida: string;
|
|
78
|
-
Recebimento: string;
|
|
79
|
-
Pagamento: string;
|
|
80
|
-
Compra: string;
|
|
81
|
-
Venda: string;
|
|
82
|
-
Fechamento: string;
|
|
83
|
-
description(val: string): "enum not found" | "Abertura" | "Pagamento" | "Entrada" | "Saída" | "Recebimento" | "Compra" | "Venda" | "Fechamento";
|
|
84
|
-
};
|
|
85
|
-
export declare const SituacaoCaixa: {
|
|
86
|
-
Aberto: string;
|
|
87
|
-
Fechado: string;
|
|
88
|
-
FechadoComDiferenca: string;
|
|
89
|
-
description(val: string): "enum not found" | "Fechado" | "Aberto" | "Fechado com Diferença";
|
|
90
|
-
};
|
|
91
|
-
export declare const TipoValorConfiguracaoBoleto: {
|
|
92
|
-
Percentual: string;
|
|
93
|
-
Valor: string;
|
|
94
|
-
description(val: string): "enum not found" | "Valor" | "Percentual";
|
|
95
|
-
};
|
|
96
|
-
export declare const SituacaoBoleto: {
|
|
97
|
-
Pendente: string;
|
|
98
|
-
Pago: string;
|
|
99
|
-
Cancelado: string;
|
|
100
|
-
Vencido: string;
|
|
101
|
-
description(val: string): "Cancelado" | "enum not found" | "Pendente" | "Pago" | "Vencido";
|
|
102
|
-
};
|
|
103
|
-
export declare const SituacaoConciliacao: {
|
|
104
|
-
NaoConciliado: string;
|
|
105
|
-
Conciliado: string;
|
|
106
|
-
description(val: string): "enum not found" | "Não Conciliado" | "Conciliado";
|
|
107
|
-
};
|
|
108
|
-
export declare const TipoCalculoTaxaCartaoCredito: {
|
|
109
|
-
PercentualCadaParcela: string;
|
|
110
|
-
PercentualSobreParcelasAnteriores: string;
|
|
111
|
-
description(val: string): "enum not found" | "Percentual para cada parcela" | "Percentual sobre todas parcelas anteriores";
|
|
112
|
-
};
|
|
1
|
+
export declare const MeioPagamento: {
|
|
2
|
+
Dinheiro: string;
|
|
3
|
+
Cheque: string;
|
|
4
|
+
CartaoCredito: string;
|
|
5
|
+
CartaoDebito: string;
|
|
6
|
+
CreditoLoja: string;
|
|
7
|
+
ValeAlimentacao: string;
|
|
8
|
+
ValeRefeicao: string;
|
|
9
|
+
ValePresente: string;
|
|
10
|
+
ValeCombustivel: string;
|
|
11
|
+
BoletoBancario: string;
|
|
12
|
+
DepositoBancario: string;
|
|
13
|
+
PIX: string;
|
|
14
|
+
TransferenciaBancaria: string;
|
|
15
|
+
ProgramaFidelidade: string;
|
|
16
|
+
SemPagamento: string;
|
|
17
|
+
Outros: string;
|
|
18
|
+
description(val: string): "enum not found" | "Dinheiro" | "Cheque" | "Cartão de Crédito" | "Cartão de Débito" | "Crédito Loja" | "Vale Alimentação" | "Vale Refeição" | "Vale Presente" | "Vale Combustível" | "Boleto Bancário" | "Depósito Bancário" | "PIX" | "Transferência Bancária" | "Programa de Fidelidade" | "Sem Pagamento" | "Outros";
|
|
19
|
+
};
|
|
20
|
+
export declare const IndicadorFormaPagamento: {
|
|
21
|
+
PagamentoAVista: string;
|
|
22
|
+
PagamentoAPrazo: string;
|
|
23
|
+
description(val: string): "enum not found" | "Pagamento à Vista" | "Pagamento à Prazo";
|
|
24
|
+
};
|
|
25
|
+
export declare const OperacaoOperadoraCartao: {
|
|
26
|
+
Credito: string;
|
|
27
|
+
Debito: string;
|
|
28
|
+
description(val: string): "enum not found" | "Crédito" | "Débito";
|
|
29
|
+
};
|
|
30
|
+
export declare const BandeiraCartao: {
|
|
31
|
+
Visa: string;
|
|
32
|
+
Mastercard: string;
|
|
33
|
+
AmericanExpress: string;
|
|
34
|
+
Sorocred: string;
|
|
35
|
+
DinersClub: string;
|
|
36
|
+
Elo: string;
|
|
37
|
+
Hipercard: string;
|
|
38
|
+
Aura: string;
|
|
39
|
+
Cabal: string;
|
|
40
|
+
Outros: string;
|
|
41
|
+
description(val: string): "enum not found" | "Outros" | "Visa" | "Mastercard" | "American Express" | "Sorocred" | "Diners Club" | "Elo" | "Hipercard" | "Aura" | "Cabal";
|
|
42
|
+
};
|
|
43
|
+
export declare const TipoCalculoParcelamento: {
|
|
44
|
+
Simples: string;
|
|
45
|
+
Composto: string;
|
|
46
|
+
description(val: string): "enum not found" | "Simples" | "Composto";
|
|
47
|
+
};
|
|
48
|
+
export declare const TipoPromocao: {
|
|
49
|
+
Percentual: string;
|
|
50
|
+
Valor: string;
|
|
51
|
+
description(val: string): "enum not found" | "Valor" | "Percentual";
|
|
52
|
+
};
|
|
53
|
+
export declare const SituacaoDocumentoFinanceiro: {
|
|
54
|
+
Aberto: string;
|
|
55
|
+
Quitado: string;
|
|
56
|
+
Estornado: string;
|
|
57
|
+
description(val: string): "enum not found" | "Aberto" | "Quitado" | "Estornado";
|
|
58
|
+
};
|
|
59
|
+
export declare const TipoDataDocumentoFinanceiro: {
|
|
60
|
+
Emissao: string;
|
|
61
|
+
Quitacao: string;
|
|
62
|
+
Vencimento: string;
|
|
63
|
+
description(val: string): "enum not found" | "Emissão" | "Quitação" | "Vencimento";
|
|
64
|
+
};
|
|
65
|
+
export declare const TipoLancamentoDocumentoFinanceiro: {
|
|
66
|
+
Abertura: string;
|
|
67
|
+
Pagamento: string;
|
|
68
|
+
Desconto: string;
|
|
69
|
+
Acrescimo: string;
|
|
70
|
+
Juros: string;
|
|
71
|
+
Multa: string;
|
|
72
|
+
description(val: string): "enum not found" | "Desconto" | "Acréscimo" | "Abertura" | "Pagamento" | "Juros" | "Multa";
|
|
73
|
+
};
|
|
74
|
+
export declare const TipoCaixaOperacao: {
|
|
75
|
+
Abertura: string;
|
|
76
|
+
Entrada: string;
|
|
77
|
+
Saida: string;
|
|
78
|
+
Recebimento: string;
|
|
79
|
+
Pagamento: string;
|
|
80
|
+
Compra: string;
|
|
81
|
+
Venda: string;
|
|
82
|
+
Fechamento: string;
|
|
83
|
+
description(val: string): "enum not found" | "Abertura" | "Pagamento" | "Entrada" | "Saída" | "Recebimento" | "Compra" | "Venda" | "Fechamento";
|
|
84
|
+
};
|
|
85
|
+
export declare const SituacaoCaixa: {
|
|
86
|
+
Aberto: string;
|
|
87
|
+
Fechado: string;
|
|
88
|
+
FechadoComDiferenca: string;
|
|
89
|
+
description(val: string): "enum not found" | "Fechado" | "Aberto" | "Fechado com Diferença";
|
|
90
|
+
};
|
|
91
|
+
export declare const TipoValorConfiguracaoBoleto: {
|
|
92
|
+
Percentual: string;
|
|
93
|
+
Valor: string;
|
|
94
|
+
description(val: string): "enum not found" | "Valor" | "Percentual";
|
|
95
|
+
};
|
|
96
|
+
export declare const SituacaoBoleto: {
|
|
97
|
+
Pendente: string;
|
|
98
|
+
Pago: string;
|
|
99
|
+
Cancelado: string;
|
|
100
|
+
Vencido: string;
|
|
101
|
+
description(val: string): "Cancelado" | "enum not found" | "Pendente" | "Pago" | "Vencido";
|
|
102
|
+
};
|
|
103
|
+
export declare const SituacaoConciliacao: {
|
|
104
|
+
NaoConciliado: string;
|
|
105
|
+
Conciliado: string;
|
|
106
|
+
description(val: string): "enum not found" | "Não Conciliado" | "Conciliado";
|
|
107
|
+
};
|
|
108
|
+
export declare const TipoCalculoTaxaCartaoCredito: {
|
|
109
|
+
PercentualCadaParcela: string;
|
|
110
|
+
PercentualSobreParcelasAnteriores: string;
|
|
111
|
+
description(val: string): "enum not found" | "Percentual para cada parcela" | "Percentual sobre todas parcelas anteriores";
|
|
112
|
+
};
|