Package negocio

Examples of negocio.GerenciarDB


       
        if ((CPF.isEmpty()) || ("        ".equals(CPF)) ) {
            todosCampos.setText("O campo deve ser preenchido");
        } else {
            try {
                 GerenciarDB banco = new GerenciarDB();
                
                 if (banco.checkUsuarioDB(CPF)) {
                    banco.delUsuario(CPF);
                    JanelaInicioAdmin frame = new JanelaInicioAdmin();
                    frame.setLocationRelativeTo(null);
                    frame.setVisible(true);
                    this.dispose();
                 } else {
View Full Code Here


        String IDcartao = DelIDCartao.getText().replaceAll("[-]","");
        if ((IDcartao.isEmpty()) || ("        ".equals(IDcartao)) ) {
            todosCampos.setText("O campo deve ser preenchido");
        } else {
            try {
                 GerenciarDB banco = new GerenciarDB();
                
                 if (banco.checkCartaoDB(IDcartao)) {
                    banco.delCartao(IDcartao);
                    JanelaInicioAdmin frame = new JanelaInicioAdmin();
                    frame.setLocationRelativeTo(null);
                    frame.setVisible(true);
                    this.dispose();
                 } else {
View Full Code Here

                  ErroCampoVazio.setText("Existem campos vazios.");
              }
         }
         else{
             try {
                 GerenciarDB estabelecimento = new GerenciarDB();
                 Estabelecimento shop = new Estabelecimento (cnpj, nomeLoja);
                 estabelecimento.addEstabelecimento(shop);
                 JanelaInicioAdmin frame = new JanelaInicioAdmin();
                 frame.setLocationRelativeTo(null);
                 frame.setVisible(true);
                 this.dispose();
                
View Full Code Here

            } else if (tipoUsuario.isEmpty()) {
                ErroTipoUsuario.setText("*");
            }
        } else {
            try {
                 GerenciarDB usuario = new GerenciarDB();
                 Usuario user = new Usuario (nomeUsuario, cpfUsuario, tipoUsuario, email, enderecoUsuario, dataNasc, nacionalidadeUsuario, cpfDependente, telUsuario);
                 usuario.addUsuario(user);
                 JanelaInicioAdmin frame = new JanelaInicioAdmin();
                 frame.setLocationRelativeTo(null);
                 frame.setVisible(true);
                 this.dispose();

View Full Code Here

    private String data;

    public Recarga(double valor, String pessoa) {
        this.valor = valor;
        this.pessoa = pessoa;
        GerenciarDB banco = new GerenciarDB();
        this.data = banco.getData();
    }
View Full Code Here

            }
            else{
                tipo = 2;
            }
           
            GerenciarDB banco = new GerenciarDB();
            Cartao cartao = new Cartao(numCartao);
            GerenciarCartao gerCartao = new GerenciarCartao(cartao);
            saldo=gerCartao.verificarSaldo();
            boolean acesso = banco.checkSenhaCartaoDB(numCartao, senha, tipo);
           
            if (acesso){
                JanelaUsuario frame = new JanelaUsuario();
                frame.IDcartao = numCartao;
                frame.tipo = tipo;
View Full Code Here

       
        System.out.println(senhaatual+" "+novasenha);
        System.out.println(CNPJ);
       
        boolean confereSenha = (novasenha.equals(repitasenha));
        GerenciarDB shop = new GerenciarDB();

        boolean CheckedPassword = false;
        try {
            CheckedPassword = shop.checkSenhaEstabelecimentoDB(CNPJ, senhaatual);
        } catch (Exception ex) {
            Logger.getLogger(JanelaAlterarSenhaEst.class.getName()).log(Level.SEVERE, null, ex);
        }

        if (senhaatual.isEmpty()||repitasenha.isEmpty()||novasenha.isEmpty()){
            todosCampos.setText("Você deve preencher todos os campos.");

           
        } else if (confereSenha==false){
            conferirSenha.setText("Senhas inválidas. Digite novamente.");
           
        } else {
            try {
                GerenciarDB banco = new GerenciarDB();
                double saldo = banco.getVendaTotalEstabelecimentoDB(CNPJ);
                if (CheckedPassword) {
                    banco.updateSenhaEstabelecimentoDB(CNPJ, novasenha);
                    JanelaEst frame = new JanelaEst();
                    frame.CNPJ = CNPJ;
                    if (saldo<=50) {
                    frame.Saldo.setForeground(new java.awt.Color(255, 0, 0));
                    frame.jLabel1.setText("AVISO: Seu saldo atual é inferior a R$ 50.00. Quel tal fazer uma nova recarga?");
View Full Code Here

TOP

Related Classes of negocio.GerenciarDB

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.