Files
yuezi-saas/backend/app/Http/Controllers/Admin/Inventory/StockController.php
T
li ee2b1757d0 feat: 员工自助注册+审核流程
- 新增 registration_packages 表:管理员配置注册套餐(名称/角色)
- AuthController 新增 register() 和 registrationPackages() 公开接口
- UserController 新增 approve() / reject() 审核接口
- StoreController 新增 publicList() 公开门店列表
- 前端 /register 注册页:选门店→选岗位套餐→填信息→提交
- 前端 system/registration-packages:套餐 CRUD
- 用户管理页:待审核状态展示 + 通过/拒绝快捷操作
- 登录页底部加「申请注册」跳转链接
- 路由白名单加 /register
2026-03-14 17:39:50 +08:00

51 lines
2.0 KiB
PHP

<?php
namespace App\Http\Controllers\Admin\Inventory;
use App\Http\Controllers\Controller;
use App\Models\Inventory\Inventory;
use App\Models\Inventory\Material;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
class StockController extends Controller
{
/**
* 库存台账 — 汇总 inventories 表,关联 material 信息
* GET /inventory/stock
*/
public function index(Request $request): JsonResponse
{
$query = Inventory::query()
->with(['warehouse', 'material'])
->when($request->warehouse_id, fn($q, $v) => $q->where('warehouse_id', $v))
->when($request->material_id, fn($q, $v) => $q->where('material_id', $v))
->when($request->low_stock, fn($q) => $q->whereRaw('quantity <= (SELECT min_stock FROM materials WHERE materials.id = inventories.material_id AND min_stock IS NOT NULL)'));
return $this->paginate($query->paginate($request->input('per_page', 20)));
}
/**
* 导出库存台账
* GET /inventory/stock/export
*/
public function export(Request $request): JsonResponse
{
$rows = Inventory::with(['warehouse', 'material'])
->when($request->warehouse_id, fn($q, $v) => $q->where('warehouse_id', $v))
->get()
->map(fn($inv) => [
'warehouse' => $inv->warehouse?->name,
'material_code' => $inv->material?->code,
'material_name' => $inv->material?->name,
'unit' => $inv->material?->unit,
'quantity' => $inv->quantity,
'batch_no' => $inv->batch_no,
'expire_date' => $inv->expire_date?->toDateString(),
'safety_stock' => $inv->material?->min_stock,
'updated_at' => $inv->updated_at?->toDateTimeString(),
]);
return $this->success(['rows' => $rows, 'total' => $rows->count()]);
}
}