InventoryExchange.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\logic\InventoryExchangeLogic;
  4. use app\BaseController;
  5. use app\model\CommonModel;
  6. use think\exception\ValidateException;
  7. use think\facade\Config;
  8. use think\facade\Validate;
  9. //【兑换商品库存】
  10. class InventoryExchange extends BaseController
  11. {
  12. //获取兑换商品库存列表
  13. public function list()
  14. {
  15. $param = $this->request->only(['page' => 1, 'size' => 10, 'status' => '', 'company_id' => '', 'card_id' => ''], 'post');
  16. return InventoryExchangeLogic::list($param);
  17. }
  18. //添加兑换商品库存
  19. public function add()
  20. {
  21. $param = $this->request->only(['account_id', 'good_id', 'inventory'], 'post');
  22. $val = Validate::rule(Config::get('validate_rules.InventoryExchangeAdd'));
  23. if (!$val->check($param)) throw new ValidateException($val->getError());
  24. return InventoryExchangeLogic::add($param);
  25. }
  26. //获取兑换商品库存详情
  27. public function read()
  28. {
  29. $id = $this->request->post('id/d', 0);
  30. return InventoryExchangeLogic::read($id);
  31. }
  32. //编辑兑换商品库存
  33. public function edit()
  34. {
  35. $param = $this->request->only(['id', 'company_id', 'card_id', 'video_list', 'remark' => ''], 'post');
  36. $val = Validate::rule(array_merge(Config::get('validate_rules.VideoGroupAdd'), ['id|兑换商品库存id' => 'require|number|gt:0']));
  37. if (!$val->check($param)) throw new ValidateException($val->getError());
  38. return InventoryExchangeLogic::edit($param);
  39. }
  40. //兑换商品库存启禁用
  41. public function status()
  42. {
  43. $param = $this->request->only(['id','status'],'post');
  44. $val = Validate::rule(Config::get('validate_rules.status'));
  45. if (!$val->check($param)) throw new ValidateException($val->getError());
  46. return InventoryExchangeLogic::status($param);
  47. }
  48. //删除兑换商品库存
  49. public function delete()
  50. {
  51. $id = $this->request->post('id/d', 0);
  52. return InventoryExchangeLogic::delete($id);
  53. }
  54. //兑换商品库存置顶
  55. public function top()
  56. {
  57. $param = $this->request->only(['id','is_top'],'post');
  58. $val = Validate::rule([
  59. 'id' => 'require|number|gt:0',
  60. 'is_top|是否置顶' => 'require|number|in:' . CommonModel::$top_no . ',' . CommonModel::$top_yes,
  61. ]);
  62. if (!$val->check($param)) throw new ValidateException($val->getError());
  63. return InventoryExchangeLogic::top($param);
  64. }
  65. }