case 4087
This commit is contained in:
@@ -910,19 +910,17 @@ export default {
|
||||
|
||||
if (isNew) {
|
||||
if (globalMinutes != 0) {
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
this.activeItemIndex
|
||||
].serviceStopDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart,
|
||||
globalMinutes
|
||||
);
|
||||
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
this.activeItemIndex
|
||||
].serviceRateQuantity = globalMinutes;
|
||||
].serviceStopDate = dStop;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStop != null) {
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
@@ -940,19 +938,17 @@ export default {
|
||||
|
||||
if (isNew && dStart == null) {
|
||||
if (globalMinutes != 0) {
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
this.activeItemIndex
|
||||
].serviceStartDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop,
|
||||
0 - globalMinutes
|
||||
);
|
||||
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
this.activeItemIndex
|
||||
].serviceRateQuantity = globalMinutes;
|
||||
].serviceStartDate = dStart;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStart != null) {
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
|
||||
@@ -625,19 +625,17 @@ export default {
|
||||
|
||||
if (isNew) {
|
||||
if (globalMinutes != 0) {
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
this.activeItemIndex
|
||||
].stopDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart,
|
||||
globalMinutes
|
||||
);
|
||||
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
this.activeItemIndex
|
||||
].estimatedQuantity = globalMinutes;
|
||||
].stopDate = dStop;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStop != null) {
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
@@ -655,19 +653,17 @@ export default {
|
||||
|
||||
if (isNew && dStart == null) {
|
||||
if (globalMinutes != 0) {
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
this.activeItemIndex
|
||||
].startDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop,
|
||||
0 - globalMinutes
|
||||
);
|
||||
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
this.activeItemIndex
|
||||
].estimatedQuantity = globalMinutes;
|
||||
].startDate = dStart;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStart != null) {
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
|
||||
@@ -941,19 +941,18 @@ export default {
|
||||
|
||||
if (isNew) {
|
||||
if (globalMinutes != 0) {
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].travels[
|
||||
this.activeItemIndex
|
||||
].travelStopDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart,
|
||||
globalMinutes
|
||||
);
|
||||
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].travels[
|
||||
this.activeItemIndex
|
||||
].travelRateQuantity = globalMinutes;
|
||||
].travelStopDate = dStop;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStop != null) {
|
||||
this.value.items[this.activeWoItemIndex].travels[
|
||||
@@ -971,19 +970,18 @@ export default {
|
||||
|
||||
if (isNew && dStart == null) {
|
||||
if (globalMinutes != 0) {
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].travels[
|
||||
this.activeItemIndex
|
||||
].travelStartDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop,
|
||||
0 - globalMinutes
|
||||
);
|
||||
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].travels[
|
||||
this.activeItemIndex
|
||||
].travelRateQuantity = globalMinutes;
|
||||
].travelStartDate = dStart;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStart != null) {
|
||||
this.value.items[this.activeWoItemIndex].travels[
|
||||
|
||||
@@ -911,19 +911,17 @@ export default {
|
||||
|
||||
if (isNew) {
|
||||
if (globalMinutes != 0) {
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
this.activeItemIndex
|
||||
].serviceStopDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart,
|
||||
globalMinutes
|
||||
);
|
||||
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
this.activeItemIndex
|
||||
].serviceRateQuantity = globalMinutes;
|
||||
].serviceStopDate = dStop;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStop != null) {
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
@@ -941,19 +939,17 @@ export default {
|
||||
|
||||
if (isNew && dStart == null) {
|
||||
if (globalMinutes != 0) {
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
this.activeItemIndex
|
||||
].serviceStartDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop,
|
||||
0 - globalMinutes
|
||||
);
|
||||
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
this.activeItemIndex
|
||||
].serviceRateQuantity = globalMinutes;
|
||||
].serviceStartDate = dStart;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStart != null) {
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
|
||||
@@ -625,19 +625,17 @@ export default {
|
||||
|
||||
if (isNew) {
|
||||
if (globalMinutes != 0) {
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
this.activeItemIndex
|
||||
].stopDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart,
|
||||
globalMinutes
|
||||
);
|
||||
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
this.activeItemIndex
|
||||
].estimatedQuantity = globalMinutes;
|
||||
].stopDate = dStop;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStop != null) {
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
@@ -655,19 +653,17 @@ export default {
|
||||
|
||||
if (isNew && dStart == null) {
|
||||
if (globalMinutes != 0) {
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
this.activeItemIndex
|
||||
].startDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop,
|
||||
0 - globalMinutes
|
||||
);
|
||||
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
this.activeItemIndex
|
||||
].estimatedQuantity = globalMinutes;
|
||||
].startDate = dStart;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStart != null) {
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
|
||||
@@ -941,19 +941,18 @@ export default {
|
||||
|
||||
if (isNew) {
|
||||
if (globalMinutes != 0) {
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].travels[
|
||||
this.activeItemIndex
|
||||
].travelStopDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart,
|
||||
globalMinutes
|
||||
);
|
||||
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].travels[
|
||||
this.activeItemIndex
|
||||
].travelRateQuantity = globalMinutes;
|
||||
].travelStopDate = dStop;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStop != null) {
|
||||
this.value.items[this.activeWoItemIndex].travels[
|
||||
@@ -971,19 +970,18 @@ export default {
|
||||
|
||||
if (isNew && dStart == null) {
|
||||
if (globalMinutes != 0) {
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].travels[
|
||||
this.activeItemIndex
|
||||
].travelStartDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop,
|
||||
0 - globalMinutes
|
||||
);
|
||||
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].travels[
|
||||
this.activeItemIndex
|
||||
].travelRateQuantity = globalMinutes;
|
||||
].travelStartDate = dStart;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStart != null) {
|
||||
this.value.items[this.activeWoItemIndex].travels[
|
||||
|
||||
@@ -614,19 +614,17 @@ export default {
|
||||
|
||||
if (isNew) {
|
||||
if (globalMinutes != 0) {
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
this.activeItemIndex
|
||||
].stopDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart,
|
||||
globalMinutes
|
||||
);
|
||||
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
this.activeItemIndex
|
||||
].estimatedQuantity = globalMinutes;
|
||||
].stopDate = dStop;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStop != null) {
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
@@ -644,19 +642,17 @@ export default {
|
||||
|
||||
if (isNew && dStart == null) {
|
||||
if (globalMinutes != 0) {
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
this.activeItemIndex
|
||||
].startDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStop,
|
||||
0 - globalMinutes
|
||||
);
|
||||
|
||||
//set start date based on stop date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
this.activeItemIndex
|
||||
].estimatedQuantity = globalMinutes;
|
||||
].startDate = dStart;
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStart != null) {
|
||||
this.value.items[this.activeWoItemIndex].scheduledUsers[
|
||||
|
||||
Reference in New Issue
Block a user