protected override void EditLineaAction()
        {
            if (Lineas_DGW.CurrentRow.DataBoundItem == null)
            {
                return;
            }

            LineaPedidoProveedor item = (LineaPedidoProveedor)Lineas_DGW.CurrentRow.DataBoundItem;

            if (item == null)
            {
                return;
            }

            ProductInfo producto = SelectProducto();

            if (producto == null)
            {
                return;
            }

            item.CopyFrom(_entity, _acreedor, producto);
            _entity.CalculaTotal();

            RefreshLineas();
        }