From e3dc94ee0857f71fdb1f635bed4bc56086a361c6 Mon Sep 17 00:00:00 2001 From: Kurt Riddlesperger Date: Mon, 30 Sep 2019 21:10:27 -0500 Subject: [PATCH] views locationcontentsheet: add value --- views/locationcontentsheet.blade.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/views/locationcontentsheet.blade.php b/views/locationcontentsheet.blade.php index a1f67915..3a0c1b26 100644 --- a/views/locationcontentsheet.blade.php +++ b/views/locationcontentsheet.blade.php @@ -57,6 +57,7 @@ {{ $__t('Product') }} + {{ $__t('Value') }} {{ $__t('Amount') }} {{ $__t('Consumend amount') . ' / ' . $__t('Notes') }} @@ -68,6 +69,9 @@ {{ FindObjectInArrayByPropertyValue($products, 'id', $currentStockEntry->product_id)->name }} + + {{ $currentStockEntry->value }} + {{ $currentStockEntry->amount }} {{ $__n($currentStockEntry->amount, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $currentStockEntry->product_id)->qu_id_stock)->name, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $currentStockEntry->product_id)->qu_id_stock)->name_plural) }} @if($currentStockEntry->amount_opened > 0){{ $__t('%s opened', $currentStockEntry->amount_opened) }}@endif