初始上传

This commit is contained in:
2026-04-04 17:27:12 +08:00
parent 4d80d28eb4
commit b7e11774ee
11191 changed files with 1588469 additions and 0 deletions

295
addon/printer/model/Printer.php Executable file
View File

@@ -0,0 +1,295 @@
<?php
/**
* Niushop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.niushop.com
* =========================================================
*/
namespace addon\printer\model;
use app\model\BaseModel;
use addon\printer\data\sdk\yilianyun\api\PrinterService;
use addon\printer\data\sdk\yilianyun\config\YlyConfig;
use addon\printer\data\sdk\yilianyun\oauth\YlyOauthClient;
use app\model\system\Config;
class Printer extends BaseModel
{
private $brand = [
// ['brand' => '365','name' => '365'],
// ['brand' => 'feie','name' => '飞鹅'],
[ 'brand' => 'yilianyun', 'name' => '易联云' ],
];
/**
* 获取打印机品牌
* @return array
*/
public function getPrinterBrand()
{
return $this->brand;
}
/**
* 添加小票打印
* @param $data
* @return array
*/
public function addPrinter($data)
{
model('printer')->startTrans();
try {
$data[ 'create_time' ] = time();
$res = model('printer')->add($data);
//易联云
if ($data[ 'printer_type' ] == 'cloud' && $data[ 'brand' ] == 'yilianyun') {
$data[ 'printer_id' ] = $res;
$result = $this->addPrinterYly($data);
if ($result[ 'code' ] < 0) {
model('printer')->rollback();
return $result;
}
}
model('printer')->commit();
return $this->success($res);
} catch (\Exception $e) {
model('printer')->rollback();
return $this->error('', '添加失败 ' . $e->getMessage());
}
}
/**
* 编辑小票打印
* @param $data
* @return array
*/
public function editPrinter($data)
{
$data[ 'update_time' ] = time();
$res = model('printer')->update($data, [ [ 'printer_id', '=', $data[ 'printer_id' ] ] ]);
return $this->success($res);
}
/**
* 删除
* @param $condition
* @return array
*/
public function deletePrinter($condition)
{
model('printer')->startTrans();
try {
$printer_info = model('printer')->getInfo($condition, '*');
$res = model('printer')->delete($condition);
//易联云
if ($printer_info[ 'printer_type' ] == 'cloud' && $printer_info[ 'brand' ] == 'yilianyun') {
$result = $this->deletePrinterYly($printer_info);
if ($result[ 'code' ] < 0) {
\think\facade\Log::write('删除打印机错误');
\think\facade\Log::write($result);
}
}
model('printer')->commit();
return $this->success([$res,$result ?? null]);
} catch (\Exception $e) {
model('printer')->rollback();
return $this->error('', $e->getMessage());
}
}
/**
* 获取小票打印信息
* @param array $condition
* @param string $field
* @return array
*/
public function getPrinterInfo($condition = [], $field = '*')
{
$res = model('printer')->getInfo($condition, $field);
return $this->success($res);
}
/**
* 获取小票打印列表
* @param array $condition
* @param string $field
* @param string $order
* @param null $limit
* @return array
*/
public function getPrinterList($condition = [], $field = '*', $order = '', $limit = null)
{
$list = model('printer')->getList($condition, $field, $order, '', '', '', $limit);
return $this->success($list);
}
/**
* 获取小票打印分页列表
* @param array $condition
* @param int $page
* @param int $page_size
* @param string $order
* @param string $field
* @return array
*/
public function getPrinterPageList($condition = [], $page = 1, $page_size = PAGE_LIST_ROWS, $order = '', $field = '*')
{
$list = model('printer')->pageList($condition, $field, $order, $page, $page_size);
return $this->success($list);
}
/**************************************************** 打印机管理(第三方) *********************************************************/
/******************** 易联云 start ************************/
/**
* 设置易联云配置
* @param $data
* @return array
*/
public function setYlyTokenConfig($data)
{
$config = new Config();
$res = $config->setConfig($data, '易联云小票打印token', 1, [ [ 'site_id', '=', $data[ 'site_id' ] ], [ 'app_module', '=', 'shop' ], [ 'config_key', '=', 'PRINTER_YLYTOKEN' ] ]);
return $this->success($res);
}
/**
* 获取易联云配置
* @param $site_id
* @return array
*/
public function getYlyTokenConfig($site_id)
{
$config = new Config();
$res = $config->getConfig([ [ 'site_id', '=', $site_id ], [ 'app_module', '=', 'shop' ], [ 'config_key', '=', 'PRINTER_YLYTOKEN' ] ]);
if (empty($res[ 'data' ][ 'value' ])) {
$res[ 'data' ][ 'value' ] = [
'access_token' => '',
'end_time' => '0'//token有效期
];
}
return $res;
}
/**
* 获取易联云token
* @param $yly_config
* @param $site_id
* @param int $type
* @return mixed
*/
public function getYlyToken($yly_config, $site_id, $type = 0)
{
//token配置
$config_data = $this->getYlyTokenConfig($site_id);
$config = $config_data[ 'data' ][ 'value' ];
if ($config[ 'end_time' ] == 0 || $config[ 'end_time' ] < time() || $type == 1) {
$client = new YlyOauthClient($yly_config);
$token = $client->getToken(); //若是开放型应用请传授权码code
$access_token = $token->access_token; //调用API凭证AccessToken
//更新token
$expires_in = $token->expires_in;
$end_time = time() + $expires_in;
$token_data = [
'site_id' => $site_id,
'access_token' => $token->access_token,
'end_time' => $end_time
];
$this->setYlyTokenConfig($token_data);
} else {
$access_token = $config[ 'access_token' ];
}
return $access_token;
}
/**
* 添加易联云打印机授权
* @param $param
* @return array|mixed
*/
public function addPrinterYly($param)
{
$yly_config = new YlyConfig($param[ 'open_id' ], $param[ 'apikey' ]);
$access_token = $this->getYlyToken($yly_config, $param[ 'printer_id' ]);
//添加打印机
$printer = new PrinterService($access_token, $yly_config);
$data = $printer->addPrinter($param[ 'printer_code' ], $param[ 'printer_key' ], '', '');
if (isset($data->error) && $data->error == 0) {
return $this->success($data);
} else {
return $this->error(object_to_array($data), '添加打印机错误');
}
}
/**
* 删除易联云打印机授权
* @param $param
* @return array|mixed
*/
public function deletePrinterYly($param)
{
$yly_config = new YlyConfig($param[ 'open_id' ], $param[ 'apikey' ]);
$access_token = $this->getYlyToken($yly_config, $param[ 'printer_id' ]);
//添加打印机
$printer = new PrinterService($access_token, $yly_config);
$data = $printer->deletePrinter($param[ 'printer_code' ]);
if (isset($data->error) && $data->error == 0) {
return $this->success();
} else {
return $this->error([], $data->error_description);
}
}
/**
* 重新获取易联云token
* @param $site_id
* @return mixed
*/
public function refreshToken($printer_id, $site_id)
{
model('config')->startTrans();
try {
//token配置
$printer_info = model('printer')->getInfo([ [ 'site_id', '=', $site_id ], [ 'printer_id', '=', $printer_id ] ], '*');
$yly_config = new YlyConfig($printer_info[ 'open_id' ], $printer_info[ 'apikey' ]);
$client = new YlyOauthClient($yly_config);
$token = $client->getToken(); // 若是开放型应用请传授权码code
//更新token
$expires_in = $token->expires_in;
$end_time = strtotime('+' . $expires_in / 86400 . 'day');
$token_data = [
'site_id' => $site_id,
'access_token' => $token->access_token,
'end_time' => $end_time
];
$this->setYlyTokenConfig($token_data);
model('config')->commit();
return $this->success();
} catch (\Exception $e) {
model('config')->rollback();
return $this->error('', $e->getMessage());
}
}
/******************** 易联云 end ************************/
}

