forked from WorkofAditya/Mira
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDispatch.html
More file actions
120 lines (103 loc) · 3.91 KB
/
Dispatch.html
File metadata and controls
120 lines (103 loc) · 3.91 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#1f2937">
<link rel="manifest" href="manifest.json">
<link rel="icon" href="icons/icon-512.png" type="image/png">
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
<title>Dispatch Entry</title>
<link rel="stylesheet" href="dispatch.css">
</head>
<body>
<div class="app">
<header class="topbar">
<div class="logo">RC</div>
<div class="title">Dispatch Page</div>
<a href="index.html" class="back-arrow" title="Back to homepage">⤶</a>
</header>
<div class="dispatch-body">
<section class="dispatch-form">
<div class="row">
<label>Dispatch No</label>
<input type="text" id="dispatchNo">
</div>
<div class="row">
<label>Date</label>
<input type="date" id="dispatchDate">
</div>
<div class="row">
<label>Method</label>
<input type="text" id="method">
</div>
<div class="row">
<label>Branch</label>
<input type="text" id="branchInput" readonly>
</div>
<div class="row">
<label>Driver Name</label>
<input type="text" id="driverName">
</div>
<div class="row">
<label>Mobile No</label>
<input type="text" id="mobileNo">
</div>
<div class="row">
<label>Vehicle No</label>
<input type="text" id="vehicleNo">
</div>
<div class="row">
<label>Route</label>
<input type="text" id="route">
</div>
<div class="row align-top">
<label>Remark</label>
<input type="text" id="remark">
</div>
<button class="loading-btn" id="loadingBtn" type="button">Loading</button>
</section>
<section class="transfer-area">
<div class="list-panel">
<h3>LR No Godown</h3>
<div class="list-box">
<select id="godownList" multiple></select>
</div>
</div>
<div class="arrows">
<button id="btnMoveOneToVehicle" type="button" aria-label="Move selected to vehicle">></button>
<button id="btnMoveAllToVehicle" type="button" aria-label="Move all to vehicle">>></button>
<button id="btnMoveOneToGodown" type="button" aria-label="Move selected to godown"><</button>
<button id="btnMoveAllToGodown" type="button" aria-label="Move all to godown"><<</button>
</div>
<div class="list-panel">
<h3>LR On Vehicle</h3>
<div class="list-box">
<select id="vehicleList" multiple></select>
</div>
</div>
</section>
</div>
<div class="actions">
<button type="button">New</button>
<button type="button">Edit</button>
<button type="button">Delete</button>
<button type="button">Find</button>
<button type="button">Preview</button>
<button type="button">Print</button>
<button type="button">PDF</button>
<button type="button">Exit</button>
</div>
</div>
<script src="Dispatch.js"></script>
<script>
if ("serviceWorker" in navigator) {
window.addEventListener("load", () => {
navigator.serviceWorker.register("./service-worker.js");
});
}
</script>
</body>
</html>