order.js
2.91 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
'use strict';
const _ = require('lodash');
class orderModel extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
processInvoiceData(orderInfo, mobile, addresslist) {
let invoices_title = false;
let invoices_title_personal = false;
let invoices_type = '2';
let addressId = orderInfo.address_id;
// 用户手机号处理
if (orderInfo.receiverMobile && orderInfo.isModifyTel) {
mobile = orderInfo.receiverMobile;
} else {
_.forEach(addresslist, addressValue => {
if (addressValue.address_id === addressId) {
mobile = addressValue.mobile;
return false;
}
});
}
// 发票信息处理
if (orderInfo.invoices_type && orderInfo.invoices_title) {
invoices_title = orderInfo.invoices_title;
invoices_type = orderInfo.invoices_type * 1;
}
invoices_title_personal = orderInfo.invoices_title_personal || '个人(可修改)';
let isCompany = invoices_title && invoices_title !== '个人';
return {
phone: mobile ? mobile : '',
completeTel: mobile,
isCompany: isCompany,
companyName: isCompany ? invoices_title : invoices_title_personal,
buyerTaxNumber: orderInfo.buyerTaxNumber,
isPaper: invoices_type === 1,
invoicesType: [
{
id: '2',
type: '电子发票'
}
],
invoiceTitle: [
{
type: '个人',
choosed: !isCompany
},
{
type: '单位',
choosed: isCompany
}
]
};
}
/**
* 判断用户是否是老用户
*/
isNewUser(uid) {
return this.get({
data: {
method: 'app.SpaceOrders.list',
type: '5',
page: '1',
limit: '1',
uid: uid
},
param: {code: 200}
}).then(result => {
let order = _.get(result, 'data.order_list', []);
if (order.length > 0) {
return false;
} else {
return true;
}
});
}
/**
* 礼品卡支付时发送短信验证码
*/
giftCardSendSms(uid) {
return this.get({data: {
method: 'app.giftcard.sendSms',
uid: uid
}});
}
/**
* 礼品卡支付时验证短信验证码
*/
validRegCode(params) {
return this.get({data: {
method: 'app.giftcard.validRegCode',
uid: params.uid,
udid: params.udid,
code: params.verifyCode
}});
}
}
module.exports = orderModel;