@extends('layouts.app') @section('css') @endsection @section('content')

Schedule : edit

Page for edit Schedule

Production Card No : {{ $workOrderDateRange->productionCard->no }}
Date : {{ $workOrderDateRange->productionCard->date }}
BOM No : {{ $workOrderDateRange->productionCard->bom_template_no }}
Finish Goods

List Finish Good for this Production Card

@foreach ($workOrderDateRange->productionCard->headers as $header) @endforeach
Finish Good Code Finish Good Name UoM Color Target Qty Remarks Action
{{ $header->finish_good_code }} {{ $header->finishGood->name }} {{ $header->finishGood->uom_code }} {{ $header->finishGood->color_code }} {{ $header->target_qty }} {{ $header->remarks }}
Work Order Schedule

List Work Order Schedule for this Production Card

Start Date : {{ $workOrderDateRange->formatted_start_date }}
End Date : {{ $workOrderDateRange->formatted_end_date }}

@csrf
@error('finish_good_code')
{{ $message }}
@enderror
@error('divisi_from')
{{ $message }}
@enderror
@error('divisi_destination')
{{ $message }}
@enderror
@error('qty_target')
{{ $message }}
@enderror
@error('output_code')
{{ $message }}
@enderror
{{-- --}} @foreach ($workOrderDateRange->workOrders as $wo) @endforeach
Action Work Order No Finish Good Code Finish Good Name Finish Good UoM Finish Good Color Divisi From Divisi Destination Qty Target Output Code Output Name Output UoM Output Color Show Material Print Action
{{ $wo->id }} {{ $wo->no }} {{ $wo->finish_good_code }} {{ $wo->finishGood->name }} {{ $wo->finishGood->uom_code }} {{ $wo->finishGood->color_code }} {{ $wo->divisi_from }} {{ $wo->divisi_destination }} {{ $wo->qty_target }} {{ $wo->output_code }} {{ $wo->output->name }} {{ $wo->output->uom_code }} {{ $wo->output->color_code }} Print
  • @if (count($wo->transferRequestDetails) < 1)

    Are you sure want to delete this ?

    @csrf @method('DELETE')
    @endif
@foreach ($workOrderDateRange->workOrders as $workOrder) @endforeach @endsection @section('js') @endsection