截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <?php
  2. namespace app\shop\logic;
  3. use app\common\basics\Logic;
  4. use app\common\enum\ShopEnum;
  5. use app\common\model\shop\Shop;
  6. use app\common\server\UrlServer;
  7. class StoreLogic extends Logic
  8. {
  9. /**
  10. * @Notes: 获取商家详细
  11. * @Author: 张无忌
  12. * @param $shop_id
  13. * @return array
  14. */
  15. public static function detail($shop_id)
  16. {
  17. $model = new Shop();
  18. $detail = $model->field(true)
  19. ->with(['category'])
  20. ->json(['other_qualifications'],true)
  21. ->findOrEmpty($shop_id)->toArray();
  22. $detail['category'] = $detail['category']['name'] ?? '未知';
  23. $detail['type'] = ShopEnum::getShopTypeDesc($detail['type']);
  24. $detail['run_start_time'] = $detail['run_start_time'] ? date('H:i:s', $detail['run_start_time']) : '';
  25. $detail['run_end_time'] = $detail['run_end_time'] ? date('H:i:s', $detail['run_end_time']) : '';
  26. $detail['business_license'] = $detail['business_license'] ? UrlServer::getFileUrl($detail['business_license']) : '';
  27. if (!empty($detail['other_qualifications'])) {
  28. foreach ($detail['other_qualifications'] as &$val) {
  29. $val = UrlServer::getFileUrl($val);
  30. }
  31. }
  32. return $detail;
  33. }
  34. /**
  35. * @Notes: 修改商家信息
  36. * @Author: 张无忌
  37. * @param $post
  38. * @return bool
  39. */
  40. public static function edit($post)
  41. {
  42. try {
  43. $num = count($post['other_qualifications'] ?? []);
  44. if ($num > 5) {
  45. throw new \Exception('其他资质图片不能超过五张', 10006);
  46. }
  47. // 校验配送方式
  48. self::checkDeliveryType($post);
  49. Shop::update([
  50. 'nickname' => $post['nickname'],
  51. 'mobile' => $post['mobile'],
  52. 'keywords' => $post['keywords'] ?? '',
  53. 'intro' => $post['intro'] ?? '',
  54. 'is_run' => $post['is_run'],
  55. // 'service_mobile' => $post['service_mobile'],
  56. 'weekdays' => $post['weekdays'] ?? '',
  57. 'province_id' => $post['province_id'] ?? 0,
  58. 'city_id' => $post['city_id'] ?? 0,
  59. 'district_id' => $post['district_id'] ?? 0,
  60. 'address' => $post['address'] ?? '',
  61. 'longitude' => $post['longitude'] ?? '',
  62. 'latitude' => $post['latitude'] ?? '',
  63. 'run_start_time' => empty($post['run_start_time']) ? '' : strtotime($post['run_start_time']),
  64. 'run_end_time' => empty($post['run_end_time']) ? '' : strtotime($post['run_end_time']),
  65. 'refund_address' => json_encode([
  66. 'nickname' => $post['refund_nickname'],
  67. 'mobile' => $post['refund_mobile'],
  68. 'province_id' => $post['refund_province_id'],
  69. 'city_id' => $post['refund_city_id'],
  70. 'district_id' => $post['refund_district_id'],
  71. 'address' => $post['refund_address'],
  72. ], JSON_UNESCAPED_UNICODE),
  73. 'business_license' => empty($post['business_license']) ? '' : UrlServer::setFileUrl($post['business_license']),
  74. 'other_qualifications' => isset($post['other_qualifications']) ? json_encode($post['other_qualifications'], JSON_UNESCAPED_UNICODE) : '',
  75. 'open_invoice' => $post['open_invoice'] ?? 0,
  76. 'spec_invoice' => $post['spec_invoice'] ?? 0,
  77. 'delivery_type' => $post['delivery_type']
  78. ], ['id'=>$post['id']]);
  79. return true;
  80. } catch (\Exception $e) {
  81. static::$error = $e->getMessage();
  82. return false;
  83. }
  84. }
  85. /**
  86. * @notes 校验配送方式
  87. * @param $post
  88. * @return bool
  89. * @throws \Exception
  90. * @author 段誉
  91. * @date 2022/11/1 11:30
  92. */
  93. public static function checkDeliveryType($post)
  94. {
  95. // 校验配送方式
  96. if (empty($post['delivery_type'])) {
  97. throw new \Exception('至少选择一种配送方式');
  98. }
  99. // 线下自提时,商家地址必填
  100. if (in_array(ShopEnum::DELIVERY_SELF, $post['delivery_type'])) {
  101. if (empty($post['province_id']) || empty($post['city_id']) || empty($post['district_id']) || empty($post['address'])) {
  102. throw new \Exception('线下自提需完善商家地址');
  103. }
  104. }
  105. return true;
  106. }
  107. }