@extends('layouts.app') @section('title') PRODUCTION PLANNING VIEW @endsection @section('button') Back @endsection @section('content')
Product Detail
@php $product_ids = []; @endphp @foreach ($dppps as $dppp) @php $product_ids[] = [ 'id' => $dppp->product_id, 'di_qty' => $dppp->di_qty, 'qty' => $dppp->est_plan_qty, ]; @endphp @endforeach
Sr No. Part No. Part Name Type of Product Model Variance Unit DI QTY Current Inventory QTY Estimated Total Required Estimated Planning QTY
{{ $loop->iteration }} {{ $dppp->products->part_no ?? '' }} {{ $dppp->products->part_name ?? '' }} {{ $dppp->products->type_of_products->type ?? '' }} {{ $dppp->products->model ?? '' }} {{ $dppp->products->variance ?? '' }} {{ $dppp->products->units->name ?? '' }} {{ $dppp->di_qty }} {{ $dppp->inventory_qty }} {{ $dppp->total_required_qty }} {{ $dppp->est_plan_qty }}
Circuit/Kanban
@foreach ($dpcps as $dpcp) @endforeach
Sr No. Proceeded Part No. Part Name Model Variance Type of Product Unit Unit QTY Total Required QTY Current Inventory QTY Estimated Planning QTY
{{ $loop->iteration }} scheduling_procees == 'true') disabled /> {{ $dpcp->products->part_no }} {{ $dpcp->products->part_name ?? '' }} {{ $dpcp->products->model ?? '' }} {{ $dpcp->products->variance ?? '' }} {{ $dpcp->products->type_of_products->type ?? '' }} {{ $dpcp->products->units->name ?? '' }} {{ $dpcp->subpart_qty }} {{ $dpcp->total_required_qty }} {{ $dpcp->inventory_qty }}
PRODUCTION SCHEDULING
Sr No. Planned PO No. Part No. Part Name Model Variance Type of Product Process Process No. CT (s) Planned Date Operator Machine Total Planned QTY
@endsection