Skip to content

Instantly share code, notes, and snippets.

View AndreSilva1401's full-sized avatar

André Vitor Pedrosa SILVA AndreSilva1401

View GitHub Profile
@AndreSilva1401
AndreSilva1401 / itens_nf.pas
Created June 9, 2025 23:10 — forked from tporto/itens_nf.pas
calculo de imposto nf 4.0
//itens
list_itens := TListNf_itens.Create();
for venda_item in venda_itens do
begin
produto := TProdutoController.getById(venda_item.ID_PRODUTO);
icms := TTributo_icms_ufController.get_by_grupo_uf(produto.ID_GRUPO_TRIBUTARIO, empresa_logado.UF);
ipi := TTributo_ipiController.get_by_grupo(produto.ID_GRUPO_TRIBUTARIO);
pis := TTributo_pisController.get_by_grupo(produto.ID_GRUPO_TRIBUTARIO);
cofins := TTributo_cofinsController.get_by_grupo(produto.ID_GRUPO_TRIBUTARIO);