-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 3.5 KB
/
index.html
File metadata and controls
70 lines (70 loc) · 3.5 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/fontawesome.min.css">
<link rel="stylesheet" href="assets/css/main.css">
<title>NFe2CSV</title>
</head>
<body>
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<main role="main" class="inner cover">
<div class="text-center">
<h1 class="cover-heading">NF-e para CSV</h1>
<p class="lead">
Converter um ou mais arquivos <strong>XML</strong> do tipo <strong>NFe</strong> para um arquivo
do tipo <strong>CSV</strong> que pode ser aberto em qualquer planilha eletrônica.
</p>
<p class="lead">Versão <span class="badge badge-success" id="appVersion">...</span></p>
</div>
<div class="row">
<div class="col-8">
<label for="xmlFolder">Local dos arquivos NFe</label>
<div class="input-group">
<input type="text" id="xmlFolder" class="form-control" disabled>
<div class="input-group-append">
<buton type="button" class="btn btn-outline-secondary" id="btXmlIn">
<i class="fas fa-folder-open"></i>
</buton>
</div>
</div>
<label for="csvOut">Arquivo CSV de saída</label>
<div class="input-group">
<input type="text" id="csvOut" class="form-control" disabled>
<div class="input-group-append">
<buton type="button" class="btn btn-outline-secondary" id="btCsvOut">
<i class="fas fa-file"></i>
</buton>
</div>
</div>
</div>
<div class="col-4">
<h5>Incluir dados do:</h5>
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="ckEmit" checked>
<label for="ckEmit" class="custom-control-label">Emissor</label>
</div>
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="ckDest" checked>
<label for="ckDest" class="custom-control-label">Destinatário</label>
</div>
</div>
</div>
<div class="mt-2">
<button type="button" class="btn btn-secondary" id="btGo">
<i class="fas fa-exchange-alt"></i> Converter
</button>
</div>
</main>
<footer class="mt-auto">
<div class="inner text-center">
<p>Copyright © 2020 <strong class="text-white">Anderson R. Livramento</strong></p>
</div>
</footer>
</div>
<script type="text/javascript">
require('./renderer-process/main-window')
</script>
</body>
</html>