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

OrderInvoiceEnum.php 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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\common\enum;
  20. class OrderInvoiceEnum
  21. {
  22. /**
  23. * 发票类型
  24. * TYPE_NORMAL 普通
  25. * TYPE_SPEC 专用
  26. */
  27. const TYPE_NORMAL = 0;
  28. const TYPE_SPEC = 1;
  29. /**
  30. * 抬头类型
  31. * HEADER_TYPE_PERSONAL 个人
  32. * HEADER_TYPE_COMPANY 企业
  33. */
  34. const HEADER_TYPE_PERSONAL = 0;
  35. const HEADER_TYPE_COMPANY = 1;
  36. /**
  37. * 开票状态
  38. * STATUS_NO 未开票
  39. * STATUS_NO 已开票
  40. */
  41. const STATUS_NO = 0;
  42. const STATUS_YES = 1;
  43. /**
  44. * @notes 获取状态描述
  45. * @param bool $status
  46. * @return bool|mixed|string
  47. * @author 段誉
  48. * @date 2022/4/11 18:55
  49. */
  50. public static function getStatusDesc($status = true)
  51. {
  52. $desc = [
  53. self::STATUS_NO => '未开票',
  54. self::STATUS_YES => '已开票',
  55. ];
  56. if ($status === true) {
  57. return $status;
  58. }
  59. return isset($desc[$status]) ? $desc[$status] : $status;
  60. }
  61. /**
  62. * @notes 获取类型描述
  63. * @param bool $type
  64. * @return bool|mixed|string
  65. * @author 段誉
  66. * @date 2022/4/12 9:14
  67. */
  68. public static function getTypeDesc($type = true)
  69. {
  70. $desc = [
  71. self::TYPE_NORMAL => '电子普通发票',
  72. self::TYPE_SPEC => '专用发票',
  73. ];
  74. if ($type === true) {
  75. return $type;
  76. }
  77. return isset($desc[$type]) ? $desc[$type] : $type;
  78. }
  79. /**
  80. * @notes 获取抬头类型描述
  81. * @param bool $type
  82. * @return bool|mixed|string
  83. * @author 段誉
  84. * @date 2022/4/12 9:14
  85. */
  86. public static function getHeaderTypeTextDesc($type = true)
  87. {
  88. $desc = [
  89. self::HEADER_TYPE_PERSONAL => '个人',
  90. self::HEADER_TYPE_COMPANY => '企业',
  91. ];
  92. if ($type === true) {
  93. return $type;
  94. }
  95. return isset($desc[$type]) ? $desc[$type] : $type;
  96. }
  97. }