cart.js
5.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/**
* 购物车 controller
* @author: jinhu.dong<jinhu.dong@yoho.cn>
* @date: 2016/07/04
*/
'use strict';
const cartModel = require('../models/cart');
const _ = require('lodash');
exports.index = (req, res) => {
const shoppingKey = req.cookies._SPK || null;
const uid = req.cookies.uid || null;
cartModel.getCartData(shoppingKey, uid).then((result) => {
console.log('get cart data:', result);
if (result.code === 200) {
res.display('cart', _.merge({
module: 'shopping',
page: 'cart',
bcNavFocus: 1
}, {
helpers: require('../helpers')
}, cartModel.filterCartData(result, uid)));
} else {
// code 500
res.send(result);
}
}).catch((err) => {
res.send(err);
});
};
// 检查库存
exports.checkInventory = (req, res) => {
let chkResult,
invalidProIds = [],
productId = req.query.productId,
result = {};
if (productId === 'ALL') {
chkResult = false;
invalidProIds.push('286143');
} else {
if (req.query.productId === '286143') {
chkResult = false;
} else {
chkResult = true;
}
}
if (invalidProIds.length) {
_.merge(result, {
invalidProIds: invalidProIds
});
}
_.merge(result, {
valid: chkResult
});
res.json(result);
};
// 修改数量
exports.changeProductNum = (req, res) => {
const changeType = req.body.changeType;
const changeTo = req.body.changeTo;
if (changeType === 'INCREASE') {
// TODO
if (changeTo === '4') {
res.json({
code: '1000',
num: parseInt(changeTo, 10) - 1,
changed: false
});
} else {
res.json({
code: '0',
num: changeTo,
changed: true
});
}
} else if (changeType === 'DECREASE') {
// TODO
res.json({
code: '0',
num: changeTo,
changed: true
});
}
};
// 删除商品
exports.removeProduct = (req, res) => {
const params = {};
const uid = req.cookies.uid;
const shoppingKey = req.cookies._SPK;
const productSkuList = req.body.skuList;
if (uid) {
_.merge(params, {uid});
}
if (shoppingKey) {
_.merge(params, {shopping_key: shoppingKey});
}
if (productSkuList) {
_.merge(params, {product_sku_list: productSkuList});
}
cartModel.removeGoods(params).then(result => {
res.send(result);
});
};
// 收藏商品
exports.sendToFavorite = (req, res) => {
// TODO
res.json({
code: '0'
});
};
// 编辑商品颜色和尺寸
exports.editProduct = (req, res) => {
res.json({
code: '0',
defaultColor: '蓝',
defaultSize: 'M',
defaultImg: 'http://img10.static.yhbimg.com/goodsimg/2015/10/21/02/0128dc014524ccf208b4f6f7760c9b9cf2.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80',
colors: [{
color: '蓝',
rgb: '#1b3c78',
pic: 'http://img10.static.yhbimg.com/goodsimg/2015/10/21/02/0128dc014524ccf208b4f6f7760c9b9cf2.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80'
}, {
color: '黑',
rgb: '#000',
pic: 'http://img12.static.yhbimg.com/goodsimg/2015/10/21/05/024f60a070ab61981c139684f147d41f17.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80'
}],
sizes: ['S', 'M', 'L', 'XL', 'XXL', 'XXXL']
});
};
// 添加商品到购物车
exports.addToCart = (req, res) => {
const productSku = req.body.productSku;
const buyNumber = req.body.buyNumber;
cartModel.addToCart({
productSku: productSku,
buyNumber: buyNumber,
shoppingKey: req.cookies._SPK || null,
uid: req.cookies.uid
}).then((result) => {
res.json(result);
});
};
// 购物车商品选择与取消选择
exports.toggleSelectGoods = (req, res) => {
const params = {};
const uid = req.cookies.uid;
const shoppingKey = req.cookies._SPK;
// 商品sku列表
// skuList:
// [{"goods_type":"advance","buy_number":1,"selected":"Y","product_sku":"1006277","promotion_id":0}, {...}]
// [{"goods_type":"ordinary","buy_number":1,"selected":"Y","product_sku":"1006277","promotion_id":0}, {...}]
const productSkuList = req.body.skuList;
if (uid) {
_.merge(params, {uid});
}
if (shoppingKey) {
_.merge(params, {shopping_key: shoppingKey});
}
if (productSkuList) {
_.merge(params, {product_sku_list: productSkuList});
}
cartModel.toggleSelectGoods(params).then(result => {
res.json(_.merge(cartModel.filterCartData(result, uid), {code: result.code}));
});
};
// 购物车商品选择与取消选择
exports.modifyProductNum = (req, res) => {
const uid = req.cookies.uid;
const shoppingKey = req.cookies._SPK;
const changeType = req.body.changeType;
const changeNum = req.body.changeNum;
const sku = req.body.sku;
let params = {
uid,
shoppingKey,
sku
};
if(changeType === 'INCREASE') {
_.merge(params, {
increaseNum: changeNum
});
} else if(changeType === 'DECREASE') {
_.merge(params, {
decreaseNum: changeNum
});
} else {
// TODO
// CHANGE
}
cartModel.modifyProductNum(params).then(result => {
res.json(_.merge(cartModel.filterCartData(result, uid), {code: result.code}));
});
}