截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SupplierLogic.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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\shop\logic\goods;
  20. use app\common\basics\Logic;
  21. use app\common\model\goods\Supplier;
  22. /**
  23. * 供应商
  24. * Class SupplierLogic
  25. * @package app\admin\logic
  26. */
  27. class SupplierLogic extends Logic
  28. {
  29. /**
  30. * Notes: 列表
  31. * @param $shop_id
  32. * @param $get
  33. * @author 段誉(2021/4/15 10:53)
  34. * @return array
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\DbException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. */
  39. public static function lists($shop_id, $get)
  40. {
  41. $where[] = ['del', '=', 0];
  42. $where[] = ['shop_id', '=', $shop_id];
  43. if(isset($get['keyword']) && $get['keyword']){
  44. $where[] = ['name','like','%'.$get['keyword'].'%'];
  45. }
  46. $result = Supplier::where($where)
  47. ->paginate([
  48. 'list_rows'=> $get['limit'],
  49. 'page'=> $get['page']
  50. ]);
  51. return ['count' => $result->total(), 'lists' => $result->getCollection()];
  52. }
  53. /**
  54. * Notes: 添加
  55. * @param $post
  56. * @author 段誉(2021/4/15 10:54)
  57. * @return Supplier|\think\Model
  58. */
  59. public static function add($shop_id, $post)
  60. {
  61. return Supplier::create([
  62. 'shop_id' => $shop_id,
  63. 'name' => $post['name'],
  64. 'contact' => $post['contact'],
  65. 'mobile' => $post['mobile'],
  66. 'address' => $post['address'],
  67. 'remark' => $post['remark'] ?? '',
  68. ]);
  69. }
  70. /**
  71. * Notes: 编辑
  72. * @param $post
  73. * @author 段誉(2021/4/15 10:54)
  74. * @return Supplier
  75. */
  76. public static function edit($shop_id, $post)
  77. {
  78. return Supplier::update([
  79. 'name' => $post['name'],
  80. 'contact' => $post['contact'],
  81. 'mobile' => $post['mobile'],
  82. 'address' => $post['address'],
  83. 'remark' => $post['remark'] ?? '',
  84. ], ['id' => $post['id'], 'shop_id' => $shop_id]);
  85. }
  86. /**
  87. * Notes: 删除
  88. * @param $id
  89. * @author 段誉(2021/4/15 10:54)
  90. * @return Supplier
  91. */
  92. public static function del($shop_id, $id)
  93. {
  94. return Supplier::update(['del' => 1], ['id' => $id, 'shop_id' => $shop_id]);
  95. }
  96. }