Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision f5c44fc1

Von Sven Schöling vor mehr als 4 Jahren hinzugefügt

  • ID f5c44fc1803f8ee3b03ea27bdc657b5f4bf5ee9a
  • Vorgänger bb12dc4d
  • Nachfolger a910619e

Inventory: Stückbehandlung und dispotype no_stock entfernt

Unterschiede anzeigen:

SL/Helper/Inventory.pm
my %parts_to_allocate;
for my $assembly ($part->assemblies) {
next if $assembly->part->dispotype eq 'no_stock';
my $tmpqty = $assembly->part->unit eq 'Stck' ? ceil($assembly->qty * $qty)
: $assembly->qty * $qty;
$parts_to_allocate{ $assembly->part->id } //= 0;
$parts_to_allocate{ $assembly->part->id } += $tmpqty;
$parts_to_allocate{ $assembly->part->id } += $assembly->qty * $qty;
}
my @allocations;

Auch abrufbar als: Unified diff