fix: incorrect single valeu fetch

refer https://github.com/frappe/frappe/pull/18787

[skip ci]
This commit is contained in:
Ankush Menat
2022-11-07 15:38:38 +05:30
committed by GitHub
parent eb4820b68b
commit 30daeb90a8

View File

@@ -101,7 +101,7 @@ def get_default_holiday_list():
def check_if_within_operating_hours(workstation, operation, from_datetime, to_datetime):
if from_datetime and to_datetime:
if not cint(
frappe.db.get_value("Manufacturing Settings", "None", "allow_production_on_holidays")
frappe.db.get_value("Manufacturing Settings", None, "allow_production_on_holidays")
):
check_workstation_for_holiday(workstation, from_datetime, to_datetime)