領収証発行サービス
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.

28 lines
695B

  1. <?php
  2. namespace App\Codes;
  3. /**
  4. * 領収証発行依頼ステータス
  5. */
  6. enum ReceiptIssuingOrderStatus: int
  7. {
  8. case NONE = 0;
  9. case CREATED = 100; // 新規作成
  10. case SMS_SENDING = 200; // SMS送信中
  11. case SMS_RECEIVED = 300; // SMS送信完了
  12. case SMS_OPENED = 400; // SMS開封
  13. // 郵送関連
  14. case MAIL_REQUEST = 500; // 郵送依頼中
  15. case PREPARING_FOR_MAIL = 510; // 郵送準備中
  16. case MAIL_DONE = 520; // 郵送完了
  17. // Email送信関連
  18. case EMAIL_SENDING = 600; // Email送信中
  19. case EMAIL_DONE = 610; // Email送信完了
  20. // PDFダウンロード
  21. case DOWNLOAD_DONE = 700; // ダウンロード完了
  22. }