截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

UnitLogic.php 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic\goods;
  20. use app\common\basics\Logic;
  21. use app\common\model\goods\GoodsUnit;
  22. /**
  23. * 商品单位逻辑
  24. * Class UnitLogic
  25. * @package app\admin\logic\goods
  26. */
  27. class UnitLogic extends Logic
  28. {
  29. /**
  30. * Notes: 列表
  31. * @param $get
  32. * @author 段誉(2021/4/15 10:53)
  33. * @return array
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. public static function lists($get)
  39. {
  40. $result = GoodsUnit::where(['del' =>0])
  41. ->order('sort')
  42. ->paginate([
  43. 'list_rows'=> $get['limit'],
  44. 'page'=> $get['page']
  45. ]);
  46. return ['count' => $result->total(), 'lists' => $result->getCollection()];
  47. }
  48. /**
  49. * Notes: 添加
  50. * @param $post
  51. * @return GoodsUnit|\think\Model
  52. *@author 段誉(2021/4/15 10:54)
  53. */
  54. public static function addUnit($post)
  55. {
  56. return GoodsUnit::create([
  57. 'name' => $post['name'],
  58. 'sort' => $post['sort'] ?? 100,
  59. ]);
  60. }
  61. /**
  62. * Notes: 编辑
  63. * @param $post
  64. * @return GoodsUnit
  65. *@author 段誉(2021/4/15 10:54)
  66. */
  67. public static function editUnit($post)
  68. {
  69. return GoodsUnit::update([
  70. 'name' => $post['name'],
  71. 'sort' => $post['sort'] ?? 100
  72. ], ['id' => $post['id']]);
  73. }
  74. /**
  75. * Notes: 删除
  76. * @param $id
  77. * @return GoodsUnit
  78. *@author 段誉(2021/4/15 10:54)
  79. */
  80. public static function del($id)
  81. {
  82. return GoodsUnit::update(['del' => 1], ['id' => $id]);
  83. }
  84. }