/* * This file is part of Treeunfe DFe. * * Treeunfe DFe is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Treeunfe DFe is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Treeunfe DFe. If not, see . */ import { XmlBuilder, BaseNFe, Environment, Utility, logger } from '@treeunfe/shared'; import { GerarConsultaImpl, NFEconsultaProtocoloServiceImpl, SaveFilesImpl } from '@treeunfe/types/interfaces'; import { AxiosInstance } from 'axios'; class NFEconsultaProtocoloService extends BaseNFe implements NFEconsultaProtocoloServiceImpl { constructor(environment: Environment, utility: Utility, xmlBuilder: XmlBuilder, axios: AxiosInstance, saveFiles: SaveFilesImpl, gerarConsulta: GerarConsultaImpl) { super(environment, utility, xmlBuilder, 'NFEConsultaProtocolo', axios, saveFiles, gerarConsulta); } protected gerarXml(chave: string): string { logger.info('Montando estrutuda do XML em JSON', { context: 'NFEconsultaProtocoloService', }); const { ambiente, versaoDF } = this.environment.getConfig() as any; const xmlObject = { $: { versao: versaoDF, xmlns: 'http://www.portalfiscal.inf.br/nfe' }, tpAmb: ambiente, xServ: 'CONSULTAR', chNFe: chave, } return this.xmlBuilder.gerarXml(xmlObject, 'consSitNFe', this.metodo); } } export default NFEconsultaProtocoloService;