Store.php
15.9 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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
<?php
namespace app\admin\controller\store;
use app\admin\model\Admin;
use app\admin\model\AuthGroupAccess;
use app\common\controller\Backend;
use fast\Random;
use think\Db;
use think\Exception;
use think\exception\PDOException;
use think\exception\ValidateException;
/**
* 商家入驻订单管理
*
* @icon fa fa-circle-o
*/
class Store extends Backend
{
/**
* Store模型对象
* @var \app\admin\model\store\Store
*/
protected $model = null;
public function _initialize()
{
parent::_initialize();
$this->model = new \app\admin\model\store\Store;
$this->view->assign("statusList", $this->model->getStatusList());
}
/**
* 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
* 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
* 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
*/
/**
* 查看
*/
public function index()
{
//当前是否为关联查询
$this->relationSearch = true;
//设置过滤方法
$this->request->filter(['strip_tags', 'trim']);
if ($this->request->isAjax())
{
//如果发送的来源是Selectpage,则转发到Selectpage
if ($this->request->request('keyField'))
{
return $this->selectpage();
}
list($where, $sort, $order, $offset, $limit) = $this->buildparams();
// 城市或区县代理
$where1 = [];
$group_id_arr = array_column($this->auth->getGroups(), 'group_id');
if(!in_array(1,$group_id_arr) && array_intersect([6,7],$group_id_arr)){
$area_arr = \app\admin\model\AdminArea::where('admin_id',$this->auth->id)->column('area');
// 城市管理员
if(in_array(6,$group_id_arr)){
foreach ($area_arr as $v) {
$area = explode('/', $v);
$province = strpos($area[0], '省') === false && strpos($area[0], '市') === false ? $area[0].'市' : $area[0];
$where1[] = "(province = '{$province}' and city = '{$area[1]}')";
}
}else{
// 区县级管理员
foreach ($area_arr as $v) {
$area = explode('/', $v);
$province = strpos($area[0], '省') === false && strpos($area[0], '市') === false ? $area[0].'市' : $area[0];
$where1[] = "(province = '{$province}' and city = '{$area[1]}' and region = '{$area[2]}')";
}
}
$where1 = $where1 ? implode(' or ',$where1) : 'store.id = 0';
}
$total = $this->model
->with(['admin','user'])
->where($where)
->where($where1)
->order($sort, $order)
->count();
$list = $this->model
->with(['admin','user'])
->where($where)
->where($where1)
->order($sort, $order)
->limit($offset, $limit)
->select();
foreach ($list as $row) {
$row->getRelation('admin')->visible(['nickname']);
$row->getRelation('user')->visible(['nickname']);
}
$list = collection($list)->toArray();
foreach ($list as &$v) {
$v['house_name'] = Db::name('house')->whereIn('id',$v['house_ids'])->column('name');
}
$result = array("total" => $total, "rows" => $list);
return json($result);
}
// 城市或区县代理
$have_store_num = 0;
$group_id_arr = array_column($this->auth->getGroups(), 'group_id');
if(!in_array(1,$group_id_arr) && array_intersect([6,7],$group_id_arr)){
$have_store_num = 1;
}
$store_num = Admin::where('id',$this->auth->id)->value('store_num');
$this->view->assign('have_store_num',$have_store_num);
$this->view->assign('store_num',$store_num);
return $this->view->fetch();
}
/**
* 审核
*/
public function examine($ids = null)
{
$row = $this->model->get($ids);
if (!$row) {
$this->error(__('No Results were found'));
}
$adminIds = $this->getDataLimitAdminIds();
if (is_array($adminIds)) {
if (!in_array($row[$this->dataLimitField], $adminIds)) {
$this->error(__('You have no permission'));
}
}
if ($this->request->isPost()) {
$params = $this->request->post("row/a");
if ($params) {
$params = $this->preExcludeFields($params);
$admin_model = new Admin();
$auth_group_model = new AuthGroupAccess();
if($params['status'] == 3) {
if(empty($params['username'])) {
$this->error('请填写账号');
}
if(empty($params['nickname'])) {
$this->error('请填写昵称');
}
if(empty($params['password'])) {
$this->error('请填写密码');
}
$salt = Random::alnum();
$password = md5(md5($params['password']) . $salt);
$admin_data = [
'username' => $params['username'],
'nickname' => $params['nickname'],
'salt' => $salt,
'password' => $password
];
$auth_group_data = [
'group_id' => 4,
];
}
$result = false;
$result_admin = $result_auth_group = true;
Db::startTrans();
try {
$result = $row->allowField(true)->save($params);
// 判断审核状态
if($params['status'] == 3) {
// 审核通过,新增商家管理员
$result_admin = $admin_model->isUpdate(false)->save($admin_data);
$auth_group_data['uid'] = $admin_model->id;
$result_auth_group = $auth_group_model->isUpdate(false)->save($auth_group_data);
$row->allowField(true)->isUpdate(true)->save(['admin_id'=>$admin_model->id]);
// 新增社区有效期
$time = time();
foreach (explode(',',$row->house_ids) as $v) {
if($v) {
$insert = [
'user_id' => $row->user_id,
'store_id' => $row->id,
'house_id' => $v,
'start_time' => $time,
'end_time' => $time + config('site.house_valid') * 86400,
'createtime' => $time,
'updatetime' => $time
];
$result_store_house = Db::name('store_house')->insertGetId($insert);
if(!$result_store_house) {
Db::rollback();
}
}
}
// 发送模板消息
$send_data = array(
"first" => '恭喜您,商户申请审核通过!',
"keyword1" => $row->store_name,
"keyword2" => date('Y-m-d',time()),
"remark" => ['点击进入商户后台','#FF0000'],
);
$openid = Db::name('third')->where('user_id',$row->user_id)->value('openid');
$url = $this->request->root(true).'/admininfo.php/index/login';
$this->wxsendmessage($openid,$send_data,config('option.template')['store_pass'],$url);
// 城市或区县代理,可审核商铺数量减一
$group_id_arr = array_column($this->auth->getGroups(), 'group_id');
$admin = Admin::get($this->auth->id);
if(!in_array(1,$group_id_arr) && array_intersect([6,7],$group_id_arr) && $admin['store_num'] > 0){
$admin->setDec('store_num');
}
}
if($params['status'] == 4) {
// 审核不通过,执行退款操作
$time = time();
$refund = [
'order_id' => $row->id,
'user_id' => $row->user_id,
'order_sn' => $row->order_sn,
'transaction_id' => $row->transaction_id,
'out_refund_no' => date('Ymd').substr($row->order_sn,-8),
'price' => 0.01, // $row->money
'createtime' => $time,
'updatetime' => $time
];
$refund_result = $this->refund($refund);
if($refund_result['return_code'] != 'SUCCESS' || $refund_result['result_code'] != 'SUCCESS') {
Db::rollback();
}
Db::name('refund')->insert($refund);
}
Db::commit();
} catch (ValidateException $e) {
Db::rollback();
$this->error($e->getMessage());
} catch (PDOException $e) {
Db::rollback();
$this->error($e->getMessage());
} catch (Exception $e) {
Db::rollback();
$this->error($e->getMessage());
}
if ($result !== false && $result_admin !== false && $result_auth_group !== false) {
$this->success();
} else {
$this->error(__('No rows were updated'));
}
}
$this->error(__('Parameter %s can not be empty', ''));
}
$this->view->assign('row',$row);
return $this->view->fetch();
}
/**
* 调整金币
*/
public function score_edit($ids = null)
{
$row = $this->model->get($ids);
if (!$row) {
$this->error(__('No Results were found'));
}
$adminIds = $this->getDataLimitAdminIds();
if (is_array($adminIds)) {
if (!in_array($row[$this->dataLimitField], $adminIds)) {
$this->error(__('You have no permission'));
}
}
$user = Db::name('user')->where('id',$row->user_id)->find();
if ($this->request->isPost()) {
$params = $this->request->post("row/a");
if ($params) {
$params = $this->preExcludeFields($params);
if($params['type'] == 1) {
} else {
if($user['score'] < $params['score']) {
$this->error('该商家金币余额不足');
}
}
$result = $res_log = false;
Db::startTrans();
try {
if($params['type'] == 1) {
$result = Db::name('user')->where('id',$user['id'])->setInc('score',$params['score']);
$after = bcadd($user['score'],$params['score'],0);
$memo = '平台代充金币';
} else {
$result = Db::name('user')->where('id',$user['id'])->setDec('score',$params['score']);
$after = bcsub($user['score'],$params['score'],0);
$memo = '平台扣除金币';
}
$score_log = [
'user_id' => $user['id'],
'score' => $params['score'],
'before' => $user['score'],
'after' => $after,
'status' => 2,
'memo' => $memo,
'createtime' => time()
];
$res_log = Db::name('user_score_log')->insertGetId($score_log);
// $result = $row->allowField(true)->save($params);
Db::commit();
} catch (ValidateException $e) {
Db::rollback();
$this->error($e->getMessage());
} catch (PDOException $e) {
Db::rollback();
$this->error($e->getMessage());
} catch (\Exception $e) {
Db::rollback();
$this->error($e->getMessage());
}
if ($result !== false || $res_log !== false) {
$this->success();
} else {
$this->error(__('No rows were updated'));
}
}
$this->error(__('Parameter %s can not be empty', ''));
}
$row->score = $user['score'];
$this->view->assign("row", $row);
return $this->view->fetch();
}
/**
* 删除
*/
public function del($ids = "")
{
if ($ids) {
$pk = $this->model->getPk();
$adminIds = $this->getDataLimitAdminIds();
if (is_array($adminIds)) {
$this->model->where($this->dataLimitField, 'in', $adminIds);
}
$list = $this->model->where($pk, 'in', $ids)->select();
$count = 0;
Db::startTrans();
try {
foreach ($list as $k => $v) {
// 删除商家留言
Db::name('store_comment')->where('store_id',$v['id'])->delete();
Db::name('message')->where('object_id',$v['id'])->where('type',2)->delete();
// 删除社区有效期
Db::name('store_house')->where('store_id',$v['id'])->delete();
// 删除商家发布信息
$inform_list = Db::name('store_inform')->where('store_id',$v['id'])->select();
foreach($inform_list as $val){
// 删除商家发布信息点赞
Db::name('store_inform_good')->where('object_id',$val['id'])->delete();
// 删除红包领取记录
Db::name('store_inform_log')->where('inform_id',$val['id'])->delete();
// 删除商圈浏览量记录
Db::name('store_inform_view')->where('object_id',$val['id'])->delete();
Db::name('store_inform')->where('id',$val['id'])->delete();
}
// 删除开通新社区订单
Db::name('store_order')->where('store_id',$v['id'])->delete();
$count += $v->delete();
}
Db::commit();
} catch (PDOException $e) {
Db::rollback();
$this->error($e->getMessage());
} catch (Exception $e) {
Db::rollback();
$this->error($e->getMessage());
}
if ($count) {
$this->success();
} else {
$this->error(__('No rows were deleted'));
}
}
$this->error(__('Parameter %s can not be empty', 'ids'));
}
}