@seniorsistemas/yms-integration 1.15.1 → 1.16.0
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/bundles/seniorsistemas-yms-integration.umd.js +18 -1
- package/bundles/seniorsistemas-yms-integration.umd.js.map +1 -1
- package/bundles/seniorsistemas-yms-integration.umd.min.js +1 -1
- package/bundles/seniorsistemas-yms-integration.umd.min.js.map +1 -1
- package/esm2015/src/erp-senior/core/verifica-nota-fiscal/verificaNotaFiscal.js +9 -1
- package/esm2015/src/erp-senior/recebimento/form/recebimento-form.component.js +11 -2
- package/esm5/src/erp-senior/core/verifica-nota-fiscal/verificaNotaFiscal.js +9 -1
- package/esm5/src/erp-senior/recebimento/form/recebimento-form.component.js +11 -2
- package/fesm2015/seniorsistemas-yms-integration.js +18 -1
- package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
- package/fesm5/seniorsistemas-yms-integration.js +18 -1
- package/fesm5/seniorsistemas-yms-integration.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-yms-integration.metadata.json +1 -1
- package/src/erp-senior/core/verifica-nota-fiscal/verificaNotaFiscal.d.ts +2 -0
- package/src/erp-senior/recebimento/form/recebimento-form.component.d.ts +2 -0
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { MessageService } from 'primeng/components/common/messageservice';
|
|
2
2
|
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { PesquisarDocumentoResponse } from '../nota-validator.service';
|
|
3
4
|
export declare class VerificaNotafiscal {
|
|
4
5
|
private messageService;
|
|
5
6
|
private translate;
|
|
6
7
|
constructor(messageService: MessageService, translate: TranslateService);
|
|
7
8
|
verificaSeNotaFiscalEstaDuplicada(chaveNotaFiscal: any, contratos: any, fornecedorNotasTokens: any): boolean;
|
|
9
|
+
findDuplicateFornecedores(response: PesquisarDocumentoResponse): string;
|
|
8
10
|
}
|
|
@@ -153,6 +153,7 @@ export declare class RecebimentoFormComponent implements OnInit, OnDestroy, Afte
|
|
|
153
153
|
chaveNotaFiscal: string;
|
|
154
154
|
erroChaveNota: boolean;
|
|
155
155
|
erroFornecedores: boolean;
|
|
156
|
+
erroFornecedoresNotaDuplicada: string;
|
|
156
157
|
notasTokens: IToken[];
|
|
157
158
|
fornecedorNotasTokens: IToken[];
|
|
158
159
|
fornecedorNotas: any[];
|
|
@@ -181,6 +182,7 @@ export declare class RecebimentoFormComponent implements OnInit, OnDestroy, Afte
|
|
|
181
182
|
setHotkeys(): void;
|
|
182
183
|
onBlurChaveNotaFiscal(): void;
|
|
183
184
|
private addNovaNota;
|
|
185
|
+
private validaRetornoPesquisaDocumentos;
|
|
184
186
|
private addFornecedorNotasToken;
|
|
185
187
|
isNew(): boolean;
|
|
186
188
|
updateSuggestions(value: any): void;
|