price.js
6.69 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
'use strict';
var $ = require('jquery'),
common=require('../common/common');
var ENUM={
vipType:{1:'正常折扣',2:'统一折扣',3:'无折扣',4:'固定折扣',5:'自定义折扣'},
gender: {1: '男', 2: '女', 3: '通用'}
}
new common.dropDown({
el:'#shop',
ajax:'queryShop'
});
new common.dropDown({
el:'#supplier',
ajax:'querySupplier'
});
new common.dropDown({
el:'#brand',
ajax:'queryBrand'
});
new common.dropDown({
el:'#cate',
ajax:'maxSort'
});
new common.dropDown({el:"#jit"});
new common.dropDown({el:"#status"});
new common.dropDown({el:"#stock"});
new common.dropDown({el:"#sex"});
var g = new common.grid({
el:"#basicTable",
parms:function(){
return {
product_skn: common.util.__input("skn"),
shop_id:common.util.__input("shop"),
brand_id:common.util.__input("brand"),
supplier_id:common.util.__input("supplier"),
is_jit:common.util.__input("jit"),
is_auditing:common.util.__input("status"),
stock:common.util.__input("stock"),
gender:common.util.__input("sex"),
max_sort_id:common.util.__input("cate")
};
},
columns:[
{display: 'SKN', name: 'product_skn'},
{display: '商品信息', name:'info', render: function(item) {
return '<p>名称:' + item.product_name + '</p><p>品牌:' + item.brand_name + '</p><p>类目:' + item.middle_sort_name + '/' + item.small_sort_name + '</p>';
}},
{display: '供应商/店铺', name: 'supplier_name'},
{display: '性别', name: 'gender', render: function(item) {
return ENUM.gender[item.gender];
}},
{display: '吊牌价', name: 'retail_price'},
{display: '销售价', name: 'sales_price'},
{display: 'VIP折扣类型', name: 'vip_discount_type', render: function(item) {
return ENUM.vipType[item.vip_discount_type];
}},
{display: 'VIP价', name: 'vip_price'},
{display: '自定义白金', name: 'vip3_price'},
{display: '自定义金卡', name: 'vip2_price'},
{display: '自定义银卡', name: 'vip1_price'},
{display: '返币金额', name: 'return_coin'},
{display: '操作信息', name: 'operateInfo', render: function(item) {
var html = '';
if (item.founder_name) {
html += '<p>' + item.founder_name + '</p>';
}
if (item.updateTime) {
html += '<p>' + item.updateTime + '</p>';
}
return html;
}},
{display: '操作', render:function(item){
return '<a href="javascript:;" class="btn btn-info btn-xs modify-btn" data-skn="' + item.product_skn + '">修改</a>'
}}
]
});
g.init($("#gridurl").val());
$('#basicTable').on('click', '.modify-btn', function() {
var skn = $(this).data('skn'),
that = this;
if ($(that).data('detail')) {
$(that).parents('tr').next('.product-detail').toggle();
return;
}
$.ajax({
type: 'POST',
url: '/product/getPrice',
dataType: 'json',
data: {
param: skn
}
}).then(function(res) {
var data = res.data.data;
$(that).data('detail', true).parents('tr')
.after($(common.util.__template($("#template").html(), data)))
.next('.product-detail').find('.skn-value').text(skn);
var $wrap = $(that).parents('tr').next('.product-detail'),
$price = $wrap.find('.sale-price'),
$select = $wrap.find('.discount-select'),
$vipPrice = $wrap.find('.vip-price'),
$vip3Price = $wrap.find('.vip3-price'),
$vip2Price = $wrap.find('.vip2-price'),
$vip1Price = $wrap.find('.vip1-price'),
$submitBtn = $wrap.find('.sure-modify');
function vipPrice() {
var price = $price.val(),
vipPrice = {
vip1: price * 0.95,
vip2: price * 0.9,
vip3: price * 0.88,
},
selectVal = $select.val();
if (selectVal == 5) {
$vip1Price.removeAttr('disabled');
$vip2Price.removeAttr('disabled');
$vip3Price.removeAttr('disabled');
} else {
$vip1Price.attr('disabled', true);
$vip2Price.attr('disabled', true);
$vip3Price.attr('disabled', true);
}
if (selectVal == 1) {
$vip1Price.val(vipPrice.vip1.toFixed(2));
$vip2Price.val(vipPrice.vip2.toFixed(2));
$vip3Price.val(vipPrice.vip3.toFixed(2));
} else if (selectVal == 3) {
$vip1Price.val($price.val());
$vip2Price.val($price.val());
$vip3Price.val($price.val());
} else if (selectVal == 4) {
$vip1Price.val($vipPrice.val());
$vip2Price.val($vipPrice.val());
$vip3Price.val($vipPrice.val());
}
}
$select.on('change', function() {
vipPrice();
});
$vipPrice.on('blur', function() {
vipPrice();
});
$price.on('blur', function() {
vipPrice();
});
$submitBtn.on('click', function() {
$.ajax({
type: 'POST',
url: '/product/updatePrice',
dataType: 'json',
data: {
product_skn: skn,
sales_price: $price.val(),
vip_discount_type: $select.val(),
return_coin: $wrap.find('.return-coin').val(),
vip_price: $vipPrice.val(),
vip1_price: $vip1Price.val(),
vip2_price: $vip2Price.val(),
vip3_price: $vip3Price.val()
}
}).then(function(res) {
if (res.data.code == 200) {
prompt('修改成功', 'success', function() {
g.reload();
});
} else {
prompt(res.data.message, 'danger');
}
});
});
});
});
function prompt(msg, type, callback) {
$.gritter.add({
title: msg,
class_name: 'growl-' + type,
sticky: false,
time: '1000',
after_open: function() {
callback && callback();
}
});
}
//筛选
$("#filter-btn").click(function(){
location.hash = '';
g.reload({
page: 1
});
});
//批量导入按钮点击事件
$('#import-btn').on('click', function() {
$('.main-table, .bulk-import').toggle()
});
//导入excel事件
$('#sure-upload').on('click', function() {
console.log($('#upload-input').val());
$.ajax({
type: 'POST',
url: '/product/batchUpdatePrice'
}).then(function(res) {
console.log(res);
})
})