Removed operator_id on production_plan update

This commit is contained in:
dhanabalan
2025-05-10 09:32:26 +05:30
parent 64e74b8d67
commit 2dcb2ac227

View File

@@ -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,
]);
}
});