diff --git a/ayanova/src/components/work-order-item-scheduled-users.vue b/ayanova/src/components/work-order-item-scheduled-users.vue index 8904abe3..4ef3a424 100644 --- a/ayanova/src/components/work-order-item-scheduled-users.vue +++ b/ayanova/src/components/work-order-item-scheduled-users.vue @@ -416,7 +416,7 @@ export default { handleStartDateChange: function(isNew, dStart, dStop) { if (isNew) { // (ONLY IF GLOBAL DEFAULT QTY) enter start date when stop date is null then it will add global default to start and set stop and qty - // (ONLY IF GLOBAL DEFAULT QTY) enter stop date when start date is null then it will back calc and set start and qty based on global default + // If no global default then it acts like existing and updates qty or stop date when qty changes (if there are dates to go on) const globalMinutes = @@ -437,7 +437,9 @@ export default { ); } }, - handleStopDateChange: function(isNew, dStart, dStop) {}, + handleStopDateChange: function(isNew, dStart, dStop) { + // (ONLY IF GLOBAL DEFAULT QTY) enter stop date when start date is null then it will back calc and set start and qty based on global default + }, handleEstimatedQuantityChange: function(isNew, dStart, dStop) { let val = this.value.items[this.activeWoItemIndex].scheduledUsers[ this.activeItemIndex