Skip to content
Snippets Groups Projects
Commit be6dc81c authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-2710 & TMSS-2593: do not map fixed process_start/stop_time on a new...

TMSS-2710 & TMSS-2593: do not map fixed process_start/stop_time on a new property start/stop_time when loaded, but select either the on_sky, or the process start/stop_time when displaying based on the shouldShowOnSkyTimes flag
parent e1dfeb9d
No related branches found
No related tags found
1 merge request!1153New Week View
......@@ -176,8 +176,8 @@ export function groupRenderer({group}) {
export function getTimelineItem(suBlueprint, displayDate, shouldShowOnSkyTimes = false) {
const duration = `${(UnitConverter.getSecsToHrsWithFractionDigits(suBlueprint.duration))}Hrs`;
const onSkyDuration = `${(UnitConverter.getSecsToHrsWithFractionDigits(suBlueprint.on_sky_duration))}Hrs`;
const startTimeWithDisplayDate = moment(`${displayDate.format('YYYY-MM-DD')} ${suBlueprint.start_time.split('T')[1]}`);
const endTimeWithDisplayDate = moment(`${displayDate.format('YYYY-MM-DD')} ${suBlueprint.stop_time.split('T')[1]}`)
const startTimeWithDisplayDate = moment(`${displayDate.format('YYYY-MM-DD')} ${suBlueprint.process_start_time.split('T')[1]}`);
const endTimeWithDisplayDate = moment(`${displayDate.format('YYYY-MM-DD')} ${suBlueprint.process_stop_time.split('T')[1]}`)
const onSkyStartTimeWithDisplayDate = moment(`${displayDate.format('YYYY-MM-DD')} ${suBlueprint.on_sky_start_time.split('T')[1]}`);
const onSkyEndTimeWithDisplayDate = moment(`${displayDate.format('YYYY-MM-DD')} ${suBlueprint.on_sky_stop_time.split('T')[1]}`)
const band = suBlueprint.antennaSet ? suBlueprint.antennaSet.split("_")[0] : "" //Example: antenna sets LBA_OUTER -> band = LBA
......
......@@ -153,11 +153,6 @@ const ScheduleService = {
let secondResponse = await axios.get(url);
blueprints = blueprints.concat(secondResponse.data.results);
}
_.map(blueprints, su => {
su.start_time = su.process_start_time;
su.stop_time = su.process_stop_time;
return su;
});
blueprints = blueprints.filter(su => su.status.toLowerCase() !== "obsolete")
} catch (error) {
console.error('[schedule.services.getExpandedSUList]', error);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment