- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
78 lines
2.2 KiB
PHP
78 lines
2.2 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\services\supplier;
|
|
|
|
use app\dao\supplier\SupplierTicketPrintDao;
|
|
use app\services\BaseServices;
|
|
use think\annotation\Inject;
|
|
use think\exception\ValidateException;
|
|
|
|
/**
|
|
* 小票打印
|
|
* Class SupplierTicketPrintServices
|
|
* @package app\services\supplier
|
|
* @mixin SupplierTicketPrintDao
|
|
*/
|
|
class SupplierTicketPrintServices extends BaseServices
|
|
{
|
|
/**
|
|
* @var SupplierTicketPrintDao
|
|
*/
|
|
#[Inject]
|
|
protected SupplierTicketPrintDao $dao;
|
|
|
|
/**
|
|
* 获取打印配置
|
|
* @param int $supplierId
|
|
* @param string $field
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getTicketInfo(int $supplierId, string $field = '*')
|
|
{
|
|
$info = $this->dao->getOne(['supplier_id' => $supplierId], $field);
|
|
if ($info) {
|
|
$data = $info->toArray();
|
|
} else {
|
|
$data = [
|
|
'id' => 0,
|
|
'supplier_id' => $supplierId,
|
|
'develop_id' => 0,
|
|
'api_key' => '',
|
|
'client_id' => '',
|
|
'terminal_number' => '',
|
|
'status' => 0,
|
|
];
|
|
}
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* 更新打印配置
|
|
* @param int $supplierId
|
|
* @param $data
|
|
* @return bool
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function savePrintData(int $supplierId, $data)
|
|
{
|
|
$info = $this->dao->getOne(['supplier_id' => $supplierId], 'id, supplier_id');
|
|
if ($info) {
|
|
$res = $this->dao->update($info['id'], $data);
|
|
} else {
|
|
$data['supplier_id'] = $supplierId;
|
|
$res = $this->dao->save($data);
|
|
}
|
|
|
|
if (!$res) throw new ValidateException('保存失败!');
|
|
return true;
|
|
}
|
|
}
|