private void btnEndIntermed_Click(object sender, EventArgs e)
        {
            timerAtvNaoConv.Enabled = false;
            SIS008 FrmRecebeEtiquetaCliente = new SIS008(lblUsuario.Text);
            FrmRecebeEtiquetaCliente.ShowDialog();

            if (FrmRecebeEtiquetaCliente.DialogResult == DialogResult.OK)
            {
                string nropelog = string.Empty;

                if (Controller.WsLogos.ConsultaAtividade(FrmRecebeEtiquetaCliente.NrFornec, "CFET", ref nropelog))
                {
                    Controller.ProcessaEntrada(nropelog, lblUsuario.Text, false, "Entrada por Transf.", false);
                }
            }
            FrmRecebeEtiquetaCliente.Dispose();
            ProcessaAtividadesNaoConvocadas();
            timerAtvNaoConv.Enabled = true;
        }
        private void btnConfSaida_Click(object sender, EventArgs e)
        {
            timerAtvNaoConv.Enabled = false;
            SIS008 FrmRecebeEtiquetaCliente = new SIS008(lblUsuario.Text);
            FrmRecebeEtiquetaCliente.ShowDialog();

            if (FrmRecebeEtiquetaCliente.DialogResult == DialogResult.OK)
            {
                string nropelog = string.Empty;

                if (Controller.WsLogos.ConsultaAtividade(FrmRecebeEtiquetaCliente.NrFornec, "CFSD", ref nropelog))
                {
                    Controller.ProcessaSaida(nropelog, false, lblUsuario.Text, "Conferencia de Saida", false, FrmRecebeEtiquetaCliente.NrClient);
                }
            }
            FrmRecebeEtiquetaCliente.Dispose();
            ProcessaAtividadesNaoConvocadas();
            timerAtvNaoConv.Enabled = true;
        }