| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace crmeb\services\printer\storage;
- use crmeb\services\PrinterService;
- use crmeb\services\printer\AccessToken;
- use Exception;
- use think\facade\Cache;
- /**
- * Class YiLianYun
- * @package crmeb\services\printer\storage
- */
- class YiLianYun extends PrinterService
- {
- /**
- * 初始化
- * @param array $config
- * @return mixed|void
- */
- protected function initialize(array $config)
- {
- }
- /**
- * 开始打印
- * @return bool|mixed|string
- * @throws Exception
- */
- public function startPrinter()
- {
- if (!$this->printerContent) {
- return $this->setError('Missing print');
- }
- $access_token = $this->accessToken->getAccessToken();
- $arr = [
- 'client_id' => $this->accessToken->clientId,
- 'access_token' => $access_token,
- 'machine_code' => $this->accessToken->machineCode,
- 'content' => $this->printerContent,
- 'origin_id' => 'crmeb' . time(),
- 'sign' => strtolower(md5($this->accessToken->clientId . time() . $this->accessToken->apiKey)),
- 'id' => $this->accessToken->createUuid(),
- 'timestamp' => time()
- ];
- $request = $this->accessToken->postRequest($this->accessToken->getApiUrl('print/index'), $arr);
- $info = json_decode($request);
- if($info->error == 18){
- Cache::delete('YLY_access_token_'.$this->accessToken->clientId);
- $arr['access_token'] = $access_token;
- $request = $this->accessToken->postRequest($this->accessToken->getApiUrl('print/index'), $arr);
- }
- if ($request === false) {
- return $this->setError('request was aborted');
- }
- $request = is_string($request) ? json_decode($request, true) : $request;
- if (isset($request['error']) && in_array($request['error'], [18, 14])) {
- return $this->setError('Accesstoken has expired');
- }
- return $request;
- }
- public function setPrinterContent(string $content, int $times = 1): self
- {
- $this->printerContent = $content;
- return $this;
- }
- // /**
- // * 设置打印内容
- // * @param array $config
- // * @return YiLianYun
- // */
- // public function setPrinterContent(array $config): self
- // {
- // $timeYmd = date('Y-m-d H:i:s', time());
- // $goodsStr = '<table><tr><td>商品名称</td><td>数量</td><td>单价</td><td>金额</td></tr>';
- // $product = $config['product'];
- // foreach ($product as $item) {
- // $goodsStr .= '<tr>';
- // $goodsStr .= "<td>{$item['store_name']}</td><td>{$item['product_num']}</td><td>{$item['price']}</td><td>{$item['product_price']}</td>";
- // $goodsStr .= '</tr>';
- // }
- // $goodsStr .= '</table>';
- // $orderInfo = $config['orderInfo'];
- // $name = $config['name'];
- // $orderType = $orderInfo['order_type'] ? "核销订单" : '普通订单';
- // $this->printerContent = <<<CONTENT
- //<FB><center> ** {$name} **</center></FB>
- //<FH2><FW2>----------------</FW2></FH2>
- //订单类型:{$orderType}\r
- //订单编号:{$orderInfo['order_sn']}\r
- //打印时间: {$timeYmd} \r
- //付款时间: {$orderInfo['pay_time']}\r
- //姓 名: {$orderInfo['real_name']}\r
- //电 话: {$orderInfo['user_phone']}\r
- //地 址: {$orderInfo['user_address']}\r
- //订单备注:{$orderInfo['mark']}\r
- //*************商品***************\r
- //{$goodsStr}
- //********************************\r
- //<FH>
- //<LR>合计:¥{$orderInfo['total_price']},优惠: ¥{$orderInfo['coupon_price']}</LR>
- //<LR>邮费:¥{$orderInfo['pay_postage']}</LR>
- //<right>实际支付:¥{$orderInfo['pay_price']}</right>
- //</FH>
- //<FS><center> ** 完 **</center></FS>
- //CONTENT;
- // return $this;
- // }
- }
|