Skip to content
Snippets Groups Projects
Commit a69ea20f authored by Ramesh Kumar's avatar Ramesh Kumar
Browse files

Merge branch 'master' into TMSS-309

parents f31e6f73 0e58647a
No related branches found
No related tags found
2 merge requests!263Resolve TMSS-309,!260syncing cob-master with master again
...@@ -1655,6 +1655,8 @@ void TaskDialog::apply(bool close) { ...@@ -1655,6 +1655,8 @@ void TaskDialog::apply(bool close) {
close = false; close = false;
} }
if (close) { if (close) {
// SW-933
clearMultiTasks();
this->close(); this->close();
} }
else { else {
...@@ -4647,6 +4649,9 @@ void TaskDialog::showMultiEdit(std::vector<Task *> &tasks) { ...@@ -4647,6 +4649,9 @@ void TaskDialog::showMultiEdit(std::vector<Task *> &tasks) {
isMultiTasks = true; isMultiTasks = true;
enableTabs(); enableTabs();
// SW-933
clearMultiTasks();
itsDataSlotDialog.clear(); itsDataSlotDialog.clear();
ui.lineEditCreationDate->clear(); ui.lineEditCreationDate->clear();
......
...@@ -683,7 +683,7 @@ optionaldataheader.forEach(header => { ...@@ -683,7 +683,7 @@ optionaldataheader.forEach(header => {
columns.push({ columns.push({
Header: isString ? optionalheader[0][header] : optionalheader[0][header].name, Header: isString ? optionalheader[0][header] : optionalheader[0][header].name,
id: isString ? header : optionalheader[0][header].name, id: isString ? header : optionalheader[0][header].name,
accessor: header, accessor: isString ? header : optionalheader[0][header].name,
filter: filtertype, filter: filtertype,
Filter: filterFn, Filter: filterFn,
isVisible: false, isVisible: false,
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
} }
.timeline-filters button { .timeline-filters button {
width: auto !important; // width: auto !important;
} }
.timeline-week-span { .timeline-week-span {
......
...@@ -116,8 +116,12 @@ export default (props) => { ...@@ -116,8 +116,12 @@ export default (props) => {
list.push('disable-field'); list.push('disable-field');
} }
ref.editors['root.time.at'].container.className = list.join(' '); ref.editors['root.time.at'].container.className = list.join(' ');
Array.prototype.slice.call(ref.editors['root.time.at'].control.getElementsByTagName('input')).forEach(input => input.disabled = true);
Array.prototype.slice.call(ref.editors['root.time.at'].control.getElementsByTagName('button')).forEach(button => button.disabled = true);
} else { } else {
ref.editors['root.time.at'].container.className = ref.editors['root.time.at'].container.className.replace('disable-field', ''); ref.editors['root.time.at'].container.className = ref.editors['root.time.at'].container.className.replace('disable-field', '');
Array.prototype.slice.call(ref.editors['root.time.at'].control.getElementsByTagName('input')).forEach(input => input.disabled = false);
Array.prototype.slice.call(ref.editors['root.time.at'].control.getElementsByTagName('button')).forEach(button => button.disabled = false);
} }
if (props.callback) { if (props.callback) {
props.callback(jsonOutput, errors); props.callback(jsonOutput, errors);
......
...@@ -144,8 +144,8 @@ export class WeekTimelineView extends Component { ...@@ -144,8 +144,8 @@ export class WeekTimelineView extends Component {
name: suBlueprint.suDraft.name, name: suBlueprint.suDraft.name,
band: antennaSet, band: antennaSet,
duration: suBlueprint.durationInSec?`${(suBlueprint.durationInSec/3600).toFixed(2)}Hrs`:"", duration: suBlueprint.durationInSec?`${(suBlueprint.durationInSec/3600).toFixed(2)}Hrs`:"",
start_time: moment.utc(`${displayDate.format('MM-DD-YYYY')} ${suBlueprint.start_time.split('T')[1]}`), start_time: moment.utc(`${displayDate.format('YYYY-MM-DD')} ${suBlueprint.start_time.split('T')[1]}`),
end_time: moment.utc(`${displayDate.format('MM-DD-YYYY')} ${suBlueprint.stop_time.split('T')[1]}`), end_time: moment.utc(`${displayDate.format('YYYY-MM-DD')} ${suBlueprint.stop_time.split('T')[1]}`),
bgColor: suBlueprint.status? STATUS_COLORS[suBlueprint.status.toUpperCase()]:"#2196f3", bgColor: suBlueprint.status? STATUS_COLORS[suBlueprint.status.toUpperCase()]:"#2196f3",
selectedBgColor: suBlueprint.status? STATUS_COLORS[suBlueprint.status.toUpperCase()]:"#2196f3"}; selectedBgColor: suBlueprint.status? STATUS_COLORS[suBlueprint.status.toUpperCase()]:"#2196f3"};
return item; return item;
......
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