截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

OrderInvoiceLogic.php 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <?php
  2. namespace app\api\logic;
  3. use app\api\validate\PlaceOrderInvoiceValidate;
  4. use app\common\basics\Logic;
  5. use app\common\enum\OrderInvoiceEnum;
  6. use app\common\enum\ShopEnum;
  7. use app\common\model\order\Order;
  8. use app\common\model\order\OrderInvoice;
  9. use app\common\model\shop\Shop;
  10. /**
  11. * 订单发票逻辑
  12. * Class OrderInvoiceLogic
  13. * @package app\api\logic
  14. */
  15. class OrderInvoiceLogic extends Logic
  16. {
  17. /**
  18. * @notes 添加发票
  19. * @param $params
  20. * @return bool
  21. * @author 段誉
  22. * @date 2022/4/12 10:11
  23. */
  24. public static function add($params): bool
  25. {
  26. try {
  27. $order = Order::with(['shop'])->findOrEmpty($params['order_id']);
  28. OrderInvoice::create([
  29. 'shop_id' => $order['shop']['id'],
  30. 'user_id' => $order['user_id'],
  31. 'order_id' => $order['id'],
  32. 'type' => $params['type'],
  33. 'header_type' => $params['header_type'],
  34. 'name' => $params['name'],
  35. 'duty_number' => $params['duty_number'] ?? '',
  36. 'email' => $params['email'],
  37. 'mobile' => $params['mobile'] ?? '',
  38. 'address' => $params['address'] ?? '',
  39. 'bank' => $params['bank'] ?? '',
  40. 'bank_account' => $params['bank_account'] ?? '',
  41. 'invoice_amount' => $order['order_amount'],
  42. 'create_time' => time()
  43. ]);
  44. return true;
  45. } catch (\Exception $e) {
  46. self::$error = $e->getMessage();
  47. return false;
  48. }
  49. }
  50. /**
  51. * @notes 编辑发票
  52. * @param $params
  53. * @return bool
  54. * @author 段誉
  55. * @date 2022/4/12 10:30
  56. */
  57. public static function edit($params) : bool
  58. {
  59. try {
  60. OrderInvoice::update([
  61. 'type' => $params['type'],
  62. 'header_type' => $params['header_type'],
  63. 'name' => $params['name'],
  64. 'duty_number' => $params['duty_number'] ?? '',
  65. 'email' => $params['email'],
  66. 'mobile' => $params['mobile'] ?? '',
  67. 'address' => $params['address'] ?? '',
  68. 'bank' => $params['bank'] ?? '',
  69. 'bank_account' => $params['bank_account'] ?? '',
  70. 'create_time' => time()
  71. ], ['id' => $params['id']]);
  72. return true;
  73. } catch (\Exception $e) {
  74. self::$error = $e->getMessage();
  75. return false;
  76. }
  77. }
  78. /**
  79. * @notes 发票详情
  80. * @param $params
  81. * @return array|\think\Model
  82. * @author 段誉
  83. * @date 2022/4/12 12:12
  84. */
  85. public static function detail($params)
  86. {
  87. return OrderInvoice::findOrEmpty($params['id'])->toArray();
  88. }
  89. /**
  90. * @notes 通过订单id获取发票信息
  91. * @param $id
  92. * @return array
  93. * @author 段誉
  94. * @date 2022/4/12 9:24
  95. */
  96. public static function getInvoiceDetailByOrderId($id): array
  97. {
  98. $result = Order::field(['id', 'order_sn', 'shop_id', 'order_amount', 'order_status', 'create_time'])
  99. ->with([
  100. 'shop',
  101. 'order_goods',
  102. 'invoice' => function ($query) {
  103. $query->withoutField(['invoice_time', 'update_time']);
  104. $query->append(['status_text', 'type_text', 'header_type_text']);
  105. }
  106. ])
  107. ->append(['order_status_text'])
  108. ->findOrEmpty($id)->toArray();
  109. return $result;
  110. }
  111. /**
  112. * @notes 校验订单发票
  113. * @param $params
  114. * @return array|false
  115. * @author 段誉
  116. * @date 2022/4/11 15:34
  117. */
  118. public static function checkOrderInvoice($params, $type = null)
  119. {
  120. if (empty($params['invoice'])) {
  121. return [];
  122. }
  123. try {
  124. if($type == 'team') {
  125. $invoiceParams = $params['invoice'];
  126. } else {
  127. $invoiceParams = json_decode($params['invoice'], true);
  128. }
  129. $invoiceParams = array_column($invoiceParams, null, 'shop_id');
  130. $shops = Shop::whereIn('id', array_keys($invoiceParams))->column('*', 'id');
  131. foreach ($invoiceParams as $shopId => $item) {
  132. if (!isset($shops[$shopId])) {
  133. continue;
  134. }
  135. $shop = $shops[$shopId];
  136. // 商家不支持开发票
  137. if ($shop['open_invoice'] == ShopEnum::INVOICE_CLOSE) {
  138. throw new \Exception($shop['name'] . '店铺不支持开具发票');
  139. }
  140. // 选择的发票类型为专票但是该店铺不支持专票
  141. if ($item['type'] == OrderInvoiceEnum::TYPE_SPEC && $shop['spec_invoice'] == ShopEnum::SPEC_INVOICE_UNABLE) {
  142. throw new \Exception($shop['name'] . '不支持开具专票');
  143. }
  144. // 校验参数
  145. validate(PlaceOrderInvoiceValidate::class)->check($item);
  146. }
  147. return $invoiceParams;
  148. } catch (\Exception $e) {
  149. self::$error = $e->getMessage();
  150. return false;
  151. }
  152. }
  153. /**
  154. * @notes 下单时添加发票
  155. * @param $shopId
  156. * @param $userId
  157. * @param $orderId
  158. * @param $invoice // 订单中提交的发票信息,以门店id为键
  159. * @return OrderInvoice|\think\Model|void
  160. * @author 段誉
  161. * @date 2022/4/11 17:46
  162. */
  163. public static function insertOrderInvoice($shopId, $userId, $orderId, $invoice)
  164. {
  165. $order = Order::findOrEmpty($orderId);
  166. foreach ($invoice as $key => $item) {
  167. // 此处$key 为 店铺id
  168. if ($shopId != $key) {
  169. continue;
  170. }
  171. return OrderInvoice::create([
  172. 'shop_id' => $shopId,
  173. 'user_id' => $userId,
  174. 'order_id' => $orderId,
  175. 'type' => $item['type'],
  176. 'header_type' => $item['header_type'],
  177. 'name' => $item['name'],
  178. 'duty_number' => $item['duty_number'] ?? '',
  179. 'email' => $item['email'],
  180. 'mobile' => $item['mobile'] ?? '',
  181. 'address' => $item['address'] ?? '',
  182. 'bank' => $item['bank'] ?? '',
  183. 'bank_account' => $item['bank_account'] ?? '',
  184. 'invoice_amount' => $order['order_amount'],
  185. 'create_time' => time()
  186. ]);
  187. }
  188. }
  189. /**
  190. * @notes 获取商家发票设置
  191. * @param $params
  192. * @return array
  193. * @author 段誉
  194. * @date 2022/4/12 15:32
  195. */
  196. public static function getInvoiceSetting($params)
  197. {
  198. return Shop::field('id,open_invoice,spec_invoice')->findOrEmpty($params['shop_id'])->toArray();
  199. }
  200. }