refactoring on Articles, minor fixes

This commit is contained in:
ludo
2024-01-21 11:42:42 +01:00
parent 560ef61c9f
commit 116f289285
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');
}
}