加密后的代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PrinterService.php 6.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <?php
  2. namespace App\Api;
  3. class PrinterService extends RpcService{
  4. /**
  5. * 自有型应用授权终端
  6. *
  7. * @param $machineCode string 机器码
  8. * @param $mSign string 机器密钥
  9. * @param string $printName 打印机昵称
  10. * @param string $phone gprs卡号
  11. * @return mixed
  12. */
  13. public function addPrinter($machineCode, $mSign, $printName = '', $phone = '')
  14. {
  15. $params = array(
  16. 'machine_code' => $machineCode,
  17. 'msign' => $mSign,
  18. );
  19. if (!empty($phone)) {
  20. $params['phone'] = $phone;
  21. }
  22. if (!empty($printName)) {
  23. $params['print_name'] = $printName;
  24. }
  25. return $this->client->call('printer/addprinter', $params);
  26. }
  27. /**
  28. * 设置内置语音接口
  29. * 注意: 仅支持K4-WA、K4-GAD、K4-WGEAD型号
  30. *
  31. * @param $machineCode string 机器码
  32. * @param $content string 在线语音地址链接 or 自定义语音内容
  33. * @param bool $isFile true or false
  34. * @param string $aid int 0~9 , 定义需设置的语音编号,若不提交,默认升序
  35. * @return mixed
  36. */
  37. public function setVoice($machineCode, $content, $isFile = false, $aid = '')
  38. {
  39. $params = array(
  40. 'machine_code' => $machineCode,
  41. 'content' => $content,
  42. 'is_file' => $isFile,
  43. );
  44. if (!empty($aid)){
  45. $params ['aid'] = $aid;
  46. }
  47. return $this->client->call('printer/setvoice', $params);
  48. }
  49. /**
  50. * 删除内置语音接口
  51. * 注意: 仅支持K4-WA、K4-GAD、K4-WGEAD型号
  52. *
  53. * @param $machineCode string 机器码
  54. * @param $aid int 0 ~ 9 编号
  55. * @return mixed
  56. */
  57. public function deleteVoice($machineCode, $aid)
  58. {
  59. return $this->client->call('printer/deletevoice', array('machine_code' => $machineCode, 'aid' => $aid));
  60. }
  61. /**
  62. * 删除终端授权接口
  63. *
  64. * @param $machineCode string 机器码
  65. * @return mixed
  66. */
  67. public function deletePrinter($machineCode)
  68. {
  69. return $this->client->call('printer/deleteprinter', array('machine_code' => $machineCode));
  70. }
  71. /**
  72. * 关机重启接口
  73. *
  74. * @param $machineCode string 机器码
  75. * @param $responseType string restart or shutdown
  76. * @return mixed
  77. */
  78. public function shutdownRestart($machineCode, $responseType)
  79. {
  80. return $this->client->call('printer/shutdownrestart', array('machine_code' => $machineCode, 'response_type' => $responseType));
  81. }
  82. /**
  83. * 声音调节接口
  84. *
  85. * @param $machineCode string 机器码
  86. * @param $voice string 音量 0 or 1 or 2 or 3
  87. * @param $responseType string buzzer (蜂鸣器) or horn (喇叭)
  88. * @return mixed
  89. */
  90. public function setsound($machineCode, $voice, $responseType)
  91. {
  92. return $this->client->call('printer/setsound', array('machine_code' => $machineCode, 'voice' => $voice, 'response_type' => $responseType));
  93. }
  94. /**
  95. * 获取机型打印宽度接口
  96. *
  97. * @param $machineCode string 机器码
  98. * @return mixed
  99. */
  100. public function printInfo($machineCode)
  101. {
  102. return $this->client->call('printer/printinfo', array('machine_code' => $machineCode));
  103. }
  104. /**
  105. * 获取机型软硬件版本接口
  106. *
  107. * @param $machineCode string 机器码
  108. * @return mixed
  109. */
  110. public function getVersion($machineCode)
  111. {
  112. return $this->client->call('printer/getversion', array('machine_code' => $machineCode));
  113. }
  114. /**
  115. * 取消所有未打印订单接口
  116. *
  117. * @param $machineCode string 机器码
  118. * @return mixed
  119. */
  120. public function cancelAll($machineCode)
  121. {
  122. return $this->client->call('printer/cancelall', array('machine_code' => $machineCode));
  123. }
  124. /**
  125. * 取消单条未打印订单接口
  126. *
  127. * @param $machineCode string 机器码
  128. * @param $orderId string 未打印的易联云ID
  129. * @return mixed
  130. */
  131. public function cancelOne($machineCode, $orderId)
  132. {
  133. return $this->client->call('printer/cancelone', array('machine_code' => $machineCode, 'order_id' => $orderId));
  134. }
  135. /**
  136. * 设置logo接口
  137. *
  138. * @param $machineCode string 机器码
  139. * @param $imgUrl string logo链接地址
  140. * @return mixed
  141. */
  142. public function setIcon($machineCode, $imgUrl)
  143. {
  144. return $this->client->call('printer/seticon', array('machine_code' => $machineCode, 'img_url' => $imgUrl));
  145. }
  146. /**
  147. * 取消logo接口
  148. *
  149. * @param $machineCode string 机器码
  150. * @return mixed
  151. */
  152. public function deleteIcon($machineCode)
  153. {
  154. return $this->client->call('printer/deleteicon', array('machine_code' => $machineCode));
  155. }
  156. /**
  157. * 打印方式接口
  158. *
  159. * @param $machineCode string 机器码
  160. * @param $responseType string btnopen or btnclose
  161. * @return mixed
  162. */
  163. public function btnPrint($machineCode, $responseType)
  164. {
  165. return $this->client->call('printer/btnprint', array('machine_code' => $machineCode, 'response_type' => $responseType));
  166. }
  167. /**
  168. * 接单拒单设置接口
  169. *
  170. * @param $machineCode string 机器码
  171. * @param $responseType string open or close
  172. * @return mixed
  173. */
  174. public function getOrder($machineCode, $responseType)
  175. {
  176. return $this->client->call('printer/getorder', array('machine_code' => $machineCode, 'response_type' => $responseType));
  177. }
  178. /**
  179. * 获取订单状态接口
  180. *
  181. * @param $machineCode string 机器码
  182. * @param $orderId string 易联云订单id
  183. * @return mixed
  184. */
  185. public function getOrderStatus($machineCode, $orderId)
  186. {
  187. return $this->client->call('printer/getorderstatus', array('machine_code' => $machineCode, 'order_id' => $orderId));
  188. }
  189. /**
  190. * 获取订单列表接口
  191. *
  192. * @param $machineCode string 机器码
  193. * @param $pageIndex int 第几页
  194. * @param $pageSize int 查询条数
  195. * @return mixed
  196. */
  197. public function getOrderPagingList($machineCode, $pageIndex = 1 , $pageSize = 10)
  198. {
  199. return $this->client->call('printer/getorderpaginglist', array('machine_code' => $machineCode, 'page_index' => $pageIndex, 'page_size' => $pageSize));
  200. }
  201. /**
  202. * 获取终端状态接口
  203. *
  204. * @param $machineCode string 机器码
  205. * @return mixed
  206. */
  207. public function getPrintStatus($machineCode)
  208. {
  209. return $this->client->call('printer/getprintstatus', array('machine_code' => $machineCode));
  210. }
  211. }