protected override void RefreshMainData()
        {
            Datos.DataSource   = _entity;
            _albaranes_factura = _entity.AlbaranFacturas.Clone();
            _conceptos_factura = _entity.Conceptos.Clone();

            Lines_BS.DataSource = _entity.Conceptos;
            PgMng.Grow();

            _out_deliveries = OutputDeliveryList.GetListByFactura(true, _entity.Oid).GetListInfo();
            PgMng.Grow();

            Fecha_DTP.Value = _entity.Fecha;

            base.RefreshMainData();
        }