Fix bug: "split" ignored quantity set by "repeat" or "plus" plugin
This commit is contained in:
parent
b9c91c0054
commit
c34caf434a
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ sub command :Tab(take,steal,split) ($self, $cart, $command, @) {
|
|||
|
||||
$self->{users} = [];
|
||||
|
||||
my $sum = List::Util::sum(map -$_->{amount}, _select_split($cart));
|
||||
my $sum = List::Util::sum(map -$_->{amount} * $_->{quantity}, _select_split($cart));
|
||||
$self->{split_amount} = $sum;
|
||||
|
||||
return REJECT, "Nothing to split. Add products first." if not $sum;
|
||||
|
|
Loading…
Add table
Reference in a new issue