Advertisement
Guest User

Buy Order with order total - 9gustin.com

a guest
Jun 13th, 2021
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const buyOrder = {
  2.   user: "9gustin",
  3.   date: "2021-06-13T18:00:00.407Z",
  4.   currency: "ARS",
  5.   total: 28,
  6.   products: [
  7.     {
  8.       product: "Orange",
  9.       unitPrice: 10,
  10.       quantity: 2,
  11.       total: 20
  12.     },
  13.     {
  14.       product: "Mango",
  15.       unitPrice: 5,
  16.       quantity: 1,
  17.       total: 5
  18.     },
  19.     {
  20.       product: "Banana ",
  21.       unitPrice: 3,
  22.       quantity: 1,
  23.       total: 3
  24.     }
  25.   ]
  26. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement