ソースを参照

領収証ステータス名の修正

develop
sosuke.iwabuchi 2年前
コミット
79723a7bbf
1個のファイルの変更3行の追加3行の削除
  1. +3
    -3
      app/Logic/ReceiptIssuingOrder/ReceiptIssuingOrderManager.php

+ 3
- 3
app/Logic/ReceiptIssuingOrder/ReceiptIssuingOrderManager.php ファイルの表示

@@ -173,18 +173,18 @@ abstract class ReceiptIssuingOrderManager

// ダウンロード
if ($order->status_receipt_download_datetime !== null) {
$order->status_name = "ダウンロード済み";
$order->status_name = "領収証ダウンロード済み";
$order->status_done = true;
return $this;
}

// 申請段階
if ($order->status_receipt_confirm_datetime !== null) {
$order->status_name = "確定済み";
$order->status_name = "宛名入力済み";
return $this;
}
if ($order->status_first_access_datetime !== null) {
$order->status_name = "アクセス済み";
$order->status_name = "初回アクセス済み";
return $this;
}
if ($order->status_sms_send_datetime !== null) {


読み込み中…
キャンセル
保存