mirror of
https://github.com/grocy/grocy.git
synced 2025-04-28 17:23:56 +00:00
484 lines
23 KiB
PHP
Executable File
484 lines
23 KiB
PHP
Executable File
@php require_frontend_packages(['datatables', 'animatecss']); @endphp
|
|
|
|
@extends('layout.default')
|
|
|
|
@section('title', $__t('Stock overview'))
|
|
|
|
@push('pageScripts')
|
|
<script src="{{ $U('/viewjs/purchase.js?v=', true) }}{{ $version }}"></script>
|
|
@endpush
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="title-related-links">
|
|
<h2 class="title mr-2 order-0">
|
|
@yield('title')
|
|
</h2>
|
|
<h2 class="mb-0 mr-auto order-3 order-md-1 width-xs-sm-100">
|
|
<span id="info-current-stock"
|
|
class="text-muted small"></span>
|
|
</h2>
|
|
<button class="btn btn-outline-dark d-md-none mt-2 float-right order-1 order-md-3"
|
|
type="button"
|
|
data-toggle="collapse"
|
|
data-target="#related-links">
|
|
<i class="fa-solid fa-ellipsis-v"></i>
|
|
</button>
|
|
<div class="related-links collapse d-md-flex order-2 width-xs-sm-100"
|
|
id="related-links">
|
|
<a class="btn btn-outline-dark responsive-button m-1 mt-md-0 mb-md-0 float-right"
|
|
href="{{ $U('/stockjournal') }}">
|
|
{{ $__t('Journal') }}
|
|
</a>
|
|
<a class="btn btn-outline-dark responsive-button m-1 mt-md-0 mb-md-0 float-right"
|
|
href="{{ $U('/stockentries') }}">
|
|
{{ $__t('Stock entries') }}
|
|
</a>
|
|
@if(GROCY_FEATURE_FLAG_STOCK_LOCATION_TRACKING)
|
|
<a class="btn btn-outline-dark responsive-button m-1 mt-md-0 mb-md-0 float-right"
|
|
href="{{ $U('/locationcontentsheet') }}">
|
|
{{ $__t('Location Content Sheet') }}
|
|
</a>
|
|
@endif
|
|
@if(GROCY_FEATURE_FLAG_STOCK_PRICE_TRACKING)
|
|
<div class="dropdown">
|
|
<a class="btn btn-outline-dark responsive-button m-1 mt-md-0 mb-md-0 float-right dropdown-toggle"
|
|
href="#"
|
|
data-toggle="dropdown">
|
|
{{ $__t('Reports') }}
|
|
</a>
|
|
<div class="dropdown-menu">
|
|
<a class="dropdown-item"
|
|
href="{{ $U('/stockreports/spendings') }}">{{ $__t('Spendings') }}</a>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
<div class="border-top border-bottom my-2 py-1">
|
|
@if (GROCY_FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING)
|
|
<div id="info-expired-products"
|
|
data-status-filter="expired"
|
|
class="error-message status-filter-message responsive-button mr-2"></div>
|
|
<div id="info-overdue-products"
|
|
data-status-filter="overdue"
|
|
class="secondary-message status-filter-message responsive-button mr-2"></div>
|
|
<div id="info-duesoon-products"
|
|
data-next-x-days="{{ $nextXDays }}"
|
|
data-status-filter="duesoon"
|
|
class="warning-message status-filter-message responsive-button mr-2"></div>
|
|
@endif
|
|
<div id="info-missing-products"
|
|
data-status-filter="belowminstockamount"
|
|
class="normal-message status-filter-message responsive-button"></div>
|
|
<div class="float-right mt-1">
|
|
<a class="btn btn-sm btn-outline-info d-md-none"
|
|
data-toggle="collapse"
|
|
href="#table-filter-row"
|
|
role="button">
|
|
<i class="fa-solid fa-filter"></i>
|
|
</a>
|
|
<button id="clear-filter-button"
|
|
class="btn btn-sm btn-outline-info"
|
|
data-toggle="tooltip"
|
|
title="{{ $__t('Clear filter') }}">
|
|
<i class="fa-solid fa-filter-circle-xmark"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row collapse d-md-flex"
|
|
id="table-filter-row">
|
|
<div class="col-12 col-md-6 col-xl-3">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa-solid fa-search"></i></span>
|
|
</div>
|
|
<input type="text"
|
|
id="search"
|
|
class="form-control"
|
|
placeholder="{{ $__t('Search') }}">
|
|
</div>
|
|
</div>
|
|
@if(GROCY_FEATURE_FLAG_STOCK_LOCATION_TRACKING)
|
|
<div class="col-12 col-md-6 col-xl-3">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa-solid fa-filter"></i> {{ $__t('Location') }}</span>
|
|
</div>
|
|
<select class="custom-control custom-select"
|
|
id="location-filter">
|
|
<option value="all">{{ $__t('All') }}</option>
|
|
@foreach($locations as $location)
|
|
<option value="{{ $location->name }}">{{ $location->name }}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
<div class="col-12 col-md-6 col-xl-3">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa-solid fa-filter"></i> {{ $__t('Product group') }}</span>
|
|
</div>
|
|
<select class="custom-control custom-select"
|
|
id="product-group-filter">
|
|
<option value="all">{{ $__t('All') }}</option>
|
|
@foreach($productGroups as $productGroup)
|
|
<option value="{{ $productGroup->name }}">{{ $productGroup->name }}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-md-6 col-xl-3">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa-solid fa-filter"></i> {{ $__t('Status') }}</span>
|
|
</div>
|
|
<select class="custom-control custom-select"
|
|
id="status-filter">
|
|
<option class="bg-white"
|
|
value="all">{{ $__t('All') }}</option>
|
|
@if (GROCY_FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING)
|
|
<option value="duesoon">{{ $__t('Due soon') }}</option>
|
|
<option value="overdue">{{ $__t('Overdue') }}</option>
|
|
<option value="expired">{{ $__t('Expired') }}</option>
|
|
@endif
|
|
<option value="belowminstockamount">{{ $__t('Below min. stock amount') }}</option>
|
|
<option value="instockX">{{ $__t('In-stock products') }}</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col">
|
|
<table id="stock-overview-table"
|
|
class="table table-sm table-striped nowrap w-100">
|
|
<thead>
|
|
<tr>
|
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
|
data-toggle="tooltip"
|
|
data-toggle="tooltip"
|
|
title="{{ $__t('Table options') }}"
|
|
data-table-selector="#stock-overview-table"
|
|
href="#"><i class="fa-solid fa-eye"></i></a>
|
|
</th>
|
|
<th>{{ $__t('Product') }}</th>
|
|
<th class="allow-grouping">{{ $__t('Product group') }}</th>
|
|
<th>{{ $__t('Amount') }}</th>
|
|
<th class="@if(!GROCY_FEATURE_FLAG_STOCK_PRICE_TRACKING) d-none @endif">{{ $__t('Value') }}</th>
|
|
<th class="@if(!GROCY_FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING) d-none @endif allow-grouping">{{ $__t('Next due date') }}</th>
|
|
<th class="d-none">Hidden location</th>
|
|
<th class="d-none">Hidden status</th>
|
|
<th class="d-none">Hidden product group</th>
|
|
<th>{{ $__t('Calories') }} ({{ $__t('Per stock quantity unit') }})</th>
|
|
<th>{{ $__t('Calories') }}</th>
|
|
<th class="allow-grouping">{{ $__t('Last purchased') }}</th>
|
|
<th class="@if(!GROCY_FEATURE_FLAG_STOCK_PRICE_TRACKING) d-none @endif">{{ $__t('Last price') }}</th>
|
|
<th class="allow-grouping">{{ $__t('Min. stock amount') }}</th>
|
|
<th>{{ $__t('Product description') }}</th>
|
|
<th class="allow-grouping">{{ $__t('Parent product') }}</th>
|
|
<th class="allow-grouping">{{ $__t('Default location') }}</th>
|
|
<th>{{ $__t('Product picture') }}</th>
|
|
<th class="@if(!GROCY_FEATURE_FLAG_STOCK_PRICE_TRACKING) d-none @endif">{{ $__t('Average price') }}</th>
|
|
|
|
@include('components.userfields_thead', array(
|
|
'userfields' => $userfields
|
|
))
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody class="d-none">
|
|
@foreach($currentStock as $currentStockEntry)
|
|
<tr id="product-{{ $currentStockEntry->product_id }}-row"
|
|
class="@if(GROCY_FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING && $currentStockEntry->best_before_date < date('Y-m-d 23:59:59', strtotime('-1 days')) && $currentStockEntry->amount > 0) @if($currentStockEntry->due_type == 1) table-secondary @else table-danger @endif @elseif(GROCY_FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING && $currentStockEntry->best_before_date < date('Y-m-d 23:59:59', strtotime('+' . $nextXDays . ' days')) && $currentStockEntry->amount > 0) table-warning @elseif ($currentStockEntry->product_missing) table-info @endif">
|
|
<td class="fit-content border-right">
|
|
<a class="permission-STOCK_CONSUME btn btn-success btn-sm product-consume-button @if($currentStockEntry->amount_aggregated < $currentStockEntry->quick_consume_amount || $currentStockEntry->enable_tare_weight_handling == 1) disabled @endif"
|
|
href="#"
|
|
data-toggle="tooltip"
|
|
data-placement="left"
|
|
title="{{ $__t('Consume %1$s of %2$s', $currentStockEntry->quick_consume_amount_qu_consume . ' ' . $currentStockEntry->qu_consume_name, $currentStockEntry->product_name) }}"
|
|
data-product-id="{{ $currentStockEntry->product_id }}"
|
|
data-product-name="{{ $currentStockEntry->product_name }}"
|
|
data-product-qu-name="{{ $currentStockEntry->qu_stock_name }}"
|
|
data-consume-amount="{{ $currentStockEntry->quick_consume_amount }}">
|
|
<i class="fa-solid fa-utensils"></i> <span class="locale-number locale-number-quantity-amount">{{ $currentStockEntry->quick_consume_amount_qu_consume }}</span>
|
|
</a>
|
|
<a id="product-{{ $currentStockEntry->product_id }}-consume-all-button"
|
|
class="permission-STOCK_CONSUME btn btn-danger btn-sm product-consume-button @if($currentStockEntry->amount_aggregated == 0) disabled @endif"
|
|
href="#"
|
|
data-toggle="tooltip"
|
|
data-placement="right"
|
|
title="{{ $__t('Consume all %s which are currently in stock', $currentStockEntry->product_name) }}"
|
|
data-product-id="{{ $currentStockEntry->product_id }}"
|
|
data-product-name="{{ $currentStockEntry->product_name }}"
|
|
data-product-qu-name="{{ $currentStockEntry->qu_stock_name }}"
|
|
data-consume-amount="@if($currentStockEntry->enable_tare_weight_handling == 1){{$currentStockEntry->tare_weight}}@else{{$currentStockEntry->amount}}@endif"
|
|
data-original-total-stock-amount="{{$currentStockEntry->amount}}">
|
|
<i class="fa-solid fa-utensils"></i> {{ $__t('All') }}
|
|
</a>
|
|
@if(GROCY_FEATURE_FLAG_STOCK_PRODUCT_OPENED_TRACKING)
|
|
<a class="btn btn-success btn-sm product-open-button @if($currentStockEntry->amount_aggregated < $currentStockEntry->quick_open_amount || $currentStockEntry->amount_aggregated == $currentStockEntry->amount_opened_aggregated || $currentStockEntry->enable_tare_weight_handling == 1) disabled @endif"
|
|
href="#"
|
|
data-toggle="tooltip"
|
|
data-placement="left"
|
|
title="{{ $__t('Mark %1$s of %2$s as open', $currentStockEntry->quick_open_amount_qu_consume . ' ' . $currentStockEntry->qu_consume_name, $currentStockEntry->product_name) }}"
|
|
data-product-id="{{ $currentStockEntry->product_id }}"
|
|
data-product-name="{{ $currentStockEntry->product_name }}"
|
|
data-product-qu-name="{{ $currentStockEntry->qu_stock_name }}"
|
|
data-open-amount="{{ $currentStockEntry->quick_open_amount }}">
|
|
<i class="fa-solid fa-box-open"></i> <span class="locale-number locale-number-quantity-amount">{{ $currentStockEntry->quick_open_amount_qu_consume }}</span>
|
|
</a>
|
|
@endif
|
|
<div class="dropdown d-inline-block">
|
|
<button class="btn btn-sm btn-light text-secondary"
|
|
type="button"
|
|
data-toggle="dropdown">
|
|
<i class="fa-solid fa-ellipsis-v"></i>
|
|
</button>
|
|
<div class="table-inline-menu dropdown-menu dropdown-menu-right">
|
|
@if(GROCY_FEATURE_FLAG_SHOPPINGLIST)
|
|
<a class="dropdown-item show-as-dialog-link permission-SHOPPINGLIST_ITEMS_ADD"
|
|
type="button"
|
|
href="{{ $U('/shoppinglistitem/new?embedded&updateexistingproduct&product=' . $currentStockEntry->product_id ) }}">
|
|
<span class="dropdown-item-icon"><i class="fa-solid fa-shopping-cart"></i></span> <span class="dropdown-item-text">{{ $__t('Add to shopping list') }}</span>
|
|
</a>
|
|
<div class="dropdown-divider"></div>
|
|
@endif
|
|
<a class="dropdown-item show-as-dialog-link permission-STOCK_PURCHASE"
|
|
type="button"
|
|
href="{{ $U('/purchase?embedded&product=' . $currentStockEntry->product_id ) }}">
|
|
<span class="dropdown-item-icon"><i class="fa-solid fa-cart-plus"></i></span> <span class="dropdown-item-text">{{ $__t('Purchase') }}</span>
|
|
</a>
|
|
<a class="dropdown-item show-as-dialog-link permission-STOCK_CONSUME @if($currentStockEntry->amount_aggregated <= 0) disabled @endif"
|
|
type="button"
|
|
href="{{ $U('/consume?embedded&product=' . $currentStockEntry->product_id ) }}">
|
|
<span class="dropdown-item-icon"><i class="fa-solid fa-utensils"></i></span> <span class="dropdown-item-text">{{ $__t('Consume') }}</span>
|
|
</a>
|
|
@if(GROCY_FEATURE_FLAG_STOCK_LOCATION_TRACKING)
|
|
<a class="dropdown-item show-as-dialog-link permission-STOCK_TRANSFER @if($currentStockEntry->amount <= 0) disabled @endif"
|
|
type="button"
|
|
href="{{ $U('/transfer?embedded&product=' . $currentStockEntry->product_id) }}">
|
|
<span class="dropdown-item-icon"><i class="fa-solid fa-exchange-alt"></i></span> <span class="dropdown-item-text">{{ $__t('Transfer') }}</span>
|
|
</a>
|
|
@endif
|
|
<a class="dropdown-item show-as-dialog-link permission-STOCK_INVENTORY"
|
|
type="button"
|
|
href="{{ $U('/inventory?embedded&product=' . $currentStockEntry->product_id ) }}">
|
|
<span class="dropdown-item-icon"><i class="fa-solid fa-list"></i></span> <span class="dropdown-item-text">{{ $__t('Inventory') }}</span>
|
|
</a>
|
|
@if(GROCY_FEATURE_FLAG_RECIPES)
|
|
<a class="dropdown-item"
|
|
type="button"
|
|
href="{{ $U('/recipes?search=') }}{{ $currentStockEntry->product_name }}">
|
|
<span class="dropdown-item-text">{{ $__t('Search for recipes containing this product') }}</span>
|
|
</a>
|
|
@endif
|
|
<div class="dropdown-divider"></div>
|
|
<a class="dropdown-item product-name-cell"
|
|
data-product-id="{{ $currentStockEntry->product_id }}"
|
|
type="button"
|
|
href="#">
|
|
<span class="dropdown-item-text">{{ $__t('Product overview') }}</span>
|
|
</a>
|
|
<a class="dropdown-item show-as-dialog-link"
|
|
type="button"
|
|
href="{{ $U('/stockentries?embedded&product=') }}{{ $currentStockEntry->product_id }}"
|
|
data-product-id="{{ $currentStockEntry->product_id }}">
|
|
<span class="dropdown-item-text">{{ $__t('Stock entries') }}</span>
|
|
</a>
|
|
<a class="dropdown-item show-as-dialog-link"
|
|
type="button"
|
|
href="{{ $U('/stockjournal?embedded&product=') }}{{ $currentStockEntry->product_id }}">
|
|
<span class="dropdown-item-text">{{ $__t('Stock journal') }}</span>
|
|
</a>
|
|
<a class="dropdown-item show-as-dialog-link"
|
|
type="button"
|
|
href="{{ $U('/stockjournal/summary?embedded&product_id=') }}{{ $currentStockEntry->product_id }}">
|
|
<span class="dropdown-item-text">{{ $__t('Stock journal summary') }}</span>
|
|
</a>
|
|
<a class="dropdown-item permission-MASTER_DATA_EDIT link-return"
|
|
type="button"
|
|
data-href="{{ $U('/product/') }}{{ $currentStockEntry->product_id }}">
|
|
<span class="dropdown-item-text">{{ $__t('Edit product') }}</span>
|
|
</a>
|
|
<div class="dropdown-divider"></div>
|
|
<a class="dropdown-item"
|
|
type="button"
|
|
href="{{ $U('/product/' . $currentStockEntry->product_id . '/grocycode?download=true') }}">
|
|
{!! str_replace('Grocycode', '<span class="ls-n1">Grocycode</span>', $__t('Download %s Grocycode', $__t('Product'))) !!}
|
|
</a>
|
|
@if(GROCY_FEATURE_FLAG_LABEL_PRINTER)
|
|
<a class="dropdown-item product-grocycode-label-print"
|
|
data-product-id="{{ $currentStockEntry->product_id }}"
|
|
type="button"
|
|
href="#">
|
|
{!! str_replace('Grocycode', '<span class="ls-n1">Grocycode</span>', $__t('Print %s Grocycode on label printer', $__t('Product'))) !!}
|
|
</a>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</td>
|
|
<td class="product-name-cell cursor-link"
|
|
data-product-id="{{ $currentStockEntry->product_id }}">
|
|
{{ $currentStockEntry->product_name }}
|
|
<span class="d-none">{{ $currentStockEntry->product_barcodes }}</span>
|
|
</td>
|
|
<td>
|
|
@if($currentStockEntry->product_group_name !== null){{ $currentStockEntry->product_group_name }}@endif
|
|
</td>
|
|
<td>
|
|
<span class="custom-sort d-none">@if($currentStockEntry->product_no_own_stock == 1){{ $currentStockEntry->amount_aggregated }}@else{{ $currentStockEntry->amount }}@endif</span>
|
|
<span class="@if($currentStockEntry->product_no_own_stock == 1) d-none @endif">
|
|
<span id="product-{{ $currentStockEntry->product_id }}-amount"
|
|
class="locale-number locale-number-quantity-amount">{{ $currentStockEntry->amount }}</span> <span id="product-{{ $currentStockEntry->product_id }}-qu-name">{{ $__n($currentStockEntry->amount, $currentStockEntry->qu_stock_name, $currentStockEntry->qu_stock_name_plural) }}</span>
|
|
<span id="product-{{ $currentStockEntry->product_id }}-opened-amount"
|
|
class="small font-italic">@if($currentStockEntry->amount_opened > 0){{ $__t('%s opened', $currentStockEntry->amount_opened) }}@endif</span>
|
|
</span>
|
|
@if($currentStockEntry->is_aggregated_amount == 1)
|
|
<span class="@if($currentStockEntry->product_no_own_stock == 0) pl-1 @endif text-secondary">
|
|
<i class="fa-solid fa-custom-sigma-sign"></i> <span id="product-{{ $currentStockEntry->product_id }}-amount-aggregated"
|
|
class="locale-number locale-number-quantity-amount">{{ $currentStockEntry->amount_aggregated }}</span> {{ $__n($currentStockEntry->amount_aggregated, $currentStockEntry->qu_stock_name, $currentStockEntry->qu_stock_name_plural, true) }}
|
|
@if($currentStockEntry->amount_opened_aggregated > 0)
|
|
<span id="product-{{ $currentStockEntry->product_id }}-opened-amount-aggregated"
|
|
class="small font-italic">
|
|
{!! $__t('%s opened', '<span class="locale-number locale-number-quantity-amount">' . $currentStockEntry->amount_opened_aggregated . '</span>') !!}
|
|
</span>
|
|
@endif
|
|
</span>
|
|
@endif
|
|
@if(boolval($userSettings['show_icon_on_stock_overview_page_when_product_is_on_shopping_list']))
|
|
@if($currentStockEntry->on_shopping_list)
|
|
<span class="text-muted cursor-normal"
|
|
data-toggle="tooltip"
|
|
title="{{ $__t('This product is currently on a shopping list') }}">
|
|
<i class="fa-solid fa-shopping-cart"></i>
|
|
</span>
|
|
@endif
|
|
@endif
|
|
</td>
|
|
<td>
|
|
<span class="custom-sort d-none">{{$currentStockEntry->value}}</span>
|
|
<span id="product-{{ $currentStockEntry->product_id }}-value"
|
|
class="locale-number locale-number-currency">{{ $currentStockEntry->value }}</span>
|
|
</td>
|
|
<td class="@if(!GROCY_FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING) d-none @endif">
|
|
<span id="product-{{ $currentStockEntry->product_id }}-next-due-date">{{ $currentStockEntry->best_before_date }}</span>
|
|
<time id="product-{{ $currentStockEntry->product_id }}-next-due-date-timeago"
|
|
class="timeago timeago-contextual"
|
|
@if(!empty($currentStockEntry->best_before_date)) datetime="{{ $currentStockEntry->best_before_date }} 23:59:59" @endif></time>
|
|
</td>
|
|
<td class="d-none">
|
|
@foreach(FindAllObjectsInArrayByPropertyValue($currentStockLocations, 'product_id', $currentStockEntry->product_id) as $locationsForProduct)
|
|
xx{{ FindObjectInArrayByPropertyValue($locations, 'id', $locationsForProduct->location_id)->name }}xx
|
|
@endforeach
|
|
</td>
|
|
<td class="d-none">
|
|
@if($currentStockEntry->best_before_date < date('Y-m-d
|
|
23:59:59',
|
|
strtotime('-'
|
|
. '1'
|
|
. ' days'
|
|
))
|
|
&&
|
|
$currentStockEntry->amount > 0) @if($currentStockEntry->due_type == 1) overdue @else expired @endif @elseif($currentStockEntry->best_before_date < date('Y-m-d
|
|
23:59:59',
|
|
strtotime('+'
|
|
.
|
|
$nextXDays
|
|
. ' days'
|
|
))
|
|
&&
|
|
$currentStockEntry->amount > 0) duesoon @endif
|
|
@if($currentStockEntry->amount_aggregated > 0) instockX @endif
|
|
@if ($currentStockEntry->product_missing) belowminstockamount @endif
|
|
</td>
|
|
<td class="d-none">
|
|
xx{{ $currentStockEntry->product_group_name }}xx
|
|
</td>
|
|
<td>
|
|
<span class="locale-number locale-number-quantity-amount">{{ $currentStockEntry->product_calories }}</span>
|
|
</td>
|
|
<td>
|
|
<span class="locale-number locale-number-quantity-amount">{{ $currentStockEntry->calories }}</span>
|
|
</td>
|
|
<td>
|
|
{{ $currentStockEntry->last_purchased }}
|
|
<time class="timeago timeago-contextual"
|
|
datetime="{{ $currentStockEntry->last_purchased }}"></time>
|
|
</td>
|
|
<td class="@if(!GROCY_FEATURE_FLAG_STOCK_PRICE_TRACKING) d-none @endif">
|
|
<span class="custom-sort d-none">{{$currentStockEntry->last_price}}</span>
|
|
@if(!empty($currentStockEntry->last_price))
|
|
<span data-toggle="tooltip"
|
|
data-trigger="hover click"
|
|
data-html="true"
|
|
title="{!! $__t('%1$s per %2$s', '<span class=\'locale-number locale-number-currency\'>' . $currentStockEntry->last_price . '</span>', $currentStockEntry->qu_stock_name) !!}">
|
|
{!! $__t('%1$s per %2$s', '<span class="locale-number locale-number-currency">' . $currentStockEntry->last_price * $currentStockEntry->product_qu_factor_price_to_stock . '</span>', $currentStockEntry->qu_price_name) !!}
|
|
</span>
|
|
@endif
|
|
</td>
|
|
<td>
|
|
<span class="locale-number locale-number-quantity-amount">{{ $currentStockEntry->min_stock_amount }}</span>
|
|
</td>
|
|
<td>
|
|
{!! $currentStockEntry->product_description !!}
|
|
</td>
|
|
<td class="product-name-cell cursor-link"
|
|
data-product-id="{{ $currentStockEntry->parent_product_id }}">
|
|
{{ $currentStockEntry->parent_product_name }}
|
|
</td>
|
|
<td>
|
|
{{ $currentStockEntry->product_default_location_name }}
|
|
</td>
|
|
<td>
|
|
@if(!empty($currentStockEntry->product_picture_file_name))
|
|
<img src="{{ $U('/api/files/productpictures/' . base64_encode($currentStockEntry->product_picture_file_name) . '?force_serve_as=picture&best_fit_width=64&best_fit_height=64') }}"
|
|
loading="lazy">
|
|
@endif
|
|
</td>
|
|
<td class="@if(!GROCY_FEATURE_FLAG_STOCK_PRICE_TRACKING) d-none @endif">
|
|
<span class="custom-sort d-none">{{$currentStockEntry->average_price}}</span>
|
|
@if(!empty($currentStockEntry->average_price))
|
|
<span data-toggle="tooltip"
|
|
data-trigger="hover click"
|
|
data-html="true"
|
|
title="{!! $__t('%1$s per %2$s', '<span class=\'locale-number locale-number-currency\'>' . $currentStockEntry->average_price . '</span>', $currentStockEntry->qu_stock_name) !!}">
|
|
{!! $__t('%1$s per %2$s', '<span class="locale-number locale-number-currency">' . $currentStockEntry->average_price * $currentStockEntry->product_qu_factor_price_to_stock . '</span>', $currentStockEntry->qu_price_name) !!}
|
|
</span>
|
|
@endif
|
|
</td>
|
|
|
|
@include('components.userfields_tbody', array(
|
|
'userfields' => $userfields,
|
|
'userfieldValues' => FindAllObjectsInArrayByPropertyValue($userfieldValues, 'object_id', $currentStockEntry->product_id)
|
|
))
|
|
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal fade"
|
|
id="stockoverview-productcard-modal"
|
|
tabindex="-1">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content text-center">
|
|
<div class="modal-body">
|
|
@include('components.productcard')
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button"
|
|
class="btn btn-secondary"
|
|
data-dismiss="modal">{{ $__t('Close') }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@stop
|