@extends('inventory::layouts.master') @section('page_content')

{{ $pageTitle }}

@if(isset($urls["addUrl"]))
Add New
@endif @if(isset($urls["editUrl"]) && $record["approvalStatus"] !== "APPROVED")
Edit
@endif @if(isset($urls["listUrl"]))
List
@endif
Print

Items in Exchange Order

@if($showProductSize === "YES")@endif @if(isset($record["purchase_order_items"]) && count($record["purchase_order_items"]) > 0) @foreach($record["purchase_order_items"] as $item) @if($showProductSize === "YES")@endif @endforeach @endif
Product NameProduct SizeQuantity
{{ $item["product"]["name"] }}{{ number_format($item["product"]["itemSize"], 2) }} {{ $item["product"]["measure"]["name"] ?? '' }}{{ number_format($item["quantity"], 2) }} {{ $item["measure"]["name"] }}

Order Information

Exchange Order Number

{{ $record["name"]}}

Department

{{ $record["store"]["department"]["name"]}}

Requested Store

{{ $record["store"]["name"]}}

Exchange(d) Store

{{ $record["source_store"]["name"]}}

Track Order Status

{{ $orderStatus["name"] }}
    @if(isset($orderStatusUpdates) && count($orderStatusUpdates) > 0) @foreach($orderStatusUpdates as $status)
  • @if($status["isActive"]) @endif @if($status["isRed"]) @endif
    {{ $status["name"] }}

    {{ $status["tagline"] }}

  • @endforeach @endif

Track Approval Status

{{ $approvalStatus["name"] }}
    @if(isset($approvalStatusUpdates) && count($approvalStatusUpdates) > 0) @foreach($approvalStatusUpdates as $status)
  • @if($status["isActive"]) @endif @if($status["isRed"]) @endif
    {{ $status["name"] }}

    {{ $status["tagline"] }}

  • @endforeach @endif
@endsection @section('page_css') @endsection @section('page_js') @endsection