Subversion Repositories SmartDukaan

Rev

Rev 23342 | Rev 23886 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23342 Rev 23343
Line 52... Line 52...
52
 
52
 
53
    cb(start, end);
53
    cb(start, end);
54
    
54
    
55
});
55
});
56
</script>
56
</script>
57
</script>
-
 
58
 
57
 
59
<section class="wrapper">            
58
<section class="wrapper">            
60
	<div class="row">
59
	<div class="row">
61
		<div class="col-lg-12">
60
		<div class="col-lg-12">
62
			<h3 class="page-header"><i class="icon_document_alt"></i>GRN</h3>
61
			<h3 class="page-header"><i class="icon_document_alt"></i>GRN</h3>
Line 98... Line 97...
98
	         <div class="row">
97
	         <div class="row">
99
	    		<div class="col-lg-12">
98
	    		<div class="col-lg-12">
100
	    			<table class="table table-striped table-advance table-hover">
99
	    			<table class="table table-striped table-advance table-hover">
101
	    				<tbody>
100
	    				<tbody>
102
	    					<tr>
101
	    					<tr>
103
	    						<th>Purchase Id</th>
-
 
104
	    						<th>Purchase Reference</th>
102
	    						<th>Purchase Reference</th>
105
	    						<th>Serialized Quantity</th>
103
	    						<th>Serialized Quantity</th>
106
	    						<th>Non Serialized Quantity</th>
104
	    						<th>Non Serialized Quantity</th>
107
	    						<th>GRN Completed</th>
105
	    						<th>GRN Completed</th>
108
	    						<th>Created On</th>
106
	    						<th>Created On</th>
109
	    					</tr>
107
	    					</tr>
110
	    					#if($grnHistories.size() > 0)
108
	    					#if($grnHistories.size() > 0)
111
		    					 #foreach( $grnHistory in $grnHistories )
109
		    					 #foreach( $grnHistory in $grnHistories )
112
		    					 	<tr class="grn-details" data="$grnHistory.getId()">
110
		    					 	<tr class="grn-details" data="$grnHistory.getId()">
113
		    					 		<td>$grnHistory.getId()</td>
-
 
114
		    					 		<td>$grnHistory.getPurchaseReference()</td>
111
		    					 		<td>$grnHistory.getPurchaseReference()</td>
115
		    					 		<td>$grnHistory.getSerializedQuantity()</td>
112
		    					 		<td>$grnHistory.getSerializedQuantity()</td>
116
		    					 		<td>$grnHistory.getNonSerializedQuantity()</td>
113
		    					 		<td>$grnHistory.getNonSerializedQuantity()</td>
117
		    					 		#if($grnHistory.getCompleteTimestamp())
114
		    					 		#if($grnHistory.getCompleteTimestamp())
118
		    					 			<td><i class="fa fa-check" aria-hidden="true"></i></td>
115
		    					 			<td><i class="fa fa-check" aria-hidden="true"></i></td>