ソースを参照

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

develop
sosuke.iwabuchi 2年前
コミット
b0962d2ff7
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      app/Repositories/Custom/HelloTechno/UseSummaryRepository.php

+ 1
- 1
app/Repositories/Custom/HelloTechno/UseSummaryRepository.php ファイルの表示

@@ -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(


読み込み中…
キャンセル
保存