private void CargaMallaLotes(Producto producto) { MallaLote.Rows.Clear(); if (producto.TieneLote) { var lotesProd = loteController.SelecByProduc(producto); MallaLote.Rows.Clear(); foreach (var l in lotesProd) { MallaLote.Rows.Add(); MallaLote.Rows[MallaLote.RowCount - 1].Cells[0].Value = l.LoteId; MallaLote.Rows[MallaLote.RowCount - 1].Cells[1].Value = l.NoLote; MallaLote.Rows[MallaLote.RowCount - 1].Cells[2].Value = l.Caducidad; MallaLote.Rows[MallaLote.RowCount - 1].Cells[3].Value = Math.Round(l.StockRestante, 0); } } }