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

OrderInvoice.php 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace app\common\model\order;
  3. use app\common\basics\Models;
  4. use app\common\enum\OrderInvoiceEnum;
  5. /**
  6. * 发票模型
  7. * Class OrderInvoice
  8. * @package app\common\model\order
  9. */
  10. class OrderInvoice extends Models
  11. {
  12. /**
  13. * @notes 关联订单
  14. * @return \think\model\relation\HasOne
  15. * @author 段誉
  16. * @date 2022/4/12 17:58
  17. */
  18. public function orderData()
  19. {
  20. return $this->hasOne(Order::class, 'id', 'order_id');
  21. }
  22. /**
  23. * @notes 类型描述
  24. * @param $value
  25. * @param $data
  26. * @return bool|mixed|string
  27. * @author 段誉
  28. * @date 2022/4/12 9:15
  29. */
  30. public function getTypeTextAttr($value, $data)
  31. {
  32. return OrderInvoiceEnum::getTypeDesc($data['type']);
  33. }
  34. /**
  35. * @notes 状态属性
  36. * @param $value
  37. * @param $data
  38. * @return bool|mixed|string
  39. * @author 段誉
  40. * @date 2022/4/11 19:01
  41. */
  42. public function getStatusTextAttr($value, $data)
  43. {
  44. return OrderInvoiceEnum::getStatusDesc($data['status']);
  45. }
  46. /**
  47. * @notes 抬头类型描述属性
  48. * @param $value
  49. * @param $data
  50. * @return bool|mixed|string
  51. * @author 段誉
  52. * @date 2022/4/11 19:01
  53. */
  54. public function getHeaderTypeTextAttr($value, $data)
  55. {
  56. return OrderInvoiceEnum::getHeaderTypeTextDesc($data['header_type']);
  57. }
  58. }