Subversion Repositories SmartDukaan

Rev

Rev 32164 | Details | Compare with Previous | 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">
32348 jai.hind 5
				<i class="icon_document_alt"></i>Inactive Suppliers
28300 tejbeer 6
			</h3>
7
			<ol class="breadcrumb">
8
				<li><i class="fa fa-home"></i><a
9
					href="${rc.contextPath}/dashboard">Home</a></li>
32348 jai.hind 10
				<li><i class="icon_document_alt"></i> Supplier</li>
28300 tejbeer 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>
32164 tejbeer 61
                        <button type="button" class="btn btn-primary submit-active" value="submitActive" data-id="$supplierInactive.getId()">Active
28300 tejbeer 62
                        </button>
63
                    </td>
64
 
65
                </tr>
66
                #end
67
 
68
            </tbody>
69
 
70
        </table>
71
    </div>
72
 
73
</section>	
74
 
75
<script type="text/javascript">
76
	$(document).ready(function() {
77
 
78
 
79
      var dtable = $('#supplierInactive').DataTable({
80
             "scrollX": true,
81
 
82
            scrollCollapse: true,
83
              "fixedHeader": true,
84
 
85
 
86
              });
87
 
88
              });
89
</script>