invoice.js
5.09 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
/**
* 结算页发票
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2016/7/13
*/
var $ = require('yoho-jquery'),
hbs = require('yoho-handlebars'),
Dialog = require('../../plugins/dialog').Dialog;
var checkedInvoiceTpl = hbs.compile($('#checked-invoice-show-tpl').html());
var $invoiceContent = $('#invoice-content');
var $invoiceTitleInput,
$invoiceTip,
$invoceTab,
$invoiceEntity,
invoiceDialog;
// 发票信息验证
function validateInvoice($el) {
var pass = true;
var phone = $.trim($el.find('.receiver-phone').val());
var name = $.trim($el.find('.invoice-title-input').val());
var phoneRegx = [
{
noEmpty: true,
err: '请填写手机号码'
},
{
regx: /\d{11}/,
err: '手机号码不正确'
}
];
var key,
vaRegx;
// 电子发票
if ($el.find('.paper-invoice').hasClass('no-focus')) {
for (key = 0; key < phoneRegx.length; key++) {
vaRegx = phoneRegx[key];
if (vaRegx.noEmpty && phone === '' ||
vaRegx.regx && !vaRegx.regx.test(phone)) {
pass = false;
$el.find('.invoice-phone-tip').removeClass('hide').find('em').text(vaRegx.err);
break;
}
}
}
// 发票抬头为单位
if ($el.invioceTitleType === 1 && name === '') {
pass = false;
$el.find('.invoice-title-tip').removeClass('hide');
}
return pass;
}
// 发票弹窗Factory
function invoiceDialogFactory() {
var invoice = new Dialog({
className: 'invoice',
content: $('#invoice-dialog-tpl').html(),
btns: [
{
id: 'save-invoice',
btnClass: ['save-invoice'],
name: '保存发票信息',
cb: function() {
var $el = invoice.$el;
var invoiceType;
if (validateInvoice($el)) {
invoiceType = $invoceTab.children().not('no-focus').hasClass('el-invoice') ? 1 : 2;
$invoiceContent.html(checkedInvoiceTpl({
type: invoiceType,
invoiceTypeText: invoiceType === 2 ? '电子发票' : '纸质发票',
invoiceTitle: $el.invoiceTitleType === 1 ? '个人' : $invoiceTitleInput.val(),
content: $el.invoiceContent,
invoiceContent: $el.find('.invoice-content-radio .checked').next('label').text(),
phone: $el.find('.receiver-phone').val(),
checked: true // 发票开具radio选中
}));
// 处理发票信息
invoice.close();
}
}
},
{
id: 'cancel-invoice',
btnClass: ['cancel-invoice', 'white'],
name: '取消',
cb: function() {
invoice.close();
}
}
],
keep: true
});
return invoice;
}
invoiceDialog = invoiceDialogFactory();
// 存储发票参数
$.extend(invoiceDialog.$el, {
invoiceTitleType: 1,
invoiceContent: $('.invoice-content-radio .checked').parent().data('value') // 默认选中项的值
});
$invoiceTitleInput = $('.yoho-dialog.invoice .invoice-title-input');
$invoiceTip = $('.yoho-dialog.invoice .input-tip');
$invoceTab = $('.invoice-tab');
$invoiceEntity = $('.invoice-entity');
// 初始化发票抬头radio
$('.invoice-title-radio').check({
type: 'radio',
group: 'invoice-title',
onChange: function(el, checked, value) {
// 只处理选中的change逻辑
if (checked) {
if ($(el).hasClass('personal')) {
$invoiceTitleInput.addClass('hide');
} else {
$invoiceTitleInput.removeClass('hide');
}
$invoiceTip.addClass('hide'); // 切换时隐藏提示
invoiceDialog.$el.invoiceTitleType = value; // 1-个人;2-单位
}
}
});
// 初始化发票内容radio
$('.invoice-content-radio').check({
type: 'radio',
group: 'invoice-content',
onChange: function(el, checked, value) {
if (checked) {
invoiceDialog.$el.invoiceContent = value;
}
}
});
$invoiceContent.on('click', '.invoice-radio', function() {
if ($(this).find('.checked').length > 0) {
// 取消选中
$invoiceContent.html(checkedInvoiceTpl({
checked: false
}));
} else {
// 选中
invoiceDialog.show();
}
}).on('click', '.modify-invoice', function() {
invoiceDialog.show();
});
// 纸质发票和电子发票的切换
$invoceTab.on('click', '.btn', function() {
var $this = $(this);
if ($this.hasClass('no-focus')) {
$invoceTab.children('.btn').toggleClass('no-focus');
if ($this.hasClass('el-invoice')) {
$invoiceEntity.addClass('el');
} else {
$invoiceEntity.removeClass('el');
}
}
});