Subversion Repositories SmartDukaan

Rev

Rev 9416 | Rev 22452 | 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>
12653 manish.sha 61
				<tr id ="poRef">
62
					<td>PO Ref Number:</td>
63
					<td><input type="text" name="poRefNumber" /></td>
64
                </tr>
5387 rajveer 65
				<tr >
4207 mandeep.dh 66
                    <td >Amount: </td>
67
                    <td ><input id="bulk-order-total-amount" type="text" readonly name="amount" value="0"/></td>
68
                </tr>
8925 amar.kumar 69
				<tr>
70
					<td>Product Type: </td>
71
					<td>
72
						<select name="productCondition" >
73
    						<option value="0" selected="selected">Good</option>
74
                            <option value="1">Bad</option>
75
                        </select>
76
					</td>
77
				</tr>
9416 amar.kumar 78
				<tr>
79
					<td>Tax Type: </td>
80
					<td>
81
						<select name="taxType" >
82
    						<option value="0" selected="selected">VAT/CST</option>
83
                            <option value="2">CST against CFORM</option>
84
                        </select>
85
					</td>
86
				</tr>
4207 mandeep.dh 87
                <tr ></tr>
88
                <tr ></tr>
89
            </table>
90
            <table id="bulk-order-items">
91
                <thead >
92
                    <tr >
93
                        <th >Item Id</th>
94
                        <th >Model name</th>
95
                        <th >Price</th>
96
                        <th >Quantity</th>
97
                        <th >Amount</th>
98
                        <th >Remove</th>
99
                    </tr>
100
                </thead>
101
                <tbody >
102
                    <tr id="sample-item">
103
                        <td ><input type="text" class="required digits" name="item_id" disabled /> </td>
104
                        <td ><div id="model_name" /></td>
105
                        <td ><input type="text" class="required number" name="unit_price" disabled /> </td>
106
                        <td ><input type="text" class="required digits" name="quantity" disabled /> </td>
107
                        <td ><div id="item-amount">0</div></td>
108
                        <td ><a id="remove-item" href="#">delete</a></td>
109
                    </tr>
110
                </tbody>
111
            </table>
112
            <div >
113
                <input id="add-item" type="button" value="Add New Item"/> <br /> <br />
114
                <input type="submit" value="Create Bulk Order"/>
115
                <input id="cancel" type="button" value="Cancel"/>
116
            </div>
117
        </form>
118
        <script type="text/javascript" src="/Support/js/jquery-1.4.2.js"></script>
119
        <script type="text/javascript" src="/Support/js/jquery.validate.js"></script>
120
        <script type="text/javascript" src="/Support/js/jquery.dataTables.min.js"></script>
121
        <script type="text/javascript" src="/Support/js/bulk-order-common.js"></script>
122
        <script type="text/javascript" src="/Support/js/bulk-order-events.js"></script>
123
        <script type="text/javascript" charset="utf-8">
124
            $(function(){
125
                $('table#bulk-order-items tr#sample-item').hide();
126
                $("form#bulk-order").validate();
127
            });
128
        </script>
129
    </body>
130
</html>