From 2dcb2ac227873b08f51a775fdeba856a549526e5 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Sat, 10 May 2025 09:32:26 +0530 Subject: [PATCH] Removed operator_id on production_plan update --- app/Models/ProductionQuantity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/ProductionQuantity.php b/app/Models/ProductionQuantity.php index 85f4ab069..5b7a1acf7 100644 --- a/app/Models/ProductionQuantity.php +++ b/app/Models/ProductionQuantity.php @@ -77,7 +77,7 @@ class ProductionQuantity extends Model $productionPlan->update([ 'production_quantity' => $productionPlan->production_quantity + 1, 'updated_at' => now(), - 'operator_id'=> $operatorName, + // 'operator_id'=> $operatorName, ]); } });