修改活动专区商品列表和导出
This commit is contained in:
parent
1f82805875
commit
e48a8e5d7d
@ -91,11 +91,4 @@ class ActivityZoneController extends BaseAdminController
|
||||
return $this->data($result);
|
||||
}
|
||||
|
||||
public function export()
|
||||
{
|
||||
$params = $this->request->get();
|
||||
$file_path = ActivityZoneLogic::export($params);
|
||||
return $this->success('导出成功', ['url' => $file_path]);
|
||||
}
|
||||
|
||||
}
|
98
app/admin/controller/ActivityZoneFormController.php
Normal file
98
app/admin/controller/ActivityZoneFormController.php
Normal file
@ -0,0 +1,98 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\controller;
|
||||
|
||||
use app\admin\lists\ActivityZoneFormLists;
|
||||
use app\admin\logic\ActivityZoneFormLogic;
|
||||
use app\admin\validate\ActivityZoneFormValidate;
|
||||
|
||||
/**
|
||||
* ActivityZoneFormController控制器
|
||||
* Class ActivityZoneFormController
|
||||
* @package app\admin\controller
|
||||
*/
|
||||
class ActivityZoneFormController extends BaseAdminController
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return \think\response\Json
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public function lists()
|
||||
{
|
||||
return $this->dataLists(new ActivityZoneFormLists());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加
|
||||
* @return \think\response\Json
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$params = (new ActivityZoneFormValidate())->post()->goCheck('add');
|
||||
$result = ActivityZoneFormLogic::add($params);
|
||||
if (true === $result) {
|
||||
return $this->success('添加成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(ActivityZoneFormLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑
|
||||
* @return \think\response\Json
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$params = (new ActivityZoneFormValidate())->post()->goCheck('edit');
|
||||
$result = ActivityZoneFormLogic::edit($params);
|
||||
if (true === $result) {
|
||||
return $this->success('编辑成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(ActivityZoneFormLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除
|
||||
* @return \think\response\Json
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public function delete()
|
||||
{
|
||||
$params = (new ActivityZoneFormValidate())->post()->goCheck('delete');
|
||||
ActivityZoneFormLogic::delete($params);
|
||||
return $this->success('删除成功', [], 1, 1);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取详情
|
||||
* @return \think\response\Json
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public function detail()
|
||||
{
|
||||
$params = (new ActivityZoneFormValidate())->goCheck('detail');
|
||||
$result = ActivityZoneFormLogic::detail($params);
|
||||
return $this->data($result);
|
||||
}
|
||||
|
||||
public function export()
|
||||
{
|
||||
$params = $this->request->get();
|
||||
$file_path = ActivityZoneFormLogic::export($params);
|
||||
return $this->success('导出成功', ['url' => $file_path]);
|
||||
}
|
||||
|
||||
}
|
87
app/admin/lists/ActivityZoneFormLists.php
Normal file
87
app/admin/lists/ActivityZoneFormLists.php
Normal file
@ -0,0 +1,87 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\lists;
|
||||
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
use app\common\model\ActivityZoneForm;
|
||||
use app\common\model\store_category\StoreCategory;
|
||||
|
||||
/**
|
||||
* ActivityZoneFormLists列表
|
||||
* Class ActivityZoneFormLists
|
||||
* @package app\admin\lists
|
||||
*/
|
||||
class ActivityZoneFormLists extends BaseAdminDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['type'],
|
||||
'%like%' => ['title'],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
$query = ActivityZoneForm::where($this->searchWhere);
|
||||
$cateIds = [];
|
||||
$list = $query
|
||||
->field(['id', 'type', 'cate_ids', 'title', 'remark'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->each(function ($item) use (&$cateIds) {
|
||||
$item['cate_ids'] = explode(',', $item['cate_ids']);
|
||||
foreach ($item['cate_ids'] as $cateId) {
|
||||
if (!empty($cateId) && !in_array($cateId, $cateIds)) {
|
||||
$cateIds[] = $cateId;
|
||||
}
|
||||
}
|
||||
})
|
||||
->toArray();
|
||||
$cateList = StoreCategory::where('id', 'in', $cateIds)->field('id,name')->select()->toArray();
|
||||
$cateList = reset_index($cateList, 'id');
|
||||
foreach ($list as &$item) {
|
||||
$item['cate_names'] = [];
|
||||
foreach ($item['cate_ids'] as $cateId) {
|
||||
if (isset($cateList[$cateId])) {
|
||||
$item['cate_names'][] = $cateList[$cateId]['name'];
|
||||
}
|
||||
}
|
||||
$item['cate_names'] = implode(',', $item['cate_names']);
|
||||
}
|
||||
return $list;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取数量
|
||||
* @return int
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
$query = ActivityZoneForm::where($this->searchWhere);
|
||||
return $query->count();
|
||||
}
|
||||
|
||||
}
|
@ -28,7 +28,7 @@ class ActivityZoneLists extends BaseAdminDataLists implements ListsSearchInterfa
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['type'],
|
||||
'=' => ['form_id'],
|
||||
];
|
||||
}
|
||||
|
||||
@ -45,12 +45,12 @@ class ActivityZoneLists extends BaseAdminDataLists implements ListsSearchInterfa
|
||||
public function lists(): array
|
||||
{
|
||||
$query = ActivityZone::where($this->searchWhere);
|
||||
if (!empty($this->params['keyword'])) {
|
||||
$productIds = StoreProduct::where('store_name', 'like', "%{$this->params['keyword']}%")->column('id');
|
||||
if (!empty($this->params['store_name'])) {
|
||||
$productIds = StoreProduct::where('store_name', 'like', "%{$this->params['store_name']}%")->column('id');
|
||||
$query->whereIn('product_id', $productIds);
|
||||
}
|
||||
$list = $query->with('product')
|
||||
->field(['id', 'type', 'product_id'])
|
||||
->field(['id', 'form_id', 'product_id'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
@ -74,8 +74,8 @@ class ActivityZoneLists extends BaseAdminDataLists implements ListsSearchInterfa
|
||||
public function count(): int
|
||||
{
|
||||
$query = ActivityZone::where($this->searchWhere);
|
||||
if (!empty($this->params['keyword'])) {
|
||||
$productIds = StoreProduct::where('store_name', 'like', "%{$this->params['keyword']}%")->column('id');
|
||||
if (!empty($this->params['store_name'])) {
|
||||
$productIds = StoreProduct::where('store_name', 'like', "%{$this->params['store_name']}%")->column('id');
|
||||
$query->whereIn('product_id', $productIds);
|
||||
}
|
||||
return $query->count();
|
||||
|
@ -81,8 +81,8 @@ class StoreProductLists extends BaseAdminDataLists implements ListsSearchInterfa
|
||||
$query->where('is_show', 1);
|
||||
}
|
||||
}
|
||||
if (!empty($this->params['activity_zone_type'])) {
|
||||
$exceptIds = ActivityZone::where('type', $this->params['activity_zone_type'])->column('product_id');
|
||||
if (!empty($this->params['activity_zone_form_id'])) {
|
||||
$exceptIds = ActivityZone::where('form_id', $this->params['activity_zone_form_id'])->column('product_id');
|
||||
$query->where('is_show', 1)->where('product_type', '<>', 5)->whereNotIn('id', $exceptIds);
|
||||
}
|
||||
$list = $query->limit($this->limitOffset, $this->limitLength)
|
||||
|
145
app/admin/logic/ActivityZoneFormLogic.php
Normal file
145
app/admin/logic/ActivityZoneFormLogic.php
Normal file
@ -0,0 +1,145 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\logic;
|
||||
|
||||
|
||||
use app\common\model\ActivityZone;
|
||||
use app\common\logic\BaseLogic;
|
||||
use app\common\model\ActivityZoneForm;
|
||||
use app\common\model\store_product\StoreProduct;
|
||||
use app\common\model\store_product_unit\StoreProductUnit;
|
||||
use app\common\service\xlsx\ActivityZoneService;
|
||||
use support\exception\BusinessException;
|
||||
use think\facade\Db;
|
||||
|
||||
|
||||
/**
|
||||
* ActivityZone逻辑
|
||||
* Class ActivityZoneLogic
|
||||
* @package app\admin\logic
|
||||
*/
|
||||
class ActivityZoneFormLogic extends BaseLogic
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public static function add(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
$secondCateIds = [];
|
||||
$thirdCateIds = [];
|
||||
foreach ($params['cate_ids'] as $item) {
|
||||
if (count($item) == 3) {
|
||||
$thirdCateIds[] = $item[2];
|
||||
} else {
|
||||
$secondCateIds[] = $item[1];
|
||||
}
|
||||
}
|
||||
$cateIds = array_merge($secondCateIds, $thirdCateIds);
|
||||
$params['cate_ids'] = !empty($cateIds) ? implode(',', $cateIds) : '';
|
||||
$activityZoneForm = new ActivityZoneForm();
|
||||
$activityZoneForm->save($params);
|
||||
$productIds = StoreProduct::where('two_cate_id', 'in', $secondCateIds)->whereOr('cate_id', 'in', $thirdCateIds)->column('id');
|
||||
$productInfo = [];
|
||||
$time = time();
|
||||
foreach ($productIds as $productId) {
|
||||
$productInfo[] = [
|
||||
'product_id' => $productId,
|
||||
'form_id' => $activityZoneForm->id,
|
||||
'create_time' => $time,
|
||||
'update_time' => $time,
|
||||
];
|
||||
}
|
||||
if (!empty($productInfo)) {
|
||||
ActivityZone::insertAll($productInfo);
|
||||
}
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Throwable $e) {
|
||||
Db::rollback();
|
||||
throw new BusinessException($e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public static function edit(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
ActivityZoneForm::where('id', $params['id'])->update([
|
||||
'type' => $params['type'],
|
||||
'product_id' => $params['product_id'],
|
||||
]);
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Throwable $e) {
|
||||
Db::rollback();
|
||||
throw new BusinessException($e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public static function delete(array $params): bool
|
||||
{
|
||||
return ActivityZoneForm::destroy($params['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取详情
|
||||
* @param $params
|
||||
* @return array
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public static function detail($params): array
|
||||
{
|
||||
return ActivityZoneForm::findOrEmpty($params['id'])->toArray();
|
||||
}
|
||||
|
||||
public static function export($params)
|
||||
{
|
||||
$service = new ActivityZoneService();
|
||||
$activityZoneForm = ActivityZoneForm::findOrEmpty($params['id'])->toArray();
|
||||
$products = ActivityZone::with('product')->field('id,product_id')->where('form_id', $params['id'])->select()->toArray();
|
||||
$unitIds = array_unique(array_column($products, 'unit'));
|
||||
$unit = StoreProductUnit::whereIn('id', $unitIds)->field('id,name')->withTrashed()->select()->toArray();
|
||||
$unit = reset_index($unit, 'id');
|
||||
foreach ($products as &$item) {
|
||||
$item['unit_name'] = $unit[$item['unit']]['name'] ?? '';
|
||||
unset($item['unit'], $item['product_id']);
|
||||
}
|
||||
$data = ConfigLogic::getDictByType('activity_zone');
|
||||
foreach ($data['activity_zone'] as $value) {
|
||||
if ($value['value'] == $activityZoneForm['type']) {
|
||||
$typeName = $value['remark'];
|
||||
break;
|
||||
}
|
||||
}
|
||||
return $service->export($products, $activityZoneForm['title'], $typeName ?? '', $activityZoneForm['remark']);
|
||||
}
|
||||
|
||||
}
|
@ -5,8 +5,6 @@ namespace app\admin\logic;
|
||||
|
||||
use app\common\model\ActivityZone;
|
||||
use app\common\logic\BaseLogic;
|
||||
use app\common\model\store_product_unit\StoreProductUnit;
|
||||
use app\common\service\xlsx\ActivityZoneService;
|
||||
use support\exception\BusinessException;
|
||||
use think\facade\Db;
|
||||
|
||||
@ -35,7 +33,7 @@ class ActivityZoneLogic extends BaseLogic
|
||||
$time = time();
|
||||
foreach ($params['product_ids'] as $product_id) {
|
||||
$insert[] = [
|
||||
'type' => $params['type'],
|
||||
'form_id' => $params['form_id'],
|
||||
'product_id' => $product_id,
|
||||
'create_time' => $time,
|
||||
'update_time' => $time,
|
||||
@ -64,7 +62,7 @@ class ActivityZoneLogic extends BaseLogic
|
||||
Db::startTrans();
|
||||
try {
|
||||
ActivityZone::where('id', $params['id'])->update([
|
||||
'type' => $params['type'],
|
||||
'form_id' => $params['form_id'],
|
||||
'product_id' => $params['product_id'],
|
||||
]);
|
||||
|
||||
@ -102,25 +100,4 @@ class ActivityZoneLogic extends BaseLogic
|
||||
return ActivityZone::findOrEmpty($params['id'])->toArray();
|
||||
}
|
||||
|
||||
public static function export($params)
|
||||
{
|
||||
$service = new ActivityZoneService();
|
||||
$products = ActivityZone::with('product')->field('id,product_id,type')->where('type', $params['type'])->select()->toArray();
|
||||
$unitIds = array_unique(array_column($products, 'unit'));
|
||||
$unit = StoreProductUnit::whereIn('id', $unitIds)->field('id,name')->withTrashed()->select()->toArray();
|
||||
$unit = reset_index($unit, 'id');
|
||||
foreach ($products as &$item) {
|
||||
$item['unit_name'] = $unit[$item['unit']]['name'] ?? '';
|
||||
unset($item['unit'], $item['product_id']);
|
||||
}
|
||||
$data = ConfigLogic::getDictByType('activity_zone');
|
||||
foreach ($data['activity_zone'] as $value) {
|
||||
if ($value['value'] == $params['type']) {
|
||||
$typeName = $value['remark'];
|
||||
break;
|
||||
}
|
||||
}
|
||||
return $service->export($products, $typeName ?? '', $params['remark']);
|
||||
}
|
||||
|
||||
}
|
89
app/admin/validate/ActivityZoneFormValidate.php
Normal file
89
app/admin/validate/ActivityZoneFormValidate.php
Normal file
@ -0,0 +1,89 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\validate;
|
||||
|
||||
|
||||
use app\common\validate\BaseValidate;
|
||||
|
||||
|
||||
/**
|
||||
* ActivityZone验证器
|
||||
* Class ActivityZoneValidate
|
||||
* @package app\admin\validate
|
||||
*/
|
||||
class ActivityZoneFormValidate extends BaseValidate
|
||||
{
|
||||
|
||||
/**
|
||||
* 设置校验规则
|
||||
* @var string[]
|
||||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require',
|
||||
'type' => 'require',
|
||||
'title' => 'require',
|
||||
'cate_ids' => 'require',
|
||||
'remark' => 'string',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* 参数描述
|
||||
* @var string[]
|
||||
*/
|
||||
protected $field = [
|
||||
'id' => 'id',
|
||||
'type' => '类型',
|
||||
'product_ids' => '商品',
|
||||
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加场景
|
||||
* @return ActivityZoneValidate
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public function sceneAdd()
|
||||
{
|
||||
return $this->only(['type', 'title', 'cate_ids']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑场景
|
||||
* @return ActivityZoneValidate
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public function sceneEdit()
|
||||
{
|
||||
return $this->only(['id', 'type', 'title', 'cate_ids']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除场景
|
||||
* @return ActivityZoneValidate
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public function sceneDelete()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 详情场景
|
||||
* @return ActivityZoneValidate
|
||||
* @author admin
|
||||
* @date 2024/12/20 10:52
|
||||
*/
|
||||
public function sceneDetail()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
}
|
@ -14,15 +14,14 @@ use app\common\validate\BaseValidate;
|
||||
class ActivityZoneValidate extends BaseValidate
|
||||
{
|
||||
|
||||
/**
|
||||
* 设置校验规则
|
||||
* @var string[]
|
||||
*/
|
||||
/**
|
||||
* 设置校验规则
|
||||
* @var string[]
|
||||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require',
|
||||
'type' => 'require',
|
||||
'form_id' => 'require',
|
||||
'product_ids' => 'require',
|
||||
|
||||
];
|
||||
|
||||
|
||||
@ -32,9 +31,8 @@ class ActivityZoneValidate extends BaseValidate
|
||||
*/
|
||||
protected $field = [
|
||||
'id' => 'id',
|
||||
'type' => '类型',
|
||||
'form_id' => '表单',
|
||||
'product_ids' => '商品',
|
||||
|
||||
];
|
||||
|
||||
|
||||
@ -46,7 +44,7 @@ class ActivityZoneValidate extends BaseValidate
|
||||
*/
|
||||
public function sceneAdd()
|
||||
{
|
||||
return $this->only(['type','product_ids']);
|
||||
return $this->only(['form_id', 'product_ids']);
|
||||
}
|
||||
|
||||
|
||||
@ -58,7 +56,7 @@ class ActivityZoneValidate extends BaseValidate
|
||||
*/
|
||||
public function sceneEdit()
|
||||
{
|
||||
return $this->only(['id','type','product_ids']);
|
||||
return $this->only(['id', 'form_id', 'product_ids']);
|
||||
}
|
||||
|
||||
|
||||
|
19
app/common/model/ActivityZoneForm.php
Normal file
19
app/common/model/ActivityZoneForm.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace app\common\model;
|
||||
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
/**
|
||||
* ActivityZoneForm模型
|
||||
* Class ActivityZoneForm
|
||||
* @package app\common\model
|
||||
*/
|
||||
class ActivityZoneForm extends BaseModel
|
||||
{
|
||||
|
||||
use SoftDelete;
|
||||
protected $name = 'activity_zone_form';
|
||||
protected $deleteTime = 'delete_time';
|
||||
|
||||
}
|
@ -9,7 +9,7 @@ use PhpOffice\PhpSpreadsheet\Style\Alignment;
|
||||
|
||||
class ActivityZoneService
|
||||
{
|
||||
public function export($data, $typeName, $remark)
|
||||
public function export($data, $title, $typeName, $remark)
|
||||
{
|
||||
$spreadsheet = new Spreadsheet();
|
||||
$sheet = $spreadsheet->getActiveSheet();
|
||||
@ -26,7 +26,7 @@ class ActivityZoneService
|
||||
$sheet->mergeCells('A5:F5');
|
||||
$sheet->mergeCells('B6:C6');
|
||||
|
||||
$sheet->setCellValue('A1', "供 投 里 海 农 特 产 品 下 单 清 单({$typeName})");
|
||||
$sheet->setCellValue('A1', $title);
|
||||
$sheet->setCellValue('A2', '姓名:');
|
||||
$sheet->setCellValue('C2', '电话:');
|
||||
$sheet->setCellValue('E2', '会员角色:');
|
||||
@ -103,7 +103,7 @@ class ActivityZoneService
|
||||
$sheet->getStyle('A1:F' . ($count + 9))->applyFromArray($styleArray);
|
||||
|
||||
$writer = new Xlsx($spreadsheet);
|
||||
$url = '/export/' . date('Y-m') . "/供投里海农特产品下单清单({$typeName})" . date('YmdHi') . '.xlsx';
|
||||
$url = '/export/' . date('Y-m') . $title . date('YmdHi') . '.xlsx';
|
||||
$file_path = public_path() . $url;
|
||||
if (!is_dir(dirname($file_path))) {
|
||||
mkdir(dirname($file_path), 0777, true);
|
||||
|
Loading…
x
Reference in New Issue
Block a user