This commit is contained in:
@@ -45,14 +45,8 @@ CURRENT ROADMAP
|
|||||||
CURRENT TODOs
|
CURRENT TODOs
|
||||||
=-=-=-=-=-=-=
|
=-=-=-=-=-=-=
|
||||||
|
|
||||||
TODO (NEEDS re-test ON MOBILE for appearance and functionality): Reports - stub out
|
|
||||||
- Stub out some fake reports in a drop down selection for testing, doesn't have to do anything but be present
|
|
||||||
- WAS implementing as a dialog, that needs to be replaced now, either I need to follow the vuetify dialog example and put it in the shell app.vue or I'm going to use the dialog library I already have once I get an answer on templates
|
|
||||||
- If I use the vuetify example it means there needs to be a dialog in the shell that is activated from any form inside it but it also needs to be bound and shit and won't be very clean
|
|
||||||
- If I use the library dialog component and figure it out in theory it will just popup when required and not pollute the shell template with anything. I guess it inserts itself into the dom.
|
|
||||||
|
|
||||||
|
|
||||||
TODO: Time picker showing military time when select PM at top
|
TODO: Time picker showing military time when select PM at top
|
||||||
|
|
||||||
TODO: Widget edit form, new record gives following error because custom field not set that is required:
|
TODO: Widget edit form, new record gives following error because custom field not set that is required:
|
||||||
- {"error":{"code":"2200","details":[{"target":"WidgetCustom2","error":"2204"}],"message":"Object did not pass validation"}}
|
- {"error":{"code":"2200","details":[{"target":"WidgetCustom2","error":"2204"}],"message":"Object did not pass validation"}}
|
||||||
- Why is this not displaying right in the UI error box? It just says "Validation error Object did not pass validation" and nothing else!?
|
- Why is this not displaying right in the UI error box? It just says "Validation error Object did not pass validation" and nothing else!?
|
||||||
@@ -70,6 +64,11 @@ TODO: Bug? Set widget edit form times to 4:20pm and observe that in the main gr
|
|||||||
TODO: BUG? If I open a widget record, make no changes just click on another navigation item like operations console, instead of navigating I get an error about object did not pass validation and it stays on that page
|
TODO: BUG? If I open a widget record, make no changes just click on another navigation item like operations console, instead of navigating I get an error about object did not pass validation and it stays on that page
|
||||||
- It's trying to open this url: https://test.helloayanova.com/inventory/widget/edit/ops for some reason tagging ops on to the current route, not replacing the route entirely
|
- It's trying to open this url: https://test.helloayanova.com/inventory/widget/edit/ops for some reason tagging ops on to the current route, not replacing the route entirely
|
||||||
|
|
||||||
|
TODO (NEEDS re-test ON MOBILE for appearance and functionality): Reports - stub out
|
||||||
|
- Stub out some fake reports in a drop down selection for testing, doesn't have to do anything but be present
|
||||||
|
- WAS implementing as a dialog, that needs to be replaced now, either I need to follow the vuetify dialog example and put it in the shell app.vue or I'm going to use the dialog library I already have once I get an answer on templates
|
||||||
|
- If I use the vuetify example it means there needs to be a dialog in the shell that is activated from any form inside it but it also needs to be bound and shit and won't be very clean
|
||||||
|
- If I use the library dialog component and figure it out in theory it will just popup when required and not pollute the shell template with anything. I guess it inserts itself into the dom.
|
||||||
|
|
||||||
|
|
||||||
TODO: Hover / hint text on copy log and log buttons (and possibly others?)
|
TODO: Hover / hint text on copy log and log buttons (and possibly others?)
|
||||||
@@ -156,7 +155,7 @@ TODO: NOW THAT FORM IS THERE MOSTLY, CLEAN UP CODE FOR RE-USE in many other form
|
|||||||
TODO: AUTOMATIC TEST *** SUPER IMPORTANT *****
|
TODO: AUTOMATIC TEST *** SUPER IMPORTANT *****
|
||||||
- Once widget form is solid then need an automatic UI test for it to get that ball rolling and to ensure no slips during development
|
- Once widget form is solid then need an automatic UI test for it to get that ball rolling and to ensure no slips during development
|
||||||
- Ideally it will test every input component and validate the entire record round trips properly, maybe it needs to also try different states like creating new, editing etc
|
- Ideally it will test every input component and validate the entire record round trips properly, maybe it needs to also try different states like creating new, editing etc
|
||||||
|
- Also function as a "smoke" test that will heavily exercise the server and client repeatedly for as long as I let it run which will reveal issues before releases
|
||||||
|
|
||||||
|
|
||||||
TODO: Outstanding case with vuetify bug in clear button when readonly, check if fixed and if it isn't might need a workaround
|
TODO: Outstanding case with vuetify bug in clear button when readonly, check if fixed and if it isn't might need a workaround
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
:error="!!error"
|
:error="!!error"
|
||||||
></v-text-field>
|
></v-text-field>
|
||||||
</template>
|
</template>
|
||||||
<v-time-picker v-model="timeOnly">
|
<v-time-picker scrollable ampm-in-title v-model="timeOnly">
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
<v-btn text color="primary" @click="dlgtime = false">OK</v-btn>
|
<v-btn text color="primary" @click="dlgtime = false">OK</v-btn>
|
||||||
</v-time-picker>
|
</v-time-picker>
|
||||||
|
|||||||
Reference in New Issue
Block a user