View File

@@ -0,0 +1,411 @@
<?php
/**
* Niushop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.niushop.com
* =========================================================
*/
namespace addon\printer\model;
use addon\printer\data\sdk\yilianyun\api\PrintService;
use addon\printer\data\sdk\yilianyun\config\YlyConfig;
use app\model\BaseModel;
use app\model\system\Site;
class PrinterOrder extends BaseModel
{
/************************************************ 正式打印 start ******************************************************************/
/**
* 打印
* @param $data
* @return array|mixed|void
*/
public function printer($data)
{
$items = event('PrinterContent', $data, true);
if (empty($items)) return $this->success();
if (isset($items[ 'code' ]) && $items[ 'code' ] != 0) return $items;
$printer_model = new Printer();
foreach ($items as $k => $v) {
$printer = $v[ 'printer_info' ] ?? [];
switch ($printer[ 'brand' ]) {
case '365'://365打印机
break;
case 'feie'://飞鹅打印机
break;
case 'yilianyun'://易联云打印机
try {
$config = new YlyConfig($printer[ 'open_id' ], $printer[ 'apikey' ]);
$access_token = $printer_model->getYlyToken($config, $printer[ 'printer_id' ]);
$machine_code = $v[ 'printer_code' ];//商户授权机器码
$origin_id = $v[ 'origin_id' ]; //内部订单号(32位以内)
$print = new PrintService($access_token, $config);
$content = $v[ 'content' ];
$print->index($machine_code, $content, $origin_id, $printer);
} catch (\Exception $e) {
// return $this->error('', $e->getMessage());
}
break;
}
}
return $this->success($items);
}
/**
* 订单打印
*/
public function printOrder($data)
{
// //获取订单详情
// $order_common_model = new OrderCommonModel();
// $order_detail_result = $order_common_model->getOrderDetail($order_id);
// $order_info = $order_detail_result['data'];
//
// if (empty($order_info)) {
// return $this->success();
// }
//
// //获取店铺信息
// $shop_model = new Shop();
// $shop = $shop_model->getShopInfo([['site_id', '=', $order_info['site_id']]]);
// $shop_info = $shop['data'];
//
// //获取打印机列表
// $print_model = new Printer();
// $printer_data = $print_model->getPrinterList([['site_id', '=', $order_info['site_id']],['store_id','=',0]]);
//
// if($order_info['delivery_store_id'] == 0){
// $store_printer_data['data'] = [];
// }else{
// $store_printer_data = $print_model->getPrinterList([['site_id', '=', $order_info['site_id']], ['order_type', 'like', '%,' . $order_info['order_type'] . ',%'],['store_id','=',$order_info['delivery_store_id']]]);
// }
// if (empty($printer_data['data']) && empty($store_printer_data['data'])) {
// return $this->success();
// }
//
// $printer_list = array_merge($printer_data['data'],$store_printer_data['data']);
// foreach ($printer_list as $v) {
//
// switch ($v['brand']) {
//
// case '365'://365打印机
//
// break;
// case 'feie'://飞鹅打印机
//
// break;
// case 'yilianyun'://易联云打印机
//
// $this->Ylyprint($order_info, $v, $shop_info);
// break;
// }
// }
// return $this->success();
}
/**
* 【测试】易联云打印
* @param $order_info
* @param $printer
* @param $shop_info
*/
public function Ylyprint($order_info, $printer, $shop_info)
{
//打印模板
$print_template_model = new PrinterTemplate();
$print_template = $print_template_model->getPrinterTemplateInfo([ [ 'template_id', '=', $printer[ 'template_id' ] ] ])[ 'data' ];
$config = new YlyConfig($printer[ 'open_id' ], $printer[ 'apikey' ]);
$printer_model = new Printer();
$access_token = $printer_model->getYlyToken($config, $printer[ 'printer_id' ]);
$machine_code = $printer[ 'printer_code' ]; //商户授权机器码
$origin_id = $order_info[ 'order_no' ]; //内部订单号(32位以内)
$site_name = ( new Site() )->getSiteInfo([ [ 'site_id', '=', $printer[ 'site_id' ] ] ], 'site_name')[ 'data' ][ 'site_name' ] ?? '';
/**文本接口开始**/
$print = new PrintService($access_token, $config);
$content = "<MN>" . $printer[ 'print_num' ] . "</MN>";
//小票名称
if ($print_template[ 'title' ] != '') {
$content .= "<center>" . $print_template[ 'title' ] . "</center>";
$content .= str_repeat('.', 32);
}
//商城名称
if ($print_template[ 'head' ] == 1) {
$content .= "<FH2><FS><center>" . $site_name . "</center></FS></FH2>";
$content .= str_repeat('.', 32);
}
if (!empty($order_info[ 'pay_time' ])) {
$content .= "订单时间:" . date("Y-m-d H:i", $order_info[ 'pay_time' ]) . "\n";
} else {
$content .= "订单时间:" . date("Y-m-d H:i", time()) . "\n";
}
$content .= "订单编号:" . $order_info[ 'order_no' ] . "\n";
$content .= str_repeat('.', 32);
$content .= "<table>";
$content .= "<tr><td>商品名称</td><td></td><td>数量</td><td>金额</td></tr>";
$content .= "</table>";
$content .= str_repeat('.', 32);
$content .= "<table>";
foreach ($order_info[ 'order_goods' ] as $goods) {
$sku_name_list = $this->r_str_pad_1($goods[ 'sku_name' ], 7);
foreach ($sku_name_list as $index => $value) {
if ($index == 0) {
$content .= "<tr><td>" . $value . "</td><td></td><td>x" . numberFormat($goods[ 'num' ]) . "</td><td>¥" . $goods[ 'price' ] . "</td></tr>";
} else {
$content .= "<tr><td>" . $value . "</td></tr>";
}
}
}
$content .= "</table>";
$content .= str_repeat('.', 32);
if ($order_info[ "goods_money" ] > 0) {
$content .= "商品总额:¥" . $order_info[ "goods_money" ] . "\n";
}
if ($order_info[ "coupon_money" ] > 0) {
$content .= "店铺优惠券:¥" . $order_info[ "coupon_money" ] . "\n";
}
if ($order_info[ "promotion_money" ] > 0) {
$content .= "店铺优惠:¥" . $order_info[ "promotion_money" ] . "\n";
}
if ($order_info[ "point_money" ] > 0) {
$content .= "积分抵扣:¥" . $order_info[ "point_money" ] . "\n";
}
if ($order_info[ "adjust_money" ] > 0) {
$content .= "订单调价:¥" . $order_info[ "adjust_money" ] . "\n";
}
if ($order_info[ 'reduction' ] > 0) {
$content .= "订单减免:¥" . $order_info[ "reduction" ] . "\n";
}
if ($order_info[ "balance_money" ] > 0) {
$content .= "余额抵扣:¥" . $order_info[ "balance_money" ] . "\n";
}
if ($order_info[ "delivery_money" ] > 0) {
$content .= "配送费用:¥" . $order_info[ "delivery_money" ] . "\n";
}
if ($order_info[ "invoice_money" ] > 0) {
$content .= "发票费用:¥" . $order_info[ "invoice_money" ] . "\n";
}
if ($order_info[ "invoice_delivery_money" ] > 0) {
$content .= "发票邮寄费用:¥" . $order_info[ "invoice_delivery_money" ] . "\n";
}
if ($order_info[ "goods_num" ] > 0) {
$content .= "订单共" . numberFormat($order_info[ 'goods_num' ]) . "件商品,总计: ¥" . $order_info[ 'order_money' ] . " \n";
}
$content .= str_repeat('.', 32);
/******************** 备注信息 **************************/
//买家留言
if ($print_template[ 'buy_notes' ] == 1) {
$content .= "<FH2>买家留言:" . $order_info[ "buyer_message" ] . "</FH2>\n";
$content .= str_repeat('.', 32);
}
//卖家留言
if ($print_template[ 'seller_notes' ] == 1) {
$content .= "<FH2>卖家留言:" . $order_info[ "remark" ] . "</FH2>\n";
$content .= str_repeat('.', 32);
}
/******************** 买家信息 **************************/
//买家姓名
if ($print_template[ 'buy_name' ] == 1) {
$content .= "" . $order_info[ "name" ] . "\n";
}
//联系方式
if ($print_template[ 'buy_mobile' ] == 1) {
$content .= "" . $order_info[ "mobile" ] . "\n";
}
//地址
if ($print_template[ 'buy_address' ] == 1) {
$content .= "" . $order_info[ 'full_address' ] . "-" . $order_info[ 'address' ] . "\n";
}
if ($print_template[ 'buy_name' ] == 1 || $print_template[ 'buy_mobile' ] == 1 || $print_template[ 'buy_address' ] == 1) {
$content .= str_repeat('.', 32);
}
/******************** 商城信息 **************************/
//联系方式
if ($print_template[ 'shop_mobile' ] == 1) {
$content .= "" . $shop_info[ "mobile" ] . "\n";
}
//地址
if ($print_template[ 'shop_address' ] == 1) {
$content .= "" . $shop_info[ 'province_name' ] . $shop_info[ 'city_name' ] . $shop_info[ 'district_name' ] . $shop_info[ 'address' ] . "\n";
}
if ($print_template[ 'shop_mobile' ] == 1 || $print_template[ 'shop_address' ] == 1) {
$content .= str_repeat('.', 32);
}
//二维码
if ($print_template[ 'shop_qrcode' ] == 1) {
$content .= "<QR>" . $print_template[ 'qrcode_url' ] . "</QR>";
$content .= str_repeat('.', 32);
}
/******************** 门店信息 **************************/
if ($order_info[ 'delivery_store_id' ] > 0 && !empty($order_info[ 'delivery_store_name' ]) && !empty($order_info[ 'delivery_store_info' ])) {
$store_info = json_decode($order_info[ 'delivery_store_info' ], true);
$content .= "" . $order_info[ "delivery_store_name" ] . "\n";//门店名称
$content .= "" . $store_info[ "telphone" ] . "\n";//门店电话
$content .= "" . $store_info[ "full_address" ] . "\n";//门店地址
$content .= str_repeat('.', 32);
}
//底部内容
if (!empty($print_template[ 'bottom' ])) {
$content .= "<center>" . $print_template[ 'bottom' ] . "</center>";
}
try {
$print->index($machine_code, $content, $origin_id, $printer);
} catch (\Exception $e) {
echo $e->getMessage();
}
}
/**
* 补齐空格每n个中文字符长度为一个数组元素
* @param $input
* @param int $n
* @return array
*/
public function r_str_pad_1($input, $n = 7)
{
$string = "";
$count = 0;
$c_count = 0;
$arr = array();
for ($i = 0; $i < mb_strlen($input, 'UTF-8'); $i++) {
$char = mb_substr($input, $i, 1, 'UTF-8');
$string .= $char;
if (strlen($char) == 3) {
$count += 2;
$c_count++;
} else {
$count += 1;
}
if ($count >= $n * 2) {
$arr[] = $string;
$string = '';
$count = 0;
$c_count = 0;
}
}
if ($count < $n * 2) {
$string = str_pad($string, $n * 2 + $c_count);
$arr[] = $string;
}
return $arr;
}
/************************************************ 正式打印 end ******************************************************************/
/************************************************ 测试打印 start ******************************************************************/
/**
* 测试打印
* @param $printer_id
* @param $site_id
* @return array
*/
public function testPrint($printer_id, $site_id)
{
//获取打印机列表
$printer_info = model('printer')->getInfo([ [ 'site_id', '=', $site_id ], [ 'printer_id', '=', $printer_id ] ]);
if (empty($printer_info)) {
return $this->success();
}
switch ($printer_info[ 'brand' ]) {
case '365':
// 365打印机
break;
case 'feie':
// 飞鹅打印机
break;
case 'yilianyun':
// 易联云打印机
$res = $this->testYlyprint($printer_info);
break;
}
return $res;
}
/**
* 测试打印
* @param $printer
* @return array
*/
public function testYlyprint($printer)
{
$config = new YlyConfig($printer[ 'open_id' ], $printer[ 'apikey' ]);
$printer_model = new Printer();
$access_token = $printer_model->getYlyToken($config, $printer[ 'printer_id' ]);
$machine_code = $printer[ 'printer_code' ]; //商户授权机器码
$origin_id = date('YmdHis') . rand(1, 999); //内部订单号(32位以内)
/**文本接口开始**/
$print = new PrintService($access_token, $config);
$content = "<MN>" . $printer[ 'print_num' ] . "</MN>";
$content .= "<center>小票名称</center>";
$content .= str_repeat('.', 32);
$content .= "<FH2><FS><center>商城名称</center></FS></FH2>";
$content .= str_repeat('.', 32);
$content .= "订单时间:" . date("Y-m-d H:i") . "\n";
$content .= "订单编号:" . $origin_id . "\n";
$content .= str_repeat('.', 32);
$content .= "<table>";
$content .= "<tr><td>商品名称</td><td></td><td>数量</td><td>金额</td></tr>";
$content .= "</table>";
$content .= str_repeat('.', 32);
$content .= "<table>";
$content .= "<tr><td>烤土豆(超级辣)</td><td></td><td>x3</td><td>5</td></tr>";
$content .= "<tr><td>烤豆干(超级辣)</td><td></td><td>x2</td><td>10</td></tr>";
$content .= "<tr><td>烤鸡翅(超级辣)</td><td></td><td>x3</td><td>15</td></tr>";
$content .= "</table>";
$content .= str_repeat('.', 32);
$content .= "商品总额¥30 \n";
$content .= "订单共8件商品总计: ¥30 \n";
$content .= str_repeat('.', 32);
/******************** 备注信息 **************************/
//买家留言
$content .= "<FH2>买家留言:微辣,多放孜然</FH2>\n";
$content .= str_repeat('.', 32);
$content .= "<center>谢谢惠顾,欢迎下次光临</center>";
try {
$res = $print->index($machine_code, $content, $origin_id, $printer);
if ($res->error == 0) {
return $this->success();
} else {
return $this->error('', $res->error_description);
}
} catch (\Exception $e) {
return $this->error('', $e->getMessage());
}
}
}

