Warenwirtschaft: AP-00 bis AP-08 + aktualisierter Entwicklungsplan
Umsetzung der Warenwirtschafts-/Produktmanagement-Erweiterung gemaess Entwicklungsplan V4.0: - AP-00: Regressionsbasis fuer 5.1-Features (ProductPhase51Test) - AP-01: URL-Bugfixes B1/B2 (suppliers/packaging-items, breitere url-Spalten) - AP-04/04.1: iPad-taugliche, vereinheitlichte Tabellen-Aktionen - AP-05: Einstellungen "Allgemein" mit UST-Saetzen (tax_rates) und Lieferzeit-Vorlagen (delivery_times, inkl. Tage-Feld) - AP-06: Lieferanten um Bestellweg, Bestell-Mail/-URL und Lieferzeit erweitert - AP-07/07.1: INCI um Lieferanten-Mehrfachwahl, UST und Lieferzeit erweitert; Lieferanten-Detailansicht im Modal mit pflegbaren INCI-/Verpackungslisten - AP-08: Einkauf um UST-Snapshot, Netto/Brutto-Automatik und Duplizieren erweitert Entwicklungsplan aktualisiert: alle Klaerungspunkte (§5) vom Kunden beantwortet und in die jeweiligen APs eingearbeitet (AP-02/03/09/13/15), neues AP-18 (Hinweise-Doku unter Einstellungen) ergaenzt. Naechster Schritt eindeutig markiert: AP-09 (Produktion auf Hersteller-Rezeptur, kein Fallback, Warnung).
This commit is contained in:
parent
ca3eb663fe
commit
78679e0c55
67 changed files with 3523 additions and 101 deletions
|
|
@ -10,6 +10,7 @@ use Carbon\Carbon;
|
|||
use Illuminate\Database\Eloquent\Collection;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
||||
|
||||
/**
|
||||
* Class Ingredient
|
||||
|
|
@ -56,6 +57,7 @@ class Ingredient extends Model
|
|||
'pos' => 'int',
|
||||
'default_factor' => 'decimal:2',
|
||||
'min_stock_alert' => 'decimal:2',
|
||||
'delivery_time_days' => 'integer',
|
||||
];
|
||||
|
||||
protected $fillable = [
|
||||
|
|
@ -70,6 +72,9 @@ class Ingredient extends Model
|
|||
'default_factor',
|
||||
'min_stock_alert',
|
||||
'material_quality_id',
|
||||
'tax_rate_id',
|
||||
'delivery_time',
|
||||
'delivery_time_days',
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
@ -80,6 +85,24 @@ class Ingredient extends Model
|
|||
return $this->belongsTo(MaterialQuality::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return BelongsTo<TaxRate, $this>
|
||||
*/
|
||||
public function taxRate(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(TaxRate::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return BelongsToMany<Supplier, $this>
|
||||
*/
|
||||
public function suppliers(): BelongsToMany
|
||||
{
|
||||
return $this->belongsToMany(Supplier::class, 'ingredient_supplier')
|
||||
->withPivot(['preferred', 'supplier_sku', 'url'])
|
||||
->withTimestamps();
|
||||
}
|
||||
|
||||
public function products()
|
||||
{
|
||||
return $this->belongsToMany(Product::class, 'product_ingredients')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue