| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | @extends('layout.default') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-01 20:19:18 +02:00
										 |  |  | @section('title', $__t('Stock journal')) | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | @section('activeNav', 'stockjournal') | 
					
						
							|  |  |  | @section('viewJsName', 'stockjournal') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @section('content') | 
					
						
							|  |  |  | <div class="row"> | 
					
						
							|  |  |  | 	<div class="col"> | 
					
						
							| 
									
										
										
										
											2020-04-19 08:51:02 -04:00
										 |  |  | 		<h2 class="title">@yield('title')</h2> | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | 	</div> | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-19 08:51:02 -04:00
										 |  |  | <hr> | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | <div class="row my-3"> | 
					
						
							| 
									
										
										
										
											2019-03-04 17:43:12 +01:00
										 |  |  | 	<div class="col-xs-12 col-md-6 col-xl-3"> | 
					
						
							| 
									
										
										
										
											2020-04-19 08:51:02 -04:00
										 |  |  | 		<div class="input-group mb-3"> | 
					
						
							|  |  |  | 			<div class="input-group-prepend"> | 
					
						
							|  |  |  | 					<span class="input-group-text"><i class="fas fa-search"></i></span> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 			<input type="text"  id="search" class="form-control" placeholder="{{ $__t('Search') }}"> | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2019-03-04 17:43:12 +01:00
										 |  |  | 	</div> | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | 	<div class="col-xs-12 col-md-6 col-xl-3"> | 
					
						
							| 
									
										
										
										
											2020-04-19 08:51:02 -04:00
										 |  |  | 		<div class="input-group mb-3"> | 
					
						
							|  |  |  | 			<div class="input-group-prepend"> | 
					
						
							|  |  |  | 					<span class="input-group-text"><i class="fas fa-filter"></i></span> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 			<select class="form-control" id="product-filter"> | 
					
						
							|  |  |  | 				<option value="all">{{ $__t('All') }}</option> | 
					
						
							|  |  |  | 				@foreach($products as $product) | 
					
						
							|  |  |  | 					<option value="{{ $product->id }}">{{ $product->name }}</option> | 
					
						
							|  |  |  | 				@endforeach | 
					
						
							|  |  |  | 			</select> | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | 	</div> | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <div class="row"> | 
					
						
							|  |  |  | 	<div class="col"> | 
					
						
							|  |  |  | 		<table id="stock-journal-table" class="table table-sm table-striped dt-responsive"> | 
					
						
							|  |  |  | 			<thead> | 
					
						
							|  |  |  | 				<tr> | 
					
						
							| 
									
										
										
										
											2019-03-09 10:49:26 +01:00
										 |  |  | 					<th class="border-right"></th> | 
					
						
							| 
									
										
										
										
											2019-05-01 20:19:18 +02:00
										 |  |  | 					<th>{{ $__t('Product') }}</th> | 
					
						
							|  |  |  | 					<th>{{ $__t('Amount') }}</th> | 
					
						
							|  |  |  | 					<th>{{ $__t('Booking time') }}</th> | 
					
						
							|  |  |  | 					<th>{{ $__t('Booking type') }}</th> | 
					
						
							| 
									
										
										
										
											2019-12-19 12:48:36 -06:00
										 |  |  | 					<th class="@if(!GROCY_FEATURE_FLAG_STOCK_LOCATION_TRACKING) d-none @endif">{{ $__t('Location') }}</th> | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | 				</tr> | 
					
						
							|  |  |  | 			</thead> | 
					
						
							| 
									
										
										
										
											2019-01-05 20:06:35 +01:00
										 |  |  | 			<tbody class="d-none"> | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | 				@foreach($stockLog as $stockLogEntry) | 
					
						
							| 
									
										
										
										
											2020-01-27 19:00:49 +01:00
										 |  |  | 				<tr id="stock-booking-{{ $stockLogEntry->id }}-row" class="@if($stockLogEntry->undone == 1) text-muted @endif stock-booking-correlation-{{ $stockLogEntry->correlation_id }}" data-correlation-id="{{ $stockLogEntry->correlation_id }}"> | 
					
						
							| 
									
										
										
										
											2019-03-09 10:49:26 +01:00
										 |  |  | 					<td class="fit-content border-right"> | 
					
						
							| 
									
										
										
										
											2019-05-01 20:19:18 +02:00
										 |  |  | 						<a class="btn btn-secondary btn-sm undo-stock-booking-button @if($stockLogEntry->undone == 1) disabled @endif" href="#" data-booking-id="{{ $stockLogEntry->id }}" data-toggle="tooltip" data-placement="left" title="{{ $__t('Undo booking') }}"> | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | 							<i class="fas fa-undo"></i> | 
					
						
							|  |  |  | 						</a> | 
					
						
							|  |  |  | 					</td> | 
					
						
							|  |  |  | 					<td> | 
					
						
							| 
									
										
										
										
											2018-11-18 12:58:15 +01:00
										 |  |  | 						<span class="name-anchor @if($stockLogEntry->undone == 1) text-strike-through @endif">{{ FindObjectInArrayByPropertyValue($products, 'id', $stockLogEntry->product_id)->name }}</span> | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | 						@if($stockLogEntry->undone == 1) | 
					
						
							|  |  |  | 						<br> | 
					
						
							| 
									
										
										
										
											2019-05-01 20:19:18 +02:00
										 |  |  | 						{{ $__t('Undone on') . ' ' . $stockLogEntry->undone_timestamp }} | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | 						<time class="timeago timeago-contextual" datetime="{{ $stockLogEntry->undone_timestamp }}"></time> | 
					
						
							|  |  |  | 						@endif | 
					
						
							|  |  |  | 					</td> | 
					
						
							|  |  |  | 					<td> | 
					
						
							| 
									
										
										
										
											2019-09-26 15:25:30 +02:00
										 |  |  | 						<span class="locale-number locale-number-quantity-amount">{{ $stockLogEntry->amount }}</span> {{ $__n($stockLogEntry->amount, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $stockLogEntry->product_id)->qu_id_stock)->name, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $stockLogEntry->product_id)->qu_id_stock)->name_plural) }} | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | 					</td> | 
					
						
							|  |  |  | 					<td> | 
					
						
							|  |  |  | 						{{ $stockLogEntry->row_created_timestamp }} | 
					
						
							|  |  |  | 						<time class="timeago timeago-contextual" datetime="{{ $stockLogEntry->row_created_timestamp }}"></time> | 
					
						
							|  |  |  | 					</td> | 
					
						
							|  |  |  | 					<td> | 
					
						
							| 
									
										
										
										
											2019-05-02 20:20:18 +02:00
										 |  |  | 						{{ $__t($stockLogEntry->transaction_type) }} | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | 					</td> | 
					
						
							| 
									
										
										
										
											2019-12-19 12:48:36 -06:00
										 |  |  | 					<td class="@if(!GROCY_FEATURE_FLAG_STOCK_LOCATION_TRACKING) d-none @endif"> | 
					
						
							|  |  |  | 						{{ FindObjectInArrayByPropertyValue($locations, 'id', $stockLogEntry->location_id)->name }} | 
					
						
							|  |  |  | 					</td> | 
					
						
							| 
									
										
										
										
											2018-10-27 17:26:00 +02:00
										 |  |  | 				</tr> | 
					
						
							|  |  |  | 				@endforeach | 
					
						
							|  |  |  | 			</tbody> | 
					
						
							|  |  |  | 		</table> | 
					
						
							|  |  |  | 	</div> | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | @stop |