- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
63 lines
1.6 KiB
PHP
63 lines
1.6 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\controller\supplier\system;
|
|
|
|
use app\controller\supplier\AuthController;
|
|
use app\services\supplier\SupplierTicketPrintServices;
|
|
use think\annotation\Inject;
|
|
use think\db\exception\DataNotFoundException;
|
|
use think\db\exception\DbException;
|
|
use think\db\exception\ModelNotFoundException;
|
|
|
|
/**
|
|
* Class SupplierTicketPrint
|
|
* @package app\controller\supplier
|
|
*/
|
|
|
|
class SupplierTicketPrint extends AuthController
|
|
{
|
|
|
|
/**
|
|
* @var SupplierTicketPrintServices
|
|
*/
|
|
#[Inject]
|
|
protected SupplierTicketPrintServices $services;
|
|
|
|
/**
|
|
* 获取打印信息
|
|
* @return \think\Response
|
|
* @throws DataNotFoundException
|
|
* @throws DbException
|
|
* @throws ModelNotFoundException
|
|
*/
|
|
public function read()
|
|
{
|
|
return $this->success($this->services->getTicketInfo((int)$this->supplierId));
|
|
}
|
|
|
|
/**
|
|
* 更新打印信息
|
|
* @return void
|
|
* @throws DataNotFoundException
|
|
* @throws DbException
|
|
* @throws ModelNotFoundException
|
|
*/
|
|
public function update()
|
|
{
|
|
$data = $this->request->postMore([
|
|
['develop_id', 0],
|
|
['api_key', ''],
|
|
['client_id', ''],
|
|
['terminal_number', ''],
|
|
['status', 0],
|
|
]);
|
|
|
|
$this->validate($data, \app\validate\supplier\SupplierTicketPrintValidate::class, 'update');
|
|
$this->services->savePrintData((int)$this->supplierId, $data);
|
|
return $this->success('保存成功');
|
|
}
|
|
}
|