Merge branch 'WarehouseShippingNote/improve' into 'master'

fixed

See merge request fronk/thetool!1177
This commit is contained in:
Luca Haid
2025-04-07 14:55:08 +00:00

View File

@@ -81,6 +81,8 @@ class ADBRimoFcpController extends TTCrud {
foreach ($input['data'] as $loc) {
$fcpName = trim($loc['FCP cluster name'] ?? '');
$extId = $loc['ExternalID'] ?? null;
if ($extId === null) $extId = $loc['External ID'] ?? null;
if ($fcpName === '') { $counts['noFCP']++; continue; }
if (!isset($fcpsByName[$fcpName])) { $counts['fcpNF']++; continue; }