Struttura Scheda Prodotti...

This commit is contained in:
Surya Paolo
2023-11-30 14:27:37 +01:00
parent e895e7dae2
commit e3ed2934ee
6 changed files with 181 additions and 117 deletions

View File

@@ -9,16 +9,16 @@ const CartSchema = new Schema({
idapp: {
type: String,
},
userId: {type: Schema.Types.ObjectId, ref: 'User'},
totalQty: {type: Number, default: 0},
totalPrice: {type: Number, default: 0},
userId: { type: Schema.Types.ObjectId, ref: 'User' },
totalQty: { type: Number, default: 0 },
totalPrice: { type: Number, default: 0 },
department: {
type: String, ref: 'Department',
},
items: [
{
order:
{type: Schema.Types.ObjectId, ref: 'Order'},
{ type: Schema.Types.ObjectId, ref: 'Order' },
},
],
note: {
@@ -31,14 +31,15 @@ const CartSchema = new Schema({
var Cart = module.exports = mongoose.model('Cart', CartSchema);
module.exports.findAllIdApp = async function(idapp, userId) {
const myfind = {idapp, userId};
module.exports.findAllIdApp = async function (idapp, userId) {
const myfind = { idapp, userId };
return await Cart.findOne(myfind).lean();
};
module.exports.getCartByUserId = async function(uid, idapp) {
let query = {userId: uid, idapp};
module.exports.getCartByUserId = async function (uid, idapp) {
try {
let query = { userId: uid, idapp };
const mycart = await Cart.findOne(query).lean();
if (!!mycart) {
@@ -60,18 +61,21 @@ module.exports.getCartByUserId = async function(uid, idapp) {
return mycart;
}
return null;
} catch (e) {
console.log('getCartByUserId err', e);
}
};
module.exports.updateCartByUserId = function(userId, newCart, callback) {
let query = {userId: userId};
Cart.find(query, function(err, c) {
module.exports.updateCartByUserId = function (userId, newCart, callback) {
let query = { userId: userId };
Cart.find(query, function (err, c) {
if (err) throw err;
//exist cart in databse
if (c.length > 0) {
Cart.findOneAndUpdate(
{userId: userId},
{ userId: userId },
{
$set: {
items: newCart.items,
@@ -80,7 +84,7 @@ module.exports.updateCartByUserId = function(userId, newCart, callback) {
userId: userId,
},
},
{new: true},
{ new: true },
callback,
);
} else {
@@ -90,7 +94,7 @@ module.exports.updateCartByUserId = function(userId, newCart, callback) {
});
};
module.exports.updateCartByCartId = async function(cartId, newCart) {
module.exports.updateCartByCartId = async function (cartId, newCart) {
// delete newCart._doc._id;
const items = newCart.items;
const totalQty = newCart.totalQty;
@@ -98,14 +102,14 @@ module.exports.updateCartByCartId = async function(cartId, newCart) {
const modify_at = new Date();
return await Cart.findOneAndUpdate({_id: cartId}, {
return await Cart.findOneAndUpdate({ _id: cartId }, {
$set: {
items,
totalPrice,
totalQty,
modify_at,
},
}, {new: false}).lean().then((ris) => {
}, { new: false }).lean().then((ris) => {
return ris;
}).catch(err => {
console.log('err', err);
@@ -114,11 +118,11 @@ module.exports.updateCartByCartId = async function(cartId, newCart) {
};
module.exports.deleteCartByCartId = async function(cartId) {
return await Cart.remove({_id: cartId});
module.exports.deleteCartByCartId = async function (cartId) {
return await Cart.remove({ _id: cartId });
};
module.exports.createCart = async function(newCart) {
module.exports.createCart = async function (newCart) {
return await newCart.save();
};

View File

@@ -51,6 +51,9 @@ const orderSchema = new Schema({
weight: {
type: Number
},
unit: {
type: Number
},
stars: {
type: Number
},

View File

@@ -61,6 +61,9 @@ const productSchema = new Schema({
weight: {
type: Number
},
unit: {
type: Number
},
quantityAvailable: {
type: Number
},

View File

@@ -30,17 +30,20 @@ const Cart = require('../models/cart');
const OrdersCart = require('../models/orderscart');
//GET cart
router.get('/:userId', authenticate, function (req, res, next) {
let userId = req.body.userId
let idapp = req.body.idapp
Cart.getCartByUserId(userId, idapp, function (err, cart) {
if (err) return next(err)
router.get('/:userId', authenticate, async function (req, res, next) {
let userId = req.params.userId
let idapp = req.user.idapp
return await Cart.getCartByUserId(userId, idapp)
.then((cart) => {
if (cart)
res.send({ code: server_constants.RIS_CODE_OK, cart });
return res.send({ code: server_constants.RIS_CODE_OK, cart });
else
res.status(400).send(e);
})
return res.status(400).send(e);
}).catch((err) => {
console.error('Err', err);
return res.send({ code: server_constants.RIS_CODE_ERR, cart: null });
});
})
//POST cart
@@ -51,6 +54,8 @@ router.post('/:userId', authenticate, async function (req, res, next) {
let subqty = req.body.subqty;
let order = req.body.order;
try {
const mycart = await Cart.getCartByUserId(userId, idapp);
// const myorder = Order.getOrderByID(order._id);
@@ -91,6 +96,12 @@ router.post('/:userId', authenticate, async function (req, res, next) {
})
*/
} catch (e) {
return res.send({ code: server_constants.RIS_CODE_ERR, cart: 0 });
}
})
router.delete('/:userId', authenticate, async function (req, res) {
@@ -122,14 +133,17 @@ router.delete('/:userId', authenticate, async function (req, res) {
//PUT cart
router.put('/:userId', authenticate, function (req, res, next) {
router.put('/:userId', authenticate, async function (req, res, next) {
let userId = req.params.userId
let requestProduct = req.body
let { productId, color, size } = requestProduct.product
Cart.getCartByUserId(userId, function (err, c) {
try {
await Cart.getCartByUserId(userId, function (err, c) {
if (err) return next(err)
let oldCart = new CartClass(c[0] || {})
Product.getProductByID(productId, function (err, p) {
if (err) return next(err)
let newCart = oldCart.add(p, productId, { color, size })
@@ -163,6 +177,12 @@ router.put('/:userId', authenticate, function (req, res, next) {
}
})
})
return res.send({ code: server_constants.RIS_CODE_OK });
} catch (e) {
return res.send({ code: server_constants.RIS_CODE_ERR, status: 0 });
}
})
//POST cart

View File

@@ -1573,6 +1573,8 @@ function load(req, res, version) {
myelems: arrdata[38],
categories: arrdata[39],
});
const prova = 1;
}
}).catch((e) => {

View File

@@ -326,6 +326,38 @@ module.exports = {
OPZ1_2: 2,
},
UNITS_OF_MEASURE: {
NESSUNO: 0,
GRAMMI: 1,
CHILI: 2,
LITRI: 3,
PEZZI: 4,
},
Units_Of_Measure_ListBox: [
{
label: '[Nessuno]',
value: 0,
},
{
label: 'Grammi (g)',
value: 1,
},
{
label: 'Chili (kg)',
value: 2,
},
{
label: 'Litri (l)',
value: 3,
},
{
label: 'Pezzi (p)',
value: 4,
},
],
CallFunz: {
SOSTITUISCI: 345,
AGGIUNGI_NUOVO_IMBARCO: 380,