mdz-enum 1.6.4 → 1.6.5
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/dist/fiscal/index.d.ts +1 -0
- package/dist/fiscal/index.js +3 -0
- package/package.json +2 -1
package/dist/fiscal/index.d.ts
CHANGED
|
@@ -158,6 +158,7 @@ export declare const TipoNaturezaOperacaoNotaFiscal: {
|
|
|
158
158
|
Compra: string;
|
|
159
159
|
RetornoConsignacao: string;
|
|
160
160
|
Outros: string;
|
|
161
|
+
CompraManual: string;
|
|
161
162
|
description(val: string): "enum not found" | "VENDA DE MERCADORIAS" | "DEVOLUCAO DE MERCADORIAS" | "DEVOLUCAO DE VENDA" | "TRANSFERENCIA DE ENTRADA" | "TRANSFERENCIA DE MERCADORIAS" | "REMESSA DE ENTRADA" | "REMESSA DE MERCADORIAS" | "DEMONSTRACAO" | "PERDAS DE MERCADORIA" | "REMESSA PARA CONSIGNACAO" | "COMPRA DE MERCADORIAS" | "RETORNO DE CONSIGNACAO" | "OUTROS";
|
|
162
163
|
};
|
|
163
164
|
export declare const OperacaoNotaFiscal: {
|
package/dist/fiscal/index.js
CHANGED
|
@@ -447,6 +447,7 @@ exports.TipoNaturezaOperacaoNotaFiscal = {
|
|
|
447
447
|
Compra: '10',
|
|
448
448
|
RetornoConsignacao: '11',
|
|
449
449
|
Outros: '12',
|
|
450
|
+
CompraManual: '13',
|
|
450
451
|
description(val) {
|
|
451
452
|
switch (val) {
|
|
452
453
|
case this.Venda:
|
|
@@ -475,6 +476,8 @@ exports.TipoNaturezaOperacaoNotaFiscal = {
|
|
|
475
476
|
return 'RETORNO DE CONSIGNACAO';
|
|
476
477
|
case this.Outros:
|
|
477
478
|
return 'OUTROS';
|
|
479
|
+
case this.CompraManual:
|
|
480
|
+
return 'COMPRA DE MERCADORIAS';
|
|
478
481
|
default:
|
|
479
482
|
return 'enum not found';
|
|
480
483
|
}
|