View File

@@ -0,0 +1,114 @@
<?php
/**
* Niushop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.niushop.com
* =========================================================
*/
namespace addon\printer\model;
use app\model\BaseModel;
class PrinterTemplate extends BaseModel
{
public $type = [
'goodsorder' => [
'type' => 'goodsorder',
'type_name' => '商品订单',
'edit' => 'addon/printer/shop/view/template/goodsorder_template.html',
'add' => 'addon/printer/shop/view/template/goodsorder_template.html',
]
];
public function getTemplateType()
{
$type = $this->type;
$other_type = event('PrinterTemplateType', []);
foreach ($other_type as $k => $v) {
foreach ($v as $val) {
$type[ $val[ 'type' ] ] = $val;
}
}
return $type;
}
/**
* 添加打印模板
* @param $data
* @return array
*/
public function addPrinterTemplate($data)
{
$data[ 'create_time' ] = time();
$res = model('printer_template')->add($data);
return $this->success($res);
}
/**
* 编辑打印模板
* @param $data
* @return array
*/
public function editPrinterTemplate($data)
{
$data[ 'update_time' ] = time();
$res = model('printer_template')->update($data, [ [ 'template_id', '=', $data[ 'template_id' ] ] ]);
return $this->success($res);
}
/**
* 删除
* @param $condition
* @return array
*/
public function deletePrinterTemplate($condition)
{
$res = model('printer_template')->delete($condition);
return $this->success($res);
}
/**
* 获取打印模板信息
* @param array $condition
* @param string $field
* @return array
*/
public function getPrinterTemplateInfo($condition = [], $field = '*')
{
$res = model('printer_template')->getInfo($condition, $field);
return $this->success($res);
}
/**
* 获取打印模板列表
* @param array $condition
* @param string $field
* @param string $order
* @param null $limit
* @return array
*/
public function getPrinterTemplateList($condition = [], $field = '*', $order = '', $limit = null)
{
$list = model('printer_template')->getList($condition, $field, $order, '', '', '', $limit);
return $this->success($list);
}
/**
* 获取打印模板分页列表
* @param array $condition
* @param int $page
* @param int $page_size
* @param string $order
* @param string $field
* @return array
*/
public function getPrinterTemplatePageList($condition = [], $page = 1, $page_size = PAGE_LIST_ROWS, $order = '', $field = '*')
{
$list = model('printer_template')->pageList($condition, $field, $order, $page, $page_size);
return $this->success($list);
}
}