We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ola uma duvida para todos os tipos cst ou csosn eu preciso declarar no metodo ou posso totalizar de uma maneira geral
foreach (var produto in produtos) { if (produto.imposto.IPI != null && produto.imposto.IPI.TipoIPI.GetType() == typeof(IPITrib)) icmsTot.vIPI = icmsTot.vIPI + ((IPITrib)produto.imposto.IPI.TipoIPI).vIPI ?? 0; if (produto.imposto.ICMS.TipoICMS.GetType() == typeof(ICMS00)) { icmsTot.vBC = icmsTot.vBC + ((ICMS00)produto.imposto.ICMS.TipoICMS).vBC; icmsTot.vICMS = icmsTot.vICMS + ((ICMS00)produto.imposto.ICMS.TipoICMS).vICMS; } if (produto.imposto.ICMS.TipoICMS.GetType() == typeof(ICMS20)) { icmsTot.vBC = icmsTot.vBC + ((ICMS20)produto.imposto.ICMS.TipoICMS).vBC; icmsTot.vICMS = icmsTot.vICMS + ((ICMS20)produto.imposto.ICMS.TipoICMS).vICMS; } //Outros Ifs aqui, caso vá usar as classes ICMS00, ICMS10 para totalizar }
The text was updated successfully, but these errors were encountered:
Talvez você não esteja recebendo respostas pois a comunidade realizou um fork https://github.com/Hercules-NET/ZeusFiscal/ Segue comunicado: Hercules-NET/ZeusFiscal#1
Sorry, something went wrong.
Olá, tudo bem?
Notei que já conseguiu esclarecer sua dúvida. Assim, estarei fechando essa issue.
Qualquer dúvida, só falar. 😉
No branches or pull requests
Ola uma duvida para todos os tipos cst ou csosn eu preciso declarar no metodo ou posso totalizar de uma maneira geral
The text was updated successfully, but these errors were encountered: