截流自动化的商城平台
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.

ShopAccountLog.php 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?php
  2. namespace app\common\model\shop;
  3. use app\common\basics\Models;
  4. use think\Exception;
  5. use think\facade\Db;
  6. /**
  7. * 商户账号流水模型
  8. * Class ShopAccountLog
  9. * @package app\common\model\shop
  10. */
  11. class ShopAccountLog extends Models
  12. {
  13. const settlement_add_money = 100; //商家结算入账
  14. const withdrawal_stay_money = 101; //商家提现中
  15. const withdrawal_dec_money = 102; //商家提现扣减
  16. const withdrawal_fail_money = 103; //商家提现失败
  17. /**
  18. * @Notes: 增加资金
  19. * @Author: 张无忌
  20. * @param $shopId
  21. * @param $sourceType (来源类型,参考上面定义)
  22. * @param $changeAmount (增加的金额)
  23. * @param int $left_amount (增加后的金额, 如果=-1,则自动去计算)
  24. * @param array $data (其他信息)
  25. * @throws Exception
  26. */
  27. public static function incData($shopId, $sourceType, $changeAmount, $left_amount=-1, $data=[])
  28. {
  29. try {
  30. if ($left_amount === -1) {
  31. $left_amount = 0;
  32. $wallet = (new Shop())->where(['id'=>$shopId])->value('wallet') ?? 0;
  33. $left_amount += ($wallet + $changeAmount);
  34. } elseif ($left_amount === 0) {
  35. $left_amount = 0;
  36. $wallet = (new Shop())->where(['id'=>$shopId])->value('wallet') ?? 0;
  37. $left_amount += $wallet;
  38. }
  39. self::create([
  40. 'log_sn' => createSn('shop_account_log', 'log_sn'),
  41. 'shop_id' => $shopId,
  42. 'source_type' => $sourceType,
  43. 'change_amount' => $changeAmount,
  44. 'left_amount' => $left_amount,
  45. 'source_id' => $data['source_id'] ?? 0,
  46. 'source_sn' => $data['source_sn'] ?? '',
  47. 'remark' => $data['remark'] ?? '',
  48. 'extra' => $data['extra'] ?? '',
  49. 'change_type' => 1,
  50. 'create_time' => time()
  51. ]);
  52. } catch (\Exception $e) {
  53. throw new Exception($e->getMessage());
  54. }
  55. }
  56. /**
  57. * @Notes: 减少资金
  58. * @Author: 张无忌
  59. * @param $shopId
  60. * @param $sourceType (来源类型,参考上面定义)
  61. * @param $changeAmount (减少的金额)
  62. * @param int $left_amount (增加后的金额, 如果=-1,则自动去计算)
  63. * @param array $data (其他信息)
  64. * @throws Exception
  65. */
  66. public static function decData($shopId, $sourceType, $changeAmount, $left_amount=-1, $data=[])
  67. {
  68. try {
  69. if ($left_amount === -1) {
  70. $left_amount = 0;
  71. $wallet = (new Shop())->where(['id'=>$shopId])->value('wallet') ?? 0;
  72. $left_amount += ($wallet - $changeAmount);
  73. } elseif ($left_amount === 0) {
  74. $left_amount = 0;
  75. $wallet = (new Shop())->where(['id'=>$shopId])->value('wallet') ?? 0;
  76. $left_amount += $wallet;
  77. }
  78. self::create([
  79. 'log_sn' => createSn('shop_account_log', 'log_sn'),
  80. 'shop_id' => $shopId,
  81. 'source_type' => $sourceType,
  82. 'change_amount' => $changeAmount,
  83. 'left_amount' => $left_amount,
  84. 'source_id' => $data['source_id'] ?? 0,
  85. 'source_sn' => $data['source_sn'] ?? '',
  86. 'remark' => $data['remark'] ?? '',
  87. 'extra' => $data['extra'] ?? '',
  88. 'change_type' => 2,
  89. 'create_time' => time()
  90. ]);
  91. } catch (\Exception $e) {
  92. throw new Exception($e->getMessage());
  93. }
  94. }
  95. /**
  96. * @Notes: 来源类型
  97. * @param bool $status
  98. * @return array|mixed|string
  99. */
  100. public static function getSourceType($status = true)
  101. {
  102. $desc = [
  103. ShopAccountLog::settlement_add_money => '结算入账',
  104. ShopAccountLog::withdrawal_dec_money => '商家提现',
  105. ShopAccountLog::withdrawal_stay_money => '商家提现中',
  106. ShopAccountLog::withdrawal_fail_money => '商家提现失败',
  107. ];
  108. if ($status === true) {
  109. return $desc;
  110. }
  111. return $desc[$status] ?? '未知';
  112. }
  113. }