GoodLogic.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <?php
  2. namespace app\admin\logic;
  3. use app\model\CommonModel;
  4. use app\model\GoodModel;
  5. use think\exception\ValidateException;
  6. use think\response\Json;
  7. class GoodLogic extends BaseLogic
  8. {
  9. //获取商品列表
  10. public static function list(array $data = []): Json
  11. {
  12. $db = GoodModel::where('is_del', CommonModel::$del_normal);
  13. if ($data['good_code'] !== '') $db->whereLike('good_code', '%' . $data['good_code'] . '%');
  14. if ($data['good_name']) $db->whereLike('good_name', '%' . $data['good_name'] . '%');
  15. if ($data['status'] != '') $db->where('status', $data['status']);
  16. if ($data['type'] != '') $db->where('type', $data['type']);
  17. $count = $db->count('id');
  18. $list = $db
  19. ->field('id,good_cover_img,good_code,good_name,status,type,creater,addtime')
  20. ->page($data['page'], $data['size'])
  21. ->order('addtime desc')
  22. ->select()
  23. ->toArray();
  24. return json_show(CommonModel::$success, '获取商品列表成功', ['list' => $list, 'count' => $count]);
  25. }
  26. //添加商品
  27. public static function add(array $data = []): Json
  28. {
  29. $rs = GoodModel::field('id')
  30. ->where(['is_del' => CommonModel::$del_normal, 'good_name' => $data['good_name']])
  31. ->findOrEmpty()
  32. ->isEmpty();
  33. if (!$rs) throw new ValidateException('该商品名称已存在');
  34. $good_code = makeNo("SP");
  35. $res = GoodModel::create([
  36. 'good_cover_img' => $data['good_cover_img'],
  37. 'good_code' => $good_code,
  38. 'good_name' => $data['good_name'],
  39. 'moq' => $data['moq'],
  40. 'step' => $data['step'],
  41. 'type' => $data['type'],
  42. 'good_banner_img' => implode(',', $data['good_banner_img']),
  43. 'good_img' => implode(',', $data['good_img']),
  44. 'good_param' => json_encode($data['good_param'], JSON_UNESCAPED_UNICODE),
  45. 'good_remark' => $data['good_remark'],
  46. 'unit_id' => $data['unit_id'],
  47. 'is_del' => CommonModel::$del_normal,
  48. 'status' => CommonModel::$status_normal,
  49. 'createrid' => self::$uid,
  50. 'creater' => self::$uname,
  51. 'addtime' => date("Y-m-d H:i:s"),
  52. 'updaterid' => self::$uid,
  53. 'updater' => self::$uname,
  54. 'updatetime' => date("Y-m-d H:i:s"),
  55. ])->save();
  56. return $res ? json_show(CommonModel::$success, '新建商品成功') : json_show(CommonModel::$error_param, '新建商品失败');
  57. }
  58. //读取商品详情
  59. public static function read(int $id = 0): Json
  60. {
  61. $rs = GoodModel::field(true)
  62. ->where(['id' => $id, 'is_del' => CommonModel::$del_normal])
  63. ->withAttr('good_banner_img', function ($val) {
  64. return explode(',', $val);
  65. })->withAttr('good_img', function ($val) {
  66. return explode(',', $val);
  67. })->withAttr('good_param', function ($val) {
  68. return json_decode($val);
  69. })
  70. ->findOrEmpty()
  71. ->toArray();
  72. return json_show(CommonModel::$success, '获取商品详情成功', $rs);
  73. }
  74. //编辑商品
  75. public static function edit(array $data = []): Json
  76. {
  77. $rs = GoodModel::field('id,good_name')
  78. ->where(['id' => $data['id'], 'is_del' => CommonModel::$del_normal])
  79. ->findOrEmpty();
  80. if ($rs->isEmpty()) throw new ValidateException('该商品不存在');
  81. //修改了商品名称,检查商品名称是否重复
  82. if ($rs->good_name != $data['good_name']) {
  83. $temp = GoodModel::field('id')
  84. ->where(['is_del' => CommonModel::$del_normal, 'good_name' => $data['good_name']])
  85. ->findOrEmpty()
  86. ->isEmpty();
  87. if (!$temp) throw new ValidateException('该商品名称重复');
  88. }
  89. $res = GoodModel::where(['id' => $data['id']])->save([
  90. 'good_cover_img' => $data['good_cover_img'],
  91. 'good_name' => $data['good_name'],
  92. 'moq' => $data['moq'],
  93. 'step' => $data['step'],
  94. 'good_banner_img' => implode(',', $data['good_banner_img']),
  95. 'good_img' => implode(',', $data['good_img']),
  96. 'good_param' => json_encode($data['good_param'], JSON_UNESCAPED_UNICODE),
  97. 'good_remark' => $data['good_remark'],
  98. 'unit_id' => $data['unit_id'],
  99. 'updaterid' => self::$uid,
  100. 'updater' => self::$uname,
  101. 'updatetime' => date("Y-m-d H:i:s"),
  102. ]);
  103. return $res ? json_show(CommonModel::$success, '编辑商品成功') : json_show(CommonModel::$error_param, '编辑商品失败');
  104. }
  105. //商品启禁用
  106. public static function status(array $data = []): Json
  107. {
  108. $where = [
  109. ['id', '=', $data['id']],
  110. ['is_del', '=', CommonModel::$del_normal],
  111. ['status', '<>', $data['status']],
  112. ];
  113. $rs = GoodModel::field('id,status')
  114. ->where($where)
  115. ->findOrEmpty()
  116. ->isEmpty();
  117. if ($rs) throw new ValidateException('该商品不存在或重复操作');
  118. $res = GoodModel::where($where)->save($data);
  119. return $res ? json_show(CommonModel::$success, '操作成功') : json_show(CommonModel::$error_param, '操作失败');
  120. }
  121. //删除商品
  122. public static function delete(int $id = 0): Json
  123. {
  124. $rs = GoodModel::where(['id' => $id, 'is_del' => CommonModel::$del_normal])
  125. ->save(['is_del' => CommonModel::$del_deleted]);
  126. return $rs ? json_show(CommonModel::$success, '商品删除成功') : json_show(CommonModel::$error_param, '商品不存在或重复删除');
  127. }
  128. }