This commit is contained in:
2020-07-14 18:34:52 +00:00
parent ae766fab32
commit cbc2d4b5c1
2 changed files with 7 additions and 2 deletions

View File

@@ -34,6 +34,12 @@ export default {
params: { recordid: tid.id } params: { recordid: tid.id }
}); });
break; break;
case ayatype.NotifySubscription:
vm.$router.push({
name: "home-notify-subscription",
params: { recordid: tid.id }
});
break;
case ayatype.FileAttachment: case ayatype.FileAttachment:
//lookup the actual type //lookup the actual type
//then call this method again to do the actual open //then call this method again to do the actual open

View File

@@ -41,13 +41,12 @@
</v-col> </v-col>
<v-col cols="12" sm="6" lg="4" xl="3"> <v-col cols="12" sm="6" lg="4" xl="3">
{{ obj.advanceNotice }}
<gz-duration-picker <gz-duration-picker
v-model="obj.advanceNotice" v-model="obj.advanceNotice"
:readonly="formState.readOnly" :readonly="formState.readOnly"
:disabled="formState.readOnly" :disabled="formState.readOnly"
:label="$ay.t('NotifySubscriptionPendingSpan')" :label="$ay.t('NotifySubscriptionPendingSpan')"
:showSeconds="true" :showSeconds="false"
ref="advanceNotice" ref="advanceNotice"
:data-cy="!!$ay.dev ? 'advanceNotice' : false" :data-cy="!!$ay.dev ? 'advanceNotice' : false"
:error-messages="form().serverErrors(this, 'advanceNotice')" :error-messages="form().serverErrors(this, 'advanceNotice')"