-
Notifications
You must be signed in to change notification settings - Fork 0
/
itemCardSalesPrice.html
216 lines (190 loc) · 8.3 KB
/
itemCardSalesPrice.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>UI Basics</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav dropdown">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
General Ledger
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Bank Accounts</a></li>
<li><a class="dropdown-item" href="#">Payment Methods</a></li>
<li><a class="dropdown-item" href="#">General Ledger</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link active dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Inventory
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="itemList.html">Items</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Sales
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Customers</a></li>
<li><a class="dropdown-item" href="#">Sales Order</a></li>
<li><a class="dropdown-item" href="#">Sales Credit Memo</a></li>
<li><a class="dropdown-item" href="#">Posted Sales Order</a></li>
<li><a class="dropdown-item" href="#">Posted Sales Credit Memo</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Purchases
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Vendors</a></li>
<li><a class="dropdown-item" href="#">Purchase Order</a></li>
<li><a class="dropdown-item" href="#">Purchase Credit Memo</a></li>
<li><a class="dropdown-item" href="#">Posted Purchase Order</a></li>
<li><a class="dropdown-item" href="#">Posted Purchase Credit Memo</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
<div class="container-fluid">
<ol class="breadcrumb">
<li class="breadcrumb-item">Inventory</li>
<li class="breadcrumb-item">Items</li>
<li class="breadcrumb-item active" aria-current="page">New</li>
</ol>
</div>
</nav>
<div class="container-fluid">
<h2>Item Card</h2>
<div class="col-md-12 col-lg-12">
<form class="needs-validation" novalidate>
<div class="row g-3">
<div class="col-sm-6">
<label for="firstName" class="form-label">Code</label>
<input type="text" class="form-control" id="code" placeholder="" value="" required>
</div>
<div class="col-sm-6">
<label for="lastName" class="form-label">Description</label>
<input type="text" class="form-control" id="lastName" placeholder="" value="" required>
</div>
<div class="col-sm-6">
<label for="firstName" class="form-label">Sales Price</label>
<input type="text" class="form-control" id="code" placeholder="" value="" required>
</div>
<div class="col-sm-6">
<label for="lastName" class="form-label">Purchase Price</label>
<input type="text" class="form-control" id="lastName" placeholder="" value="" required>
</div>
<div class="col-sm-6">
</div>
<div class="col-sm-6">
<button type="submit" class="btn btn-primary">Save</button>
</div>
<div class="container-fluid">
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">Item Ledger Entries</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="itemCardSalesPrices.html">Sales Prices</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Purchase Prices</a>
</li>
</ul>
<table class="table table-striped table-sm">
<thead>
<tr>
<th scope="col">No</th>
<th scope="col">Start Date</th>
<th scope="col">End Date</th>
<th scope="col">Price</th>
<th scope="col">Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td>1001</td>
<td>01.01.2000</td>
<td>31.12.2000</td>
<td>101.11</td>
<td>edit delete</td>
</tr>
<tr>
<td>1001</td>
<td>01.01.2001</td>
<td>31.12.2001</td>
<td>111.11</td>
<td>edit delete</td>
</tr>
<tr>
<td>1001</td>
<td>01.01.2002</td>
<td>31.12.2002</td>
<td>121.11</td>
<td>edit delete</td>
</tr>
<tr>
<td>1001</td>
<td>01.01.2003</td>
<td></td>
<td>132.00</td>
<td>edit delete</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td><a class="btn btn-primary" href="itemCard.html" role="button">New</a></td>
</tr>
</tbody>
</table>
<nav aria-label="...">
<ul class="pagination justify-content-center">
<li class="page-item disabled">
<a class="page-link">First</a>
</li>
<li class="page-item">
<a class="page-link">Prev</a>
</li>
<li class="page-item">
<a class="page-link" href="#">1</a>
</li>
<li class="page-item active" aria-current="page">
<a class="page-link" href="#">2</a>
</li>
<li class="page-item">
<a class="page-link" href="#">3</a>
</li>
<li class="page-item">
<a class="page-link">Next</a>
</li>
<li class="page-item">
<a class="page-link" href="#">Last</a>
</li>
</ul>
</nav>
</div>
</div>
</form>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
</body>
</html>