Goods.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use fast\Tree;
  5. use logicmodel\WalletLogic;
  6. use think\Db;
  7. use think\exception\ValidateException;
  8. use think\Model;
  9. /**
  10. *
  11. *
  12. * @icon fa fa-circle-o
  13. */
  14. class Goods extends Backend
  15. {
  16. /**
  17. * Goods模型对象
  18. * @var \app\admin\model\Goods
  19. */
  20. protected $model = null;
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. $this->model = new \app\admin\model\Goods;
  25. $this->view->assign("isShowList", $this->model->getIsShowList());
  26. $this->view->assign("isHomeList", $this->model->getIsHomeList());
  27. }
  28. public function import()
  29. {
  30. parent::import();
  31. }
  32. /**
  33. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  34. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  35. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  36. */
  37. /**
  38. * 查看
  39. */
  40. public function index()
  41. {
  42. //当前是否为关联查询
  43. $this->relationSearch = true;
  44. //设置过滤方法
  45. $this->request->filter(['strip_tags', 'trim']);
  46. if ($this->request->isAjax()) {
  47. //如果发送的来源是Selectpage,则转发到Selectpage
  48. if ($this->request->request('keyField')) {
  49. return $this->selectpage();
  50. }
  51. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  52. $list = $this->model
  53. ->with(['goodscategory','author','network','merge','merge.goods','buy','buy.goods'])
  54. ->where(['goods.is_del'=>0])
  55. ->where($where)
  56. ->order($sort, $order)
  57. ->paginate($limit);
  58. foreach ($list as $row) {
  59. $row->visible(['id','name','image','images','price','desc','attribute','contract','meta_data','order','stock','sales','surplus','start_time','end_time','content','is_show','label','is_home','merge_open','merge_source_num','buy_type','buy_before_time']);
  60. $row->visible(['goodscategory']);
  61. $row->getRelation('goodscategory')->visible(['name']);
  62. $row->visible(['author']);
  63. $row->getRelation('author')->visible(['name']);
  64. $row->visible(['network','merge','buy']);
  65. $row->getRelation('network')->visible(['name']);
  66. }
  67. $result = array("total" => $list->total(), "rows" => $list->items());
  68. return json($result);
  69. }
  70. return $this->view->fetch();
  71. }
  72. public function del($ids = "")
  73. {
  74. $result = $this->model->where(['id'=>['in',$ids]])->update(['is_del'=>1]);
  75. if($result) return json(['code'=>1,'msg'=>'删除成功']);
  76. return json(['code'=>1,'msg'=>'删除成功']);
  77. }
  78. protected function selectpage()
  79. {
  80. //设置过滤方法
  81. $this->request->filter(['trim', 'strip_tags', 'htmlspecialchars']);
  82. //搜索关键词,客户端输入以空格分开,这里接收为数组
  83. $word = (array)$this->request->request("q_word/a");
  84. //当前页
  85. $page = $this->request->request("pageNumber");
  86. //分页大小
  87. $pagesize = $this->request->request("pageSize");
  88. //搜索条件
  89. $andor = $this->request->request("andOr", "and", "strtoupper");
  90. //排序方式
  91. $orderby = (array)$this->request->request("orderBy/a");
  92. //显示的字段
  93. $field = $this->request->request("showField");
  94. //主键
  95. $primarykey = $this->request->request("keyField");
  96. //主键值
  97. $primaryvalue = $this->request->request("keyValue");
  98. //搜索字段
  99. $searchfield = (array)$this->request->request("searchField/a");
  100. //自定义搜索条件
  101. $custom = (array)$this->request->request("custom/a");
  102. //是否返回树形结构
  103. $istree = $this->request->request("isTree", 0);
  104. $ishtml = $this->request->request("isHtml", 0);
  105. if ($istree) {
  106. $word = [];
  107. $pagesize = 999999;
  108. }
  109. $order = [];
  110. foreach ($orderby as $k => $v) {
  111. $order[$v[0]] = $v[1];
  112. }
  113. $field = $field ? $field : 'name';
  114. //如果有primaryvalue,说明当前是初始化传值
  115. if ($primaryvalue !== null) {
  116. $where = [$primarykey => ['in', $primaryvalue]];
  117. $pagesize = 999999;
  118. } else {
  119. $where = function ($query) use ($word, $andor, $field, $searchfield, $custom) {
  120. $logic = $andor == 'AND' ? '&' : '|';
  121. $searchfield = is_array($searchfield) ? implode($logic, $searchfield) : $searchfield;
  122. $searchfield = str_replace(',', $logic, $searchfield);
  123. $word = array_filter(array_unique($word));
  124. if (count($word) == 1) {
  125. $query->where($searchfield, "like", "%" . reset($word) . "%");
  126. } else {
  127. $query->where(function ($query) use ($word, $searchfield) {
  128. foreach ($word as $index => $item) {
  129. $query->whereOr(function ($query) use ($item, $searchfield) {
  130. $query->where($searchfield, "like", "%{$item}%");
  131. });
  132. }
  133. });
  134. }
  135. if ($custom && is_array($custom)) {
  136. foreach ($custom as $k => $v) {
  137. if (is_array($v) && 2 == count($v)) {
  138. $query->where($k, trim($v[0]), $v[1]);
  139. } else {
  140. $query->where($k, '=', $v);
  141. }
  142. }
  143. }
  144. };
  145. }
  146. $adminIds = $this->getDataLimitAdminIds();
  147. if (is_array($adminIds)) {
  148. $this->model->where($this->dataLimitField, 'in', $adminIds);
  149. }
  150. $list = [];
  151. $total = $this->model->where($where)->count();
  152. if ($total > 0) {
  153. if (is_array($adminIds)) {
  154. $this->model->where($this->dataLimitField, 'in', $adminIds);
  155. }
  156. $fields = is_array($this->selectpageFields) ? $this->selectpageFields : ($this->selectpageFields && $this->selectpageFields != '*' ? explode(',', $this->selectpageFields) : []);
  157. //如果有primaryvalue,说明当前是初始化传值,按照选择顺序排序
  158. if ($primaryvalue !== null && preg_match("/^[a-z0-9_\-]+$/i", $primarykey)) {
  159. $primaryvalue = array_unique(is_array($primaryvalue) ? $primaryvalue : explode(',', $primaryvalue));
  160. //修复自定义data-primary-key为字符串内容时,给排序字段添加上引号
  161. $primaryvalue = array_map(function ($value) {
  162. return '\'' . $value . '\'';
  163. }, $primaryvalue);
  164. $primaryvalue = implode(',', $primaryvalue);
  165. $this->model->orderRaw("FIELD(`{$primarykey}`, {$primaryvalue})");
  166. } else {
  167. $this->model->order($order);
  168. }
  169. $datalist = $this->model->where($where)
  170. ->where(['is_del'=>0])
  171. ->page($page, $pagesize)
  172. ->select();
  173. foreach ($datalist as $index => $item) {
  174. unset($item['password'], $item['salt']);
  175. if ($this->selectpageFields == '*') {
  176. $result = [
  177. $primarykey => isset($item[$primarykey]) ? $item[$primarykey] : '',
  178. $field => isset($item[$field]) ? $item[$field] : '',
  179. ];
  180. } else {
  181. $result = array_intersect_key(($item instanceof Model ? $item->toArray() : (array)$item), array_flip($fields));
  182. }
  183. $result['pid'] = isset($item['pid']) ? $item['pid'] : (isset($item['parent_id']) ? $item['parent_id'] : 0);
  184. $list[] = $result;
  185. }
  186. if ($istree && !$primaryvalue) {
  187. $tree = Tree::instance();
  188. $tree->init(collection($list)->toArray(), 'pid');
  189. $list = $tree->getTreeList($tree->getTreeArray(0), $field);
  190. if (!$ishtml) {
  191. foreach ($list as &$item) {
  192. $item = str_replace('&nbsp;', ' ', $item);
  193. }
  194. unset($item);
  195. }
  196. }
  197. }
  198. //这里一定要返回有list这个字段,total是可选的,如果total<=list的数量,则会隐藏分页按钮
  199. return json(['list' => $list, 'total' => $total]);
  200. }
  201. public function add()
  202. {
  203. if(request()->isPost()){
  204. $data = input('post.');
  205. $data = $data['row'];
  206. $data['contract'] = (new WalletLogic())->newContract();
  207. $data['meta_data'] = rand(111111,999999);
  208. $result = $this->model->insertGetId($data);
  209. if($result) $this->success('添加成功');
  210. $this->error('添加失败');
  211. }
  212. return $this->fetch();
  213. }
  214. public function merge($ids){
  215. $row=$this->model->find($ids);
  216. if($this->request->isPost()){
  217. $data=input('row/a');
  218. $check=$this->validate($data,$rules=[
  219. 'merge_open'=>['require','in:0,1'],
  220. 'merge_user_limit'=>['require','egt:0'],
  221. ]);
  222. if($check!==true){
  223. $this->error($check);
  224. }
  225. if(empty($data['merge'])){
  226. $data['merge']=[];
  227. }
  228. if(empty($data['merge']) && $data['merge_open']){
  229. $this->error('必须选择藏品');
  230. }
  231. DB::startTrans();
  232. $row['merge_open']=$data['merge_open'];
  233. $row['merge_user_limit']=$data['merge_user_limit'];
  234. $row->save();
  235. $ids=[];
  236. foreach ($data['merge'] as $merge){
  237. if(empty($merge['source_goods_id'])){
  238. $this->error('藏品必须');
  239. }
  240. if($merge['num']<=0){
  241. Db::rollback();
  242. $this->error('数量必须大于0');
  243. }
  244. if($merge['source_goods_id']==$row['id']){
  245. $this->error('藏品不能和合成品相同');
  246. }
  247. $ids[]=$merge['source_goods_id'];
  248. $exists=$row->merge()->where('source_goods_id',$merge['source_goods_id'])->find();
  249. if($exists){
  250. $exists['num']=$merge['num'];
  251. $exists->save();
  252. }else{
  253. $row->merge()->save($merge);
  254. }
  255. }
  256. $row->merge()->whereNotIn('source_goods_id',$ids)->delete();
  257. Db::commit();
  258. $this->success();
  259. }else{
  260. $this->assign('row',$row);
  261. return view();
  262. }
  263. }
  264. public function buy($ids){
  265. $row=$this->model->find($ids);
  266. if($this->request->isGet()){
  267. return view('',compact('row'));
  268. }else{
  269. try {
  270. $this->failException=true;
  271. $this->validate($data=input('row/a'),[
  272. 'buy_type'=>['require','in:0,1,2'],
  273. 'buy_before_time|提前购买时间'=>['requireIf:buy_type,1'],
  274. 'buy_before_user_limit|提前购买限制数量'=>['requireIf:buy_type,1','integer','egt:0'],
  275. ]);
  276. if($data['buy_type']!=0){
  277. $this->validate($data,[
  278. 'source_goods_id|藏品'=>['require','integer'],
  279. 'num|数量'=>['require','integer','gt:0'],
  280. ]);
  281. }
  282. }catch (ValidateException $e){
  283. $this->error($e->getMessage());
  284. }
  285. $row['buy_type']=$data['buy_type'];
  286. $row['buy_before_user_limit']=$data['buy_before_user_limit'];
  287. $row['buy_before_time']=$data['buy_before_time'];
  288. $row->save();
  289. $buy=$row->buy()->where('source_goods_id',$data['source_goods_id'])->find();
  290. if(!$buy){
  291. $row->buy()->delete();
  292. $row->buy()->save([
  293. 'source_goods_id'=>$data['source_goods_id'],
  294. 'num'=>$data['num'],
  295. ]);
  296. }else{
  297. $buy['source_goods_id']=$data['source_goods_id'];
  298. $buy['num']=$data['num'];
  299. $buy->save();
  300. }
  301. $this->success();
  302. }
  303. }
  304. }