@extends('layouts.master') @section('page_title', 'Stock Adujustment') @section('title', 'Stock Adjustment - Quantity') @section('main_item', 'Stock Adujustment') @section('sub_item', 'Stock Adjustment - Quantity') @section('content')

Stock Adjustment - Quantity (Invoice Number : #{{ $stock_adjustments->ref_no }})

Business:

{{ $setteing->name }}

Address:

{{ $setteing->landmark }}

Mobile :

{{ $setteing->mobile }}


Reference No:

{{ $stock_adjustments->ref_no }}

Date:

{{ $stock_adjustments->date }}

Adjustment Type:

@if ($stock_adjustments->adjustment_type == 'increase') Increase @elseif($stock_adjustments->adjustment_type == 'decrease') Decrease @endif

Resaon:

{{ $stock_adjustments->reason_note }}

@foreach ($stock_adjustment_items as $item) @php $product = App\Product::find($item->product_id); if (!empty($product->parent_product_id)) { $product = App\Product::find($product->parent_product_id); } @endphp @endforeach
Product Name Quantity Unit Price Line total
{{ $product->product_name }} |@if (!empty($product->attribute_value)) {{ $product->attribute_value }} @endif {{ $item->qty }} {{ number_format($item->unit_price, 2) }} {{ number_format($item->line_total, 2) }}
Sub Total: {{ number_format($stock_adjustments->sub_total, 2) }}
Total Amount Recovered: {{ number_format($stock_adjustments->total_amount_recovered, 2) }}

Activities:

Date Action Created By Resaon Note
{{ $stock_adjustments->date }} Created {{ $stock_adjustments->asignee->username }} {{ $stock_adjustments->reason_note }}
@endsection