sim-node-lib 0.3.21 → 0.3.23
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.
|
@@ -40,7 +40,6 @@ export declare enum PubSubTableEnum {
|
|
|
40
40
|
pessoaFrotaLimite = "pessoa_frota_limite",
|
|
41
41
|
pessoaFrotaProduto = "pessoa_frota_produto",
|
|
42
42
|
placas = "placas",
|
|
43
|
-
preco_bomba = "preco_bomba",
|
|
44
43
|
premiacao = "premiacao",
|
|
45
44
|
premiacaoCombo = "premiacao_combo",
|
|
46
45
|
premiacaoComboItem = "premiacao_combo_item",
|
|
@@ -62,6 +61,7 @@ export declare enum PubSubTableEnum {
|
|
|
62
61
|
rede = "rede",
|
|
63
62
|
regra_preco_cliente_autosystem = "regra_preco_cliente_autosystem",
|
|
64
63
|
remove_preco_produto_classe_cliente = "remove_preco_produto_classe_cliente",
|
|
64
|
+
simplifica = "simplifica",
|
|
65
65
|
status_processo_update_preco_produto = "status_processo_update_preco_produto",
|
|
66
66
|
servico = "servico",
|
|
67
67
|
sorteio = "sorteio",
|
|
@@ -44,7 +44,6 @@ var PubSubTableEnum;
|
|
|
44
44
|
PubSubTableEnum["pessoaFrotaLimite"] = "pessoa_frota_limite";
|
|
45
45
|
PubSubTableEnum["pessoaFrotaProduto"] = "pessoa_frota_produto";
|
|
46
46
|
PubSubTableEnum["placas"] = "placas";
|
|
47
|
-
PubSubTableEnum["preco_bomba"] = "preco_bomba";
|
|
48
47
|
PubSubTableEnum["premiacao"] = "premiacao";
|
|
49
48
|
PubSubTableEnum["premiacaoCombo"] = "premiacao_combo";
|
|
50
49
|
PubSubTableEnum["premiacaoComboItem"] = "premiacao_combo_item";
|
|
@@ -66,6 +65,7 @@ var PubSubTableEnum;
|
|
|
66
65
|
PubSubTableEnum["rede"] = "rede";
|
|
67
66
|
PubSubTableEnum["regra_preco_cliente_autosystem"] = "regra_preco_cliente_autosystem";
|
|
68
67
|
PubSubTableEnum["remove_preco_produto_classe_cliente"] = "remove_preco_produto_classe_cliente";
|
|
68
|
+
PubSubTableEnum["simplifica"] = "simplifica";
|
|
69
69
|
PubSubTableEnum["status_processo_update_preco_produto"] = "status_processo_update_preco_produto";
|
|
70
70
|
PubSubTableEnum["servico"] = "servico";
|
|
71
71
|
PubSubTableEnum["sorteio"] = "sorteio";
|
|
@@ -7,18 +7,19 @@ export declare class VendaReduzida {
|
|
|
7
7
|
horaVenda: string;
|
|
8
8
|
valorTotal: number;
|
|
9
9
|
formaPagamento: VendaFormaPagamentoReduzida[];
|
|
10
|
-
idGrupoDesconto: string;
|
|
11
|
-
idGrupoDescontoErp: string;
|
|
12
10
|
tipo: string;
|
|
13
11
|
cnpj: string;
|
|
14
12
|
uf: string;
|
|
15
13
|
idEmpresa: string;
|
|
16
14
|
itens: VendaItemReduzido[];
|
|
17
|
-
|
|
15
|
+
idClienteErp?: string | undefined;
|
|
16
|
+
identificadorVoucher?: string | undefined;
|
|
17
|
+
idGrupoDesconto?: string | undefined;
|
|
18
|
+
idGrupoDescontoErp?: string | undefined;
|
|
18
19
|
linkDocumentoFiscal?: string | undefined;
|
|
19
20
|
valorDesconto?: number | undefined;
|
|
20
21
|
numDocumento?: string | undefined;
|
|
21
22
|
idCliente?: string | undefined;
|
|
22
23
|
cupom?: string | undefined;
|
|
23
|
-
constructor(idVenda: string, situacao: string, dataVenda: string, horaVenda: string, valorTotal: number, formaPagamento: VendaFormaPagamentoReduzida[],
|
|
24
|
+
constructor(idVenda: string, situacao: string, dataVenda: string, horaVenda: string, valorTotal: number, formaPagamento: VendaFormaPagamentoReduzida[], tipo: string, cnpj: string, uf: string, idEmpresa: string, itens: VendaItemReduzido[], idClienteErp?: string | undefined, identificadorVoucher?: string | undefined, idGrupoDesconto?: string | undefined, idGrupoDescontoErp?: string | undefined, linkDocumentoFiscal?: string | undefined, valorDesconto?: number | undefined, numDocumento?: string | undefined, idCliente?: string | undefined, cupom?: string | undefined);
|
|
24
25
|
}
|
|
@@ -2,21 +2,22 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VendaReduzida = void 0;
|
|
4
4
|
class VendaReduzida {
|
|
5
|
-
constructor(idVenda, situacao, dataVenda, horaVenda, valorTotal, formaPagamento,
|
|
5
|
+
constructor(idVenda, situacao, dataVenda, horaVenda, valorTotal, formaPagamento, tipo, cnpj, uf, idEmpresa, itens, idClienteErp, identificadorVoucher, idGrupoDesconto, idGrupoDescontoErp, linkDocumentoFiscal, valorDesconto, numDocumento, idCliente, cupom) {
|
|
6
6
|
this.idVenda = idVenda;
|
|
7
7
|
this.situacao = situacao;
|
|
8
8
|
this.dataVenda = dataVenda;
|
|
9
9
|
this.horaVenda = horaVenda;
|
|
10
10
|
this.valorTotal = valorTotal;
|
|
11
11
|
this.formaPagamento = formaPagamento;
|
|
12
|
-
this.idGrupoDesconto = idGrupoDesconto;
|
|
13
|
-
this.idGrupoDescontoErp = idGrupoDescontoErp;
|
|
14
12
|
this.tipo = tipo;
|
|
15
13
|
this.cnpj = cnpj;
|
|
16
14
|
this.uf = uf;
|
|
17
15
|
this.idEmpresa = idEmpresa;
|
|
18
16
|
this.itens = itens;
|
|
17
|
+
this.idClienteErp = idClienteErp;
|
|
19
18
|
this.identificadorVoucher = identificadorVoucher;
|
|
19
|
+
this.idGrupoDesconto = idGrupoDesconto;
|
|
20
|
+
this.idGrupoDescontoErp = idGrupoDescontoErp;
|
|
20
21
|
this.linkDocumentoFiscal = linkDocumentoFiscal;
|
|
21
22
|
this.valorDesconto = valorDesconto;
|
|
22
23
|
this.numDocumento = numDocumento;
|