-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (22 loc) · 975 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RTS Uploader</title>
</head>
<body>
<h1>RTS Upload Manager</h1>
<input type="file" id="fileUpload" accept=".xlsx">
<button onclick="upload()">Upload</button>
<br><br>
<h2 id="totalInvoices"></h2>
<h2 id="totalAmount"></h2>
<textarea id="sheetResults" style="display:none;height:350px;width:350px;"></textarea>
<button onclick="copyText()" id="copyTextButton" style="display: none;">Copy text</button>
<button onclick="verifyInvoices()" id="verifyInvoices" style="display: none;">Verify Invoices</button>
<textarea id="verifiedText" style="display:none;height:350px;width:350px;"></textarea>
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.18.5/xlsx.full.min.js"></script>
<script src="index.js"></script>
</body>
</html>