-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (118 loc) · 5.39 KB
/
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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Учет бумаги</title>
<link rel="stylesheet" href="./css/paper.css">
</head>
<body class="container" id="container">
<nav class="nav">
</nav>
<div class="form" id="form">
<div class="wrapper">
<h1 class="h1">Списание бумаги</h1>
<div class="form-part">
<label class="label">Номер заказа</label>
<input type="text" class="text-input" name="num" id="num" placeholder="Заказ">
</div>
<div class="form-part">
<label class="label">Бумага</label>
<input type="text" class="text-input text-input--wide" name="paper" id="paper" placeholder="Бумага">
<div class="dropdown-wrapper ">
<ul class="dropdown text-input--wide" id="dropdown">
</ul>
</div>
</div>
<div class="form-part">
<label class="label">План</label>
<input type="text" class="text-input" name="plan" id="plan" placeholder="План">
</div>
<div class="form-part">
<label class="label">Факт</label>
<input type="text" class="text-input" name="fact" id="fact" placeholder="Факт">
</div>
<div class="form-part">
<label class="label">Исполнитель</label>
<input type="text" class="text-input" name="oper" id="oper" placeholder="Исполнитель">
</div>
<div class="form-part">
<button type="submit" id="submit" class="submit">ok</button>
</div>
</div>
<div class="wrapper">
<h1 class="h1">Приход бумаги</h1>
<div class="form-part">
<label class="label">Номер заказа</label>
<input type="text" class="text-input" name="num-in" id="num-in" placeholder="Заказ">
</div>
<div class="form-part">
<label class="label">Бумага</label>
<input type="text" class="text-input text-input--wide" name="paper-in" id="paper-in" placeholder="Бумага">
<div class="dropdown-wrapper">
<ul class="dropdown text-input--wide" id="dropdown-in">
</ul>
</div>
</div>
<div class="form-part">
<label class="label">Количество</label>
<input type="text" class="text-input" name="count-in" id="count-in" placeholder="Количество">
</div>
<div class="form-part">
<label class="label">Оприходовал</label>
<input type="text" class="text-input" name="oper-in" id="oper-in" placeholder="Оприходовал">
</div>
<div class="form-part">
<button type="submit" id="submit-in" class="submit">ok</button>
</div>
</div>
<div class="wrapper">
<h1 class="h1">Отчеты</h1>
<div class="form-part">
<label class="label">Начало периода</label>
<input type="date" class="text-input" name="date-begin" id="date-from-1">
</div>
<div class="form-part">
<label class="label">Конец периода</label>
<input type="date" class="text-input" name="date-end" id="date-to-1">
</div>
<div class="form-part">
<button type="submit" id="submit-move" class="submit">Движение за период</button>
</div>
<div class="form-part">
<button type="submit" id="submit-report" class="submit">Сводный отчет за период</button>
</div>
<div class="form-part">
<button type="submit" id="submit-balance" class="submit">Остатки</button>
</div>
</div>
</div>
<div class="form report" id="form-report">
<div class="wrapper wrapper--no-border">
<h1 class="h1">Отчет</h1>
<div class="form-part">
<label class="label">Начало периода</label>
<input type="date" class="text-input" name="date-begin" id="date-from-2">
</div>
<div class="form-part">
<label class="label">Конец периода</label>
<input type="date" class="text-input" name="date-end" id="date-to-2">
</div>
<div class="form-part">
<button type="submit" id="submit-period" class="submit">Ok</button>
</div>
</div>
<table class="table" id="report-table">
<tr class="table-row">
<th class="table-cell table-cell--head">Бумага</th>
<th class="table-cell table-cell--head">Приход</th>
<th class="table-cell table-cell--head">Расход</th>
<th class="table-cell table-cell--head">Заказ</th>
<th class="table-cell table-cell--head">Дата</th>
</tr>
</table>
</div>
</div>
<script src="./js/script.js"></script>
</body>