예제 #1
0
        protected void btFinalizarConf_Click(object sender, EventArgs e)
        {
            ServiceReference2.WebService1SoapClient nn = new ServiceReference2.WebService1SoapClient();
            int  matricula = Convert.ToInt32(Request.QueryString["mat"]);
            long numped    = string.IsNullOrEmpty(TextBoxPedido.Text) ? 0 : Convert.ToInt64(TextBoxPedido.Text);

            nn.FinalizaConferencia(numped, matricula);
            LimparCampos();
            DesabilitarDigitação();
            TextBoxPedido.Visible = true;
            TextBoxPedido.Enabled = true;
            TextBoxPedido.Text    = "";
            btPesquisar.Visible   = true;
        }