diff --git a/src/app/core/models/preparer/contact.ts b/src/app/core/models/preparer/contact.ts index 3787659..26ad242 100644 --- a/src/app/core/models/preparer/contact.ts +++ b/src/app/core/models/preparer/contact.ts @@ -2,7 +2,7 @@ export interface Contact { clientContactId: number; spid: number clientid: number; - locationid: number; + locationid?: number; defaultContact: boolean; firstName: string; lastName: string; diff --git a/src/app/core/services/preparer/contact.service.ts b/src/app/core/services/preparer/contact.service.ts index 856b780..245616e 100644 --- a/src/app/core/services/preparer/contact.service.ts +++ b/src/app/core/services/preparer/contact.service.ts @@ -26,7 +26,6 @@ export class ContactService { clientContactId: contact.CLIENTCONTACTID, spid: contact.SPID, clientid: contact.CLIENTID, - locationid: contact.LOCATIONID, defaultContact: contact.DEFCONTACTFLAG === 'Y', firstName: contact.FIRSTNAME, lastName: contact.LASTNAME, @@ -71,7 +70,6 @@ export class ContactService { const contact = { P_SPID: this.userService.getUserSpid(), P_CLIENTCONTACTID: spContactId, - P_LOCATIONID: data.locationid, P_FIRSTNAME: data.firstName, P_LASTNAME: data.lastName, P_MIDDLEINITIAL: data.middleInitial, diff --git a/src/app/preparer/contacts/contacts.component.html b/src/app/preparer/contacts/contacts.component.html index 782e1b0..d64365c 100644 --- a/src/app/preparer/contacts/contacts.component.html +++ b/src/app/preparer/contacts/contacts.component.html @@ -15,12 +15,6 @@
| Location Name | -{{ getLocationLabel(contact.locationid) }} | -First Name | @@ -117,6 +111,20 @@
|---|