protected void btprocessa_Click(object sender, EventArgs e)
    {
        Boolean lOk = true;

        //
        //Validação
        if (lOk)
        {
            string script = "select * from vendas with(nolock) where produto = " + cbproduto.Value.ToString() +
                            " and grupo = " + cbgrupo.Value.ToString();
            if (SreDblib.TemNaTabela(script))
            {
                lOk             = false;
                edunidades.Text = "Exclusão Abortada! Existem vendas para o produto informado!";
            }
        }
        //

        if (lOk)
        {
            //Excluir
            uUnidade.Exclui(cbproduto.Value.ToString().Trim(),
                            cbgrupo.Value.ToString().Trim());

            //Alterar travas
            uProduto.AlteraGrupoCadastro(cbproduto.Value.ToString(),
                                         cbgrupo.Value.ToString(),
                                         false);

            edunidades.Text = "Concluído!";
        }
    }
Beispiel #2
0
    public static String IncluiTaxas(string xID,
                                     string xmes,
                                     string xano,
                                     string xstring_altera,
                                     string xstring_altera2)
    {
        string script = "";

        script = "select ID from TAXAS_MENSAIS where mes = " + xmes + " and ano = " + xano + " ";
        if (!SreDblib.TemNaTabela(script))
        {
            script = "INSERT INTO TAXAS_MENSAIS VALUES (  " + xmes + ", " + xano + ", " +
                     xstring_altera + " ) ";
        }
        else
        {
            script = "UPDATE taxas_mensais SET " +
                     xstring_altera2 +
                     " where mes = " + xmes + " and ano = " + xano;
        }

        SreDblib.ExecScript(script);

        return(" ");
    }
