Commit 18f26e6c by Phạm Văn Đoan

thay đổi số bài trong BXH dự trữ từ 105 lên 120

parent eeb3ea44
......@@ -77,7 +77,7 @@ class CalculateReportCommand extends Command
echo "\n - BXH Ngày đã được tạo trước đó.";
} else {
echo "\n - Bắt đầu xử lý BXH Ngày...";
$daily_data = DailyReportView::select('*')->take(105)->get()->toArray();
$daily_data = DailyReportView::select('*')->take(120)->get()->toArray();
if (count($daily_data) > 0) {
$daily_report = [];
foreach ($daily_data as $key => $daily) {
......@@ -165,7 +165,7 @@ class CalculateReportCommand extends Command
if($check >= 100){
echo "\n - BXH Tuần đã được tổng hợp trước đó.";
} else {
$weekly_data = WeeklyReportView::select('*')->take(105)->get()->toArray();
$weekly_data = WeeklyReportView::select('*')->take(120)->get()->toArray();
if (count($weekly_data) > 0 && $weekly_data[0]['total_point'] > 0) {
echo "\n - Bắt đầu xử lý BXH Tuần...";
$weekly_report = [];
......@@ -235,7 +235,7 @@ class CalculateReportCommand extends Command
if($check >= 100){
echo "\n - BXH Tháng đã được tổng hợp trước đó.";
} else {
$monthly_data = MonthlyReportView::select('*')->take(105)->get()->toArray();
$monthly_data = MonthlyReportView::select('*')->take(120)->get()->toArray();
if (count($monthly_data) > 0 && $monthly_data[0]['total_point'] > 0) {
echo "\n - Bắt đầu xử lý BXH Tháng...";
$monthly_report = [];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment