Daily Production Planning Detail
Product Detail
| Sr No. |
Part No. |
Part Name |
Type of Product |
Model |
Variance |
Unit |
DI QTY |
Current Inventory QTY |
Estimated Total Required |
Estimated Planning QTY |
@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
|
{{ $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 }}
|
@endforeach
@if ($dpp->is_scheduling != '1')
@endif
Loading data, please wait...