Beispiel #3
0
    public static String Grava(string xlogin,
                               string xsenha,
                               string xnome,
                               string xsetor,
                               string xfuncao,
                               string xfone,
                               Int32 xperfil,
                               string xemail,
                               string xalcada,
                               Boolean xativo
                               )
    {
        if (xlogin != String.Empty)
        {
            if (!SreDblib.TemNaTabela("select * from usuario with(nolock) where login = "******"INATIVO";
                    xativo = false;
                }

                string script = "INSERT INTO USUARIO VALUES ( " +
                                Srelib.QStr(xlogin) +
                                ", " + Srelib.QStr(xsenha) +
                                ", " + Srelib.QStr(xnome) +
                                ", " + Srelib.QStr(xsetor) +
                                ", " + Srelib.QStr(xfuncao) +
                                ", " + Srelib.QStr(xfone) +
                                ", " + Convert.ToString(xperfil) +
                                ", " + Srelib.QStr(xemail) +
                                ", " + Srelib.QStr(xalcada) +
                                ", " + Convert.ToString(Convert.ToInt16(xativo)) +
                                ", " + Srelib.QStr("") +
                                " ) ";

                //" where nome=" + Rgblib.QStr(pParametro);

                SreDblib.ExecScript(script);
            }
        }
        return(" ");
    }
    protected void btprocessa_Click(object sender, EventArgs e)
    {
        Boolean lOk = true;
        string  LancamentoCorrente = "";

        //Criticas
        if (lOk)
        {
            LancamentoCorrente = edlancamento.Text;
            //lancamento
            if ((edlancamento.Text != string.Empty) && (edlancamento.Text != "0"))
            {
                if (SreDblib.TemNaTabela("select * from contas_pagar WITH(NOLOCK) where lancamento = " + Srelib.QStr(edlancamento.Text.Trim())))
                {
                    lOk = false;
                    //ScriptManager.RegisterStartupScript(UpdatePanel, GetType(), "msgbox", "alert('Atenção! Número de Lançamento ja utilizado, favor gerar outro no botão Novo Código!');", true);
                    ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                        "toastr.info('Número de Lançamento já utilizado, favor gerar outro no botão Novo Código!', 'Atenção!')", true);
                }
            }
            else
            {
                lOk = false;
                //ScriptManager.RegisterStartupScript(UpdatePanel, GetType(), "msgbox", "alert('Atenção! Número de Lançamento em Branco!');", true);
                ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                    "toastr.info('Número de Lançamento em Branco!', 'Atenção!')", true);
            }
            //Fim Check lancamento
        }
        //
        if (lOk)
        {
            //Check Produto
            if (cbproduto.Text != string.Empty)
            {
                //
            }
            else
            {
                lOk = false;
                //ScriptManager.RegisterStartupScript(UpdatePanel, GetType(), "msgbox", "alert('Atenção! Selecione um Produto!');", true);
                ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                    "toastr.info('Selecione um Produto!', 'Atenção!')", true);
            }
            //Fim Check Produto
        }
        //
        if (lOk)
        {
            //Check Despesa
            if (cbdespesa.Text != string.Empty)
            {
                //
            }
            else
            {
                lOk = false;
                //ScriptManager.RegisterStartupScript(UpdatePanel, GetType(), "msgbox", "alert('Atenção! Selecione uma Despesa!');", true);
                ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                    "toastr.info('Selecione uma Despesa!', 'Atenção!')", true);
            }
            //Fim Check Despesa
        }
        //
        if (lOk)
        {
            //Check Fornecedor
            if ((SreDblib.GetParametro("ORDEM FORNECEDOR") == "CODIGO") && (SreDblib.GetParametro("ORDEM FORNECEDOR") == "CÓDIGO"))
            {
                if (cbfornecedor.Text == string.Empty)
                {
                    lOk = false;
                    //ScriptManager.RegisterStartupScript(UpdatePanel, GetType(), "msgbox", "alert('Atenção! Selecione um Fornecedor!');", true);
                    ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                        "toastr.info('Selecione um Fornecedor!', 'Atenção!')", true);
                }
            }
            else
            {
                if (SreDblib.GetParametro("FILTRO FORNECEDOR") == "SIM")
                {
                    if (cbfornecedor_filtro.Text == string.Empty)
                    {
                        lOk = false;
                        //ScriptManager.RegisterStartupScript(UpdatePanel, GetType(), "msgbox", "alert('Atenção! Selecione um Fornecedor!');", true);
                        ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                            "toastr.info('Selecione um Fornecedor!', 'Atenção!')", true);
                    }
                }
                else
                {
                    if (cbfornecedor.Text == string.Empty)
                    {
                        lOk = false;
                        //ScriptManager.RegisterStartupScript(UpdatePanel, GetType(), "msgbox", "alert('Atenção! Selecione um Fornecedor!');", true);
                        ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                            "toastr.info('Selecione um Fornecedor!', 'Atenção!')", true);
                    }
                }
            }
            //Fim Check Fornecedor
        }
        //
        if (lOk)
        {
            //Check de Conta Corrente
            if (cbcontascorrentes.Text != string.Empty)
            {
                //
            }
            else
            {
                lOk = false;
                //ScriptManager.RegisterStartupScript(UpdatePanel, GetType(), "msgbox", "alert('Atenção! Selecione uma Conta!');", true);
                ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                    "toastr.info('Selecione uma Conta!', 'Atenção!')", true);
            }
            //Fim Check de Conta Corrente
        }
        //
        if (lOk)
        {
            //Check Data Prevista
            if ((dtprevisao1.Date < Convert.ToDateTime("01/01/1900")))
            {
                lOk = false;
                ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                    "toastr.error('Data Prevista Inválida!', 'Atenção!')", true);
            }
            //Fim Check Data Prevista
        }
        //
        if (lOk)
        {
            //Check Data Documento
            if ((dtnotafiscal1.Date < Convert.ToDateTime("01/01/1900")))
            {
                lOk = false;
                ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                    "toastr.error('Data Documento Inválida!', 'Atenção!')", true);
            }
            //Fim Check Data Documento
        }
        //
        if (lOk)
        {
            //Check Data Realizado
            if ((dtrealizado1.Date < Convert.ToDateTime("01/01/1900")))
            {
                lOk = false;
                ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                    "toastr.error('Data Realizado Inválida!', 'Atenção!')", true);
            }
            //Fim Check Data Realizado
        }
        //
        if (lOk)
        {
            //Check Data Compensação
            if ((dtcompensacao1.Date < Convert.ToDateTime("01/01/1900")))
            {
                lOk = false;
                ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                    "toastr.error('Data Compensação Inválida!', 'Atenção!')", true);
            }
            //Fim Check Data Compensação
        }
        //
        //
        if (lOk)
        {
            //Check Valor Previsto
            if ((edvlrtotalprevisto.Text != string.Empty) || (edvlrtotalprevisto.Text != "0.00"))
            {
                //
            }
            else
            {
                lOk = false;
                //ScriptManager.RegisterStartupScript(UpdatePanel, GetType(), "msgbox", "alert('Atenção! Valor Previsto Zerado ou Vazio!');", true);
                ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                    "toastr.error('Valor Previsto Zerado ou Vazio!', 'Atenção!')", true);
            }
            //Fim Check Valor Previsto
        }
        //
        if (lOk)
        {
            //Processa Pagamento da Parcela
            //
            string fornecedor = "";
            //
            if ((SreDblib.GetParametro("ORDEM FORNECEDOR") == "CODIGO") && (SreDblib.GetParametro("ORDEM FORNECEDOR") == "CÓDIGO"))
            {
                if (cbfornecedor.Value != null)
                {
                    fornecedor = cbfornecedor.Value.ToString().Trim();
                }
            }
            else
            {
                if (SreDblib.GetParametro("FILTRO FORNECEDOR") == "SIM")
                {
                    if (cbfornecedor_filtro.Value != null)
                    {
                        //
                        fornecedor = cbfornecedor_filtro.Text.Substring(cbfornecedor_filtro.Text.IndexOf("(", 1) + 1,
                                                                        cbfornecedor_filtro.Text.IndexOf(")", 1) - 1 - cbfornecedor_filtro.Text.IndexOf("(", 1));
                    }
                }
                else
                {
                    if (cbfornecedor.Value != null)
                    {
                        fornecedor = cbfornecedor.Value.ToString().Trim();
                    }
                }
            }
            //

            //
            try
            {
                //
                if (dtprevisao1.Date <= Convert.ToDateTime("31/12/1899"))
                {
                    dtprevisao1.Date = new DateTime(1900, 1, 1);
                }
                if (dtrealizado1.Date <= Convert.ToDateTime("31/12/1899"))
                {
                    dtrealizado1.Date = new DateTime(1900, 1, 1);
                }
                if (dtnotafiscal1.Date <= Convert.ToDateTime("31/12/1899"))
                {
                    dtnotafiscal1.Date = new DateTime(1900, 1, 1);
                }
                if (dtcompensacao1.Date <= Convert.ToDateTime("31/12/1899"))
                {
                    dtcompensacao1.Date = new DateTime(1900, 1, 1);
                }
                //
                LancamentoCorrente = edlancamento.Text;
                //
                uContasPagar.Grava(ref LancamentoCorrente,
                                   cbproduto.Value.ToString(),
                                   cbdespesa.Value.ToString(),
                                   fornecedor,
                                   eddescricao.Text,
                                   dtprevisao1.Date.ToString().Substring(0, 10),
                                   Convert.ToDecimal(edvlrtotalprevisto.Text),
                                   dtrealizado1.Date.ToString().Substring(0, 10),
                                   Convert.ToDecimal(edvlrtotalrealizado.Text),
                                   cbcontascorrentes.Value.ToString(),
                                   eddocumento.Text,
                                   dtnotafiscal1.Date.ToString().Substring(0, 10),
                                   edcheque.Text,
                                   edcheque.Text,
                                   dtcompensacao1.Date.ToString().Substring(0, 10),
                                   1,
                                   edcontabil.Text,
                                   "0",
                                   "0",
                                   rbchequenominal.SelectedIndex
                                   );
                //
                edlancamento.Text = LancamentoCorrente;
            }
            catch (Exception)
            {
                lOk = false;
                ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                    "toastr.error('Erro na Inclusão, acione o Suporte!', 'Atenção!')", true);
            }
            //
            if (lOk)
            {
                //
                // CRIA LOG ===============================================================================================================================================
                fwObs_Log = "LANÇAMENTO CONTAS A PAGAR: " + LancamentoCorrente;
                SqlParameter[] param_log = { new SqlParameter("@login",    (String)Session["CodUsuario"]),
                                             new SqlParameter("@tabela",   fWtabela),
                                             new SqlParameter("@operacao", "CONTAS A PAGAR"),
                                             new SqlParameter("@obs",      "LANÇAMENTO CONTAS A PAGAR"),
                                             new SqlParameter("@acao",     fwObs_Log) };
                uLog.MakeLog(param_log);
                // FIM CRIA LOG ===============================================================================================================================================
                //
                if (edparcelas_total.Text != "1")
                {
                    btprocessa.Enabled       = true;
                    btnovocodigo.Enabled     = false;
                    btnovolancamento.Enabled = false;
                    edparcelas.Text          = Convert.ToString(Convert.ToInt64(edparcelas.Text) + 1);
                    edlancamento.Text        = uContasPagar.PegaNovoCodigoCPagar();
                    if (Convert.ToInt64(edparcelas.Text) <= Convert.ToInt64(edparcelas_total.Text))
                    {
                        //
                        dtprevisao1.Date    = dtprevisao1.Date.AddMonths(1);
                        dtrealizado1.Date   = new DateTime(1900, 1, 1);
                        dtnotafiscal1.Date  = new DateTime(1900, 1, 1);
                        dtcompensacao1.Date = new DateTime(1900, 1, 1);
                        //
                        //ScriptManager.RegisterStartupScript(UpdatePanel, GetType(), "msgbox", "alert('Lançamento Parcelado Registrado!');", true);
                        ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                            "toastr.success('Lançamento Parcelado Registrado!', 'Atenção!')", true);
                    }
                    else
                    {
                        btprocessa.Enabled       = false;
                        btnovocodigo.Enabled     = false;
                        btnovolancamento.Enabled = false;
                        edparcelas.Text          = Convert.ToString(Convert.ToInt64(edparcelas.Text) - 1);
                        //
                        //ScriptManager.RegisterStartupScript(UpdatePanel, GetType(), "msgbox", "alert('Lançamento Parcelado Concluído!');", true);
                        ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                            "toastr.success('Lançamento Parcelado Concluído!', 'Atenção!')", true);
                        //
                    }
                }
                else
                {
                    btprocessa.Enabled       = true;
                    btnovocodigo.Enabled     = true;
                    btnovolancamento.Enabled = true;
                    //
                    dtprevisao1.Date    = new DateTime(1900, 1, 1);
                    dtrealizado1.Date   = new DateTime(1900, 1, 1);
                    dtnotafiscal1.Date  = new DateTime(1900, 1, 1);
                    dtcompensacao1.Date = new DateTime(1900, 1, 1);
                    //
                    //ScriptManager.RegisterStartupScript(UpdatePanel, GetType(), "msgbox", "alert('Lançamento Registrado!');", true);
                    ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                        "toastr.success('Lançamento Registrado!', 'Atenção!')", true);
                }
                //
            }
        }
    }
