Updated process order import function for testing purpose only.
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 10s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 12s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 17s
Laravel Pint / pint (pull_request) Successful in 2m28s
Laravel Larastan / larastan (pull_request) Failing after 4m9s

This commit is contained in:
dhanabalan
2026-03-01 14:29:11 +05:30
parent 2a9df38262
commit d328985b1b

View File

@@ -133,9 +133,9 @@ class ProcessOrderImporter extends Importer
if ($processOrder == null || $processOrder == '') {
$warnMsg[] = "Process order can't be empty!";
}
if ($lineNam == null || $lineNam == '') {
$warnMsg[] = "Line name can't be empty!";
}
// if ($lineNam == null || $lineNam == '') {
// $warnMsg[] = "Line name can't be empty!";
// }
if ($orderQuan == null || $orderQuan == '') {
$warnMsg[] = "Order quantity can't be empty!";
} elseif ($orderQuan == 0 || $orderQuan == '0') {
@@ -171,6 +171,18 @@ class ProcessOrderImporter extends Importer
$plantId = $plant->id;
}
$existing = ProcessOrder::where('plant_id', $plantId)->where('process_order', $processOrder)->first();
if ($existing) {
$warnMsg[] = 'Process Order already exists!';
} else {
$warnMsg[] = 'New process order found!';
}
if (! empty($warnMsg)) {
throw new RowImportFailedException(implode(', ', $warnMsg));
}
$itemCode = Item::where('code', $iCode)->first();
if (! $itemCode) {
$warnMsg[] = 'Item code not found!';
@@ -221,14 +233,6 @@ class ProcessOrderImporter extends Importer
$updatedBy = Filament::auth()->user()->name;
}
$existing = ProcessOrder::where('plant_id', $plantId)->where('process_order', $processOrder)->first();
if ($existing) {
$warnMsg[] = 'Process Order already exists!';
} else {
$warnMsg[] = 'New process order found!';
}
if (! empty($warnMsg)) {
throw new RowImportFailedException(implode(', ', $warnMsg));
}