Skip to content
Snippets Groups Projects
Commit d94b27d5 authored by Nithya's avatar Nithya
Browse files
Time Constraints updated
parent da447a38
No related branches found
No related tags found
2 merge requests!260syncing cob-master with master again,!253Resolve TMSS-299
...@@ -151,6 +151,12 @@ export default (props) => { ...@@ -151,6 +151,12 @@ export default (props) => {
if (!initValue.time.at) { if (!initValue.time.at) {
initValue.time.at= ''; initValue.time.at= '';
} }
if (!initValue.time.after) {
initValue.time.after= '';
}
if (!initValue.time.before) {
initValue.time.before= '';
}
/* for (let type in initValue.sky.transit_offset) { /* for (let type in initValue.sky.transit_offset) {
initValue.sky.transit_offset[type] = initValue.sky.transit_offset[type] / 60; initValue.sky.transit_offset[type] = initValue.sky.transit_offset[type] / 60;
......
...@@ -289,11 +289,11 @@ export class SchedulingUnitCreate extends Component { ...@@ -289,11 +289,11 @@ export class SchedulingUnitCreate extends Component {
for (let type in constStrategy.time) { for (let type in constStrategy.time) {
if (constStrategy.scheduler === 'online') { if (constStrategy.scheduler === 'online') {
delete constStrategy.time.at; delete constStrategy.time.at;
}
if (!constStrategy.time.after) {
delete constStrategy.time.after; delete constStrategy.time.after;
delete constStrategy.time.before; }
} if (!constStrategy.time.before) {
if (constStrategy.scheduler === 'manual') {
delete constStrategy.time.after;
delete constStrategy.time.before; delete constStrategy.time.before;
} }
if (constStrategy.time[type] && constStrategy.time[type].length) { if (constStrategy.time[type] && constStrategy.time[type].length) {
......
...@@ -273,7 +273,13 @@ export class EditSchedulingUnit extends Component { ...@@ -273,7 +273,13 @@ export class EditSchedulingUnit extends Component {
if (constStrategy.scheduler === 'online') { if (constStrategy.scheduler === 'online') {
// For deleting property // For deleting property
delete constStrategy.time.at; delete constStrategy.time.at;
}
if (!constStrategy.time.after) {
delete constStrategy.time.after;
} }
if (!constStrategy.time.before) {
delete constStrategy.time.before;
}
for (let type in constStrategy.time) { for (let type in constStrategy.time) {
if (constStrategy.time[type] && constStrategy.time[type].length) { if (constStrategy.time[type] && constStrategy.time[type].length) {
if (typeof constStrategy.time[type] === 'string') { if (typeof constStrategy.time[type] === 'string') {
......
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