cart.js
12.3 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
'use strict';
const _ = require('lodash');
const helpers = global.yoho.helpers;
const paymentProcess = require(global.utils + '/payment-process');
const shoppingModel = require('./shopping');
const logger = global.yoho.logger;
const payModel = require('../models/pay');
class cartModel extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* 调用购物车结算接口返回的数据处理
*/
cartPay(params) {
let result = {};
let skuList = [];
let isLimitGoods = params.skn && params.sku && params.buyNumber; // 存在sku, skn 和buyNumber时为限购商品
let orderComputeAPI = null;
if (isLimitGoods) {
skuList.push({
type: 'limitcode',
limitproductcode: params.limitProductCode,
buy_number: params.buyNumber,
skn: params.skn,
sku: params.sku
});
result.isLimit = true;
}
let orderInfoCookie = _.get(params, 'orderInfo', null);
// 是否需要重新计算
let needReComputer = orderInfoCookie && !_.isEmpty(orderInfoCookie) &&
(orderInfoCookie.yohoCoin || orderInfoCookie.user_check_coupon === 'Y');
if (needReComputer) {
orderInfoCookie.paymentType = orderInfoCookie.paymentType ? orderInfoCookie.paymentType : '';
orderComputeAPI = this.ctx.req.ctx(shoppingModel).orderComputeAPI({
uid: params.uid,
cart_type: params.cartType,
delivery_way: orderInfoCookie.deliveryId,
payment_type: orderInfoCookie.paymentType,
coupon_code: orderInfoCookie.coupon_code,
gift_card_code: orderInfoCookie.gift_card_code,
use_yoho_coin: orderInfoCookie.yohoCoin,
product_sku_list: skuList,
activityInfo: params.activityInfo
});
}
// 区分套餐量贩和普通商品
let cartPayAPI;
let cartPayAPIParams = {
uid: params.uid,
cart_type: params.cartType,
delivery_way: orderInfoCookie.deliveryId,
payment_type: orderInfoCookie.paymentType,
coupon_code: orderInfoCookie.couponCode,
gift_card_code: orderInfoCookie.gift_card_code,
use_yoho_coin: orderInfoCookie.yohoCoin,
product_sku_list: skuList,
activityInfo: params.activityInfo
};
if (params.activityInfo) {
cartPayAPI = this.ctx.req.ctx(shoppingModel).cartPayAPI(_.assign(cartPayAPIParams, {
activityInfo: params.activityInfo
}));
} else {
cartPayAPI = this.ctx.req.ctx(shoppingModel).cartPayAPI(cartPayAPIParams);
}
return Promise.all([
cartPayAPI, // 0. 订单数据
orderComputeAPI,
this.ctx.req.ctx(shoppingModel).getValidCouponCount({
uid: params.uid,
delivery_way: orderInfoCookie.deliveryId
}), // 2. 有效优惠券
this.ctx.req.ctx(shoppingModel).countUsableGiftCard(params.uid) // 3 可用礼品卡数量
]).then(res => {
let pay = res[0];
let orderCompute = _.get(res[1], 'data', {});
let validCouponCount = _.get(res[2], 'data.count', 0);
let validGiftCardCount = _.get(res[3], 'data.count', 0);
let goodsList = _.get(pay, 'data.goods_list', []);
let paymentApiCouponData = _.get(pay, 'data.coupon_pay', {});
if (_.isEmpty(goodsList)) {
logger.info(`orderEnsure: goodsList is empty, isLimitGoods: ${isLimitGoods}`);
if (isLimitGoods) {
result.error = true;
result.message = pay.message;
} else {
// 错误消息要 暴露出去
result.error = true;
result.message = pay.message;
result.cartUrl = helpers.urlFormat('/cart/index/index');
}
return result;
}
_.assign(
result,
paymentProcess.tranformPayment(pay.data, orderInfoCookie, params.cartType, skuList, orderCompute),
{
coupon: paymentProcess.handleCoupons({
paymentApiCouponData,
validCouponCount: validCouponCount,
orderComputeCouponPay: orderCompute.coupon_pay,
userCheckCoupon: orderInfoCookie.user_check_coupon === 'Y'
}),
giftCards: paymentProcess.handleGiftCards({
validGiftCardCount: validGiftCardCount,
orderCompute: orderCompute
})
});
return result;
});
}
/**
* 购物车结算--支付方式和配送方式选择以及是否使用有货币接口返回的数据处理
*/
orderCompute(params) {
return this.ctx.req.ctx(shoppingModel).orderComputeAPI(params).then(result => {
if (result && result.data) {
result.data.use_yoho_coin = paymentProcess.transPrice(result.data.use_yoho_coin);
result.data.yohoCoinCompute = paymentProcess.yohoCoinCompute(result.data);
return result.data;
} else {
return {};
}
});
}
ticketsOrderCompute(uid, productSku, buyNumber, yohoCoin, gift_card_code) {
return this.ctx.req.ctx(shoppingModel).checkTickets(uid, productSku, buyNumber,
yohoCoin, null, gift_card_code).then(result => {
if (result && result.data) {
let resu = {};
result.data.shopping_cart_data.use_yoho_coin =
paymentProcess.transPrice(result.data.shopping_cart_data.use_yoho_coin);
resu = result.data.shopping_cart_data;
resu.yohoCoinCompute = paymentProcess.yohoCoinCompute(result.data.shopping_cart_data);
let gift_card = _.get(result, 'data.gift_card', false);
if (gift_card) {
_.set(resu, 'gift_card', gift_card);
}
return resu;
} else {
return {};
}
});
}
/**
* 购物车结算--提交结算信息
*/
orderSub(params) {
if (!params.qhy_union) {
params.qhy_union = '';
}
if (!params.userAgent) {
params.userAgent = null;
}
if (!params.times) {
params.times = 1;
}
if (!params.activityInfo) {
params.activityInfo = null;
}
if (!params.address_id) {
return Promise.resolve({code: 401, message: '配送地址不能为空'});
}
if (!params.delivery_time) {
return Promise.resolve({code: 402, message: '请选择配送时间'});
}
if (!params.delivery_way) {
return Promise.resolve({code: 403, message: '请选择配送方式'});
}
return this.ctx.req.ctx(shoppingModel).orderSub(params).then(orderSubRes => {
let finalResult = {};
if (orderSubRes && orderSubRes.data && orderSubRes.data.is_hint === 'Y') {
finalResult.code = 409;
if (orderSubRes.data.hintInfo) {
let productName = _.get('orderSubRes', 'data.hintInfo.productName', '');
if (productName.length > 50) { // TODO 需要检查长度是否正确
orderSubRes.data.hintInfo.productName =
productName.substring(0, 47) + '...';
}
finalResult.message = [
encodeURI(productName + _.get(orderSubRes, 'data.hintInfo.suffix', '')),
encodeURI(_.get(orderSubRes, 'data.hintInfo.lastLine', ''))
];
}
finalResult.buttons = [
{
href: helpers.urlFormat('/cart/index/index'),
text: '重新选择商品',
class: ''
},
{
href: '',
text: '继续结算',
class: 'order-tip-btnred'
}
];
} else if (orderSubRes && orderSubRes.code) {
finalResult = orderSubRes;
} else {
finalResult = {
code: 400,
message: '出错啦'
};
}
return finalResult;
});
}
/**
* 处理优惠券列表数据
*
* @param int $uid 用户ID
* @return array|mixed 处理之后的优惠券数据
*/
getCouponList(params) {
let result = {
availableCoupons: [],
usableFreesCoupons: [],
notAvailableCoupons: [],
};
return this.ctx.req.ctx(shoppingModel).listCoupon({
uid: params.uid,
delivery_way: params.delivery_way,
is_group_frees: params.is_group_frees
}).then(coupons => {
let usableCoupons = _.get(coupons, 'data.usable_coupons', []);
let freesCoupons = _.get(coupons, 'data.usable_frees_coupons', []);
let unusableCoupons = _.get(coupons, 'data.unusable_coupons', []);
let orderInfoUsableUsualCode = _.get(params, 'orderInfo.usable_usual_code', '');
let orderInfoUsableFreeCode = _.get(params, 'orderInfo.usable_free_code', '');
let procCouponsData = coupon => {
return {
couponCode: coupon.coupon_code,
couponDetailInfomation: coupon.coupon_name,
couponValue: coupon.coupon_value,
couponValidity: coupon.coupon_validity,
checked: coupon.coupon_code === orderInfoUsableUsualCode ||
coupon.coupon_code === orderInfoUsableFreeCode
};
};
result.availableCoupons = usableCoupons.map(procCouponsData); // 可用优惠券
result.usableFreesCoupons = freesCoupons.map(procCouponsData); // 运费券
result.notAvailableCoupons = unusableCoupons.map(procCouponsData); // 不可用优惠券
return result;
});
}
useCouponCode(uid, couponCode) {
let result = {code: 400, message: '出错啦~'};
if (!couponCode) {
return Promise.resolve({
code: 401,
message: '优惠券代码为空'
});
}
return this.ctx.req.ctx(shoppingModel).useCoupon(uid, couponCode)
.catch(() => result);
}
/**
* jit拆单数据(结算页和订单详情页)
*/
jitDetailData(uid, cartType, skuList, orderCode, sessionKey,
deliveryId, paymentType, couponCode, yohoCoin) {
// 订单详情页拆单
if (orderCode) {
return this.ctx.req.ctx(payModel).getOtherDetail({
uid: uid,
orderCode: orderCode,
sessionKey: sessionKey
}).then(result => {
return paymentProcess.transformJit(_.get(result, 'data.package_info.package_list', []));
});
}
// 购物车拆单
if (deliveryId) {
// 购物车选择改变字段,重新运算订单数据
return this.ctx.req.ctx(shoppingModel).orderComputeAPI({
uid: uid,
cart_type: cartType,
delivery_way: deliveryId,
payment_type: paymentType,
coupon_code: couponCode,
use_yoho_coin: yohoCoin,
product_sku_list: skuList
}).then(result => {
return paymentProcess.transformJit(_.get(result, 'data.package_list', []));
});
} else {
return this.ctx.req.ctx(shoppingModel).cartPayAPI({
uid: uid,
cart_type: cartType,
product_sku_list: skuList
}).then(result => {
return paymentProcess.transformJit(_.get(result, 'data.shopping_cart_data.package_list', []));
});
}
}
}
module.exports = cartModel;