129 lines
4.0 KiB
PHP
Executable File
129 lines
4.0 KiB
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Controllers\Admin;
|
|
|
|
use App\Controllers\BaseController;
|
|
use App\Models\Invoice;
|
|
use App\Models\Order;
|
|
use App\Models\Paylist;
|
|
use App\Utils\Tools;
|
|
use Exception;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Slim\Http\Response;
|
|
use Slim\Http\ServerRequest;
|
|
use function in_array;
|
|
use function json_decode;
|
|
use function time;
|
|
|
|
final class InvoiceController extends BaseController
|
|
{
|
|
private static array $details = [
|
|
'field' => [
|
|
'op' => '操作',
|
|
'id' => '账单ID',
|
|
'user_id' => '归属用户',
|
|
'order_id' => '订单ID',
|
|
'price' => '账单金额',
|
|
'status' => '账单状态',
|
|
'create_time' => '创建时间',
|
|
'update_time' => '更新时间',
|
|
'pay_time' => '支付时间',
|
|
],
|
|
];
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function index(ServerRequest $request, Response $response, array $args): ResponseInterface
|
|
{
|
|
return $response->write(
|
|
$this->view()
|
|
->assign('details', self::$details)
|
|
->fetch('admin/invoice/index.tpl')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function detail(ServerRequest $request, Response $response, array $args): ResponseInterface
|
|
{
|
|
$id = $args['id'];
|
|
$invoice = (new Invoice())->find($id);
|
|
$paylist = [];
|
|
|
|
if ($invoice->status === 'paid_gateway') {
|
|
$paylist = (new Paylist())->where('invoice_id', $invoice->id)->where('status', 1)->first();
|
|
}
|
|
|
|
$invoice->status_text = $invoice->status();
|
|
$invoice->create_time = Tools::toDateTime($invoice->create_time);
|
|
$invoice->update_time = Tools::toDateTime($invoice->update_time);
|
|
$invoice->pay_time = Tools::toDateTime($invoice->pay_time);
|
|
$invoice_content = json_decode($invoice->content);
|
|
|
|
return $response->write(
|
|
$this->view()
|
|
->assign('invoice', $invoice)
|
|
->assign('invoice_content', $invoice_content)
|
|
->assign('paylist', $paylist)
|
|
->fetch('admin/invoice/view.tpl')
|
|
);
|
|
}
|
|
|
|
public function markPaid(ServerRequest $request, Response $response, array $args): ResponseInterface
|
|
{
|
|
$invoice_id = $args['id'];
|
|
$invoice = (new Invoice())->find($invoice_id);
|
|
|
|
if (in_array($invoice->status, ['paid_gateway', 'paid_balance', 'paid_admin'])) {
|
|
return $response->withJson([
|
|
'ret' => 0,
|
|
'msg' => '不能标记已经支付的账单',
|
|
]);
|
|
}
|
|
|
|
$order = (new Order())->find($invoice->order_id);
|
|
|
|
if ($order->status === 'cancelled') {
|
|
return $response->withJson([
|
|
'ret' => 0,
|
|
'msg' => '关联订单已被取消,标记失败',
|
|
]);
|
|
}
|
|
|
|
$order->update_time = time();
|
|
$order->status = 'pending_activation';
|
|
$order->save();
|
|
|
|
$invoice->update_time = time();
|
|
$invoice->pay_time = time();
|
|
$invoice->status = 'paid_admin';
|
|
$invoice->save();
|
|
|
|
return $response->withJson([
|
|
'ret' => 1,
|
|
'msg' => '成功标记账单为已支付(管理员)',
|
|
]);
|
|
}
|
|
|
|
public function ajax(ServerRequest $request, Response $response, array $args): ResponseInterface
|
|
{
|
|
$invoices = (new Invoice())->orderBy('id', 'desc')->get();
|
|
|
|
foreach ($invoices as $invoice) {
|
|
$invoice->op = '<a class="btn btn-blue" href="/admin/invoice/' . $invoice->id . '/view">查看</a>';
|
|
$invoice->status = $invoice->status();
|
|
$invoice->create_time = Tools::toDateTime($invoice->create_time);
|
|
$invoice->update_time = Tools::toDateTime($invoice->update_time);
|
|
$invoice->pay_time = Tools::toDateTime($invoice->pay_time);
|
|
}
|
|
|
|
return $response->withJson([
|
|
'invoices' => $invoices,
|
|
]);
|
|
}
|
|
}
|