/* * 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, logger, BaseNFe, Environment, Utility, getCodIBGE } from '@treeunfe/shared'; import { GerarConsultaImpl, NFEStatusServicoServiceImpl, SaveFilesImpl } from '@treeunfe/types/interfaces'; import { AxiosInstance } from 'axios'; const METHOD_NAME = 'NFEStatusServico'; class NFEStatusServicoService extends BaseNFe implements NFEStatusServicoServiceImpl { constructor(environment: Environment, utility: Utility, xmlBuilder: XmlBuilder, axios: AxiosInstance, saveFiles: SaveFilesImpl, gerarConsulta: GerarConsultaImpl) { super(environment, utility, xmlBuilder, METHOD_NAME, axios, saveFiles, gerarConsulta); } protected gerarXml(): string { logger.info('Montando estrutuda do XML em JSON', { context: 'NFEStatusServicoService', }); const config = this.environment.getConfig(); const ambiente = config.ambiente; const versaoDF = (config as any).versaoDF; const UF = this.environment.getSeFazUF(); const xmlObject = { $: { versao: versaoDF, xmlns: 'http://www.portalfiscal.inf.br/nfe' }, tpAmb: ambiente, cUF: getCodIBGE(UF), xServ: 'STATUS', } return this.xmlBuilder.gerarXml(xmlObject, 'consStatServ', this.metodo) } } export default NFEStatusServicoService;