multi-store/extend/Xpyun/service/PrintService.php
mkm b51e352305 feat(admin): 优化订单相关功能
- 优化预先订单购物车信息列表的搜索功能,增加按店铺名称搜索
- 优化仓库订单列表的搜索条件,增加按订单ID搜索
- 修复仓库订单逻辑中获取订单类型的问题
- 在 API 控制器中添加 XpsdkPrintApi 服务的引用
2024-11-18 14:08:41 +08:00

197 lines
4.6 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 Xpyun\service;
use Xpyun\model\XPYunResp;
class PrintService
{
private const BASE_URL = 'https://open.xpyun.net/api/openapi';
private function xpyunPostJson($url, $request)
{
$jsonRequest = json_encode($request);
// var_dump($jsonRequest);
$client = new HttpClient();
list($returnCode, $returnContent) = $client->http_post_json($url, $jsonRequest);
$result = new XPYunResp();
$result->httpStatusCode = $returnCode;
$result->content = json_decode($returnContent);
return $result;
}
/**
* 1.批量添加打印机
* @param restRequest
* @return
*/
public function xpYunAddPrinters($restRequest)
{
$url = self::BASE_URL . "/xprinter/addPrinters";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 2.设置打印机语音类型
* @param restRequest
* @return
*/
public function xpYunSetVoiceType($restRequest)
{
$url = self::BASE_URL . "/xprinter/setVoiceType";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 3.打印小票订单
* @param restRequest - 打印订单信息
* @return
*/
public function xpYunPrint($restRequest)
{
$url = self::BASE_URL . "/xprinter/print";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 4.打印标签订单
* @param restRequest - 打印订单信息
* @return
*/
public function xpYunPrintLabel($restRequest)
{
$url = self::BASE_URL . "/xprinter/printLabel";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 5.批量删除打印机
* @param restRequest
* @return
*/
public function xpYunDelPrinters($restRequest)
{
$url = self::BASE_URL . "/xprinter/delPrinters";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 6.修改打印机信息
* @param restRequest
* @return
*/
public function xpYunUpdatePrinter($restRequest)
{
$url = self::BASE_URL . "/xprinter/updPrinter";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 7.清空待打印队列
* @param restRequest
* @return
*/
public function xpYunDelPrinterQueue($restRequest)
{
$url = self::BASE_URL . "/xprinter/delPrinterQueue";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 8.查询订单是否打印成功
* @param restRequest
* @return
*/
public function xpYunQueryOrderState($restRequest)
{
$url = self::BASE_URL . "/xprinter/queryOrderState";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 9.查询打印机某天的订单统计数
* @param restRequest
* @return
*/
public function xpYunQueryOrderStatis($restRequest)
{
$url = self::BASE_URL . "/xprinter/queryOrderStatis";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 10.查询打印机状态
*
* 0、离线 1、在线正常 2、在线不正常
* 备注异常一般是无纸离线的判断是打印机与服务器失去联系超过30秒
* @param restRequest
* @return
*/
public function xpYunQueryPrinterStatus($restRequest)
{
$url = self::BASE_URL . "/xprinter/queryPrinterStatus";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 10.批量查询打印机状态
*
* 0、离线 1、在线正常 2、在线不正常
* 备注异常一般是无纸离线的判断是打印机与服务器失去联系超过30秒
* @param restRequest
* @return
*/
public function xpYunQueryPrintersStatus($restRequest)
{
$url = self::BASE_URL . "/xprinter/queryPrintersStatus";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 11.云喇叭播放语音
* @param restRequest - 播放语音信息
* @return
*/
public function xpYunPlayVoice($restRequest)
{
$url = self::BASE_URL . "/xprinter/playVoice";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 12.POS指令
* @param restRequest
* @return
*/
public function xpYunPos($restRequest)
{
$url = self::BASE_URL . "/xprinter/pos";
return $this->xpyunPostJson($url, $restRequest);
}
/**
* 13.钱箱控制
* @param restRequest
* @return
*/
public function xpYunControlBox($restRequest)
{
$url = self::BASE_URL . "/xprinter/controlBox";
return $this->xpyunPostJson($url, $restRequest);
}
}
?>