protected void TxtReferencia_TextChanged(object sender, EventArgs e) { VendasNET TelaMaster = (VendasNET)this.Master; ScriptManager Cmp = (ScriptManager)TelaMaster.FindControl("ScriptManager1"); if (TxtReferencia.Text.Trim() != "") { CadPrd.Controle = Controle; CadPrd.LerDados(TxtReferencia.Text.Trim()); if (CadPrd.IdProduto > 0) { if (CadPrd.Ativo == 0) { ScriptManager.RegisterStartupScript(Page, Page.GetType(), Guid.NewGuid().ToString(), "alert('Atenção: Produto inativo');", true); Cmp.SetFocus(TxtReferencia); return; } TxtCodigo.Text = string.Format("{0:d6}", CadPrd.IdProduto); TxtDescricao.Text = CadPrd.Descricao; TxtVlrUnt.Text = string.Format("{0:n2}", CadPrd.PrcAtacado); TxtQtde.Text = "1"; TxtVlrTotal.Text = string.Format("{0:n2}", CadPrd.PrcAtacado * 1); Cmp.SetFocus(TxtQtde); } else { ScriptManager.RegisterStartupScript(Page, Page.GetType(), Guid.NewGuid().ToString(), "alert('Atenção: Produto não localizado');", true); Cmp.SetFocus(TxtReferencia); } } else { Cmp.SetFocus(TxtReferencia); } }
protected void Page_Load(object sender, EventArgs e) { BtnEnviar.Attributes.Add("onclick", "return Mensagem(\"Confirma o Envio do Pedido ?\");"); BtnPesqPrd.Attributes.Add("onclick", "ShowDialog('PesqProdutos.aspx','500px','700px');"); IdVendedor = ((Controle_Dados.Usuarios)(((System.Web.UI.UserControl)(this.Master)).Session["LoginUsuario"])).IdVendedor; IdUsuario = ((Controle_Dados.Usuarios)(((System.Web.UI.UserControl)(this.Master)).Session["LoginUsuario"])).IdUsuario; if (!this.IsPostBack) { TxtTotal.Style.Add("text-align", "right"); TxtQtde.Style.Add("text-align", "right"); TxtVlrUnt.Style.Add("text-align", "right"); TxtVlrTotal.Style.Add("text-align", "right"); TxtReferencia.Attributes.Add("onkeypress", "if (event.keyCode < 48 || event.keyCode > 58) {event.keyCode = 0;}"); TxtQtde.Attributes.Add("onkeypress", "if (event.keyCode < 48 || event.keyCode > 58) {event.keyCode = 0;}"); LstFormaPgto.DataSource = Controle.ConsultaTabela("SELECT Id_FormaPgto,FormaPgto FROM FormaPagamento ORDER BY FormaPgto"); LstFormaPgto.DataTextField = "FormaPgto"; LstFormaPgto.DataValueField = "Id_FormaPgto"; LstFormaPgto.DataBind(); LstVendedor.DataSource = Controle.ConsultaTabela("SELECT Id_Vendedor,SubString(Vendedor,1,40) as Vendedor FROM Vendedores WHERE ATIVO=1 ORDER BY Vendedor"); LstVendedor.DataTextField = "Vendedor"; LstVendedor.DataValueField = "Id_Vendedor"; LstVendedor.DataBind(); LstVendedor.Items.Insert(0, "Nenhum"); LstVendedor.SelectedValue = IdVendedor.ToString(); LstVendedor.Enabled = ((Controle_Dados.Usuarios)(((System.Web.UI.UserControl)(this.Master)).Session["LoginUsuario"])).SeusMov == 0; if (Request.QueryString["VD"] != null) { IdVenda = int.Parse(Request.QueryString["VD"].ToString()); BtnEnviar.Visible = false; BtnCancelar.Visible = false; TxtReferencia.Enabled = false; TxtQtde.Enabled = false; TxtObs.Enabled = false; TxtPrazoPgto.Enabled = false; LstFormaPgto.Enabled = false; LstVendedor.Enabled = false; GridDados.Columns[6].Visible = false; } TabItens = new DataTable(); TabItens = CriarTabela(); PopuparGrid(); } VendasNET TelaMaster = (VendasNET)this.Master; ScriptManager Cmp = (ScriptManager)TelaMaster.FindControl("ScriptManager1"); Cmp.SetFocus(TxtReferencia); }
protected void TxtQtde_TextChanged(object sender, EventArgs e) { if (int.Parse(TxtCodigo.Text) > 0) { TxtVlrTotal.Text = string.Format("{0:n2}", decimal.Parse(TxtVlrUnt.Text) * decimal.Parse(TxtQtde.Text)); TabItens.Rows.Add(int.Parse(TxtCodigo.Text), TxtReferencia.Text, TxtDescricao.Text, decimal.Parse(TxtQtde.Text), decimal.Parse(TxtVlrUnt.Text), decimal.Parse(TxtQtde.Text) * decimal.Parse(TxtVlrUnt.Text)); PopuparGrid(); LimpaCampos(); } VendasNET TelaMaster = (VendasNET)this.Master; ScriptManager Cmp = (ScriptManager)TelaMaster.FindControl("ScriptManager1"); Cmp.SetFocus(TxtReferencia); }