forked from varas7/inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvoice.php
90 lines (89 loc) · 2.27 KB
/
invoice.php
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Invoice</title>
<link rel="stylesheet" href="css/invoice.css">
<script src="js/invoice.js"></script>
</head>
<body>
<header>
<h1>Invoice</h1>
<address contenteditable>
<p>VARAS7</p>
<p>Lonere</p>
<p>8857848468</p>
</address>
<span></span>
</header>
<article>
<h1>Recipient</h1>
<address contenteditable>
<p><input type="text" name="Customer Name" placeholder="Customer Name"></p>
</address>
<table class="meta">
<tr>
<th><span contenteditable>Invoice #</span></th>
<td><span contenteditable>101138</span></td>
</tr>
<tr>
<th><span contenteditable>Date</span></th>
<td><span contenteditable><script type="text/javascript">
<!--
var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()
document.write(month + "/" + day + "/" + year)
//-->
</script></span></td>
</tr>
<tr>
<th><span contenteditable>Amount Due</span></th>
<td><span id="prefix" contenteditable>₹</span><span>0</span></td>
</tr>
</table>
<table class="inventory">
<thead>
<tr>
<th><span >Item</span></th>
<th><span >Description</span></th>
<th><span >Rate</span></th>
<th><span >Quantity</span></th>
<th><span >Price</span></th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="cut">-</a><span contenteditable></span></td>
<td><span contenteditable></span></td>
<td><span data-prefix>₹</span><span contenteditable></span></td>
<td><span contenteditable></span></td>
<td><span data-prefix>₹</span><span></span></td>
</tr>
</tbody>
</table>
<a class="add">+</a>
<table class="balance">
<tr>
<th><span contenteditable>Total</span></th>
<td><span data-prefix>₹</span><span></span></td>
</tr>
<tr>
<th><span contenteditable>Amount Paid</span></th>
<td><span data-prefix>₹</span><span contenteditable></span></td>
</tr>
<tr>
<th><span contenteditable>Balance Due</span></th>
<td><span data-prefix>₹</span><span></span></td>
</tr>
</table>
</article>
<aside>
<h1><span ></span></h1>
<div>
<p></p>
</div>
</aside>
</body>
</html>