Bläddra i källkod

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

develop
sosuke.iwabuchi 2 år sedan
förälder
incheckning
79723a7bbf
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. +3
    -3
      app/Logic/ReceiptIssuingOrder/ReceiptIssuingOrderManager.php

+ 3
- 3
app/Logic/ReceiptIssuingOrder/ReceiptIssuingOrderManager.php Visa fil

@@ -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) {


Laddar…
Avbryt
Spara