aguiarle's post in Ao ler um xml nos totais da nota não estavam carregando os totais vIBSMun e vIBSUF was marked as the answer
27 Junho
Alterei o arquivo ACBrNFe.XmlReader.pas para corrigir
procedure TNFeXmlReader.Ler_IBSCBSTot_gIBS(gIBS: TgIBSTot; const ANode: TACBrXmlNode);
begin
if not Assigned(ANode) then Exit;
//alex
Ler_IBSCBSTot_gIBS_gIBSUFTot(gIBS.gIBSUFTot, ANode.Childrens.Find('gIBSUF'));
Ler_IBSCBSTot_gIBS_gIBSMunTot(gIBS.gIBSMunTot, ANode.Childrens.Find('gIBSMun'));
//fim alex
gIBS.vIBS := ObterConteudo(ANode.Childrens.Find('vIBS'), tcDe2);
gIBS.vCredPres := ObterConteudo(ANode.Childrens.Find('vCredPres'), tcDe2);
gIBS.vCredPresCondSus := ObterConteudo(ANode.Childrens.Find('vCredPresCondSus'), tcDe2);
end;
ACBrNFe.XmlReader.pas