| Line 35... |
Line 35... |
| 35 |
<section class="wrapper">
|
35 |
<section class="wrapper">
|
| 36 |
<div class="row">
|
36 |
<div class="row">
|
| 37 |
<div class="col-lg-12">
|
37 |
<div class="col-lg-12">
|
| 38 |
<h3 class="page-header"><i class="icon_document_alt"></i>GRN</h3>
|
38 |
<h3 class="page-header"><i class="icon_document_alt"></i>GRN</h3>
|
| 39 |
<ol class="breadcrumb">
|
39 |
<ol class="breadcrumb">
|
| 40 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
40 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">#springMessage("historygrn.home")</a></li>
|
| 41 |
<li><i class="icon_document_alt"></i>HISTORY</li>
|
41 |
<li><i class="icon_document_alt"></i>#springMessage("historygrn.history")</li>
|
| 42 |
</ol>
|
42 |
</ol>
|
| 43 |
</div>
|
43 |
</div>
|
| 44 |
</div>
|
44 |
</div>
|
| 45 |
|
45 |
|
| 46 |
<div id="grn-history-search">
|
46 |
<div id="grn-history-search">
|
| Line 49... |
Line 49... |
| 49 |
<div class="col-lg-9 form-group pull-right">
|
49 |
<div class="col-lg-9 form-group pull-right">
|
| 50 |
<div class="col-lg-6 form-group pull-left top_search form-inline">
|
50 |
<div class="col-lg-6 form-group pull-left top_search form-inline">
|
| 51 |
<div class="input-group">
|
51 |
<div class="input-group">
|
| 52 |
<input type="text" class="form-control" id="grnDateRange" name="dateRange" >
|
52 |
<input type="text" class="form-control" id="grnDateRange" name="dateRange" >
|
| 53 |
<span class="input-group-btn">
|
53 |
<span class="input-group-btn">
|
| 54 |
<button class="btn btn-primary submit" id="grn-history-date-button" type="button">Go!</button>
|
54 |
<button class="btn btn-primary submit" id="grn-history-date-button" type="button">#springMessage("historygrn.go")</button>
|
| 55 |
</span>
|
55 |
</span>
|
| 56 |
</div>
|
56 |
</div>
|
| 57 |
</div>
|
57 |
</div>
|
| 58 |
<div class="col-lg-5 form-group top_search">
|
58 |
<div class="col-lg-5 form-group top_search">
|
| 59 |
<div class="input-group">
|
59 |
<div class="input-group">
|
| 60 |
<input type="text" class="form-control" id="grn-history-search-text"" placeholder="Search by purchase reference..." value="" />
|
60 |
<input type="text" class="form-control" id="grn-history-search-text"" placeholder=#springMessage("historygrn.searchbypurchaserefference") value="" />
|
| 61 |
<span class="input-group-btn">
|
61 |
<span class="input-group-btn">
|
| 62 |
<button class="btn btn-primary submit" id="grn-history-search-button" type="button">Go!</button>
|
62 |
<button class="btn btn-primary submit" id="grn-history-search-button" type="button">#springMessage("historygrn.go")</button>
|
| 63 |
</span>
|
63 |
</span>
|
| 64 |
</div>
|
64 |
</div>
|
| 65 |
</div>
|
65 |
</div>
|
| 66 |
</div>
|
66 |
</div>
|
| 67 |
</div>
|
67 |
</div>
|
| Line 71... |
Line 71... |
| 71 |
<div class="row">
|
71 |
<div class="row">
|
| 72 |
<div class="col-lg-12">
|
72 |
<div class="col-lg-12">
|
| 73 |
<table class="table table-striped table-advance table-hover">
|
73 |
<table class="table table-striped table-advance table-hover">
|
| 74 |
<tbody>
|
74 |
<tbody>
|
| 75 |
<tr>
|
75 |
<tr>
|
| 76 |
<th>Purchase Reference</th>
|
76 |
<th>#springMessage("historygrn.purchasereference")</th>
|
| 77 |
<th>Serialized Quantity</th>
|
77 |
<th>#springMessage("historygrn.serializedquantity")</th>
|
| 78 |
<th>Non Serialized Quantity</th>
|
78 |
<th>#springMessage("historygrn.nonserializedquantity")</th>
|
| 79 |
<th>GRN Completed</th>
|
79 |
<th>#springMessage("historygrn.grncompleted")</th>
|
| 80 |
<th>Created On</th>
|
80 |
<th>#springMessage("historygrn.createdon")</th>
|
| 81 |
</tr>
|
81 |
</tr>
|
| 82 |
#if($grnHistories.size() > 0)
|
82 |
#if($grnHistories.size() > 0)
|
| 83 |
#foreach( $grnHistory in $grnHistories )
|
83 |
#foreach( $grnHistory in $grnHistories )
|
| 84 |
<tr class="grn-details" data="$grnHistory.getId()">
|
84 |
<tr class="grn-details" data="$grnHistory.getId()">
|
| 85 |
<td>$grnHistory.getPurchaseReference()</td>
|
85 |
<td>$grnHistory.getPurchaseReference()</td>
|