截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

ShopLogic.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\shopapi\logic;
  20. use app\admin\controller\activity_area\Area;
  21. use app\common\enum\NoticeEnum;
  22. use app\common\enum\WithdrawalEnum;
  23. use app\common\model\shop\Shop;
  24. use app\common\model\shop\ShopAccountLog;
  25. use app\common\model\shop\ShopAdmin;
  26. use app\common\model\shop\ShopBank;
  27. use app\common\model\shop\ShopCategory;
  28. use app\common\model\shop\ShopWithdrawal;
  29. use app\common\server\AreaServer;
  30. use app\common\server\ConfigServer;
  31. use think\facade\Db;
  32. /**
  33. * 商家逻辑层
  34. * Class ShopLogic
  35. * @package app\shopapi\logic
  36. */
  37. class ShopLogic{
  38. /**
  39. * @notes 获取商家可提现余额
  40. * @param $shop_id
  41. * @return mixed
  42. * @author cjhao
  43. * @date 2021/11/10 16:15
  44. */
  45. public function getShopInfo(int $shop_id){
  46. $shop = Shop::where(['id'=>$shop_id])
  47. ->field("id,cid,name,logo,is_run,wallet,score,nickname,mobile,intro,
  48. run_start_time,run_end_time,weekdays,province_id,city_id,district_id,address,refund_address,open_invoice,spec_invoice")
  49. ->find()->toArray();
  50. $shop['run_start_time'] = date('H:i',$shop['run_start_time']);
  51. $shop['run_end_time'] = date('H:i',$shop['run_end_time']);
  52. $shop['province_name'] = '';
  53. $shop['city_name'] = '';
  54. $shop['district_name'] = '';
  55. $shop['province_id'] && $shop['province_name'] = AreaServer::getAddress($shop['province_id']);
  56. $shop['city_id'] && $shop['city_name'] = AreaServer::getAddress($shop['city_id']);
  57. $shop['district_id'] && $shop['district_name'] = AreaServer::getAddress($shop['district_id']);
  58. $shop['refund_address']['province_name'] = !empty($shop['refund_address']['province_id']) ? AreaServer::getAddress($shop['refund_address']['province_id']) : '';
  59. $shop['refund_address']['city_name'] = !empty($shop['refund_address']['city_id']) ? AreaServer::getAddress($shop['refund_address']['city_id']) : '';
  60. $shop['refund_address']['district_name'] = !empty($shop['refund_address']['district_id']) ? AreaServer::getAddress($shop['refund_address']['district_id']) : '';
  61. $shop['cate_name'] = ShopCategory::where('id', $shop['cid'])->value('name');
  62. return $shop;
  63. }
  64. /**
  65. * @notes 获取提现信息
  66. * @param int $shop_id
  67. * @return array
  68. * @throws \think\db\exception\DataNotFoundException
  69. * @throws \think\db\exception\DbException
  70. * @throws \think\db\exception\ModelNotFoundException
  71. * @author cjhao
  72. * @date 2021/11/10 16:30
  73. */
  74. public function getWithdrawInfo(int $shop_id){
  75. $wallet = Shop::where(['id'=>$shop_id])
  76. ->value("wallet");
  77. $min_withdrawal_money = ConfigServer::get('shop_withdrawal', 'min_withdrawal_money', 0);
  78. $max_withdrawal_money = ConfigServer::get('shop_withdrawal', 'max_withdrawal_money', 0);
  79. $withdrawal_service_charge = ConfigServer::get('shop_withdrawal', 'withdrawal_service_charge', 0);
  80. $bank_list = ShopBank::where(['shop_id'=>$shop_id,'del'=>0])
  81. ->field('id,name,branch,nickname,account')
  82. ->select()->toArray();
  83. return [
  84. 'wallet' => $wallet,
  85. 'min_withdrawal_money' => $min_withdrawal_money,
  86. 'max_withdrawal_money' => $max_withdrawal_money,
  87. 'withdrawal_service_charge' => $withdrawal_service_charge,
  88. 'bank_list' => $bank_list,
  89. ];
  90. }
  91. /**
  92. * @notes 提现金额
  93. * @param array $post
  94. * @return bool|string
  95. * @author cjhao
  96. * @date 2021/11/10 16:56
  97. */
  98. public function withdraw(array $post){
  99. Db::startTrans();
  100. try {
  101. $shop_id = $post['shop_id'];
  102. // 1、获取提现条件
  103. $withdrawal_service_charge = ConfigServer::get('shop_withdrawal', 'withdrawal_service_charge', 0);
  104. // 2、获取商家信息
  105. $shop = (new Shop())->findOrEmpty($shop_id)->toArray();
  106. // 4、获取商家提现手续费
  107. $poundage_amount = 0;
  108. if ($withdrawal_service_charge > 0) {
  109. $proportion = $withdrawal_service_charge / 100;
  110. $poundage_amount = $post['money'] * $proportion;
  111. $poundage_amount = $poundage_amount <= 0 ? 0 : $poundage_amount;
  112. }
  113. // 5、创建申请记录
  114. $withdrawal = ShopWithdrawal::create([
  115. 'sn' => createSn('shop_withdrawal', 'sn'),
  116. 'bank_id' => $post['bank_id'],
  117. 'shop_id' => $shop_id,
  118. 'apply_amount' => floatval($post['money']),
  119. 'left_amount' => $post['money'] - $poundage_amount,
  120. 'poundage_amount' => $poundage_amount,
  121. 'poundage_ratio' => $withdrawal_service_charge,
  122. 'status' => WithdrawalEnum::APPLY_STATUS
  123. ]);
  124. // 6、扣除商家可提现金额
  125. Shop::update([
  126. 'wallet' => ['dec', floatval($post['money'])],
  127. 'update_time' => time()
  128. ], ['id' => $shop_id]);
  129. $left_amount = Shop::where(['id' => $shop_id])->value('wallet');
  130. // 7、增加提现流水记录(待提现)
  131. $logType = ShopAccountLog::withdrawal_stay_money;
  132. ShopAccountLog::decData($shop_id, $logType, $post['money'], $left_amount, [
  133. 'source_id' => $withdrawal['id'],
  134. 'source_sn' => $withdrawal['sn'],
  135. 'remark' => '商家提现'
  136. ]);
  137. $platform_contacts = ConfigServer::get('website_platform', 'platform_mobile');
  138. if (!empty($platform_contacts)) {
  139. event('Notice', [
  140. 'scene' => NoticeEnum::SHOP_WITHDRAWAL_NOTICE_PLATFORM,
  141. 'mobile' => $platform_contacts,
  142. 'params' => [
  143. 'shop_withdrawal_sn' => $withdrawal['sn'],
  144. 'shop_name' => $shop['name'],
  145. ]
  146. ]);
  147. }
  148. Db::commit();
  149. return true;
  150. } catch (\Exception $e) {
  151. Db::rollback();
  152. return $e->getMessage();
  153. }
  154. }
  155. /**
  156. * @notes 提现记录
  157. * @param $shop_id
  158. * @param $page_no
  159. * @param $page_size
  160. * @return array
  161. * @throws \think\db\exception\DbException
  162. * @author cjhao
  163. * @date 2021/11/10 17:10
  164. */
  165. public function withdrawLog(int $shop_id,int $page_no,int $page_size){
  166. $lists = ShopWithdrawal::alias('SW')
  167. ->join('shop_account_log SCL','SW.sn = SCL.source_sn')
  168. ->where(['SW.shop_id'=>$shop_id,'source_type'=>[ShopAccountLog::withdrawal_stay_money,ShopAccountLog::withdrawal_dec_money,ShopAccountLog::withdrawal_fail_money]])
  169. ->field("SCL.id,SCL.change_amount,SCL.left_amount,status,SCL.create_time")
  170. ->paginate([
  171. 'page' => $page_no,
  172. 'list_rows' => $page_size,
  173. 'var_page' => 'page'
  174. ])->toArray();
  175. return ['count' => $lists['total'], 'lists' => $lists['data']];
  176. }
  177. /**
  178. * @notes 添加银行账户
  179. * @param $post
  180. * @return bool
  181. * @author cjhao
  182. * @date 2021/11/10 18:30
  183. */
  184. public function addBank(array $post){
  185. $shop_bank = new ShopBank();
  186. $shop_bank->shop_id = $post['shop_id'];
  187. $shop_bank->name = $post['name'];
  188. $shop_bank->branch = $post['branch'];
  189. $shop_bank->nickname = $post['nickname'];
  190. $shop_bank->account = $post['account'];
  191. $shop_bank->save();
  192. return true;
  193. }
  194. /**
  195. * @notes 获取银行卡
  196. * @param int $id
  197. * @param int $shop_id
  198. * @return array
  199. * @author cjhao
  200. * @date 2021/11/11 15:46
  201. */
  202. public function getBank(int $id,int $shop_id){
  203. $shop_bank = ShopBank::where(['id'=>$id,'shop_id'=>$shop_id])
  204. ->field('id,name,branch,nickname,account')
  205. ->findOrEmpty()->toArray();
  206. return $shop_bank;
  207. }
  208. /**
  209. * @notes 编辑银行账户
  210. * @param $post
  211. * @return bool
  212. * @author cjhao
  213. * @date 2021/11/10 18:38
  214. */
  215. public function editBank(array $post){
  216. ShopBank::update([
  217. 'name' => $post['name'],
  218. 'branch' => $post['branch'],
  219. 'nickname' => $post['nickname'],
  220. 'account' => $post['account'],
  221. 'del' => 0
  222. ], ['id'=>$post['id']]);
  223. return true;
  224. }
  225. /**
  226. * @notes 删除银行卡
  227. * @param $id
  228. * @param $shop_id
  229. * @return bool
  230. * @author cjhao
  231. * @date 2021/11/10 18:42
  232. */
  233. public function delBank(int $id,int $shop_id){
  234. ShopBank::where(['id'=>$id,'shop_id'=>$shop_id])->delete();
  235. return true;
  236. }
  237. /**
  238. * @notes 更新商家信息
  239. * @param array $post
  240. * @param int $shop_id
  241. * @return Shop
  242. * @author cjhao
  243. * @date 2021/11/11 11:34
  244. */
  245. public function shopSet(array $post,int $shop_id){
  246. if(isset($post['refund_address'])){
  247. $post['refund_address'] = json_encode($post['refund_address'],JSON_UNESCAPED_UNICODE);
  248. }
  249. return Shop::update($post,['id'=>$shop_id]);
  250. }
  251. /**
  252. * @notes 修改密码
  253. * @param $password
  254. * @param $admin_id
  255. * @param $shop_id
  256. * @return bool
  257. * @author cjhao
  258. * @date 2021/11/11 16:03
  259. */
  260. public function updatePassword(array $post,int $shop_id)
  261. {
  262. try {
  263. $admin = ShopAdmin::where(['id' => $post['admin_id'], 'shop_id' => $shop_id])->find();
  264. $admin->password = generatePassword($post['password'], $admin['salt']);
  265. $admin->save();
  266. return true;
  267. } catch (\Exception $e) {
  268. return $e->getMessage();
  269. }
  270. }
  271. }