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

RechargeLogic.php 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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;
  20. use app\common\basics\Logic;
  21. use app\common\model\RechargeTemplate;
  22. use think\facade\Db;
  23. use app\common\server\ConfigServer;
  24. class RechargeLogic extends Logic
  25. {
  26. public static function templatelists(){
  27. $list = RechargeTemplate::where(['del'=>0])->order(['sort' => 'desc'])->select()->toArray();
  28. foreach ($list as &$item){
  29. $item['money'] && $item['money'] = '¥'.$item['money'];
  30. $item['give_money'] && $item['give_money'] = '¥'.$item['give_money'];
  31. }
  32. return $list;
  33. }
  34. public static function getRechargeConfig(){
  35. $config = [
  36. 'open_racharge' => ConfigServer::get('recharge','open_racharge',0),
  37. 'give_growth' => ConfigServer::get('recharge', 'give_growth', 0),
  38. 'min_money' => ConfigServer::get('recharge', 'min_money', 0),
  39. ];
  40. return [$config];
  41. }
  42. public static function add($post){
  43. try{
  44. // 判断充值金额是否已存在
  45. $recharge_template = RechargeTemplate::where([
  46. 'del' =>0,
  47. 'money' => $post['money']
  48. ])->findOrEmpty();
  49. if(!$recharge_template->isEmpty()) {
  50. throw new \think\Exception('该充值金额的模板已存在');
  51. }
  52. $new = time();
  53. $add_data = [
  54. 'money' => $post['money'],
  55. 'give_money' => $post['give_money'],
  56. 'sort' => $post['sort'],
  57. 'is_recommend' => $post['is_recommend'],
  58. 'create_time' => $new,
  59. 'update_time' => $new,
  60. ];
  61. RechargeTemplate::create($add_data);
  62. return true;
  63. }catch(\Exception $e) {
  64. self::$error = $e->getMessage();
  65. return false;
  66. }
  67. }
  68. public static function changeTableValue($table,$pk_name,$pk_value,$field,$field_value){
  69. //允许修改的字段
  70. $allow_field = [
  71. 'is_show','sort','status','is_new','is_best','is_like','is_recommend'
  72. ];
  73. if(!in_array($field,$allow_field)){
  74. return false;
  75. }
  76. if(is_array($pk_value)){
  77. $where[] = [$pk_name,'in',$pk_value];
  78. }else{
  79. $where[] = [$pk_name,'=',$pk_value];
  80. }
  81. $data= [
  82. $field => $field_value,
  83. 'update_time' => time(),
  84. ];
  85. return Db::name($table)->where($where)->update($data);
  86. }
  87. public static function getRechargeTemplate($id){
  88. return Db::name('recharge_template')->where(['id'=>$id])->find();
  89. }
  90. public static function edit($post){
  91. try{
  92. // 判断充值金额是否已存在
  93. $recharge_template = RechargeTemplate::where([
  94. ['del', '=', 0],
  95. ['money', '=', $post['money']],
  96. ['id', '<>', $post['id']],
  97. ])->findOrEmpty();
  98. if(!$recharge_template->isEmpty()) {
  99. throw new \think\Exception('该充值金额的模板已存在');
  100. }
  101. $new = time();
  102. $update_data = [
  103. 'id' => $post['id'],
  104. 'money' => $post['money'],
  105. 'give_money' => $post['give_money'],
  106. 'sort' => $post['sort'],
  107. 'is_recommend' => $post['is_recommend'],
  108. 'update_time' => $new,
  109. ];
  110. RechargeTemplate::update($update_data);
  111. return true;
  112. }catch(\Exception $e) {
  113. self::$error = $e->getMessage();
  114. return false;
  115. }
  116. }
  117. public static function del($id){
  118. return Db::name('recharge_template')->where(['id'=>$id])->update(['update_time'=>time(),'del'=>1]);
  119. }
  120. public static function setRecharge($post){
  121. ConfigServer::set('recharge','open_racharge',$post['open_racharge']);
  122. ConfigServer::set('recharge','give_growth',$post['give_growth']);
  123. ConfigServer::set('recharge','min_money',$post['min_money']);
  124. }
  125. }