Sfoglia il codice sorgente

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

develop
sosuke.iwabuchi 2 anni fa
parent
commit
79723a7bbf
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. +3
    -3
      app/Logic/ReceiptIssuingOrder/ReceiptIssuingOrderManager.php

+ 3
- 3
app/Logic/ReceiptIssuingOrder/ReceiptIssuingOrderManager.php Vedi File

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


Loading…
Annulla
Salva