Beispiel #5
0
    public String LogarUsuario(String wlogin, String Senha)
    {
        // Conexao Conn = new Conexao(pXml);
        lbmsg.Text = "";
        String Msg = "";

        //Login Admin
        if ((wlogin.Trim() == "MASTER") &&
            (Senha.Trim() == "R2V3#V23"))
        {
            //lMaster = SuperUsuário
            Session.Add("lMaster", true);
            Session.Add("IdSessao", Page.Session.SessionID.ToUpper());
            Session.Add("consulta", "cedente");
            Msg = "";
        }
        else
        {
            //Login Usuário Existe no Banco
            if (SreDblib.TemNaTabela("SELECT LOGIN FROM USUARIO WITH(NOLOCK) WHERE LOGIN ="******"SELECT SENHA FROM USUARIO WITH(NOLOCK) WHERE LOGIN ="******"SELECT SENHA FROM USUARIO WITH(NOLOCK) WHERE LOGIN ="******"000.000.000.000", wlogin.Trim());
                    Session.Add("IdSessao", Page.Session.SessionID.ToUpper());
                    Session.Add("lMaster", lMaster);
                    Session.Add("consulta", "cedente");
                }
                else
                {
                    lbmsg.Text = "ATENÇÃO: Senha não Confere!";
                    Msg        = "* ATENÇÃO: Senha Não Confere!";
                    ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                        "toastr.error('Senha Não Confere!', 'Atenção!')", true);

                    // CRIA LOG  ===============================================================================================================================================
                    SqlParameter[] param_log1 = { new SqlParameter("@login",    wlogin.Trim()),
                                                  new SqlParameter("@tabela",   "USUARIO"),
                                                  new SqlParameter("@operacao", "LOGIN"),
                                                  new SqlParameter("@obs",      "SENHA NÃO CONFERE"),
                                                  new SqlParameter("@acao",     "SENHA NÃO CONFERE USUÁRIO: " + wlogin.Trim()) };
                    uLog.MakeLog(param_log1);
                    // FIM CRIA LOG ============================================================================================================================================
                }
            }
            else
            {
                lbmsg.Text = "ATENÇÃO: Usuário não Cadastrado!";
                Msg        = "* ATENÇÃO: Usuário Não Cadastrado!";
                ScriptManager.RegisterStartupScript(this.Page, typeof(Page), Guid.NewGuid().ToString(),
                                                    "toastr.error('Usuário Não Cadastrado!', 'Atenção!')", true);

                // CRIA LOG  ===============================================================================================================================================
                SqlParameter[] param_log2 = { new SqlParameter("@login",    wlogin.Trim()),
                                              new SqlParameter("@tabela",   "USUARIO"),
                                              new SqlParameter("@operacao", "LOGIN"),
                                              new SqlParameter("@obs",      "USUÁRIO NÃO CADASTRADO"),
                                              new SqlParameter("@acao",     "USUÁRIO NÃO CADASTRADO USUÁRIO: " + wlogin.Trim()) };
                uLog.MakeLog(param_log2);
                // FIM CRIA LOG ============================================================================================================================================
            }
        }

        // CRIA LOG  ===============================================================================================================================================
        SqlParameter[] param_log3 = { new SqlParameter("@login",    wlogin.Trim()),
                                      new SqlParameter("@tabela",   "USUARIO"),
                                      new SqlParameter("@operacao", "LOGIN"),
                                      new SqlParameter("@obs",      "ENTRADA NO SISTEMA"),
                                      new SqlParameter("@acao",     "ENTRADA NO SISTEMA USUÁRIO: " + wlogin.Trim()) };
        uLog.MakeLog(param_log3);
        // FIM CRIA LOG ============================================================================================================================================


        return(Msg);
    }
