Added logic in rework of panel box validation #1022

Merged
jothi merged 1 commits from ranjith-dev into master 2026-09-12 04:11:20 +00:00

View File

@@ -1003,16 +1003,14 @@ class PanelBoxValidationResource extends Resource
->where('inspection_lot_number', $inspecLotNo)
->first();
$alreadyExistsSupplier = PanelBoxValidation::where('serial_number', $serialNumber)
->where('plant_id', $plantId)
$alreadyExistsSupplier = PanelBoxValidation::where('plant_id', $plantId)->where('serial_number', $serialNumber)
->where('panel_box_supplier', $supplierNo)
->first();
if ($alreadyExists) {
Notification::make()
->title('Duplicate Found')
->body(
'This document number and inspection lot number have already been used for this serial number. Please provide a new document number and inspection lot number for rework...'
)
->body('This document number and inspection lot number have already been used for this serial number. Please provide a new document number and inspection lot number for rework...')
->danger()
->send();