Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
32349 amit.gupta 1
<section class="wrapper">
2
    <div class="row">
3
        <div class="col-lg-12">
4
            <h3 class="page-header">
5
                <i class="icon_document_alt"></i>Seller
6
            </h3>
7
            <ol class="breadcrumb">
8
                <li><i class="fa fa-home"></i><a
9
                        href="${rc.contextPath}/dashboard">Home</a></li>
10
                <li><i class="icon_document_alt"></i>Supplier Form</li>
11
            </ol>
12
        </div>
13
    </div>
14
    <form id="new-supplier-create-form">
15
        <div class="form-row">
16
            <div class="form-group col-md-6">
17
                <label for="name">Name</label>
18
                <input type="text" class="form-control" id="name" name="inputName" placeholder="Name">
19
            </div>
28494 tejbeer 20
 
32349 amit.gupta 21
            <div class="form-group col-md-6">
22
                <label for="phone">Phone</label>
23
                <input type="number" class="form-control" id="phone" name="inputPhone" placeholder="Phone">
24
            </div>
25
 
26
            <div class="form-group col-md-6">
27
                <label for="gst">GSTIN</label>
28
                <input type="text" class="form-control" id="gst" name="inputGst" placeholder="GST">
29
            </div>
30
            <div class="form-group col-md-6">
31
                <label for="panNumber">PAN</label>
32
                <input type="text" class="form-control" id="panNumber" name="inputPan" placeholder="pan">
33
            </div>
34
            <div class="form-group col-md-6">
35
                <label for="Fax">Fax</label>
36
                <input type="text" class="form-control" id="Fax" name="inputFax" placeholder="Fax">
37
            </div>
38
            <div class="form-group col-md-6">
39
                <label for="headName">Head Name</label>
40
                <input type="text" class="form-control" id="headName" name="inputHeadName" placeholder="Head Name">
41
            </div>
42
 
43
            <div class="form-group col-md-6">
44
                <label for="headDesig">Head Designation</label>
45
                <input type="text" class="form-control" id="headDesig" name="inputHeadDesig"
46
                       placeholder="Head Designation">
47
            </div>
48
            <div class="form-group col-md-6">
49
                <label for="headEmail">Head Email</label>
50
                <input type="email" class="form-control" id="headEmail" name="inputHeadEmail" placeholder="Head Email">
51
            </div>
52
            <div class="form-group col-md-6">
53
                <label for="contactPerson">Contact Person</label>
54
                <input type="text" class="form-control" id="contactPerson" name="inputContactPerson"
55
                       placeholder="Contact Person">
56
            </div>
57
            <div class="form-group col-md-6">
58
                <label for="contactEmail">Contact Email</label>
59
                <input type="email" class="form-control" id="contactEmail" name="inputContactEmail"
60
                       placeholder="Contact Email">
61
            </div>
62
            <div class="form-group col-md-6">
63
                <label for="contactFax">Contact Fax</label>
64
                <input type="text" class="form-control" id="contactFax" name="inputContactFax"
65
                       placeholder="Contact Fax">
66
            </div>
67
 
68
            <div class="form-group col-md-6">
69
                <label for="registeredAddress">Registered Address</label>
70
                <input type="text" class="form-control" id="registeredAddress" name="inputRegisteredAddress"
71
                       placeholder="Registered Address">
72
            </div>
73
            <div class="form-group col-md-6">
74
                <label for="communicationAddress">Communication Address</label>
75
                <input type="text" class="form-control" id="communicationAddress" name="inputCommunicationAddress"
76
                       placeholder="Communication Address">
77
            </div>
78
            <div class="form-group col-md-6">
79
                <label for="terms&Conditions">Terms & Conditions</label>
80
                <input type="text" class="form-control" id="terms&Conditions" name="inputTermConditions"
81
                       placeholder="Terms & Conditions">
82
            </div>
83
 
84
 
85
            <div class="form-group col-md-6">
86
                <label for="warehouseLocation">Warehouse Location</label>
87
                <select class="chosen-select" id="warehouseLocation" name="inputWarehouseLocation"
88
                        data-placeholder="Warehouse Location" multiple style="width:500px;" tabindex="4">
89
                    #foreach($warehouseIdAndState in $warehouseIdAndState.entrySet())
90
                        <option value="$warehouseIdAndState.getKey()">$warehouseIdAndState.getValue().getPrefix()
91
                            ($warehouseIdAndState.getValue().getStateName())
92
                        </option>
93
                    #end
94
                </select>
95
            </div>
96
 
97
            <div class="form-group col-md-6">
98
                <label for="state">State</label>
99
                <select class="form-control input-sm" id="stateId" name="stateId" placeholder="State"
100
                        style="height: 60px;">
101
                    <option value="" disabled selected>State</option>
102
                    #foreach($stateName in $state)
103
                        <option value="$stateName.getId()">$stateName.getName()</option>
104
                    #end
105
                </select>
106
            </div>
107
 
108
            <div class="form-group col-md-6">
109
                <label for="pOValidityLimit">PO Validity Days Limit</label>
110
                <input type="number" class="form-control" id="pOValidityLimit" name="inputPOValidityLimit"
111
                       placeholder="PO Validity Days Limit">
112
            </div>
113
 
114
            <div class="form-group col-md-6">
115
                <button type="button" class="btn btn-primary create-supplier-submit" style="margin: 20px;">Submit
116
                </button>
117
 
118
            </div>
119
        </div>
120
    </form>
121
</section>
122
 
123
<script>
124
 
125
    $(document).ready(function () {
126
        $('.chosen-select').chosen({
127
            search_contains: true
128
 
129
        });
130
    });
131
 
132
</script>
28494 tejbeer 133
 
134
 
135