截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

AlipayLogic.php 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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;
  20. use app\common\basics\Logic;
  21. use app\common\model\shop\ShopAlipay;
  22. class AlipayLogic extends Logic
  23. {
  24. static function lists($get, $shop_id)
  25. {
  26. try {
  27. $model = new ShopAlipay();
  28. $lists = $model->field(true)
  29. ->where(['del' => 0, 'shop_id'=>$shop_id])
  30. ->order('id', 'desc')
  31. ->paginate([
  32. 'page' => $get['page'] ?? 1,
  33. 'list_rows' => $get['limit'] ?? 20,
  34. 'var_page' => 'page'
  35. ])->toArray();
  36. return [ 'count'=>$lists['total'], 'lists'=>$lists['data'] ];
  37. } catch (\Exception $e) {
  38. return [ 'error'=>$e->getMessage() ];
  39. }
  40. }
  41. static function detail($id)
  42. {
  43. $model = new ShopAlipay();
  44. return $model->field(true)->findOrEmpty($id);
  45. }
  46. static function add($post, $shop_id)
  47. {
  48. try {
  49. ShopAlipay::create([
  50. 'shop_id' => $shop_id,
  51. 'account' => $post['account'],
  52. 'username' => $post['username'],
  53. 'del' => 0,
  54. ]);
  55. return true;
  56. } catch (\Exception $e) {
  57. static::$error = $e->getMessage();
  58. return false;
  59. }
  60. }
  61. static function edit($post, $shop_id)
  62. {
  63. try {
  64. ShopAlipay::update([
  65. 'account' => $post['account'],
  66. 'username' => $post['username'],
  67. 'del' => 0,
  68. ], [ 'id' => $post['id'], 'shop_id' => $shop_id ]);
  69. return true;
  70. } catch (\Exception $e) {
  71. static::$error = $e->getMessage();
  72. return false;
  73. }
  74. }
  75. static function del($id, $shop_id)
  76. {
  77. try {
  78. ShopAlipay::update([
  79. 'del' => 1,
  80. 'update_time' => time()
  81. ], [ 'id' => $id, 'shop_id' => $shop_id ]);
  82. return true;
  83. } catch (\Exception $e) {
  84. static::$error = $e->getMessage();
  85. return false;
  86. }
  87. }
  88. static function getAlipayByShopId($shop_id)
  89. {
  90. try {
  91. $model = new ShopAlipay();
  92. return $model->field(true)
  93. ->where(['del' => 0, 'shop_id'=>$shop_id])
  94. ->order('id', 'desc')
  95. ->select()->toArray();
  96. } catch (\Exception $e) {
  97. return ['error'=>$e->getMessage()];
  98. }
  99. }
  100. }