Skip to content

Commit

Permalink
Fix to not include deleted holiday per Kanzashi Salon
Browse files Browse the repository at this point in the history
  • Loading branch information
think-mcunanan committed Feb 2, 2021
1 parent 4e96a5d commit 1505f60
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/controllers/servers_controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -9604,7 +9604,8 @@ function wsGetTransactionCalendarView($sessionid, $param)
FROM store_holiday_per_salon StoreHoliday
WHERE
kanzashi_salon_pos_id = :kanzashi_salon_pos_id AND
ymd BETWEEN :date AND LAST_DAY(DATE_ADD(:date, INTERVAL 1 MONTH))
ymd BETWEEN :date AND LAST_DAY(DATE_ADD(:date, INTERVAL 1 MONTH)) AND
delflg IS NULL
";

$sql_params = array(
Expand Down

0 comments on commit 1505f60

Please sign in to comment.