Take in consideration the total product count.

This commit is contained in:
MobiusDevelopment
2021-03-03 23:28:49 +00:00
parent 91ee74fc20
commit 009fccfc2a
19 changed files with 19 additions and 19 deletions

View File

@ -173,7 +173,7 @@ public class MultisellData implements IXmlReader
continue;
}
totalPrice += item.getReferencePrice();
totalPrice += (item.getReferencePrice() * count);
}
products.add(product);