1
0
forked from poc/pds

Added production quantity update func. in production plan on success production transaction

This commit is contained in:
dhanabalan
2025-04-06 17:38:19 +05:30
parent 448dc59535
commit 0118a19352

View File

@@ -2,6 +2,7 @@
namespace App\Models; namespace App\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\BelongsTo;
@@ -44,10 +45,22 @@ class ProductionQuantity extends Model
$productionPlan = ProductionPlan::where('plant_id', $productionQuantity->plant_id) $productionPlan = ProductionPlan::where('plant_id', $productionQuantity->plant_id)
->where('shift_id', $productionQuantity->shift_id) ->where('shift_id', $productionQuantity->shift_id)
->where('line_id', $productionQuantity->line_id) ->where('line_id', $productionQuantity->line_id)
->whereDate('created_at',today()) ->whereDate('created_at', today())
// ->where('plan_quantity', $productionQuantity->plan_quantity) // ->where('plan_quantity', $productionQuantity->plan_quantity)
->latest()
->first(); ->first();
if (!$productionPlan)
{
$productionPlan = ProductionPlan::where('plant_id', $productionQuantity->plant_id)
->where('shift_id', $productionQuantity->shift_id)
->where('line_id', $productionQuantity->line_id)
->whereDate('created_at', Carbon::yesterday())
// ->where('plan_quantity', $productionQuantity->plan_quantity)
->latest()
->first();
}
if ($productionPlan) { if ($productionPlan) {
$productionPlan->update([ $productionPlan->update([
'production_quantity' => $productionPlan->production_quantity + 1, 'production_quantity' => $productionPlan->production_quantity + 1,