protected override void RefreshMainData()
        {
            Datos.DataSource = _entity;
            PgMng.Grow();

            _facturas_todas           = FacREAList.GetListByCobroAndPendientes(_entity.Oid);
            _facturas                 = FacREAList.GetSortedList(_facturas_todas, "NExpediente", ListSortDirection.Ascending);
            Datos_Facturas.DataSource = _facturas;

            PgMng.Grow();

            UpdateAsignado();

            base.RefreshMainData();
        }
示例#2
0
 public override void RefreshSecondaryData()
 {
     _facturas_cliente = FacREAList.GetListByCobroAndPendientes(0);
     PgMng.Grow(string.Empty, "Facturas de REA");
 }