-
Total de itens
1417 -
Registro em
-
Última visita
-
Dias vencidos
1
Gilberto Jr venceu o dia em Maio 2 2018
Teve o conteúdo mais curtido
Reputação
26 Levemente BomSobre Gilberto Jr
-
Classificação
Cada vez apredendo mais.
- Data de Nascimento 03/30/1987
Informações Pessoais
-
Sexo
Masculino
-
Localização
Cariacica, ES
-
Interesses
Aprender e compartilhar.
Contato
-
Skype
gilberto@tecnogalli.com.br
-
Twitter
@descricaodorock
- Github
-
Facebook
https://www.facebook.com/descricaodorock
Últimos Visitantes
4464168 visualizações
-
Olá, alguém pode me da uma ideia de como fazer esse processo? Att; Gilberto Jr
-
Gilberto Jr começou a seguir data-dismiss="modal", Soma dos Valores do Setores Separado e Alterar Dados Arquivo TXT
-
Olá, boa tarde. Eu estou fazendo um relatório de um sistema de contagem de estoque que e o meu script sql que faz a busca é esse abaixo. select cont.id, cont.data,cont.barras,cont.contagem1,op.nome_operador,cli.nome_cliente,red.nome_rede,coord.nome_coordenador, cont.id_setor, cont.setor, cont.setor_finalizado from Inv_contagem cont, Inv_cabecalho cab, Inv_operador op, Inv_cliente cli, Inv_rede red, Inv_coord_grupo coord where cont.id_inventario = cab.id and cont.id_operador = op.id and cont.id_cliente = cli.id and cont.id_rede = red.id and cab.id_coord_grupo = coord.id and cab.id=9 Os dados que traz do banco de dados é listado na tabela abaixo <table class="table table-striped text-center text-justify"> <thead> <tr> <th scope="col">#</th> <th scope="col">Data</th> <th scope="col">Setor</th> <th scope="col">Operador</th> <th scope="col">Barras</th> <th scope="col">Descrição</th> <th scope="col">Quantidade</th> <th scope="col">Finalizado</th> </tr> </thead> <tbody> <% while relatorio_detalhado.eof = false %> <tr> <th scope="row"><%=relatorio_detalhado("id")%></th> <td><%=relatorio_detalhado("data")%></td> <td><%=relatorio_detalhado("setor")%></td> <td><%=relatorio_detalhado("nome_operador")%></td> <td><%=relatorio_detalhado("barras")%></td> <td>**</td> <td><%=relatorio_detalhado("contagem1")%></td> <td><% if cint(relatorio_detalhado("setor_finalizado")) = 0 then%> Aberto <%elseif cint(relatorio_detalhado("setor_finalizado")) = 1 then%> Finalizado <%end if%> </td> </tr> <% relatorio_detalhado.movenext wend %> </tbody> </table> Até ai tudo bem, o que esta pegando mesmo é o seguinte, a contagem é feito por setores. E o setor é listado na variavel setor. Só que eu quero dentro cada setor, fazer uma soma das peças daquele setor. Vou tentar explicar como eu quero que fica. Digamos que foi feito contagem em 3 setores. Setor 0001, 0002 e 0003 <table class="table table-striped text-center text-justify"> <thead> <tr> <th scope="col">#</th> <th scope="col">Data</th> <th scope="col">Setor</th> <th scope="col">Operador</th> <th scope="col">Barras</th> <th scope="col">Descrição</th> <th scope="col">Quantidade</th> <th scope="col">Finalizado</th> </tr> </thead> <tbody> <tr> <th scope="row">1</th> <td>23/01/2020</td> <td>0001</td> <td>João</td> <td>7909588599360</td> <td>Descrição</td> <td>1</td> <td>Finalizado</td> </tr> <tr> <th scope="row">1</th> <td>23/01/2020</td> <td>0001</td> <td>João</td> <td>7909588599360</td> <td>Descrição</td> <td>1</td> <td>Finalizado</td> </tr> <tr> <th scope="row">1</th> <td>23/01/2020</td> <td>0001</td> <td>João</td> <td>7909588599360</td> <td>Descrição</td> <td>1</td> <td>Finalizado</td> </tr> <tr> <th scope="row">1</th> <td>23/01/2020</td> <td>0001</td> <td>João</td> <td>7909588599360</td> <td>Descrição</td> <td>1</td> <td>Finalizado</td> </tr> <tr> <td colspan="8">Total Setor 0001: 4</td> </tr> <tr> <th scope="row">1</th> <td>23/01/2020</td> <td>0002</td> <td>João</td> <td>7909588599360</td> <td>Descrição</td> <td>2</td> <td>Finalizado</td> </tr> <tr> <th scope="row">1</th> <td>23/01/2020</td> <td>0002</td> <td>João</td> <td>7909588599360</td> <td>Descrição</td> <td>3</td> <td>Finalizado</td> </tr> <tr> <th scope="row">1</th> <td>23/01/2020</td> <td>0002</td> <td>João</td> <td>7909588599360</td> <td>Descrição</td> <td>4</td> <td>Finalizado</td> </tr> <tr> <th scope="row">1</th> <td>23/01/2020</td> <td>0002</td> <td>João</td> <td>7909588599360</td> <td>Descrição</td> <td>5</td> <td>Finalizado</td> </tr> <tr> <td colspan="8">Total Setor 0002: 14</td> </tr> <tr> <th scope="row">1</th> <td>23/01/2020</td> <td>0003</td> <td>João</td> <td>7909588599360</td> <td>Descrição</td> <td>2</td> <td>Finalizado</td> </tr> <tr> <th scope="row">1</th> <td>23/01/2020</td> <td>0003</td> <td>João</td> <td>7909588599360</td> <td>Descrição</td> <td>3</td> <td>Finalizado</td> </tr> <tr> <th scope="row">1</th> <td>23/01/2020</td> <td>0003</td> <td>João</td> <td>7909588599360</td> <td>Descrição</td> <td>1</td> <td>Finalizado</td> </tr> <tr> <th scope="row">1</th> <td>23/01/2020</td> <td>0003</td> <td>João</td> <td>7909588599360</td> <td>Descrição</td> <td>3</td> <td>Finalizado</td> </tr> <tr> <td colspan="8">Total Setor 0003: 9</td> </tr> </tbody> </table> Se tiver alguém que possa me ajudar nessa situação. Ficarei muito grato. Att; Gilberto
-
Olá, boa tarde. Obrigado pela solução. Att; Gilberto Jr
-
Olá, boa tarde. Tudo bem? Preciso de uma ajuda aqui. Seguinte, através desse código eu consigo ler as informações que esta dentro do arquivo txt. <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width" /> <title>FileAPI HTML5</title> <style type="text/css"> #filecontents { border: double; overflow-y: scroll; height: 400px; } </style> </head> <body> Por favor selecione arquivo que será lido:<br /> <input type="file" id="txtfiletoread" /><br /> <div>Conteúdo do arquivo:</div> <div id="filecontents"> </div> <script> window.onload = function () { //Check the support for the File API support if (window.File && window.FileReader && window.FileList && window.Blob) { var fileSelected = document.getElementById('txtfiletoread'); fileSelected.addEventListener('change', function (e) { //Set the extension for the file var fileExtension = /text.*/; //Get the file object var fileTobeRead = fileSelected.files[0]; //Check of the extension match if (fileTobeRead.type.match(fileExtension)) { //Initialize the FileReader object to read the 2file var fileReader = new FileReader(); fileReader.onload = function (e) { var pontovirgula = ";"; var virgula = ","; var fileContents = document.getElementById('filecontents'); fileContents.innerText = fileReader.result.replace(virgula, pontovirgula).replace(virgula, pontovirgula); } fileReader.readAsText(fileTobeRead); } else { alert("Por favor selecione arquivo texto"); } }, false); } else { alert("Arquivo(s) não suportado(s)"); } } </script> </body> </html> So que o arquivo vem separado por virgulas. Eu quero substituir todas as virgulas por ponto e virgula. Se eu usar dessa forma, ele altera a virgula para ponto e virgula da primeira linha. <script> window.onload = function () { //Check the support for the File API support if (window.File && window.FileReader && window.FileList && window.Blob) { var fileSelected = document.getElementById('txtfiletoread'); fileSelected.addEventListener('change', function (e) { //Set the extension for the file var fileExtension = /text.*/; //Get the file object var fileTobeRead = fileSelected.files[0]; //Check of the extension match if (fileTobeRead.type.match(fileExtension)) { //Initialize the FileReader object to read the 2file var fileReader = new FileReader(); fileReader.onload = function (e) { var pontovirgula = ";"; var virgula = ","; var fileContents = document.getElementById('filecontents'); fileContents.innerText = fileReader.result.replace(virgula, pontovirgula).replace(virgula, pontovirgula); } fileReader.readAsText(fileTobeRead); } else { alert("Por favor selecione arquivo texto"); } }, false); } else { alert("Arquivo(s) não suportado(s)"); } } </script> 7909377852089;1;8380 7909377852133,1,8380 7909377820729,2,8380 7909377820736,2,8380 7909377820743,2,8380 E também, o ultimo valor eu preciso separar os centavos por , virgula. Arquivo deve ficar dessa forma quando mostrado na pagina. 7909377852089;1;83,80 7909377852133;1;83,80 7909377820729;2;83,80 7909377820736;2;83,80 7909377820743;2;83,80 Ou seja, contando da direita para esquerda, as duas primeiras posições é o centavos. Se alguém puder me ajudar, ficarei muito grato. Att; Gilberto Jr
-
Boa tarde; Eu estou com um probleminha aqui que eu não consegui resolver. O que eu quero, eu tenho uma pagina com 2 modal. Um modal dentro do outro. Exemplo: Quando eu abro um MODAL, eu tenho uma botão para abrir um novo modal. Ele abre certinho, porem na hora de fechar. Eu clico no botão fechar, ele fecha os dois MODAL. E eu quero fechar somente o segundo modal que abre. Abaixo segue o meu codigo. <div class="modal fade" id="ListagemRede" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title font-weight-bold" id="exampleModalLabel">LISTA DE REDES CADASTRADAS</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Fechar"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <table class="table text-center"> <thead> <tr> <th scope="col">#</th> <th scope="col">Nome Rede</th> <th scope="col">Ação</th> </tr> </thead> <tbody> <tr> <th scope="row">1</th> <td>Rede 1</td> <td> <i class="fa fa-pencil fa-2x" style="color:#FB8A52;" data-toggle="modal" data-target="#EditarRede<%=r("id")%>"></i> <!-- Modal Editar a Rede --> <div class="modal fade" id="EditarRede<%=r("id")%>" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLabel">Título do modal</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Fechar"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form method="post" action="insere_rede.asp" id="forcadrede"> <div class="form-row"> <div class="form-group col-md-4"> <input type="hidden" name="master" value="1" required> <label for="inputEmail4" class="font-weight-bold">*Nome Rede</label> <input type="text" name="nome" class="form-control blocochamada text-center" id="inputEmail4" placeholder="*Nome da Rede" autocomplete="off" required> </div> <div class="form-group col-md-4"> <label for="inputEstado" class="font-weight-bold">*Grupo Coord.</label> <select id="inputEstado" name="coorden" class="form-control blocochamada text-center" autocomplete="off" required> <% set rscoord = conn.execute("select * from Inv_coord_grupo") %> <option selected>Escolher...</option> <% while rscoord.eof = false %> <option value="<%=rscoord("id")%>"><%=rscoord("nome_coordenador")%></option> <% rscoord.movenext wend %> </select> </div> <div class="form-group col-md-4"> <label for="inputCEP" class="font-weight-bold">*Contrato Qtde</label> <input type="number" name="contratoqtde" class="form-control blocochamada text-center" id="inputCEP" placeholder="Contrato Qtde" autocomplete="off" required> </div> </div> <div class="form-row"> <div class="form-group col-md-4"> <label for="inputEmail4" class="font-weight-bold">*Valor Contrato</label> <input type="text" name="vlrcontrato" class="form-control blocochamada text-center" id="vlrContrato" placeholder="*Valor Contrato" autocomplete="off" required> </div> <div class="form-group col-md-4"> <label for="inputCEP" class="font-weight-bold">*Valor Cont. Adici.</label> <input type="text" name="vlrcontadici" class="form-control blocochamada text-center" id="vlrContAdicion" placeholder="Valor Cont. Adici." autocomplete="off" required> </div> <div class="form-group col-md-4"> <label for="inputEstado" class="font-weight-bold">*Status</label> <select id="inputEstado" name="status" class="form-control blocochamada text-center" autocomplete="off" required> <option selected>Escolher...</option> <option value="1">Ativo</option> <option value="0">Desativado</option> </select> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary btnfechar" data-dismiss="modal">Fechar</button> <button type="submit" class="btn btn-primary btnsubmit">Salvar</button> </div> </form> </div> </div> </div> </div> </td> </tr> </tbody> </table> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Fechar</button> </div> </div> </div> </div> Quem puder me ajudar. Att; Gilberto Jr