截流自动化的商城平台
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.

InvoiceLogic.php 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic\order;
  20. use app\common\basics\Logic;
  21. use app\common\enum\ShopEnum;
  22. use app\common\model\order\Order;
  23. use app\common\model\order\OrderInvoice;
  24. use app\common\server\ExportExcelServer;
  25. /**
  26. * 发票管理-逻辑
  27. * Class InvoiceLogic
  28. * @package app\shop\logic\order
  29. */
  30. class InvoiceLogic extends Logic
  31. {
  32. /**
  33. * @notes 发票列表
  34. * @param $get
  35. * @param $shop_id
  36. * @return array
  37. * @author 段誉
  38. * @date 2022/4/12 17:56
  39. */
  40. public static function getInvoiceLists($get, $is_export = false)
  41. {
  42. $where = [];
  43. if (isset($get['status']) && is_numeric($get['status']) && $get['status'] != '') {
  44. $where[] = ['i.status', '=', (int)$get['status']];
  45. }
  46. if (!empty($get['order_sn']) && $get['order_sn'] != '') {
  47. $where[] = ['order_sn', 'like', '%'.$get['order_sn'].'%'];
  48. }
  49. if (isset($get['order_status']) && $get['order_status'] != '') {
  50. $where[] = ['order_status', '=', $get['order_status']];
  51. }
  52. // 创建时间
  53. if(isset($get['start_time']) && !empty($get['start_time'])) {
  54. $where[] = ['o.create_time', '>=', strtotime($get['start_time']) ];
  55. }
  56. if(isset($get['end_time']) && !empty($get['end_time'])) {
  57. $where[] = ['o.create_time', '<=', strtotime($get['end_time']) ];
  58. }
  59. if (true === $is_export) {
  60. return self::export($where);
  61. }
  62. $field = ['i.*', 'o.order_sn', 'o.order_amount', 'order_status','o.create_time' => 'order_create_time'];
  63. $model = new OrderInvoice();
  64. $lists = $model->alias('i')->field($field)
  65. ->join('order o', 'o.id = i.order_id')
  66. ->order('i.id desc')
  67. ->where($where)
  68. ->append(['type_text', 'header_type_text', 'status_text'])
  69. ->paginate([
  70. 'page' => $get['page'] ?? 1,
  71. 'list_rows' => $get['limit'] ?? 10,
  72. 'var_page' => 'page'
  73. ])->toArray();
  74. foreach ($lists['data'] as &$item) {
  75. $item['order_status'] = Order::getOrderStatus($item['order_status']);
  76. $item['order_create_time'] = date('Y-m-d h:i:s', $item['order_create_time']);
  77. }
  78. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  79. }
  80. /**
  81. * @notes 发票详情
  82. * @param $id
  83. * @return array
  84. * @author 段誉
  85. * @date 2022/4/12 18:55
  86. */
  87. public static function detail($id)
  88. {
  89. $invoice = OrderInvoice::with(['order_data'])
  90. ->append(['type_text', 'header_type_text', 'status_text'])
  91. ->findOrEmpty($id)
  92. ->toArray();
  93. return $invoice;
  94. }
  95. /**
  96. * @notes 导出Excel
  97. * @param array $condition
  98. * @return array|false
  99. * @author 段誉
  100. * @date 2022/4/24 10:10
  101. */
  102. public static function export($where)
  103. {
  104. try {
  105. $field = ['i.*', 'o.order_sn', 'o.order_amount', 'order_status','o.create_time' => 'order_create_time',
  106. 's.name' => 'shop_name', 's.type' => 'shop_type'];
  107. $lists = (new OrderInvoice())->alias('i')
  108. ->field($field)
  109. ->join('order o', 'o.id = i.order_id')
  110. ->join('shop s', 's.id = i.shop_id')
  111. ->order('i.id desc')
  112. ->where($where)
  113. ->append(['type_text', 'header_type_text', 'status_text'])
  114. ->select()->toArray();
  115. foreach ($lists as &$item) {
  116. $item['order_status'] = Order::getOrderStatus($item['order_status']);
  117. $item['order_create_time'] = date('Y-m-d h:i:s', $item['order_create_time']);
  118. $item['shop_type'] = ShopEnum::getShopTypeDesc($item['shop_type']);
  119. }
  120. $excelFields = [
  121. 'shop_name' => '商家名称',
  122. 'shop_type' => '商家类型',
  123. 'order_sn' => '订单编号',
  124. 'order_amount' => '订单金额',
  125. 'order_status' => '订单状态',
  126. 'order_create_time' => '下单时间',
  127. 'type_text' => '发票类型',
  128. 'header_type_text' => '抬头类型',
  129. 'name' => '发票抬头',
  130. 'duty_number' => '税号',
  131. 'email' => '邮箱',
  132. 'status_text' => '开票状态',
  133. 'invoice_number' => '发票编号',
  134. ];
  135. $export = new ExportExcelServer();
  136. $export->setFileName('发票');
  137. $export->setExportNumber(['invoice_number']);
  138. $result = $export->createExcel($excelFields, $lists);
  139. return ['url' => $result];
  140. } catch (\Exception $e) {
  141. self::$error = $e->getMessage();
  142. return false;
  143. }
  144. }
  145. }