302 lines
12 KiB
PHP
302 lines
12 KiB
PHP
<?php
|
||
|
||
namespace App\Http\Controllers\Product;
|
||
|
||
use App\Exceptions\RepositoryException;
|
||
use App\Http\Requests\Product\BatchPriceRequest;
|
||
use App\Http\Requests\Product\ProductFormRequest;
|
||
use App\Models\CustomerLevelModel;
|
||
use App\Models\NoticeModel;
|
||
use App\Models\ProductModel;
|
||
use App\Models\ProductPriceModel;
|
||
use App\Models\StoreModel;
|
||
use App\Models\UserModel;
|
||
use Illuminate\Http\JsonResponse;
|
||
use Illuminate\Http\Request;
|
||
use Illuminate\Support\Facades\Auth;
|
||
use Illuminate\Support\Facades\DB;
|
||
use Modules\AnnoRoute\Attribute\DeleteRoute;
|
||
use Modules\AnnoRoute\Attribute\GetRoute;
|
||
use Modules\AnnoRoute\Attribute\PostRoute;
|
||
use Modules\AnnoRoute\Attribute\PutRoute;
|
||
use Modules\AnnoRoute\Attribute\RequestAttribute;
|
||
use Modules\Common\Http\Controllers\BaseController;
|
||
use Modules\SystemTool\Services\SysFileService;
|
||
|
||
/**
|
||
* 商品档案管理
|
||
*/
|
||
#[RequestAttribute('/product/goods', 'product.goods')]
|
||
class ProductController extends BaseController
|
||
{
|
||
protected array $searchField = [
|
||
'name' => 'like',
|
||
'category_id' => '=',
|
||
'supplier_id' => '=',
|
||
'status' => '=',
|
||
];
|
||
|
||
protected array $quickSearchField = ['name', 'spec'];
|
||
|
||
/** A1 商品列表(含分类/供应商/各等级价格;cost_price 在 $hidden 中,后台列表需显式恢复) */
|
||
#[GetRoute(authorize: 'query')]
|
||
public function query(Request $request): JsonResponse
|
||
{
|
||
$params = $request->all();
|
||
$pageSize = $params['pageSize'] ?? 10;
|
||
$data = $this->buildSearch(
|
||
$params,
|
||
ProductModel::query()->with(['category:id,name', 'supplier:id,name', 'prices.level:id,name'])
|
||
)
|
||
->orderBy('sort')
|
||
->orderBy('id', 'desc')
|
||
->paginate($pageSize);
|
||
$data->getCollection()->makeVisible('cost_price');
|
||
return $this->success($data->toArray());
|
||
}
|
||
|
||
/** 上传商品分类图片文件 */
|
||
#[PostRoute('/upload', 'create')]
|
||
public function uploadImage(Request $request, SysFileService $service): JsonResponse
|
||
{
|
||
$data = $request->validate(['file' => 'required|file']);
|
||
$result = $service->upload(
|
||
$data['file'],
|
||
10,
|
||
20,
|
||
Auth::id()
|
||
);
|
||
return $this->success($result);
|
||
}
|
||
|
||
|
||
/** 创建商品(事务内建商品 + 同步等级价格) */
|
||
#[PostRoute(authorize: 'create')]
|
||
public function create(ProductFormRequest $request): JsonResponse
|
||
{
|
||
$validated = $request->validated();
|
||
$prices = $validated['prices'] ?? [];
|
||
unset($validated['prices']);
|
||
|
||
$product = DB::transaction(function () use ($validated, $prices) {
|
||
$product = ProductModel::create($validated);
|
||
foreach ($prices as $row) {
|
||
ProductPriceModel::create([
|
||
'product_id' => $product->id,
|
||
'level_id' => (int) $row['level_id'],
|
||
'price' => $row['price'],
|
||
'price_type' => (int) ($row['price_type'] ?? ProductPriceModel::PRICE_TYPE_FIXED),
|
||
'percent' => $row['percent'] ?? 0,
|
||
]);
|
||
}
|
||
return $product;
|
||
});
|
||
|
||
return $this->success(['id' => $product->id]);
|
||
}
|
||
|
||
/** 编辑商品(prices 按 level_id upsert,删除已移除的等级行;未提交 prices 键时保持原价) */
|
||
#[PutRoute(route: '/{id}', authorize: 'update', where: ['id' => '[0-9]+'])]
|
||
public function update(int $id, ProductFormRequest $request): JsonResponse
|
||
{
|
||
$product = ProductModel::find($id);
|
||
if (empty($product)) {
|
||
throw new RepositoryException('商品不存在');
|
||
}
|
||
$validated = $request->validated();
|
||
$prices = $validated['prices'] ?? [];
|
||
unset($validated['prices']);
|
||
|
||
DB::transaction(function () use ($product, $validated, $prices, $request) {
|
||
$product->update($validated);
|
||
if ($request->has('prices')) {
|
||
$levelIds = [];
|
||
foreach ($prices as $row) {
|
||
$levelId = (int) $row['level_id'];
|
||
$levelIds[] = $levelId;
|
||
ProductPriceModel::updateOrCreate(
|
||
['product_id' => $product->id, 'level_id' => $levelId],
|
||
[
|
||
'price' => $row['price'],
|
||
'price_type' => (int) ($row['price_type'] ?? ProductPriceModel::PRICE_TYPE_FIXED),
|
||
'percent' => $row['percent'] ?? 0,
|
||
],
|
||
);
|
||
}
|
||
$product->prices()->whereNotIn('level_id', $levelIds)->delete();
|
||
}
|
||
});
|
||
|
||
return $this->success();
|
||
}
|
||
|
||
/** 删除商品(软删除,连带价格行一并删除) */
|
||
#[DeleteRoute(route: '/{id}', authorize: 'delete', where: ['id' => '[0-9]+'])]
|
||
public function delete(int $id): JsonResponse
|
||
{
|
||
$product = ProductModel::find($id);
|
||
if (empty($product)) {
|
||
throw new RepositoryException('商品不存在');
|
||
}
|
||
DB::transaction(function () use ($product) {
|
||
$product->prices()->delete();
|
||
$product->delete();
|
||
});
|
||
return $this->success();
|
||
}
|
||
|
||
/**
|
||
* A2 价格矩阵:行=商品(支持 category_id / keyword 过滤 + page/pageSize 服务端分页),
|
||
* 列=全部启用等级,值=实际销售价(缺失为 null);行内含 cost_price 与每等级
|
||
* price_type_{levelId} / percent_{levelId},供前端判断计价类型与联动重算
|
||
*/
|
||
#[GetRoute('/priceMatrix', 'query')]
|
||
public function priceMatrix(Request $request): JsonResponse
|
||
{
|
||
$query = ProductModel::query()->with('prices:id,product_id,level_id,price,price_type,percent');
|
||
if (($categoryId = (int) $request->input('category_id', 0)) > 0) {
|
||
$query->where('category_id', $categoryId);
|
||
}
|
||
$keyword = trim((string) $request->input('keyword', ''));
|
||
if ($keyword !== '') {
|
||
$query->where(function ($q) use ($keyword) {
|
||
$q->where('name', 'like', '%' . $keyword . '%')
|
||
->orWhere('spec', 'like', '%' . $keyword . '%');
|
||
});
|
||
}
|
||
$pageSize = max(1, min(100, (int) $request->input('pageSize', 20)));
|
||
$page = max(1, (int) $request->input('page', 1));
|
||
$products = $query->orderBy('sort')->orderBy('id')->paginate($pageSize, ['*'], 'page', $page);
|
||
|
||
$levels = CustomerLevelModel::query()
|
||
->where('status', CustomerLevelModel::STATUS_NORMAL)
|
||
->orderBy('sort')
|
||
->get(['id', 'name']);
|
||
|
||
$rows = $products->getCollection()->map(function (ProductModel $product) use ($levels) {
|
||
$priceMap = $product->prices->keyBy('level_id');
|
||
$row = [
|
||
'id' => $product->id,
|
||
'name' => $product->name,
|
||
'spec' => $product->spec,
|
||
'unit' => $product->unit,
|
||
'cost_price' => (float) $product->cost_price,
|
||
];
|
||
foreach ($levels as $level) {
|
||
$price = $priceMap[$level->id] ?? null;
|
||
$row['price_' . $level->id] = $price
|
||
? (float) ProductPriceModel::calcActualPrice(
|
||
(int) $price->price_type,
|
||
$price->price,
|
||
$price->percent,
|
||
$product->cost_price,
|
||
)
|
||
: null;
|
||
$row['price_type_' . $level->id] = $price ? (int) $price->price_type : ProductPriceModel::PRICE_TYPE_FIXED;
|
||
$row['percent_' . $level->id] = $price ? (float) $price->percent : 0;
|
||
}
|
||
return $row;
|
||
});
|
||
|
||
return $this->success([
|
||
'levels' => $levels->toArray(),
|
||
'rows' => $rows->values()->toArray(),
|
||
'total' => $products->total(),
|
||
]);
|
||
}
|
||
|
||
/**
|
||
* A2 批量调价:三类更新行(成本价 / 固定价 / 成本百分比,可混合同一行),事务写入,
|
||
* 写完后给受影响门店生成 Notice(type=price)
|
||
*/
|
||
#[PutRoute('/batchPrice', 'batchPrice')]
|
||
public function batchPrice(BatchPriceRequest $request): JsonResponse
|
||
{
|
||
$updates = $request->validated('updates');
|
||
|
||
DB::transaction(function () use ($updates) {
|
||
$productIds = [];
|
||
$levelIds = [];
|
||
foreach ($updates as $row) {
|
||
$productId = (int) $row['product_id'];
|
||
$productIds[$productId] = true;
|
||
|
||
// 分支1:成本价更新(百分比计价的基数,可与等级价行同在一行)
|
||
if (array_key_exists('cost_price', $row) && $row['cost_price'] !== null) {
|
||
ProductModel::whereKey($productId)->update(['cost_price' => $row['cost_price']]);
|
||
}
|
||
|
||
// 分支2/3:等级价格行(固定价或成本百分比,按 price_type 区分)
|
||
if (isset($row['level_id'])) {
|
||
$levelId = (int) $row['level_id'];
|
||
$levelIds[$levelId] = true;
|
||
ProductPriceModel::updateOrCreate(
|
||
['product_id' => $productId, 'level_id' => $levelId],
|
||
[
|
||
'price' => $row['price'] ?? 0,
|
||
'price_type' => (int) ($row['price_type'] ?? ProductPriceModel::PRICE_TYPE_FIXED),
|
||
'percent' => $row['percent'] ?? 0,
|
||
],
|
||
);
|
||
}
|
||
}
|
||
|
||
// 成本价变更只影响「该商品下百分比计价」的等级;受影响门店等级 = 等级更新行 ∪ 百分比行等级
|
||
$percentLevelIds = ProductPriceModel::query()
|
||
->whereIn('product_id', array_keys($productIds))
|
||
->where('price_type', ProductPriceModel::PRICE_TYPE_PERCENT)
|
||
->pluck('level_id')
|
||
->merge($levelIds)
|
||
->unique()
|
||
->all();
|
||
|
||
$productNames = ProductModel::whereIn('id', array_keys($productIds))
|
||
->pluck('name')
|
||
->implode('、');
|
||
$content = mb_substr('以下商品价格已调整:' . $productNames . ',下次登录小程序后按新价格显示', 0, 500);
|
||
|
||
// 受影响门店:客户等级在受影响等级范围内的正常门店,通知其绑定的正常用户
|
||
$userIds = UserModel::query()
|
||
->where('status', UserModel::STATUS_NORMAL)
|
||
->whereIn('store_id', function ($q) use ($percentLevelIds) {
|
||
$q->select('id')
|
||
->from('store')
|
||
->where('status', StoreModel::STATUS_NORMAL)
|
||
->whereIn('level_id', $percentLevelIds);
|
||
})
|
||
->pluck('id');
|
||
|
||
foreach ($userIds as $userId) {
|
||
NoticeModel::create([
|
||
'user_id' => $userId,
|
||
'type' => NoticeModel::TYPE_PRICE,
|
||
'title' => '商品价格变更',
|
||
'content' => $content,
|
||
'data' => [
|
||
'product_ids' => array_keys($productIds),
|
||
'level_ids' => array_keys($levelIds),
|
||
],
|
||
'is_read' => NoticeModel::UNREAD,
|
||
]);
|
||
}
|
||
});
|
||
|
||
return $this->success();
|
||
}
|
||
|
||
/** 商品下拉选项(仅上架,下单等场景用) */
|
||
#[GetRoute('/options', 'query')]
|
||
public function options(Request $request): JsonResponse
|
||
{
|
||
$query = ProductModel::query()->where('status', ProductModel::STATUS_ON);
|
||
$keyword = trim((string) $request->input('keyword', ''));
|
||
if ($keyword !== '') {
|
||
$query->where('name', 'like', '%' . $keyword . '%');
|
||
}
|
||
$data = $query->orderBy('sort')
|
||
->get(['id', 'name', 'spec', 'unit'])
|
||
->toArray();
|
||
return $this->success($data);
|
||
}
|
||
}
|