-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML_myHtml.html
More file actions
30 lines (28 loc) · 806 Bytes
/
HTML_myHtml.html
File metadata and controls
30 lines (28 loc) · 806 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script>
function Close()
{
var quart = document.getElementById("myquarter").value;
google.script.run.createActReport(quart);
google.script.host.close();
}
</script>
</head>
<body>
<select id="myquarter">
<option value="2018-03-01,2018-05-31">FY19 - Q1</option>
<option value="2018-06-01,2018-08-31">FY19 - Q2</option>
<option value="2018-09-01,2018-11-31">FY19 - Q3</option>
<option value="2018-12-01,2019-02-28">FY19 - Q4</option>
<option value="2019-03-01,2019-05-31">FY20 - Q1</option>
<option value="2019-06-01,2019-08-31">FY20 - Q2</option>
<option value="2019-09-01,2019-11-31">FY20 - Q3</option>
<option value="2019-12-01,2020-02-28">FY20 - Q4</option>
</select>
<br/>
<br/>
<input type="submit" value="OK" onclick="Close()" />
</body>
</html>