Refactored alignments on resource page
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Gemini PR Review / Gemini PR Review (pull_request) Has been cancelled
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Has been cancelled
Laravel Larastan / larastan (pull_request) Has been cancelled
Laravel Pint / pint (pull_request) Has been cancelled

This commit is contained in:
dhanabalan
2026-03-11 19:36:48 +05:30
parent 658db00ac8
commit e20892cc83

View File

@@ -2,25 +2,22 @@
namespace App\Filament\Pages;
use App\Models\CustomerPoMaster;
use App\Models\InvoiceValidation;
use App\Models\Item;
use App\Models\NotInStock;
use App\Models\Plant;
use App\Models\StickerMaster;
use App\Models\StockDataMaster;
use App\Models\WireMasterPacking;
use Carbon\Carbon;
use Filament\Actions\Action;
use Filament\Actions\Concerns\InteractsWithActions;
use Filament\Facades\Filament;
use Filament\Pages\Page;
use Filament\Forms\Form;
use Filament\Forms\Concerns\InteractsWithForms;
use Filament\Forms\Components\Section;
use Filament\Forms\Components\Select;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Concerns\InteractsWithForms;
use Filament\Forms\Form;
use Filament\Notifications\Notification;
use Filament\Actions\Action;
use Filament\Actions\Concerns\InteractsWithActions;
use Filament\Pages\Page;
use Illuminate\Support\Facades\Auth;
class CycleCount extends Page
@@ -28,28 +25,40 @@ class CycleCount extends Page
protected static ?string $navigationIcon = 'heroicon-o-document-text';
protected static string $view = 'filament.pages.cycle-count';
protected static ?string $navigationGroup = 'Cycle Count Software';
use InteractsWithForms;
use InteractsWithActions;
use InteractsWithForms;
public $serialNumber;
public $location, $bin;
public $location;
public $bin;
public $snoCount = 0;
public $state = [];
public $plantId, $itemCode, $batch, $docNo, $quantity, $sNo;
public $plantId;
public $itemCode;
public $batch;
public $docNo;
public $quantity;
public $sNo;
public array $filters = [];
public function mount()
{
$this->form->fill([
'plant_id'=>$this->plantId,
'plant_id' => $this->plantId,
'pallet_quantity' => 0,
]);
}
@@ -66,6 +75,7 @@ class CycleCount extends Page
->reactive()
->options(function (callable $get) {
$userHas = Filament::auth()->user()->plant_id;
return ($userHas && strlen($userHas) > 0) ? Plant::where('id', $userHas)->pluck('name', 'id')->toArray() : Plant::pluck('name', 'id')->toArray();
})
->required(),
@@ -95,7 +105,7 @@ class CycleCount extends Page
// ->reactive()
// ->readOnly(),
])
->columns(4)
->columns(4),
]);
}
@@ -123,8 +133,7 @@ class CycleCount extends Page
// $pattern2 = '/^[^|]+\|[^|]+\|[^|]+\|?$/'; Optional Pipeline at end
if (!preg_match($pattern1, $value) && !preg_match($pattern2, $value) && !preg_match($pattern3, $value))
{
if (! preg_match($pattern1, $value) && ! preg_match($pattern2, $value) && ! preg_match($pattern3, $value)) {
Notification::make()
->danger()
->title('Invalid QR Format')
@@ -142,8 +151,7 @@ class CycleCount extends Page
return;
}
if(preg_match($pattern1, $value))
{
if (preg_match($pattern1, $value)) {
$value = rtrim($value, '#');
$parts = explode('#', $value);
@@ -152,10 +160,9 @@ class CycleCount extends Page
$this->docNo = $parts[2] ?? null;
$this->quantity = $parts[3] ?? null;
if (strlen($this->itemCode) < 6)
{
if (strlen($this->itemCode) < 6) {
Notification::make()
->title("Unknown Item Code")
->title('Unknown Item Code')
->body("Item Code should contain minimum 6 digits '$this->itemCode'")
->danger()
->send();
@@ -165,11 +172,11 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
elseif(!ctype_alnum($this->itemCode)){
} elseif (! ctype_alnum($this->itemCode)) {
Notification::make()
->title("Unknown Item Code")
->title('Unknown Item Code')
->body("Item Code should contain alpha-numeric values '$this->itemCode'")
->danger()
->duration(5000)
@@ -180,13 +187,13 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
elseif($this->batch != '' || $this->batch != null){
if(strlen($this->batch) < 5){
return;
} elseif ($this->batch != '' || $this->batch != null) {
if (strlen($this->batch) < 5) {
Notification::make()
->title("Unknown Batch")
->title('Unknown Batch')
->body("Batch should contain minimum 5 digits '$this->batch'")
->danger()
->duration(5000)
@@ -197,13 +204,13 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
}
elseif(strlen($this->docNo) < 5){
} elseif (strlen($this->docNo) < 5) {
Notification::make()
->title("Unknown Doc No")
->title('Unknown Doc No')
->body("Doc No should contain minimum 5 digits '$this->docNo'")
->danger()
->duration(5000)
@@ -214,11 +221,11 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
elseif (!ctype_digit($this->quantity)) {
} elseif (! ctype_digit($this->quantity)) {
Notification::make()
->title("Unknown Quantity")
->title('Unknown Quantity')
->body("Quantity must be an integer value '$this->quantity'")
->danger()
->duration(5000)
@@ -229,14 +236,15 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
$item = Item::where('code', $this->itemCode)->first();
if(!$item){
if (! $item) {
Notification::make()
->title("Item Code Not Found")
->title('Item Code Not Found')
->body("Item code not found '$this->itemCode'")
->danger()
->duration(5000)
@@ -247,6 +255,7 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
@@ -256,9 +265,9 @@ class CycleCount extends Page
$plantCode = $plantCo->code;
if(!$itemCodeAgaPlant){
if (! $itemCodeAgaPlant) {
Notification::make()
->title("Item Code Not Found")
->title('Item Code Not Found')
->body("Item code '$this->itemCode' not found against plant code '$plantCode'")
->danger()
->duration(5000)
@@ -269,15 +278,16 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
$stickerExists = StickerMaster::where('item_id', $item->id)->first();
if (!$stickerExists) {
if (! $stickerExists) {
Notification::make()
->title("Unknown Sticker Master")
->title('Unknown Sticker Master')
->body("Item code not found in sticker master '{$this->itemCode}'")
->danger()
->duration(5000)
@@ -297,10 +307,10 @@ class CycleCount extends Page
->where('item_id', $item->id)
->first();
if (!$stickerExists) {
if (! $stickerExists) {
Notification::make()
->title("Unknown Sticker Master")
->title('Unknown Sticker Master')
->body("Item code not found in sticker master '{$this->itemCode}' in plant '{$plantCode}'")
->danger()
->duration(5000)
@@ -322,7 +332,7 @@ class CycleCount extends Page
->where('location', $location)
->first();
if(!$locationExist){
if (! $locationExist) {
$existingInOtherLocation = NotInStock::where('plant_id', $plantId)
->where('serial_number', $this->sNo)
@@ -361,8 +371,8 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
])
'quantity' => $this->quantity,
]),
])
->send();
@@ -372,6 +382,7 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
@@ -380,7 +391,7 @@ class CycleCount extends Page
->where('location', $location)
->first();
if(!$locationAgaPlant){
if (! $locationAgaPlant) {
$existingInOtherLocation = NotInStock::where('plant_id', $plantId)
->where('serial_number', $this->sNo)
@@ -418,8 +429,8 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
])
'quantity' => $this->quantity,
]),
])
->send();
@@ -439,7 +450,7 @@ class CycleCount extends Page
->where('sticker_master_id', $stickerMasterId)
->first();
if(!$locationItemAgaPlant){
if (! $locationItemAgaPlant) {
$existingInOtherLocation = NotInStock::where('plant_id', $plantId)
->where('serial_number', $this->sNo)
@@ -477,7 +488,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -530,7 +541,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -583,7 +594,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -611,7 +622,7 @@ class CycleCount extends Page
// $remainingStock = $stock->quantity - $currentScanned;
if($stock->scanned_status == 'Scanned'){
if ($stock->scanned_status == 'Scanned') {
Notification::make()
->title('Duplicate Serial Number')
@@ -629,7 +640,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -640,6 +651,7 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
@@ -667,12 +679,10 @@ class CycleCount extends Page
'bin' => $bin,
'batch' => $this->batch,
'scanned_quantity' => $newScannedQty,
'scanned_status' => $status
'scanned_status' => $status,
]);
$this->dispatch('refreshSfgData', location: $location, plantId: $plantId, itemCode: $this->itemCode, docNo: $this->docNo);
}
else
{
} else {
Notification::make()
->title('Unknown : Data Found')
->body("No matching record found for the given Location, Item Code, Batch, and Document Number under Plant Code '$plantCode' in stock data master.")
@@ -688,7 +698,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -705,9 +715,7 @@ class CycleCount extends Page
return;
}
}
else if(preg_match($pattern2, $value))
{
} elseif (preg_match($pattern2, $value)) {
$value = rtrim($value, '|');
$parts = explode('|', $value);
@@ -720,10 +728,9 @@ class CycleCount extends Page
$this->sNo = $parts[2];
}
if (strlen($this->itemCode) < 6)
{
if (strlen($this->itemCode) < 6) {
Notification::make()
->title("Unknown Item Code")
->title('Unknown Item Code')
->body("Item Code should contain minimum 6 digits '$this->itemCode'")
->danger()
->send();
@@ -734,11 +741,11 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
elseif(!ctype_alnum($this->itemCode)){
} elseif (! ctype_alnum($this->itemCode)) {
Notification::make()
->title("Unknown Item Code")
->title('Unknown Item Code')
->body("Item Code should contain alpha-numeric values '$this->itemCode'")
->danger()
->duration(5000)
@@ -749,20 +756,20 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
elseif(strlen($this->batch) < 5){
} elseif (strlen($this->batch) < 5) {
Notification::make()
->title("Unknown Batch")
->title('Unknown Batch')
->body("Batch should contain minimum 5 digits '$this->batch'")
->danger()
->duration(5000)
->send();
return;
}
elseif(strlen($this->sNo) < 9){
} elseif (strlen($this->sNo) < 9) {
Notification::make()
->title("Unknown Serial Number")
->title('Unknown Serial Number')
->body("Serial Number should contain minimum 9 digits '$this->sNo'")
->danger()
->duration(5000)
@@ -773,11 +780,11 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
elseif(!ctype_alnum($this->sNo)){
} elseif (! ctype_alnum($this->sNo)) {
Notification::make()
->title("Unknown Serial Number")
->title('Unknown Serial Number')
->body("Serial Number should contain alpha-numeric values '$this->sNo'")
->danger()
->duration(5000)
@@ -788,14 +795,15 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
$item = Item::where('code', $this->itemCode)->first();
if(!$item){
if (! $item) {
Notification::make()
->title("Item Code Not Found")
->title('Item Code Not Found')
->body("Item code not found '$this->itemCode'")
->danger()
->duration(5000)
@@ -806,6 +814,7 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
@@ -815,9 +824,9 @@ class CycleCount extends Page
$plantCode = $plantCo->code;
if(!$itemCodeAgaPlant){
if (! $itemCodeAgaPlant) {
Notification::make()
->title("Item Code Not Found")
->title('Item Code Not Found')
->body("Item code '$this->itemCode' not found against plant code '$plantCode'")
->danger()
->duration(5000)
@@ -828,15 +837,16 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
$stickerExists = StickerMaster::where('item_id', $item->id)->first();
if (!$stickerExists) {
if (! $stickerExists) {
Notification::make()
->title("Unknown Sticker Master")
->title('Unknown Sticker Master')
->body("Item code not found in sticker master '{$this->itemCode}'")
->danger()
->duration(5000)
@@ -856,9 +866,9 @@ class CycleCount extends Page
->where('item_id', $item->id)
->first();
if (!$stickerExists) {
if (! $stickerExists) {
Notification::make()
->title("Unknown Sticker Master")
->title('Unknown Sticker Master')
->body("Item code not found in sticker master '{$this->itemCode}' in plant '{$plantCode}'")
->danger()
->duration(5000)
@@ -869,6 +879,7 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
@@ -878,7 +889,7 @@ class CycleCount extends Page
->where('type', '1')
->first();
if(!$locationExist){
if (! $locationExist) {
$existingInOtherLocation = NotInStock::where('plant_id', $plantId)
->where('serial_number', $this->sNo)
@@ -917,7 +928,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -937,7 +948,7 @@ class CycleCount extends Page
->where('type', '1')
->first();
if(!$locationAgaPlant){
if (! $locationAgaPlant) {
$existingInOtherLocation = NotInStock::where('plant_id', $plantId)
->where('serial_number', $this->sNo)
@@ -976,7 +987,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -991,7 +1002,7 @@ class CycleCount extends Page
return;
}
if($bin == '' || $bin == null){
if ($bin == '' || $bin == null) {
Notification::make()
->title('Unknown Bin')
->body("Bin can't be empty!")
@@ -1010,7 +1021,7 @@ class CycleCount extends Page
$serialExist = StockDataMaster::where('serial_number', $this->sNo)->where('type', '1')->first();
if(!$serialExist){
if (! $serialExist) {
$existingInOtherLocation = NotInStock::where('plant_id', $plantId)
->where('serial_number', $this->sNo)
@@ -1049,7 +1060,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -1066,7 +1077,7 @@ class CycleCount extends Page
$serialAgaPlant = StockDataMaster::where('plant_id', $plantId)->where('serial_number', $this->sNo)->where('type', '1')->first();
if(!$serialAgaPlant){
if (! $serialAgaPlant) {
$sNoExist = NotInStock::where('plant_id', $plantId)
->where('serial_number', $this->sNo)
@@ -1105,7 +1116,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -1159,7 +1170,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -1213,7 +1224,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -1230,7 +1241,7 @@ class CycleCount extends Page
if ($serialAgaPlant->batch != '' || $serialAgaPlant->batch != null) {
if($serialAgaPlant->batch != $this->batch){
if ($serialAgaPlant->batch != $this->batch) {
$sNoExistLocation = NotInStock::where('plant_id', $plantId)
->where('serial_number', $this->sNo)
@@ -1269,7 +1280,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -1326,14 +1337,13 @@ class CycleCount extends Page
// }
// }
$serial = StockDataMaster::where('plant_id', $plantId)
->where('serial_number', $this->sNo)
->where('location', $location)
->where('type', '1')
->first();
if($serial->quantity == '' || $serial->quantity == null){
if ($serial->quantity == '' || $serial->quantity == null) {
Notification::make()
->warning()
->title('Unknown Quantity')
@@ -1349,8 +1359,7 @@ class CycleCount extends Page
]);
return;
}
elseif ((int) $serial->quantity > 1) {
} elseif ((int) $serial->quantity > 1) {
Notification::make()
->warning()
->title('Invalid Quantity')
@@ -1370,7 +1379,7 @@ class CycleCount extends Page
if ($serial) {
if($serial->scanned_status == 'Scanned'){
if ($serial->scanned_status == 'Scanned') {
Notification::make()
->title('Duplicate Serial Number')
@@ -1388,7 +1397,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -1399,6 +1408,7 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
@@ -1409,7 +1419,7 @@ class CycleCount extends Page
'scanned_status' => 'Scanned',
'scanned_quantity' => '1',
'updated_at' => now(),
'updated_by' => $operatorName
'updated_by' => $operatorName,
]);
$this->form->fill([
@@ -1421,9 +1431,7 @@ class CycleCount extends Page
$this->dispatch('refreshSfgNonData', location: $location, plantId: $plantId, serialNumber: $this->sNo, itemCode: $this->itemCode);
}
}
else
{
} else {
$serNo = $value;
if (! preg_match('/^([a-zA-Z0-9]{6,})\|([1-9][a-zA-Z0-9]{8,})(?:\/[MmPp])?\|?$/', $serNo, $matches)) {
@@ -1489,7 +1497,7 @@ class CycleCount extends Page
->where('code', $itemCode)
->first();
if(!$item){
if (! $item) {
Notification::make()
->title('Invalid Item Code')
->body("Item code '$this->itemCode' not found for the type FG against plant code '$plantCode'.")
@@ -1502,6 +1510,7 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
@@ -1511,7 +1520,7 @@ class CycleCount extends Page
->where('item_id', $itemId)
->first();
if(!$stickerMaster){
if (! $stickerMaster) {
Notification::make()
->title('Invalid Item Code')
->body("Item code '$this->itemCode' not found in sticker master for the type FG against plant code '$plantCode'.")
@@ -1524,6 +1533,7 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
@@ -1533,7 +1543,7 @@ class CycleCount extends Page
->where('type', '0')
->first();
if(!$locationExist){
if (! $locationExist) {
$existingInOtherLocation = NotInStock::where('plant_id', $plantId)
->where('serial_number', $this->sNo)
@@ -1572,7 +1582,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -1592,7 +1602,7 @@ class CycleCount extends Page
->where('type', '0')
->first();
if(!$locationAgaPlant){
if (! $locationAgaPlant) {
$existingInOtherLocation = NotInStock::where('plant_id', $plantId)
->where('serial_number', $this->sNo)
@@ -1631,7 +1641,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -1704,6 +1714,7 @@ class CycleCount extends Page
'bin' => $bin,
'qr_code' => null,
]);
return;
}
@@ -1765,7 +1776,7 @@ class CycleCount extends Page
return;
}
if($record->scanned_status == 'Scanned'){
if ($record->scanned_status == 'Scanned') {
Notification::make()
->title('Duplicate Serial Number')
@@ -1783,7 +1794,7 @@ class CycleCount extends Page
'stickerMasterId' => $stickerMasterId,
'batch' => $this->batch,
'docNo' => $this->docNo,
'quantity' => $this->quantity
'quantity' => $this->quantity,
]),
])
->send();
@@ -1839,8 +1850,7 @@ class CycleCount extends Page
$hasMotorQr = $record->stickerMasterRelation->pack_slip_motor ?? null;
$hasPumpQr = $record->stickerMasterRelation->pack_slip_pump ?? null;
$hasPumpSetQr = $record->stickerMasterRelation->pack_slip_pumpset ?? null;
}
else {
} else {
if (! $hasPumpSetQr && ! $hasPumpQr) {
$hasPumpQr = $record->stickerMasterRelation->pack_slip_pump ?? null;
}
@@ -2044,8 +2054,7 @@ class CycleCount extends Page
]);
return;
}
elseif ($isMarkPs) {
} elseif ($isMarkPs) {
if (! $hasPumpSetQr) {
Notification::make()
->title('Unknown: Pump Set QR')
@@ -2155,6 +2164,7 @@ class CycleCount extends Page
->title('Sticker Master Not Found')
->danger()
->send();
return;
}
$existingRecord = NotInStock::where('serial_number', $this->serialNumber)
@@ -2174,6 +2184,7 @@ class CycleCount extends Page
->body("Serial number '{$this->serialNumber}' already exists with Item Code '{$existingItemCode}'.")
->danger()
->send();
return;
}
}
@@ -2186,12 +2197,13 @@ class CycleCount extends Page
})
->first();
if($record){
if ($record) {
Notification::make()
->title('Duplicate : Item Code')
->body("Item Code '$itemCode' with Serial number '$this->serialNumber' already exist in not in stock table!")
->danger()
->send();
return;
}
@@ -2215,5 +2227,4 @@ class CycleCount extends Page
{
return Auth::check() && Auth::user()->can('view cycle count page');
}
}