Commodity.php 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <?php
  2. namespace app\admin\controller\commodity;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. use think\Exception;
  6. use think\exception\PDOException;
  7. use think\exception\ValidateException;
  8. /**
  9. *
  10. *
  11. * @icon fa fa-circle-o
  12. */
  13. class Commodity extends Backend
  14. {
  15. /**
  16. * Commodity模型对象
  17. * @var \app\admin\model\commodity\Commodity
  18. */
  19. protected $model = null;
  20. protected $multiFields = 'c_state_switch,c_recommodity';
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. $this->model = new \app\admin\model\commodity\Commodity;
  25. }
  26. /**
  27. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  28. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  29. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  30. */
  31. /**
  32. * 查看
  33. */
  34. public function index()
  35. {
  36. //当前是否为关联查询
  37. $this->relationSearch = false;
  38. //设置过滤方法
  39. $this->request->filter(['strip_tags', 'trim']);
  40. if ($this->request->isAjax())
  41. {
  42. //如果发送的来源是Selectpage,则转发到Selectpage
  43. if ($this->request->request('keyField'))
  44. {
  45. return $this->selectpage();
  46. }
  47. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  48. $total = $this->model
  49. ->where($where)
  50. ->order($sort, $order)
  51. ->count();
  52. $list = $this->model
  53. ->where($where)
  54. ->order($sort, $order)
  55. ->limit($offset, $limit)
  56. ->select();
  57. foreach ($list as $row) {
  58. $row->visible(['c_id','c_name','c_notice_content','c_title_content','c_images','c_yuanjiaprice','c_vipprice','c_freight','c_buynum','c_stock','c_type','c_whitebean','c_sort','c_recommodity','c_state_switch']);
  59. }
  60. $list = collection($list)->toArray();
  61. $result = array("total" => $total, "rows" => $list);
  62. return json($result);
  63. }
  64. return $this->view->fetch();
  65. }
  66. /**
  67. * 添加
  68. */
  69. public function add()
  70. {
  71. if ($this->request->isPost()) {
  72. $params = $this->request->post("row/a");
  73. if ($params) {
  74. $params = $this->preExcludeFields($params);
  75. //halt($params);
  76. if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
  77. $params[$this->dataLimitField] = $this->auth->id;
  78. }
  79. $result = false;
  80. Db::startTrans();
  81. try {
  82. //是否采用模型验证
  83. if ($this->modelValidate) {
  84. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  85. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
  86. $this->model->validateFailException(true)->validate($validate);
  87. }
  88. $result = $this->model->allowField(true)->save($params);
  89. Db::commit();
  90. } catch (ValidateException $e) {
  91. Db::rollback();
  92. $this->error($e->getMessage());
  93. } catch (PDOException $e) {
  94. Db::rollback();
  95. $this->error($e->getMessage());
  96. } catch (Exception $e) {
  97. Db::rollback();
  98. $this->error($e->getMessage());
  99. }
  100. if ($result !== false) {
  101. $this->success();
  102. } else {
  103. $this->error(__('No rows were inserted'));
  104. }
  105. }
  106. $this->error(__('Parameter %s can not be empty', ''));
  107. }
  108. $ctype = Db::name('ctype')->select();
  109. return $this->view->fetch('add', ['ctype' => $ctype]);
  110. }
  111. /**
  112. * 编辑
  113. */
  114. public function edit($ids = null)
  115. {
  116. $row = $this->model->get($ids);
  117. if (!$row) {
  118. $this->error(__('No Results were found'));
  119. }
  120. $adminIds = $this->getDataLimitAdminIds();
  121. if (is_array($adminIds)) {
  122. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  123. $this->error(__('You have no permission'));
  124. }
  125. }
  126. if ($this->request->isPost()) {
  127. $params = $this->request->post("row/a");
  128. if ($params) {
  129. $params = $this->preExcludeFields($params);
  130. $result = false;
  131. Db::startTrans();
  132. try {
  133. //是否采用模型验证
  134. if ($this->modelValidate) {
  135. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  136. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  137. $row->validateFailException(true)->validate($validate);
  138. }
  139. $result = $row->allowField(true)->save($params);
  140. Db::commit();
  141. } catch (ValidateException $e) {
  142. Db::rollback();
  143. $this->error($e->getMessage());
  144. } catch (PDOException $e) {
  145. Db::rollback();
  146. $this->error($e->getMessage());
  147. } catch (Exception $e) {
  148. Db::rollback();
  149. $this->error($e->getMessage());
  150. }
  151. if ($result !== false) {
  152. $this->success();
  153. } else {
  154. $this->error(__('No rows were updated'));
  155. }
  156. }
  157. $this->error(__('Parameter %s can not be empty', ''));
  158. }
  159. $this->view->assign("row", $row);
  160. $ctype = Db::name('ctype')->select();
  161. $this->view->assign("ctype", $ctype);
  162. return $this->view->fetch();
  163. }
  164. //显示规格
  165. public function commodityInfo ($ids='') {
  166. if ($this->request->isPost()) {
  167. $data = $this->request->post("row/a");
  168. $list['p_name'] = $data['p_name'];
  169. $list['c_id'] = $data['c_id'];
  170. if ($data['content'] == '') {
  171. return $this->error('请至少添加一项颜色',null,$data);
  172. }
  173. $data['content'] = json_decode($data['content'],true);
  174. $id=Db::name('parameter')->insertGetId($list);
  175. if ($data['content'] != '') {
  176. foreach ($data['content'] as &$v) {
  177. $color['money'] = $v['money'];
  178. $color['kucun'] = $v['kucun'];
  179. $color['name'] = $v['name'];
  180. $color['p_id'] = $id;
  181. $color['color'] = '';
  182. //halt($color);
  183. $addcolor = Db::name('commoditycolor')->insert($color);
  184. }
  185. }
  186. if ($id) {
  187. return $this->success('success',null,$data);
  188. }
  189. }
  190. $parameter = Db::name('parameter')->where('c_id',$ids)->select();
  191. foreach ($parameter as &$v) {
  192. $v['color'] = Db::name('commoditycolor')->where('p_id',$v['p_id'])->select();
  193. }
  194. //halt($parameter);
  195. if ($parameter) {
  196. return $this->fetch('commodityinfo',['parameter' => $parameter, 'c_id' => $ids]);
  197. } else {
  198. $parameter = [];
  199. return $this->fetch('commodityinfo',['parameter' => $parameter, 'c_id' => $ids]);
  200. }
  201. }
  202. //添加颜规格
  203. public function addparameter ($ids='') {
  204. // if ($this->request->isPost()) {
  205. // $data = $this->request->post("row/a");
  206. // echo $data['c_name'];die;
  207. // $add=Db::name('parameter')->insert($data);
  208. // if ($add) {
  209. // return $this->success('success',null,$data);
  210. // }
  211. // }
  212. }
  213. //删除颜色
  214. public function delcolor () {
  215. $id=input('colorid');
  216. $data = Db::name('commoditycolor')->where("colorid",$id)->find();
  217. $parameter = Db::name('commoditycolor')->where('p_id',$data['p_id'])->select();
  218. $count = count($parameter);
  219. if ($count==1) {
  220. $delparamter = Db::name("parameter")->where('p_id',$data['p_id'])->delete(); //如果颜色只剩一个了,那么规格也被删除
  221. }
  222. $del=Db::name('commoditycolor')->where('colorid',$id)->delete();
  223. if ($del) {
  224. return json(['msg' => "删除成功", 'code' => '200']);
  225. } else {
  226. return json(['msg' => "删除失败", 'code' => '100']);
  227. }
  228. }
  229. //添加颜色
  230. public function addcolor ($ids='') {
  231. if ($this->request->isPost()) {
  232. $data = $this->request->post("row/a");
  233. $add = Db::name('commoditycolor')->insert($data);
  234. if ($add) {
  235. return $this->success('success',null,$data);
  236. }
  237. }
  238. $id=input('p_id');
  239. return $this->fetch('addcolor',['p_id'=>$id]);
  240. }
  241. //修改颜色
  242. public function editcolor () {
  243. if ($this->request->isPost()) {
  244. $data = $this->request->post("row/a");
  245. $edit = Db::name('commoditycolor')->where('colorid',$data['colorid'])->update($data);
  246. if ($edit) {
  247. return $this->success('success',null,$data);
  248. } else {
  249. return $this->error('修改失败或请至少修改一项',null,$data);
  250. }
  251. }
  252. $id=input('colorid');
  253. $data=Db::name('commoditycolor')->where('colorid',$id)->find();
  254. return $this->fetch('editcolor', ['data'=>$data]);
  255. }
  256. }