removed item quantity column in production target plan table #1101

Merged
jothi merged 1 commits from ranjith-dev into master 2026-09-26 09:08:07 +00:00

View File

@@ -21,17 +21,17 @@
{{-- <th colspan="3" class="text-center">
{{ $date }}
</th> --}}
<th colspan="3" class="text-center border-r-4 border-gray-400">
<th colspan="2" class="text-center border-r-4 border-gray-400">
{{ $date }}
</th>
@endforeach
</tr>
<tr>
@foreach($dates as $date)
<th class="border px-4 py-2 whitespace-nowrap">Item Quantity</th>
<th class="border px-4 py-2 whitespace-nowrap">Target Plan</th>
{{-- <th class="border px-4 py-2 whitespace-nowrap">Item Quantity</th> --}}
<th class="border px-4 py-2 whitespace-nowrap">Plan Quantity</th>
<th class="border px-4 py-2 whitespace-nowrap border-r-4 border-gray-400">
Produced Quantity
Actual Quantity
</th>
{{-- <th class="border px-4 py-2 whitespace-nowrap">Produced Quantity</th> --}}
@@ -55,14 +55,14 @@
@foreach($dates as $date)
@if(in_array($date, $leaveDates))
<td class="border px-4 py-2 whitespace-nowrap">-</td>
{{-- <td class="border px-4 py-2 whitespace-nowrap">-</td> --}}
<td class="border px-4 py-2 whitespace-nowrap">-</td>
<td class="border px-4 py-2 whitespace-nowrap">-</td>
@else
{{-- <td class="border px-4 py-2 whitespace-nowrap">{{ $record['daily_target'] ?? '-' }}</td> --}}
<td class="border px-4 py-2 whitespace-nowrap">
{{-- <td class="border px-4 py-2 whitespace-nowrap">
{{ $record['daily_hourly_quantity'][$date] ?? '-' }}
</td>
</td> --}}
<td class="border px-4 py-2 whitespace-nowrap">
{{ $record['daily_target_dynamic'][$date] ?? '-' }}
</td>