Beispiel #6
0
    public static String Grava(string xnumcliente,
                               string xapelido,
                               string xnome,
                               string xsexo,
                               string xcnpj,
                               string xinscmunicipal,
                               string xinscestadual,
                               string xregjuntacom,
                               string xnire,
                               string xrg,
                               string xrguf,
                               string xrgemissor,
                               DateTime xrgemissao,
                               string xendereco,
                               string xenderecores,
                               string xenderecoresnumero,
                               string xenderecoresresplem,
                               string xbairrores,
                               string xcidaderes,
                               string xufres,
                               string xcepres,
                               string xfone1res,
                               string xfone2res,
                               string xfone3res,
                               string xenderecocom,
                               string xenderecocomnumero,
                               string xenderecocomcomplem,
                               string xbairrocom,
                               string xcidadecom,
                               string xufcom,
                               string xcepcom,
                               string xfone1com,
                               string xfone2com,
                               string xfone3com,
                               string xemail1,
                               string xemail2,
                               string xemail3,
                               string xemail4,
                               string xemail5,
                               string xgerente,
                               string xcontato,
                               DateTime xdtnascimento,
                               DateTime xdtingresso,
                               string xncontrato,
                               DateTime xdtcontrato,
                               Boolean xativo,
                               Boolean xacessointernet,
                               string xempregador,
                               string xcargo,
                               string xatividade,
                               string conjugenome,
                               string xconjugesexo,
                               string xconjugecnpj,
                               string xconjugerg,
                               string xconjugerguf,
                               string xconjugergemissor,
                               DateTime xconjugergemissao,
                               DateTime xdtnascimentoconjuge,
                               string xfone1con,
                               string xfone2con,
                               string xfone3con,
                               string xconjugeemail1,
                               string xconjugeemail2,
                               string xobs1,
                               string xobs2,
                               string xobs3,
                               string xobs4,
                               string xobs5,
                               string xinstrcob1,
                               string xinstrcob2,
                               string xdiasprotesto,
                               string xconta1,
                               string xconta2,
                               string xconta3,
                               string xconta4,
                               string xconta5,
                               Boolean xdda)
    {
        if (xapelido != String.Empty)
        {
            //Não Incluir com ID duplicado
            string script2 = "select ID from CONTATO with(nolock) where ID = " + xnumcliente;
            //
            if (!SreDblib.TemNaTabela(script2))
            {
                //
                string script = "INSERT INTO CONTATO VALUES ( " +
                                xnumcliente +
                                ", " + Srelib.QStr(xapelido) +
                                ", " + Srelib.QStr(xnome) +
                                ", " + Srelib.QStr(xsexo) +
                                ", " + Srelib.QStr(xcnpj) +
                                ", " + Srelib.QStr(xinscmunicipal) +
                                ", " + Srelib.QStr(xinscestadual) +
                                ", " + Srelib.QStr(xregjuntacom) +
                                ", " + Srelib.QStr(xnire) +
                                ", " + Srelib.QStr(xrg) +
                                ", " + Srelib.QStr(xrguf) +
                                ", " + Srelib.QStr(xrgemissor) +
                                ", " + Srelib.QStr(Srelib.DataAmericanasembarra(Convert.ToString(xrgemissao))) +
                                ", " + Srelib.QStr(xendereco) +
                                ", " + Srelib.QStr(xenderecores) +
                                ", " + Srelib.QStr(xenderecoresnumero) +
                                ", " + Srelib.QStr(xenderecoresresplem) +
                                ", " + Srelib.QStr(xbairrores) +
                                ", " + Srelib.QStr(xcidaderes) +
                                ", " + Srelib.QStr(xufres) +
                                ", " + Srelib.QStr(xcepres) +
                                ", " + Srelib.QStr(xfone1res) +
                                ", " + Srelib.QStr(xfone2res) +
                                ", " + Srelib.QStr(xfone3res) +
                                ", " + Srelib.QStr(xenderecocom) +
                                ", " + Srelib.QStr(xenderecocomnumero) +
                                ", " + Srelib.QStr(xenderecocomcomplem) +
                                ", " + Srelib.QStr(xbairrocom) +
                                ", " + Srelib.QStr(xcidadecom) +
                                ", " + Srelib.QStr(xufcom) +
                                ", " + Srelib.QStr(xcepcom) +
                                ", " + Srelib.QStr(xfone1com) +
                                ", " + Srelib.QStr(xfone2com) +
                                ", " + Srelib.QStr(xfone3com) +
                                ", " + Srelib.QStr(xemail1) +
                                ", " + Srelib.QStr(xemail2) +
                                ", " + Srelib.QStr(xemail3) +
                                ", " + Srelib.QStr(xemail4) +
                                ", " + Srelib.QStr(xemail5) +
                                ", " + Srelib.QStr(xgerente) +
                                ", " + Srelib.QStr(xcontato) +
                                ", " + Srelib.QStr(Srelib.DataAmericanasembarra(Convert.ToString(xdtnascimento))) +
                                ", " + Srelib.QStr(Srelib.DataAmericanasembarra(Convert.ToString(xdtingresso))) +
                                ", " + Srelib.QStr(xncontrato) +
                                ", " + Srelib.QStr(Srelib.DataAmericanasembarra(Convert.ToString(xdtcontrato))) +
                                ", " + Convert.ToString(Convert.ToInt16(xativo)) +
                                ", " + Convert.ToString(Convert.ToInt16(xacessointernet)) +
                                ", " + Srelib.QStr(xempregador) +
                                ", " + Srelib.QStr(xcargo) +
                                ", " + Srelib.QStr(xatividade) +
                                ", " + Srelib.QStr(xobs1) +
                                ", " + Srelib.QStr(xobs2) +
                                ", " + Srelib.QStr(xobs3) +
                                ", " + Srelib.QStr(xobs4) +
                                ", " + Srelib.QStr(xobs5) +
                                ", " + Srelib.QStr(conjugenome) +
                                ", " + Srelib.QStr(xconjugesexo) +
                                ", " + Srelib.QStr(xconjugecnpj) +
                                ", " + Srelib.QStr(xconjugerg) +
                                ", " + Srelib.QStr(xconjugerguf) +
                                ", " + Srelib.QStr(xconjugergemissor) +
                                ", " + Srelib.QStr(Srelib.DataAmericanasembarra(Convert.ToString(xconjugergemissao))) +
                                ", " + Srelib.QStr(Srelib.DataAmericanasembarra(Convert.ToString(xdtnascimentoconjuge))) +
                                ", " + Srelib.QStr(xfone1con) +
                                ", " + Srelib.QStr(xfone2con) +
                                ", " + Srelib.QStr(xfone3con) +
                                ", " + Srelib.QStr(xconjugeemail1) +
                                ", " + Srelib.QStr(xconjugeemail2) +
                                ", " + Srelib.QStr(xinstrcob1) +
                                ", " + Srelib.QStr(xinstrcob2) +
                                ", " + Srelib.QStr(xdiasprotesto) +
                                ", " + Srelib.QStr(xconta1) +
                                ", " + Srelib.QStr(xconta2) +
                                ", " + Srelib.QStr(xconta3) +
                                ", " + Srelib.QStr(xconta4) +
                                ", " + Srelib.QStr(xconta5) +
                                ", " + Convert.ToString(Convert.ToInt16(xdda)) +
                                " ) ";

                //" where nome=" + Rgblib.QStr(pParametro);

                SreDblib.ExecScript(script);
            }
        }
        return(" ");
    }