截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

BankLogic.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <?php
  2. namespace app\shop\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\shop\ShopBank;
  5. class BankLogic extends Logic
  6. {
  7. /**
  8. * @Notes: 银行列表
  9. * @Author: 张无忌
  10. * @param $get
  11. * @param $shop_id
  12. * @return array
  13. */
  14. public static function lists($get, $shop_id)
  15. {
  16. try {
  17. $model = new ShopBank();
  18. $lists = $model->field(true)
  19. ->where(['del' => 0, 'shop_id'=>$shop_id])
  20. ->order('id', 'desc')
  21. ->paginate([
  22. 'page' => $get['page'] ?? 1,
  23. 'list_rows' => $get['limit'] ?? 20,
  24. 'var_page' => 'page'
  25. ])->toArray();
  26. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  27. } catch (\Exception $e) {
  28. return ['error'=>$e->getMessage()];
  29. }
  30. }
  31. /**
  32. * @Notes: 获取商家银行卡账号列表
  33. * @Author: 张无忌
  34. * @param $shop_id
  35. * @return array
  36. */
  37. public static function getBankByShopId($shop_id)
  38. {
  39. try {
  40. $model = new ShopBank();
  41. return $model->field(true)
  42. ->where(['del' => 0, 'shop_id'=>$shop_id])
  43. ->order('id', 'desc')
  44. ->select()->toArray();
  45. } catch (\Exception $e) {
  46. return ['error'=>$e->getMessage()];
  47. }
  48. }
  49. /**
  50. * @Notes: 银行卡详细
  51. * @Author: 张无忌
  52. * @param $id
  53. * @return array
  54. */
  55. public static function detail($id)
  56. {
  57. $model = new ShopBank();
  58. return $model->field(true)->findOrEmpty($id);
  59. }
  60. /**
  61. * @Notes: 新增银行卡账号
  62. * @Author: 张无忌
  63. * @param $post
  64. * @param $shop_id
  65. * @return bool
  66. */
  67. public static function add($post, $shop_id)
  68. {
  69. try {
  70. ShopBank::create([
  71. 'shop_id' => $shop_id,
  72. 'name' => $post['name'],
  73. 'branch' => $post['branch'],
  74. 'nickname' => $post['nickname'],
  75. 'account' => $post['account'],
  76. 'del' => 0
  77. ]);
  78. return true;
  79. } catch (\Exception $e) {
  80. static::$error = $e->getMessage();
  81. return false;
  82. }
  83. }
  84. /**
  85. * @Notes: 编辑银行卡
  86. * @Author: 张无忌
  87. * @param $post
  88. * @return bool
  89. */
  90. public static function edit($post)
  91. {
  92. try {
  93. ShopBank::update([
  94. 'name' => $post['name'],
  95. 'branch' => $post['branch'],
  96. 'nickname' => $post['nickname'],
  97. 'account' => $post['account'],
  98. 'del' => 0
  99. ], ['id'=>$post['id']]);
  100. return true;
  101. } catch (\Exception $e) {
  102. static::$error = $e->getMessage();
  103. return false;
  104. }
  105. }
  106. /**
  107. * @Notes: 删除银行卡
  108. * @Author: 张无忌
  109. * @param $id
  110. * @return bool
  111. */
  112. public static function del($id)
  113. {
  114. try {
  115. ShopBank::update([
  116. 'del' => 1,
  117. 'update_time' => time()
  118. ], ['id'=>$id]);
  119. return true;
  120. } catch (\Exception $e) {
  121. static::$error = $e->getMessage();
  122. return false;
  123. }
  124. }
  125. }