This commit is contained in:
2020-11-18 18:57:43 +00:00
parent a6214abe23
commit f047ac40be
2 changed files with 7 additions and 3 deletions

View File

@@ -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

View File

@@ -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" },