diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index ab78fb56..290ffee6 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -80,7 +80,7 @@ OUTSTANDING WITH CUSTOMER contacts Maybe convert generic customer contacts list to proper data grid source from server - shows all contact info directly in grid + shows customer, headoffice name directly in grid Change cust-user edit form (and other user edit form) and add tabs and user options section so that it can all be set there as well Add button to email the user their creds and login and invite them to change the password once they login Customer User (contacts) UI for this client (generate, view) @@ -145,7 +145,8 @@ Preliminary order to get the ball rolling, these are the easiest starting point: Vendor case 3300 popup notes case 3427 change vendortype to displayfor so it displays in multiple locations - adm-user edit form must be tweaked once the vendor object is coded to so subcontractors + adm-user edit form must be tweaked once the vendor object is coded to so subcontractors + adm-users list form to include vendor name for subcontractors CustomerNote "ClientNote" Memo (user memos) Project diff --git a/ayanova/src/views/cust-users.vue b/ayanova/src/views/cust-users.vue index 67d5618d..aa3f53ef 100644 --- a/ayanova/src/views/cust-users.vue +++ b/ayanova/src/views/cust-users.vue @@ -111,6 +111,7 @@ export default { ret.push({ id: o.id, name: o.name, + organization: o.organization, emailAddress: o.emailAddress, phone1: o.phone1, phone2: o.phone2, @@ -270,7 +271,8 @@ async function fetchTranslatedText(vm) { "UserEmailAddress", "UserPhone1", "UserPhone2", - "UserPageAddress" + "UserPageAddress", + "Organization" ]); } @@ -290,6 +292,7 @@ async function cacheEnums(vm) { async function createTableHeaders(vm) { vm.headers = [ { text: vm.$ay.t("User"), value: "name" }, + { text: vm.$ay.t("Organization"), value: "organization" }, { text: vm.$ay.t("UserEmailAddress"), value: "emailAddress" }, { text: vm.$ay.t("UserPhone1"), value: "phone1" }, { text: vm.$ay.t("UserPhone2"), value: "phone2" },