我正在快速构建一个商店经理应用程序,要求我具有三个模型,即用户,产品和销售。我想为销售模型实现购物车功能,所以我需要这样的东西:
const carts = [
// Cart 1
{
{
Product: Product1
Quantity: 20
Unit Price: 500
Amount: 10000
},
{
Product: product2
Quantity: 5
Unit Price: 15000
Amount: 75000
},
{
Product: anotherProduct
Quantity: 10
Unit Price: 500
Amount: 5000
},
{
Product: Product3
Quantity: 2
Unit Price: 500
Amount: 1000
},
Total : 91000
},
// Cart 2
{
{
Product: product1
Quantity: 20
Unit Price: 500
Amount: 10000
},
{
Product: product2
Quantity: 5
Unit Price: 15000
Amount: 75000
},
Total: 80000
}
];
购物车1代表单个服务员的销售,而购物车2代表另一服务员的销售。如何包含saleId,attenantId和total以便于参考? N.B我将要在销售模型中进行搜索/循环以按saleId进行过滤