From 7992c097708cb68ebc8c96aa1d7792efc1a67a81 Mon Sep 17 00:00:00 2001 From: "sosuke.iwabuchi" Date: Thu, 22 Jun 2023 14:39:13 +0900 Subject: [PATCH] =?UTF-8?q?=E9=A0=98=E5=8F=8E=E8=A8=BC=E7=99=BA=E8=A1=8C?= =?UTF-8?q?=E4=BE=9D=E9=A0=BC=E6=A4=9C=E7=B4=A2=E3=81=AE=E6=9D=A1=E4=BB=B6?= =?UTF-8?q?=E3=81=AB=E9=A0=98=E5=8F=8E=E8=A8=BC=E7=95=AA=E5=8F=B7=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Web/Custom/HelloTechno/ReceiptIssuingsOrdersParam.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Http/Controllers/Web/Custom/HelloTechno/ReceiptIssuingsOrdersParam.php b/app/Http/Controllers/Web/Custom/HelloTechno/ReceiptIssuingsOrdersParam.php index b976e24..e0d7238 100644 --- a/app/Http/Controllers/Web/Custom/HelloTechno/ReceiptIssuingsOrdersParam.php +++ b/app/Http/Controllers/Web/Custom/HelloTechno/ReceiptIssuingsOrdersParam.php @@ -19,6 +19,7 @@ use Illuminate\Support\Carbon; * @property ?Carbon $orderDateTo * @property ?string $smsPhoneNumber * @property ?string $handlerName + * @property ?string $receiptNo */ class ReceiptIssuingsOrdersParam extends BaseParam @@ -40,6 +41,7 @@ class ReceiptIssuingsOrdersParam extends BaseParam Repository::CONDITION_ORDER_DATE_FROM => $this->date(true), Repository::CONDITION_ORDER_DATE_TO => $this->date(true), Repository::CONDITION_HANDLER_NAME => $this->str(true), + Repository::CONDITION_RECEIPT_NO => $this->str(true), ], $this->sortableRules(), );