Subversion Repositories SmartDukaan

Rev

Rev 5527 | Rev 9416 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4207 mandeep.dh 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
    <head>
4
        <link rel="stylesheet" href="/Support/css/bulk-order.css" type="text/css" />
5
        <title>
6
            Create new bulk order
7
        </title>
8
    </head>
9
    <body>
4208 mandeep.dh 10
        <div >
11
            <a href="/Support/bulk-order">Go to all bulk orders</a>
12
        </div>
13
 
4207 mandeep.dh 14
        <h2 >Create new bulk order</h2>
15
        <div id="error"></div>
16
        <form id="bulk-order">
17
            <table id="add-bulk-order-items">
18
                <tr >
19
                    <td >Customer Email Id: </td>
20
                    <td ><input type="text" name="customerEmailId" class="required email"/> </td>
21
                </tr>
22
                <tr >
23
                    <td >RTGS Id: </td>
24
                    <td ><input type="text" name="rtgsId" class="required digits"/> </td>
25
                </tr>
26
                <tr >
27
                    <td >RTGS Bank: </td>
28
                    <td ><input type="text" name="rtgsBank" class="required"/> </td>
29
                </tr>
30
                <tr >
31
                    <td >RTGS Branch: </td>
32
                    <td ><input type="text" name="rtgsBranch" class="required"/> </td>
33
                </tr>
34
                <tr >
35
                    <td >IFSC Code: </td>
36
                    <td ><input type="text" name="ifscCode" class="required"/> </td>
37
                </tr>
38
                <tr >
5527 anupam.sin 39
					<td >Pickup: </td>
40
					<td>
41
    					<select name="pickUp" >
42
    						<option value="SELF" selected="selected">SELF</option>
43
                            <option value="RUNNER">RUNNER</option>
44
                            <option value="COURIER">COURIER</option>
45
                        </select>
46
					</td>
47
                </tr>
48
				<tr>
49
					<td>Order Type: </td>
50
					<td>
51
						<select id="orderType" name="orderType" >
52
    						<option value="B2B" selected="selected">B2B</option>
53
                            <option value="B2Cbulk">B2C</option>
54
                        </select>
55
					</td>
56
				</tr>
57
				<tr id="tin">
58
					<td>TIN No:</td>
59
					<td><input type="text" name="tinNumber" /></td>
60
				</tr>
5387 rajveer 61
				<tr >
4207 mandeep.dh 62
                    <td >Amount: </td>
63
                    <td ><input id="bulk-order-total-amount" type="text" readonly name="amount" value="0"/></td>
64
                </tr>
8925 amar.kumar 65
				<tr>
66
					<td>Product Type: </td>
67
					<td>
68
						<select name="productCondition" >
69
    						<option value="0" selected="selected">Good</option>
70
                            <option value="1">Bad</option>
71
                        </select>
72
					</td>
73
				</tr>
4207 mandeep.dh 74
                <tr ></tr>
75
                <tr ></tr>
76
            </table>
77
            <table id="bulk-order-items">
78
                <thead >
79
                    <tr >
80
                        <th >Item Id</th>
81
                        <th >Model name</th>
82
                        <th >Price</th>
83
                        <th >Quantity</th>
84
                        <th >Amount</th>
85
                        <th >Remove</th>
86
                    </tr>
87
                </thead>
88
                <tbody >
89
                    <tr id="sample-item">
90
                        <td ><input type="text" class="required digits" name="item_id" disabled /> </td>
91
                        <td ><div id="model_name" /></td>
92
                        <td ><input type="text" class="required number" name="unit_price" disabled /> </td>
93
                        <td ><input type="text" class="required digits" name="quantity" disabled /> </td>
94
                        <td ><div id="item-amount">0</div></td>
95
                        <td ><a id="remove-item" href="#">delete</a></td>
96
                    </tr>
97
                </tbody>
98
            </table>
99
            <div >
100
                <input id="add-item" type="button" value="Add New Item"/> <br /> <br />
101
                <input type="submit" value="Create Bulk Order"/>
102
                <input id="cancel" type="button" value="Cancel"/>
103
            </div>
104
        </form>
105
        <script type="text/javascript" src="/Support/js/jquery-1.4.2.js"></script>
106
        <script type="text/javascript" src="/Support/js/jquery.validate.js"></script>
107
        <script type="text/javascript" src="/Support/js/jquery.dataTables.min.js"></script>
108
        <script type="text/javascript" src="/Support/js/bulk-order-common.js"></script>
109
        <script type="text/javascript" src="/Support/js/bulk-order-events.js"></script>
110
        <script type="text/javascript" charset="utf-8">
111
            $(function(){
112
                $('table#bulk-order-items tr#sample-item').hide();
113
                $("form#bulk-order").validate();
114
            });
115
        </script>
116
    </body>
117
</html>