Browse Source

UI-1076: Fixed schema error for temporal rules

4.3
Jean-Roch Maitre 11 years ago
parent
commit
f520a0c5dc
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      submodules/strategy/strategy.js

+ 4
- 4
submodules/strategy/strategy.js View File

@ -1972,8 +1972,8 @@ define(function(require){
interval: 1,
name: val,
type: "main_weekdays",
time_window_start: "32400", // 9:00AM
time_window_stop: "61200", // 5:00PM
time_window_start: 32400, // 9:00AM
time_window_stop: 61200, // 5:00PM
wdays: [val.substring(4).toLowerCase()]
}
},
@ -1996,8 +1996,8 @@ define(function(require){
interval: 1,
name: "MainLunchHours",
type: "main_lunchbreak",
time_window_start: "43200",
time_window_stop: "46800",
time_window_start: 43200,
time_window_stop: 46800,
wdays: self.weekdays
}
},


Loading…
Cancel
Save