fix bug with sell quantity
This commit is contained in:
parent
5e2ec81d0c
commit
81acf736b1
@ -643,7 +643,7 @@ document.getElementById("addressForm").onsubmit = function (e) {
|
|||||||
const items = cart.map((item) => ({
|
const items = cart.map((item) => ({
|
||||||
id: item.name,
|
id: item.name,
|
||||||
quantity: item.qty,
|
quantity: item.qty,
|
||||||
sellQuantity: getItemSellQuantity(item.name),
|
sellQuantity: item.quantity,
|
||||||
}));
|
}));
|
||||||
const request = {
|
const request = {
|
||||||
userId: user.username,
|
userId: user.username,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user