Files
huangjingfen/pro_v3.5.1_副本/app/services/system/PrintDocumentServices.php
apple 434aa8c69d feat(fsgx): 完成全部24项开发任务 Phase1-7
Phase1 后端核心:
- 新增 fsgx_v1.sql 迁移脚本(is_queue_goods/frozen_points/available_points/no_assess)
- SystemConfigServices 返佣设置扩展(周期人数/分档比例/范围/时机)
- StoreOrderCreateServices 周期循环佣金计算
- StoreOrderTakeServices 佣金发放后同步冻结积分
- StoreProductServices/StoreProduct 保存 is_queue_goods

Phase2 后端接口:
- GET /api/hjf/brokerage/progress 佣金周期进度
- GET /api/hjf/assets/overview 资产总览
- HjfPointsServices 每日 frozen_points 0.4‰ 释放定时任务
- PUT /adminapi/hjf/member/{uid}/no_assess 不考核接口
- GET /adminapi/hjf/points/release_log 积分日志接口

Phase3 前端清理:
- hjfCustom.js 路由精简(仅保留 points/log)
- hjfQueue.js/hjfMember.js API 清理/重定向至 CRMEB 原生接口
- pages.json 公排→推荐佣金/佣金记录/佣金规则

Phase4-5 前端改造:
- queue/status.vue 推荐佣金进度页整体重写
- 商品详情/订单确认/支付结果页文案与逻辑改造
- 个人中心/资产页/引导页/规则页文案改造
- HjfQueueProgress/HjfRefundNotice/HjfAssetCard 组件改造
- 推广中心嵌入佣金进度摘要
- hjfMockData.js 全量更新(公排字段→佣金字段)

Phase6 Admin 增强:
- 用户列表新增 frozen_points/available_points 列及不考核操作按钮
- hjfPoints.js USE_MOCK=false 对接真实积分日志接口

Phase7 配置文档:
- docs/fsgx-phase7-config-checklist.md 后台配置与全链路验收清单

Made-with: Cursor
2026-03-23 22:32:19 +08:00

