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

GoodsRenewLogic.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?php
  2. /*
  3. * @Author: ZMH
  4. * @Email: zmhwork@qq.com
  5. * @Date: 2025-03-13 11:47:30
  6. * @LastEditTime: 2025-03-13 17:41:19
  7. * @LastEditors: ZMH
  8. * @FilePath: \opkpm\app\admin\logic\shop\GoodsRenewLogic.php
  9. *
  10. * @Description: 续费逻辑处理
  11. */
  12. namespace app\admin\logic\shop;
  13. use app\admin\validate\shop\GoodsRenewValidate;
  14. use app\common\basics\Logic;
  15. use app\common\model\shop\Shop; //判断是否绑定
  16. use app\common\model\shop\ShopGoodsRenew;
  17. use Exception;
  18. class GoodsRenewLogic extends Logic
  19. {
  20. public static function lists($get)
  21. {
  22. $where = [
  23. ['del', '=', 0]
  24. ];
  25. if (!empty($get['name']) and $get['name'])
  26. $where[] = ['name', 'like', '%' . $get['name'] . '%'];
  27. $model = new ShopGoodsRenew();
  28. $lists = $model->field(true)
  29. ->where($where)
  30. ->order('sort', 'desc')
  31. ->paginate([
  32. 'page' => $get['page'],
  33. 'list_rows' => $get['limit'],
  34. 'var_page' => 'page'
  35. ])
  36. ->toArray();
  37. foreach ($lists['data'] as $key => $value) {
  38. $lists['data'][$key]['type_str'] = $value['type_id'] == 0 ? '包月' : '按量付费';
  39. $lists['data'][$key]['status_str'] = $value['status'] == 0 ? '禁用' : '启用';
  40. }
  41. return ['count' => $lists['total'], 'lists' => $lists['data']];
  42. }
  43. public static function detail($id)
  44. {
  45. $model = new ShopGoodsRenew();
  46. return $model->field(true)->findOrEmpty((int)$id)->toArray();
  47. }
  48. public static function getCategory()
  49. {
  50. try {
  51. $model = new ShopGoodsRenew();
  52. return $model->field(true)
  53. ->where('del', 0)
  54. ->order('id', 'desc')
  55. ->order('sort', 'desc')
  56. ->select()->toArray();
  57. } catch (\Exception $e) {
  58. return [];
  59. }
  60. }
  61. public static function add($post)
  62. {
  63. try {
  64. validate(GoodsRenewValidate::class)->scene('add')->check($post);
  65. } catch (Exception $e) {
  66. static::$error = $e->getMessage();
  67. return false;
  68. }
  69. ShopGoodsRenew::create($post);
  70. return true;
  71. }
  72. public static function edit($post)
  73. {
  74. try {
  75. validate(GoodsRenewValidate::class)->scene('edit')->check($post);
  76. } catch (Exception $e) {
  77. static::$error = $e->getMessage();
  78. return false;
  79. }
  80. $info = ShopGoodsRenew::where("id", $post['id'])->find();
  81. if (!$info) {
  82. static::$error = '数据不存在';
  83. return false;
  84. }
  85. $info->save($post);
  86. return true;
  87. }
  88. public static function del($post)
  89. {
  90. try {
  91. validate(GoodsRenewValidate::class)->scene('edit')->check($post);
  92. } catch (Exception $e) {
  93. static::$error = $e->getMessage();
  94. return false;
  95. }
  96. $info = ShopGoodsRenew::where("id", $post['id'])->find();
  97. if (!$info) {
  98. static::$error = '数据不存在';
  99. return false;
  100. }
  101. $info->del = 1;
  102. $info->save();
  103. return true;
  104. }
  105. }