Order.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <?php
  2. namespace App\Models;
  3. use Auth;
  4. use Illuminate\Database\Eloquent\Model;
  5. use Illuminate\Database\Eloquent\Relations\BelongsTo;
  6. use Illuminate\Database\Eloquent\Relations\HasOne;
  7. /**
  8. * 订单
  9. */
  10. class Order extends Model
  11. {
  12. protected $table = 'order';
  13. protected $dates = ['expired_at'];
  14. protected $fillable = ['expired_at', 'is_expire', 'status'];
  15. public function user(): BelongsTo
  16. {
  17. return $this->belongsTo(User::class);
  18. }
  19. public function goods(): BelongsTo
  20. {
  21. return $this->belongsTo(Goods::class)->withTrashed();
  22. }
  23. public function coupon(): BelongsTo
  24. {
  25. return $this->belongsTo(Coupon::class)->withTrashed();
  26. }
  27. public function payment(): HasOne
  28. {
  29. return $this->hasOne(Payment::class);
  30. }
  31. public function scopeUid($query, $uid = null)
  32. {
  33. return $query->whereUserId($uid ?: Auth::id());
  34. }
  35. public function scopeRecentUnPay($query)
  36. {
  37. return $query->whereStatus(0)->where('created_at', '<=', date("Y-m-d H:i:s", strtotime("-15 minutes")));
  38. }
  39. public function scopeUserPrepay($query, $uid = null)
  40. {
  41. return $query->uid($uid)->whereStatus(3);
  42. }
  43. public function scopeActive($query)
  44. {
  45. return $query->whereIsExpire(0)->whereStatus(2);
  46. }
  47. public function scopeActivePlan($query)
  48. {
  49. return $query->active()->with('goods')->whereHas('goods', static function ($list) { $list->whereType(2); });
  50. }
  51. public function scopeActivePackage($query)
  52. {
  53. return $query->active()->with('goods')->whereHas('goods', static function ($list) { $list->whereType(1); });
  54. }
  55. public function scopeUserActivePlan($query, $uid = null)
  56. {
  57. return $query->uid($uid)->activePlan();
  58. }
  59. public function scopeUserActivePackage($query, $uid = null)
  60. {
  61. return $query->uid($uid)->activePackage();
  62. }
  63. // 订单状态
  64. public function getStatusLabelAttribute(): string
  65. {
  66. switch ($this->attributes['status']) {
  67. case -1:
  68. $status_label = trans('home.invoice_status_closed');
  69. break;
  70. case 1:
  71. $status_label = trans('home.invoice_status_wait_confirm');
  72. break;
  73. case 2:
  74. $status_label = trans('home.invoice_status_payment_confirm');
  75. break;
  76. case 0:
  77. $status_label = trans('home.invoice_status_wait_payment');
  78. break;
  79. default:
  80. $status_label = 'Unknown';
  81. }
  82. return $status_label;
  83. }
  84. public function getOriginAmountAttribute($value)
  85. {
  86. return $value / 100;
  87. }
  88. public function setOriginAmountAttribute($value)
  89. {
  90. return $this->attributes['origin_amount'] = $value * 100;
  91. }
  92. public function getAmountAttribute($value)
  93. {
  94. return $value / 100;
  95. }
  96. public function setAmountAttribute($value)
  97. {
  98. return $this->attributes['amount'] = $value * 100;
  99. }
  100. // 支付渠道
  101. public function getPayTypeLabelAttribute(): string
  102. {
  103. switch ($this->attributes['pay_type']) {
  104. case 0:
  105. $pay_type_label = '余额';
  106. break;
  107. case 1:
  108. $pay_type_label = '支付宝';
  109. break;
  110. case 2:
  111. $pay_type_label = 'QQ';
  112. break;
  113. case 3:
  114. $pay_type_label = '微信';
  115. break;
  116. case 4:
  117. $pay_type_label = '虚拟货币';
  118. break;
  119. case 5:
  120. $pay_type_label = 'PayPal';
  121. break;
  122. default:
  123. $pay_type_label = '';
  124. }
  125. return $pay_type_label;
  126. }
  127. // 支付图标
  128. public function getPayTypeIconAttribute(): string
  129. {
  130. $base_path = '/assets/images/payment/';
  131. switch ($this->attributes['pay_type']) {
  132. case 1:
  133. $pay_type_icon = $base_path.'alipay.png';
  134. break;
  135. case 2:
  136. $pay_type_icon = $base_path.'qq.png';
  137. break;
  138. case 3:
  139. $pay_type_icon = $base_path.'wechat.png';
  140. break;
  141. case 5:
  142. $pay_type_icon = $base_path.'paypal.png';
  143. break;
  144. case 0:
  145. case 4:
  146. default:
  147. $pay_type_icon = $base_path.'coin.png';
  148. }
  149. return $pay_type_icon;
  150. }
  151. // 支付方式
  152. public function getPayWayLabelAttribute(): string
  153. {
  154. switch ($this->attributes['pay_way']) {
  155. case 'credit':
  156. $pay_way_label = '余额';
  157. break;
  158. case 'youzan':
  159. $pay_way_label = '有赞云';
  160. break;
  161. case 'f2fpay':
  162. $pay_way_label = '支付宝当面付';
  163. break;
  164. case 'codepay':
  165. $pay_way_label = '码支付';
  166. break;
  167. case 'payjs':
  168. $pay_way_label = 'PayJs';
  169. break;
  170. case 'bitpayx':
  171. $pay_way_label = '麻瓜宝';
  172. break;
  173. case 'paypal':
  174. $pay_way_label = 'PayPal';
  175. break;
  176. default:
  177. $pay_way_label = '未知';
  178. }
  179. return $pay_way_label;
  180. }
  181. }