-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelatorio.html
More file actions
39 lines (34 loc) · 1.25 KB
/
Copy pathrelatorio.html
File metadata and controls
39 lines (34 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="js/tabletop/src/tabletop.js"></script>
<script type="text/javascript" src="js/common.js"></script>
<link rel="stylesheet" href="css/sss.css">
<script type="text/javascript">
window.onload = function() {
init();
document.getElementById("dblink").href = getDBLink();
};
function init() {
Tabletop.init( { key: getDBLink(),
callback: showInfo,
simpleSheet: false } );
}
function showInfo(data) {
var html;
html = "<h3> Relatorio em desenvolvimento </h3>";
document.getElementById('vendas').innerHTML = html;
}
</script>
</head>
<body class="index">
<div class="container">
<div class="pageTitle">
<div class="back"> <a href="index.html"> <p> Voltar </p> </a> </div>
<div class="print"> <a href="javascript:window.print()" > <img src="images/printer.png"> </a> </div>
<div class="title"> <center> <h1> Relatorio </h1> </center> </div>
</div>
<p> <h6> <a id="dblink" href="#" target='_new'> Visualizar banco de dados </a></h6></p>
<div id="vendas"> Carregando... </div>
</body>
</html>