Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
28300 tejbeer 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>Supplier In Actives
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> Seller</li>
11
			</ol>
12
		</div>
13
	</div>
14
 
15
 
16
 
17
 
18
 <div class="col-lg-12">
19
        <table class="table table-border table-condensed table-bordered" id="supplierInactive">
20
 
21
            <thead class="row htable" style="background:#F5F5F5;">
22
 
23
            <tr>
24
                 <th>Id</th>
25
                 <th>Name</th>
26
                <th>Phone</th>
27
                <th>GSTN</th>
28
 
29
                <th>PO validity Days Limit</th>
30
                <th>Head</th>
31
                <th>Head Email</th>
32
                <th>Contact Person</th>
33
                <th>Contact Phone</th>
34
                 <th>Registered Address</th>
35
                <th>Communication Address</th>
36
                <th>In Active</th>
37
 
38
            </tr>
39
            </thead>
40
            <tbody>
41
                #foreach($supplierInactive in $supplierInactives )
42
                <tr>
43
 
44
                  <td>$supplierInactive.getId()</td>
45
                  <td>$supplierInactive.getName()</td>
46
                  <td>$supplierInactive.getPhone()</td>
47
                  #if($supplierInactive.getGstin())
48
                  <td>$supplierInactive.getGstin()</td>
49
                  #else
50
                   <td>Not Available</td>
51
                  #end
52
 
53
                  <td>$supplierInactive.getPoValidityLimit()</td>
54
                  <td>$supplierInactive.getHeadName()</td>
55
                  <td>$supplierInactive.getHeadEmail()</td>
56
                  <td>$supplierInactive.getContactName()</td>
57
                  <td>$supplierInactive.getContactPhone()</td>
58
                  <td>$supplierInactive.getRegisteredAddress()</td>
59
                  <td>$supplierInactive.getCommunicationAddress()</td>
60
                    <td>
61
                        <button type="submit" form="form2" value="submitActive" data-id="$supplierInactive.getId()"
62
                                style="background:#80ff00;"
63
                                class="submit-active">Active
64
                        </button>
65
                    </td>
66
 
67
                </tr>
68
                #end
69
 
70
            </tbody>
71
 
72
        </table>
73
    </div>
74
 
75
</section>	
76
 
77
<script type="text/javascript">
78
	$(document).ready(function() {
79
 
80
 
81
      var dtable = $('#supplierInactive').DataTable({
82
             "scrollX": true,
83
 
84
            scrollCollapse: true,
85
              "fixedHeader": true,
86
 
87
 
88
              });
89
 
90
              });
91
</script>