This commit is contained in:
@@ -5,6 +5,8 @@
|
|||||||
|
|
||||||
MISC ITEMS THAT CAME UP
|
MISC ITEMS THAT CAME UP
|
||||||
|
|
||||||
|
todo: time picker no way to select NOW
|
||||||
|
todo: time picker defaults to 12:00am when date is selected, how about current time instead?
|
||||||
todo: date picker component add drop down quick pick:
|
todo: date picker component add drop down quick pick:
|
||||||
i.e. Hour from now, Day from now, Week from now, Month from now.
|
i.e. Hour from now, Day from now, Week from now, Month from now.
|
||||||
todo: date and time defaults for appointments and shit
|
todo: date and time defaults for appointments and shit
|
||||||
@@ -74,6 +76,7 @@ todo: make new review from a review for the same object (new menu option in revi
|
|||||||
todo: make a new review from review list
|
todo: make a new review from review list
|
||||||
todo: not able to make a new review from review list when it's just a direct viewing of list
|
todo: not able to make a new review from review list when it's just a direct viewing of list
|
||||||
or should I add an object selector? NO
|
or should I add an object selector? NO
|
||||||
|
todo: overdue warning / display
|
||||||
|
|
||||||
|
|
||||||
EACH OBJECT DEV CYCLE:
|
EACH OBJECT DEV CYCLE:
|
||||||
|
|||||||
@@ -119,10 +119,7 @@
|
|||||||
<v-col v-if="form().showMe(this, 'Tags')" cols="12">
|
<v-col v-if="form().showMe(this, 'Tags')" cols="12">
|
||||||
<gz-tag-picker
|
<gz-tag-picker
|
||||||
v-model="obj.tags"
|
v-model="obj.tags"
|
||||||
:readonly="
|
:readonly="formState.readOnly"
|
||||||
formState.readOnly ||
|
|
||||||
(!selfAssigned && !currentUserIsASupervisor)
|
|
||||||
"
|
|
||||||
ref="tags"
|
ref="tags"
|
||||||
data-cy="tags"
|
data-cy="tags"
|
||||||
:error-messages="form().serverErrors(this, 'tags')"
|
:error-messages="form().serverErrors(this, 'tags')"
|
||||||
@@ -149,20 +146,14 @@
|
|||||||
:ayaId="obj.id"
|
:ayaId="obj.id"
|
||||||
ref="wiki"
|
ref="wiki"
|
||||||
v-model="obj.wiki"
|
v-model="obj.wiki"
|
||||||
:readonly="
|
:readonly="formState.readOnly"
|
||||||
formState.readOnly ||
|
|
||||||
(!selfAssigned && !currentUserIsASupervisor)
|
|
||||||
"
|
|
||||||
@input="fieldValueChanged('wiki')"
|
@input="fieldValueChanged('wiki')"
|
||||||
></gz-wiki
|
></gz-wiki
|
||||||
></v-col>
|
></v-col>
|
||||||
|
|
||||||
<v-col v-if="form().showMe(this, 'Attachments') && obj.id" cols="12">
|
<v-col v-if="form().showMe(this, 'Attachments') && obj.id" cols="12">
|
||||||
<gz-attachments
|
<gz-attachments
|
||||||
:readonly="
|
:readonly="formState.readOnly"
|
||||||
formState.readOnly ||
|
|
||||||
(!selfAssigned && !currentUserIsASupervisor)
|
|
||||||
"
|
|
||||||
:ayaType="ayaType"
|
:ayaType="ayaType"
|
||||||
:ayaId="obj.id"
|
:ayaId="obj.id"
|
||||||
></gz-attachments
|
></gz-attachments
|
||||||
|
|||||||
Reference in New Issue
Block a user