482 lines
21 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace app\services\system;
use app\dao\system\PrintDocumentDao;
use app\services\BaseServices;
use crmeb\exceptions\AdminException;
use crmeb\services\FormBuilder as Form;
use crmeb\services\printer\Printer;
use think\annotation\Inject;
class PrintDocumentServices extends BaseServices
{
/**
* @var PrintDocumentDao
*/
#[Inject]
protected PrintDocumentDao $dao;
/**
* 小票打印机列表
* @param $where
* @return array
* @author wuhaotian
* @email 442384644@qq.com
* @date 2024/8/21
*/
public function printList($where)
{
[$page, $limit] = $this->getPageValue();
$list = $this->dao->printList($where, $page, $limit);
foreach ($list as &$item) {
$item['add_time'] = date('Y-m-d H:i:s', $item['add_time']);
}
$count = $this->dao->printCount($where);
return compact('list', 'count');
}
/**
* 小票打印机表单
* @param $id
* @return mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author wuhaotian
* @email 442384644@qq.com
* @date 2024/8/21
*/
public function printForm($id, $supplier_id = 0)
{
$info = $this->dao->get($id) ?? [];
if ($info) $info = $info->toArray();
$field[] = Form::input('print_name', '打印机名称:', $info['print_name'] ?? '')->required('请输入打印机名称')->info('打印机名称');
$field[] = Form::radio('type', '平台选择:', $info['type'] ?? 1)
->options([['label' => '易联云', 'value' => 1], ['label' => '飞鹅云', 'value' => 2]])
->appendControl(1, [
Form::input('yly_user_id', '用户ID', $info['yly_user_id'] ?? '')->required('请输入用户ID')->info('易联云开发者ID'),
Form::input('yly_app_id', '应用ID', $info['yly_app_id'] ?? '')->required('请输入应用ID')->info('易联应用ID'),
Form::input('yly_app_secret', '应用密钥:', $info['yly_app_secret'] ?? '')->required('请输入应用密钥')->info('易联应用密钥'),
Form::input('yly_sn', '终端号', $info['yly_sn'] ?? '')->required('请输入终端号')->info('易联云打印机终端号,打印机型号:易联云打印机 K4无线版'),
]
)->appendControl(2, [
Form::input('fey_user', '飞鹅云USER', $info['fey_user'] ?? '')->required('请输入飞鹅云USER')->info('飞鹅云后台注册账号'),
Form::input('fey_ukey', '飞鹅云UYEK', $info['fey_ukey'] ?? '')->required('请输入飞鹅云UYEK')->info('飞鹅云后台注册账号后生成的UKEY 【备注这不是填打印机的KEY】'),
Form::input('fey_sn', '飞鹅云SN', $info['fey_sn'] ?? '')->required('请输入飞鹅云SN')->info('打印机标签上的编号必须要在管理后台里添加打印机或调用API接口添加之后才能调用API'),
]
);
$field[] = Form::number('times', '打印联数:', $info['times'] ?? 1)->min(0)->required('请输入打印联数')->info('打印机单次打印张数');
$field[] = Form::radio('print_type', '打印时机:', $info['print_type'] ?? 1)->options([['label' => '支付后打印', 'value' => 1], ['label' => '下单后打印', 'value' => 2]]);
$field[] = Form::switches('status', '打印开关:', $info['status'] ?? 1)->falseValue(0)->trueValue(1)->openStr('打开')->closeStr('关闭')->size('large');
return create_form('小票打印机', $field, $this->url('/print/save/' . $id), 'POST');
}
/**
* 保存小票打印机
* @param $id
* @param $data
* @return bool
* @author wuhaotian
* @email 442384644@qq.com
* @date 2024/8/21
*/
public function printSave($id, $data)
{
if ($id) {
$this->dao->update($id, $data);
} else {
$data['add_time'] = time();
$this->dao->save($data);
}
return true;
}
/**
* 修改打印机状态
* @param $id
* @param $status
* @return bool
* @author wuhaotian
* @email 442384644@qq.com
* @date 2024/8/21
*/
public function printSetStatus($id, $status)
{
$this->dao->update($id, ['status' => $status]);
return true;
}
/**
* 删除打印机
* @param $id
* @return bool
* @author wuhaotian
* @email 442384644@qq.com
* @date 2024/8/21
*/
public function printDel($id)
{
$this->dao->update($id, ['is_del' => 1]);
return true;
}
/**
* 获取打印内容配置
* @param int $id 打印机ID
* @return array
*/
public function getPrintContent($id)
{
$print_content = $this->dao->value(['id' => $id], 'print_content');
return $print_content ? json_decode($print_content, true) : [];
}
/**
* 保存打印内容配置
* @param int $id 打印机ID
* @param array $data 打印内容配置
* @return bool
*/
public function savePrintContent($id, $data)
{
$print_content = json_encode($data);
$this->dao->update($id, ['print_content' => $print_content]);
return true;
}
/**
* 开始打印订单小票
* @param array $order 订单信息
* @param array $product 商品信息
* @param int $print_type 打印时机(1:支付后 2:下单后)
* @param int $supplier_id 供应商ID
* @return void
* @throws AdminException
*/
public function startPrint($order, $product, $print_type = 1, $supplier_id = 0)
{
$list = $this->dao->printList(['status' => 1, 'print_type' => $print_type, 'supplier_id' => $supplier_id]);
foreach ($list as $item) {
if ($item['type'] == 1) { //易联云
$name = 'yi_lian_yun';
$configData = [
'partner' => $item['yly_user_id'],
'clientId' => $item['yly_app_id'],
'apiKey' => $item['yly_app_secret'],
'terminal' => $item['yly_sn']
];
$print_content = json_decode($item['print_content'], true);
if (is_null($print_content) || !count($print_content)) throw new AdminException('请先配置打印内容');
$content = $this->ylyContent($print_content, $order, $product, $item['times'], $print_type);
} else { //飞鹅云
$name = 'fei_e_yun';
$configData = [
'feyUser' => $item['fey_user'],
'feyUkey' => $item['fey_ukey'],
'feySn' => $item['fey_sn']
];
$print_content = json_decode($item['print_content'], true);
if (is_null($print_content) || !count($print_content)) throw new AdminException('请先配置打印内容');
$content = $this->feyContent($print_content, $order, $product, $print_type);
}
$printer = new Printer($name, $configData);
$printer->setPrinterContent($content, $item['times'])->startPrinter();
}
}
/**
* 生成易联云打印内容
* @param array $printContent 打印配置
* @param array $orderInfo 订单信息
* @param array $product 商品信息
* @param int $times 打印联数
* @param int $print_type 打印时机
* @return string
*/
public function ylyContent($printContent, $orderInfo, $product, $times, $print_type)
{
$goodsStr = '<table><tr><td>名称</td><td>单价</td><td>数量</td><td>金额</td></tr>';
foreach ($product as $item) {
$goodsStr .= '<tr><td><FH2><FW2>----------------</FW2></FH2></td></tr>';
$goodsStr .= '<tr>';
$price = $item['sum_price'];
$num = $item['cart_num'];
$prices = bcmul((string)$item['cart_num'], (string)$item['sum_price'], 2);
$goodsStr .= "<td>{$item['productInfo']['store_name']} | {$item['productInfo']['attrInfo']['suk']}</td><td>{$price}</td><td>{$num}</td><td>{$prices}</td>";
$goodsStr .= '</tr>';
if (in_array(1, $printContent['goods'])) {
$goodsStr .= '<tr>';
$goodsStr .= "<td>规格编码:{$item['productInfo']['attrInfo']['code']}</td>";
$goodsStr .= '</tr>';
}
unset($price, $num, $prices);
}
$goodsStr .= '</table>';
$total_price = bcadd($orderInfo['total_price'], $orderInfo['pay_postage'], 2);
$addTime = date('Y-m-d H:i:s', $orderInfo['add_time']);
$payTime = isset($orderInfo['pay_time']) ? date('Y-m-d H:i:s', $orderInfo['pay_time']) : '';
$printTime = date('Y-m-d H:i:s', time());
$content = '';
$content .= '<MN>' . $times . '</MN>';
if ($printContent['header']) {
$content .= '<FS2><center>' . sys_config('site_name') . '</center></FS2>';
$content .= '<FH2><FW2>----------------</FW2></FH2>';
}
if ($printContent['delivery']) {
if ($orderInfo['shipping_type'] == 1) {
$content .= "配送方式:商家配送 \r";
} else {
$content .= "配送方式:门店自提 \r";
}
$content .= '客户姓名: ' . $orderInfo['real_name'] . " \r";
$content .= '客户电话: ' . $orderInfo['user_phone'] . " \r";
if ($orderInfo['shipping_type'] == 1) $content .= '收货地址: ' . $orderInfo['user_address'] . " \r";
$content .= '<FH2><FW2>----------------</FW2></FH2>';
}
if ($printContent['buyer_remarks']) {
$content .= '买家备注: ' . $orderInfo['mark'] . " \r";
$content .= '<FH2><FW2>----------------</FW2></FH2>';
}
if (in_array(0, $printContent['goods'])) {
$content .= '*************商品***************';
$content .= " \r";
$content .= $goodsStr;
$content .= "********************************\r";
$content .= '<FH2><FW2>----------------</FW2></FH2>';
}
if ($printContent['freight']) {
$content .= '<RA>邮费:' . $orderInfo['pay_postage'] . '元</RA>';
$content .= '<RA>合计:' . $total_price . '元</RA>';
$content .= '<FH2><FW2>----------------</FW2></FH2>';
}
if ($printContent['preferential']) {
$discount_price = bcsub(bcadd($orderInfo['total_price'], $orderInfo['pay_postage'], 2), bcadd($orderInfo['deduction_price'], $orderInfo['pay_price'], 2), 2);
$content .= '<RA>优惠:-' . $discount_price . '元</RA>';
$content .= '<RA>抵扣:-' . $orderInfo['deduction_price'] . '元</RA>';
$content .= '<FH2><FW2>----------------</FW2></FH2>';
}
if (in_array(0, $printContent['pay'])) {
if ($print_type == 1) {
$content .= match ($orderInfo['pay_type']) {
'weixin' => '<RA>支付方式:微信支付</RA>',
'alipay' => '<RA>支付方式:支付宝支付</RA>',
'yue' => '<RA>支付方式:余额支付</RA>',
'offline' => '<RA>支付方式:线下支付</RA>',
default => '<RA>支付方式:暂无</RA>',
};
} else {
$content .= '<RA>支付方式:暂无</RA>';
}
}
if (in_array(1, $printContent['pay'])) {
$content .= '<RA>实际支付:' . $orderInfo['pay_price'] . '元</RA>';
}
if (count($printContent['pay'])) {
$content .= '<FH2><FW2>----------------</FW2></FH2>';
}
if (in_array(0, $printContent['order'])) {
$content .= '订单编号:' . $orderInfo['order_id'] . "\r";
}
if (in_array(1, $printContent['order'])) {
$content .= '下单时间:' . $addTime . "\r";
}
if (in_array(2, $printContent['order'])) {
$content .= '支付时间:' . $payTime . "\r";
}
if (in_array(3, $printContent['order'])) {
$content .= '打印时间:' . $printTime . "\r";
}
$content .= '<FH2><FW2>----------------</FW2></FH2>';
if ($printContent['code'] && $printContent['code_url']) {
$content .= '<QR>' . sys_config('site_url') . $printContent['code_url'] . '</QR>';
$content .= " \r";
}
if ($printContent['show_notice']) {
$content .= '<center>' . $printContent['notice_content'] . '</center>';
$content .= " \r";
}
return $content;
}
/**
* 生成飞鹅云打印内容
* @param array $printContent 打印配置
* @param array $orderInfo 订单信息
* @param array $product 商品信息
* @param int $print_type 打印时机
* @return string
*/
public function feyContent($printContent, $orderInfo, $product, $print_type)
{
$printTime = date('Y-m-d H:i:s', time());
$addTime = date('Y-m-d H:i:s', $orderInfo['add_time']);
$payTime = isset($orderInfo['pay_time']) ? date('Y-m-d H:i:s', $orderInfo['pay_time']) : '';
$content = '';
if ($printContent['header']) {
$content .= '<CB>' . sys_config('site_name') . '</CB><BR>';
$content .= '--------------------------------<BR>';
}
if ($printContent['delivery']) {
if ($orderInfo['shipping_type'] == 1) {
$content .= '配送方式:商家配送<BR>';
} else {
$content .= '配送方式:门店自提<BR>';
}
$content .= '客户姓名: ' . $orderInfo['real_name'] . '<BR>';
$content .= '客户电话: ' . $orderInfo['user_phone'] . '<BR>';
if ($orderInfo['shipping_type'] == 1) $content .= '收货地址:' . $orderInfo['user_address'] . '<BR>';
$content .= '--------------------------------<BR>';
}
if ($printContent['buyer_remarks']) {
$content .= '买家备注:' . $orderInfo['mark'] . '<BR>';
$content .= '--------------------------------<BR>';
}
if (in_array(0, $printContent['goods'])) {
$content .= '<BR>';
$content .= '**************商品**************<BR>';
$content .= '<BR>';
$content .= '名称 单价 数量 金额<BR>';
foreach ($product as $item) {
$content .= '--------------------------------<BR>';
$name = $item['productInfo']['store_name'] . " | " . $item['productInfo']['attrInfo']['suk'];
$price = $item['sum_price'];
$num = $item['cart_num'];
$prices = bcmul((string)$item['cart_num'], (string)$item['sum_price'], 2);
$kw3 = '';
$kw1 = '';
$kw2 = '';
$kw4 = '';
$str = $name;
$blankNum = 14;//名称控制为14个字节
$lan = mb_strlen($str, 'utf-8');
$m = 0;
$j = 1;
$blankNum++;
$result = array();
if (strlen($price) < 6) {
$k1 = 6 - strlen($price);
for ($q = 0; $q < $k1; $q++) {
$kw1 .= ' ';
}
$price = $price . $kw1;
}
if (strlen($num) < 3) {
$k2 = 3 - strlen($num);
for ($q = 0; $q < $k2; $q++) {
$kw2 .= ' ';
}
$num = $num . $kw2;
}
if (strlen($prices) < 6) {
$k3 = 6 - strlen($prices);
for ($q = 0; $q < $k3; $q++) {
$kw4 .= ' ';
}
$prices = $prices . $kw4;
}
for ($i = 0; $i < $lan; $i++) {
$new = mb_substr($str, $m, $j, 'utf-8');
$j++;
if (mb_strwidth($new, 'utf-8') < $blankNum) {
if ($m + $j > $lan) {
$m = $m + $j;
$tail = $new;
$lenght = iconv("UTF-8", "GBK//IGNORE", $new);
$k = 14 - strlen($lenght);
for ($q = 0; $q < $k; $q++) {
$kw3 .= ' ';
}
if ($m == $j) {
$tail .= $kw3 . ' ' . $price . ' ' . $num . ' ' . $prices;
} else {
$tail .= $kw3 . '<BR>';
}
break;
} else {
$next_new = mb_substr($str, $m, $j, 'utf-8');
if (mb_strwidth($next_new, 'utf-8') < $blankNum) {
continue;
} else {
$m = $i + 1;
$result[] = $new;
$j = 1;
}
}
}
}
$head = '';
foreach ($result as $key => $value) {
if ($key < 1) {
$v_lenght = iconv("UTF-8", "GBK//IGNORE", $value);
$v_lenght = strlen($v_lenght);
if ($v_lenght == 13) $value = $value . " ";
$head .= $value . ' ' . $price . ' ' . $num . ' ' . $prices;
} else {
$head .= $value . '<BR>';
}
}
$content .= $head . $tail;
if (in_array(1, $printContent['goods'])) {
$content .= '规格编码:' . $item['productInfo']['attrInfo']['code'] . '<BR>';
}
unset($price);
}
$content .= '<BR>';
$content .= '********************************<BR>';
}
if ($printContent['freight']) {
$content .= '<BR>';
$content .= '--------------------------------<BR>';
$content .= '<RIGHT>邮费:' . number_format($orderInfo['pay_postage'], 2) . '元</RIGHT><BR>';
$total_price = bcadd($orderInfo['total_price'], $orderInfo['pay_postage'], 2);
$content .= '<RIGHT>合计:' . number_format($total_price, 2) . '元</RIGHT>';
$content .= '--------------------------------<BR>';
}
if ($printContent['preferential']) {
$discount_price = bcsub(bcadd($orderInfo['total_price'], $orderInfo['pay_postage'], 2), bcadd($orderInfo['deduction_price'], $orderInfo['pay_price'], 2), 2);
$content .= '<RIGHT>优惠:-' . number_format($discount_price, 2) . '元</RIGHT><BR>';
$content .= '<RIGHT>抵扣:-' . number_format($orderInfo['deduction_price'], 2) . '元</RIGHT>';
$content .= '--------------------------------<BR>';
}
if (in_array(0, $printContent['pay'])) {
if ($print_type == 1) {
$content .= match ($orderInfo['pay_type']) {
'weixin' => '<RIGHT>支付方式:微信支付</RIGHT><BR>',
'alipay' => '<RIGHT>支付方式:支付宝支付</RIGHT><BR>',
'yue' => '<RIGHT>支付方式:余额支付</RIGHT><BR>',
'offline' => '<RIGHT>支付方式:线下支付</RIGHT><BR>',
default => '<RIGHT>支付方式:暂无</RIGHT><BR>',
};
} else {
$content .= '<RIGHT>支付方式:暂无</RIGHT><BR>';
}
$content .= '<RIGHT>实际支付:' . number_format($orderInfo['pay_price'], 2) . '元</RIGHT>';
$content .= '--------------------------------<BR>';
}
if (in_array(0, $printContent['order'])) {
$content .= '订单编号:' . $orderInfo['order_id'] . '<BR>';
}
if (in_array(1, $printContent['order'])) {
$content .= '下单时间: ' . $addTime . '<BR>';
}
if (in_array(2, $printContent['order'])) {
$content .= '付款时间: ' . $payTime . '<BR>';
}
if (in_array(3, $printContent['order'])) {
$content .= '打印时间: ' . $printTime . '<BR>';
}
$content .= '--------------------------------<BR>';
$content .= '<BR>';
if ($printContent['code'] && $printContent['code_url']) {
$content .= '<QR>' . sys_config('site_url') . $printContent['code_url'] . '</QR>';
}
if ($printContent['show_notice']) {
$content .= '<C>' . $printContent['notice_content'] . '</C>';
}
return $content;
}
}