Merge pull request 'ranjith-dev' (#242) from ranjith-dev into master
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 14s

Reviewed-on: #242
This commit was merged in pull request #242.
This commit is contained in:
2026-09-22 04:27:48 +00:00
2 changed files with 10 additions and 0 deletions

View File

@@ -60,4 +60,9 @@ class Item extends Model
{
return $this->hasMany(ProductCharacteristicsMaster::class);
}
public function processOrders()
{
return $this->hasMany(ProcessOrder::class);
}
}

View File

@@ -161,6 +161,11 @@ class Line extends Model
return $this->hasMany(ProductCharacteristicsMaster::class);
}
public function processOrders()
{
return $this->hasMany(ProcessOrder::class);
}
// public function rejectReasons()
// {
// return $this->hasMany(RejectReason::class, 'line_id', 'id');