This commit is contained in:
@@ -930,19 +930,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[
|
||||
@@ -960,19 +959,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[
|
||||
|
||||
Reference in New Issue
Block a user