截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

InvoiceLogic.php 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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\shop\logic\order;
  20. use app\common\basics\Logic;
  21. use app\common\model\order\Order;
  22. use app\common\model\order\OrderInvoice;
  23. use app\common\server\ExportExcelServer;
  24. /**
  25. * 发票管理-逻辑
  26. * Class InvoiceLogic
  27. * @package app\shop\logic\order
  28. */
  29. class InvoiceLogic extends Logic
  30. {
  31. /**
  32. * @notes 列表条件
  33. * @param $get
  34. * @param $shop_id
  35. * @return array
  36. * @author 段誉
  37. * @date 2022/4/24 11:05
  38. */
  39. public static function getListsCondition($get, $shop_id)
  40. {
  41. $where[] = ['o.shop_id', '=', $shop_id];
  42. if (isset($get['status']) && is_numeric($get['status']) && $get['status'] != '') {
  43. $where[] = ['i.status', '=', (int)$get['status']];
  44. }
  45. if (!empty($get['order_sn']) && $get['order_sn'] != '') {
  46. $where[] = ['order_sn', 'like', '%'.$get['order_sn'].'%'];
  47. }
  48. if (isset($get['order_status']) && $get['order_status'] != '') {
  49. $where[] = ['order_status', '=', $get['order_status']];
  50. }
  51. // 创建时间
  52. if(isset($get['start_time']) && !empty($get['start_time'])) {
  53. $where[] = ['o.create_time', '>=', strtotime($get['start_time']) ];
  54. }
  55. if(isset($get['end_time']) && !empty($get['end_time'])) {
  56. $where[] = ['o.create_time', '<=', strtotime($get['end_time']) ];
  57. }
  58. return $where;
  59. }
  60. /**
  61. * @notes 发票列表
  62. * @param $get
  63. * @param $shop_id
  64. * @return array
  65. * @author 段誉
  66. * @date 2022/4/12 17:56
  67. */
  68. public static function getInvoiceLists($get, $shop_id)
  69. {
  70. $where = self::getListsCondition($get, $shop_id);
  71. $field = ['i.*', 'o.order_sn', 'o.order_amount', 'order_status','o.create_time' => 'order_create_time'];
  72. $model = new OrderInvoice();
  73. $lists = $model->alias('i')->field($field)
  74. ->join('order o', 'o.id = i.order_id')
  75. ->order('i.id desc')
  76. ->where($where)
  77. ->append(['type_text', 'header_type_text', 'status_text'])
  78. ->paginate([
  79. 'page' => $get['page'] ?? 1,
  80. 'list_rows' => $get['limit'] ?? 10,
  81. 'var_page' => 'page'
  82. ])->toArray();
  83. foreach ($lists['data'] as &$item) {
  84. $item['order_status'] = Order::getOrderStatus($item['order_status']);
  85. $item['order_create_time'] = date('Y-m-d h:i:s', $item['order_create_time']);
  86. }
  87. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  88. }
  89. /**
  90. * @notes 开票
  91. * @param $params
  92. * @author 段誉
  93. * @date 2022/4/12 18:58
  94. */
  95. public static function setInvoice($params)
  96. {
  97. OrderInvoice::update([
  98. 'id' => $params['id'],
  99. 'status' => $params['status'],
  100. 'invoice_number' => $params['invoice_number'],
  101. 'invoice_time' => time(),
  102. ]);
  103. }
  104. /**
  105. * @notes 发票详情
  106. * @param $id
  107. * @return array
  108. * @author 段誉
  109. * @date 2022/4/12 18:55
  110. */
  111. public static function detail($id)
  112. {
  113. $invoice = OrderInvoice::with(['order_data'])
  114. ->append(['type_text', 'header_type_text', 'status_text'])
  115. ->findOrEmpty($id)
  116. ->toArray();
  117. return $invoice;
  118. }
  119. /**
  120. * @notes 导出Excel
  121. * @param array $condition
  122. * @return array|false
  123. * @author 段誉
  124. * @date 2022/4/24 10:10
  125. */
  126. public static function export($get, $shop_id)
  127. {
  128. try {
  129. $where = self::getListsCondition($get, $shop_id);
  130. $field = ['i.*', 'o.order_sn', 'o.order_amount', 'order_status','o.create_time' => 'order_create_time'];
  131. $lists = (new OrderInvoice())->alias('i')
  132. ->field($field)
  133. ->join('order o', 'o.id = i.order_id')
  134. ->order('i.id desc')
  135. ->where($where)
  136. ->append(['type_text', 'header_type_text', 'status_text'])
  137. ->select()->toArray();
  138. foreach ($lists as &$item) {
  139. $item['order_status'] = Order::getOrderStatus($item['order_status']);
  140. $item['order_create_time'] = date('Y-m-d h:i:s', $item['order_create_time']);
  141. }
  142. $excelFields = [
  143. 'order_sn' => '订单编号',
  144. 'order_amount' => '订单金额',
  145. 'order_status' => '订单状态',
  146. 'order_create_time' => '下单时间',
  147. 'type_text' => '发票类型',
  148. 'header_type_text' => '抬头类型',
  149. 'name' => '发票抬头',
  150. 'duty_number' => '税号',
  151. 'email' => '邮箱',
  152. 'status_text' => '开票状态',
  153. 'invoice_number' => '发票编号',
  154. ];
  155. $export = new ExportExcelServer();
  156. $export->setFileName('发票');
  157. $export->setExportNumber(['invoice_number']);
  158. $result = $export->createExcel($excelFields, $lists);
  159. return ['url' => $result];
  160. } catch (\Exception $e) {
  161. self::$error = $e->getMessage();
  162. return false;
  163. }
  164. }
  165. }