Browse Source

利用集計取得 TO日付を1日ずらすように修正

develop
sosuke.iwabuchi 2 years ago
parent
commit
b0962d2ff7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/Repositories/Custom/HelloTechno/UseSummaryRepository.php

+ 1
- 1
app/Repositories/Custom/HelloTechno/UseSummaryRepository.php View File

@@ -57,7 +57,7 @@ class UseSummaryRepository extends BaseRepository
throw new AppCommonException('検索日付不正');
}
$this->dateFrom = $dateFrom;
$this->dateTo = $dateTo;
$this->dateTo = $dateTo->addDay();

$target = ReceiptIssuingOrder::getBuilder(self::TABLE_TARGET)
->where(


Loading…
Cancel
Save