Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.
HTML
<center><font size="5000"> EXTERMINAR O ACCESS ATÉ 12/ABRIL/18 </font></center>

 

 

Gráfico
bgColorBlack
orientationvertical
height600
width1315
showShapesfalse
typeline
 012345678910111213141516171819202122232425262728293031323334353637383940414243444546
Meta93091089087085083081079077075073071069067065063061059057055053051049047045043041039037035033031029027025023021019017015013011090705030100
Realizado930930923918915904902885867851822802782765727668637618594581561544531513497472442390362329308273229203175157

143

130108887672 44 36 20 10 0 
HTML
<p id="demo" style="font-size: 80px; color:red; background-color:black;"></p>
<script>
// Set the date we're counting down to
var countDownDate = new Date("Apr 3012, 2018 23:59:59").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
    // Get todays date and time
    var now = new Date().getTime();
    
    // Find the distance between now an the count down date
    var distance = countDownDate - now;
    
    // Time calculations for days, hours, minutes and seconds
    var days = Math.floor(distance / (1000 * 60 * 60 * 24));
    var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
    var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
    var seconds = Math.floor((distance % (1000 * 60)) / 1000);
    
    // Output the result in an element with id="demo"
    document.getElementById("demo").innerHTML = days + "d " + hours + "h "
    + minutes + "m " + seconds + "s restantes";
    
    // If the count down is over, write some text 
    if (distance < 0) {
        clearInterval(x);
        document.getElementById("demo").innerHTML = "EXPIRED";
    }
}, 1000);
</script>

SQL
dataSourceSIA
stylebackground-color:black;color:yellow; font-weight:bold;font-size:3.8em;
rowOrientationhorizontal
retainRowStyleOrderfalse
SELECT 
COUNT(*) as "Falta Converter",
(SELECT Count(*)
FROM esiaProdutosCliente PC
left  join esiaContrato CO on CO.cdContrato=PC.cdContrato
left  join eanEntidade E on E.cdENtidade = PC.cdEntidade
left  join esiacopiacliente CC on PC.cdProdutosCliente= CC.cdProdutosCliente
INNER JOIN (select new_cdcopiacliente, max(dtRegistro) as dtMigracao 
from log_esiacopiacliente 
where operacao = 'UPDATE'
AND new_flfirebird = 'S'
AND old_flfirebird = 'N'
and dtRegistro >= 
current_date - cast(EXTRACT(ISODOW FROM current_date) as integer)-1
group by new_cdcopiacliente) MM ON MM.new_cdcopiacliente = CC.cdCopiaCLiente
INNER JOIN esiaPadrao P ON PC.cdPadrao = P.cdPadrao
WHERE CC.flContadorEstatistico = 'S'
and  CC.dtExpiracao > '01.03.2017'
and (CC.flTipoCopia = 'VIP' or (CO.flStatus='A' or (CO.flStatus is null and CC.flTipoCopia = 'Doacao')))
AND PC.cdProduto in (10,12)
AND PC.cdEntidade NOT IN (1310,526,5193)
) as "Migradas semana"

FROM esiaProdutosCliente PC
left  join esiaProdutoContrato PCO on PC.cdProdutoContrato=PCO.cdProdutoContrato
left  join esiaContrato CO on PCO.cdContrato=Co.cdContrato
left  join esiacopiacliente CC on PC.cdProdutosCliente= CC.cdProdutosCliente
INNER JOIN esiaPadrao P
ON PC.cdPadrao = P.cdPadrao
WHERE CC.flContadorEstatistico = 'S'
and  CC.dtExpiracao > '01.03.2017'
and (CC.flTipoCopia = 'VIP' or (CO.flStatus='A' or (CO.flStatus is null and CC.flTipoCopia = 'Doacao')))
AND PC.cdProduto in (10,12)
and flFirebird = 'N'
AND PC.cdEntidade NOT IN (1310,526,5193)