refactoring on Articles, minor fixes

This commit is contained in:
ludo
2024-01-21 11:42:42 +01:00
parent 7e5b1fea89
commit 88a57a9c32
21 changed files with 467 additions and 367 deletions

View File

@@ -12,6 +12,6 @@ class Tax extends Model
public function price()
{
return $this->hasMany(ArticlePrice::class, 'id', 'tax_id');
return $this->hasMany(PriceListValue::class, 'id', 'tax_id');
}
}