Browse Source

領収証発行依頼検索の条件に領収証番号を追加

develop
sosuke.iwabuchi 2 years ago
parent
commit
7992c09770
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      app/Http/Controllers/Web/Custom/HelloTechno/ReceiptIssuingsOrdersParam.php

+ 2
- 0
app/Http/Controllers/Web/Custom/HelloTechno/ReceiptIssuingsOrdersParam.php View File

@@ -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(),
);


Loading…
Cancel
Save