| @@ -173,18 +173,18 @@ abstract class ReceiptIssuingOrderManager | |||||
| // ダウンロード | // ダウンロード | ||||
| if ($order->status_receipt_download_datetime !== null) { | if ($order->status_receipt_download_datetime !== null) { | ||||
| $order->status_name = "ダウンロード済み"; | |||||
| $order->status_name = "領収証ダウンロード済み"; | |||||
| $order->status_done = true; | $order->status_done = true; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| // 申請段階 | // 申請段階 | ||||
| if ($order->status_receipt_confirm_datetime !== null) { | if ($order->status_receipt_confirm_datetime !== null) { | ||||
| $order->status_name = "確定済み"; | |||||
| $order->status_name = "宛名入力済み"; | |||||
| return $this; | return $this; | ||||
| } | } | ||||
| if ($order->status_first_access_datetime !== null) { | if ($order->status_first_access_datetime !== null) { | ||||
| $order->status_name = "アクセス済み"; | |||||
| $order->status_name = "初回アクセス済み"; | |||||
| return $this; | return $this; | ||||
| } | } | ||||
| if ($order->status_sms_send_datetime !== null) { | if ($order->status_sms_send_datetime !== null) { | ||||