Merge pull request 'Added item quantity in export of production target page' (#414) from ranjith-dev into master
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 16s
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 16s
Reviewed-on: #414
This commit was merged in pull request #414.
This commit is contained in:
@@ -34,7 +34,7 @@ class ProductionPlanExport implements FromArray, WithHeadings, WithMapping
|
|||||||
|
|
||||||
// Add dynamic headings for each date: Target / Produced
|
// Add dynamic headings for each date: Target / Produced
|
||||||
foreach ($this->dates as $date) {
|
foreach ($this->dates as $date) {
|
||||||
$headings[] = $date . ' - Line Capacity';
|
$headings[] = $date . ' - Item Quantity';
|
||||||
$headings[] = $date . ' - Target Plan';
|
$headings[] = $date . ' - Target Plan';
|
||||||
$headings[] = $date . ' - Produced Quantity';
|
$headings[] = $date . ' - Produced Quantity';
|
||||||
}
|
}
|
||||||
@@ -51,7 +51,7 @@ class ProductionPlanExport implements FromArray, WithHeadings, WithMapping
|
|||||||
];
|
];
|
||||||
|
|
||||||
foreach ($this->dates as $date) {
|
foreach ($this->dates as $date) {
|
||||||
$mapped[] = $row['daily_line_capacity'][$date] ?? '-';
|
$mapped[] = $row['daily_hourly_quantity'][$date] ?? '-';
|
||||||
$mapped[] = $row['daily_target_dynamic'][$date] ?? '-';
|
$mapped[] = $row['daily_target_dynamic'][$date] ?? '-';
|
||||||
$mapped[] = $row['produced_quantity'][$date] ?? '-';
|
$mapped[] = $row['produced_quantity'][$date] ?? '-';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user