PrinterHtml.php 629 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\cashier\event;
  11. use app\Controller;
  12. /**
  13. * 收银交班打印
  14. */
  15. class PrinterHtml extends Controller
  16. {
  17. public function handle($data)
  18. {
  19. return $this->fetch('addon/cashier/shop/view/printer/printer_template.html');
  20. }
  21. }