Error accessing the this property.DocumentPending entity type in the PublisherPendents

2

Thank you for possible help to overcome the error:

  

this.DocumentoPendente.TipoEntidade =   'this.DocumentoPendente.TipoEntidade' generated an exception of type   'Microsoft.CSharp.RuntimeBinder.RuntimeBinderException'

Code:

public class PayablesReceivables : EditorPendentes
{
    public override void AntesDeGravar(ref bool Cancel, ExtensibilityEventArgs e)
    {
        try
        {
            PSO.Dialogos.MostraAviso(this.DocumentoPendente.TipoEntidade.ToString());
            if ((PSO.Utils.FStr(this.DocumentoPendente.TipoEntidade) == "B") && (PSO.Utils.FStr(this.DocumentoPendente.Tipodoc) == "TLDEP"))
            {
                this.DocumentoPendente.ContaBancaria = this.DocumentoPendente.Entidade;
            }
        }
        catch (System.Exception ex)
        {
            PSO.Dialogos.MostraErro(ex.Message, StdPlatBS100.StdBSTipos.IconId.PRI_Exclama, "");
        }

        base.AntesDeGravar(ref Cancel, e);
    }
}
    
asked by anonymous 11.09.2018 / 19:42

0 answers