public List <tblItemAtividade> lstAgendaPreventivaValoresAtividade(int IdPreventivaAgenda) { if (Session["cmpcousuario"] != null) { DataTable dtAgenda = tblPreventivaAgenda.RetornaAgendaPreventivaValores(Global.GetConnection(), IdPreventivaAgenda); List <tblItemAtividade> lstItens = new List <tblItemAtividade>(); for (int i = 0; i < dtAgenda.Rows.Count; i++) { tblItemAtividade it = new tblItemAtividade(); it.cmpDcItemAtividade = dtAgenda.Rows[i]["cmpDcItemAtividadePreventiva"].ToString(); lstItens.Add(it); } return(lstItens); } else { return(null); } }
/// <summary> /// Evento do clique do botão. /// Armazena o registro. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void btnSave_Click(object sender, EventArgs e) { tblItemAtividade table = null; try { table = new tblItemAtividade(); table.cmpCoItemAtividade = ViewState["cmpCoItemAtividade"].ToString(); table.cmpCoGrupoAtividade = ((ListItem)cmbGrupoAtividade.SelectedItem).Value; table.cmpDcItemAtividade = txtItemAtividade.Text.ToUpper(); if (rblValor.Checked == true) { table.cmpCoUnidade = double.Parse(cmbUnidade.SelectedValue.ToString()); table.cmpValores = true; table.cmpValorMin = int.Parse(txtValorMinimo.Text); table.cmpValorMedio = int.Parse(txtValorMedio.Text); table.cmpValorMaximo = int.Parse(txtValorMaximo.Text); } else { table.cmpValores = false; table.cmpValorMin = 0; table.cmpValorMedio = 0; table.cmpValorMaximo = 0; } if (table.Save(Global.GetConnection())) { this.loadItem(((ListItem)cmbGrupoAtividade.SelectedItem).Value); btnNew_Click(sender, e); } } catch (Exception ex) { } }