This commit is contained in:
2021-07-08 13:34:16 +00:00
parent d0a047dcb1
commit 0379e7525b
2 changed files with 4 additions and 8 deletions

View File

@@ -420,10 +420,9 @@ todo: many biz objects are not using new PUT methodology
CURRENTLY DOING: Report editor exposing AType field
CURRENTLY DOING: Report editor expose AType field for editing
Should the label be "Show for type" rather than just Type?
todo: report editor feature:
expose aytype field with a picklist so user can change report type

View File

@@ -94,7 +94,7 @@
@change="fieldValueChanged('includeWoItemDescendants')"
></v-checkbox>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-col cols="12" sm="6" lg="4" xl="3">
<v-select
v-model="obj.aType"
:items="selectLists.coreAyaTypes"
@@ -1132,6 +1132,7 @@ function generateMenu(vm) {
//
async function initForm(vm) {
await fetchTranslatedText(vm);
await populateSelectionLists(vm);
}
//////////////////////////////////////////////////////////
@@ -1199,11 +1200,7 @@ async function fetchReportData(vm) {
//
//
async function populateSelectionLists(vm) {
await window.$gz.enums.fetchEnumList("coreview");
vm.selectLists.coreAyaTypes = window.$gz.enums.getSelectionList("coreview");
}
</script>