protected override void ViewCobroAction()
        {
            if (Cobro == null)
            {
                PgMng.ShowInfoException(Face.Resources.Messages.NO_SELECTED);
                return;
            }

            CobroFacturaEditForm form = new CobroFacturaEditForm(_entity, Cobro, false, this);

            form.SetReadOnly();
            form.ShowDialog(this);
        }
        protected override void EditCobroAction()
        {
            bool locked = false;

            if (Cobro == null)
            {
                PgMng.ShowInfoException(Face.Resources.Messages.NO_SELECTED);
                return;
            }

            if (Cobro.EEstado == EEstado.Anulado)
            {
                PgMng.ShowInfoException(Face.Resources.Messages.ITEM_ANULADO_NO_EDIT);
                return;
            }

            CobroFacturaEditForm form = new CobroFacturaEditForm(_entity, Cobro, locked, this);

            form.MedioPago_BT.Enabled = false;
            form.ShowDialog(this);

            RefreshAction();
        }