This commit is contained in:
Tsanie Lily 2023-04-24 15:08:24 +08:00
parent 4096068a62
commit f5a32c5332

View File

@ -636,7 +636,7 @@ class CustomerCommunication {
iconCol,
nameCol,
{ key: 'Email', width: 180 },
{ key: 'MobilePhone', width: 130 },
{ key: 'MobilePhoneDisplayText', width: 130 },
createEditCol(this),
{
key: 'delete',
@ -721,7 +721,7 @@ class CustomerCommunication {
iconCol,
nameCol,
{ key: 'Email', width: 180 },
{ key: 'MobilePhone', width: 130 },
{ key: 'MobilePhoneDisplayText', width: 130 },
createEditCol(this),
{
key: 'delete',
@ -874,7 +874,7 @@ class CustomerCommunication {
},
{ key: 'Name', width: 160 },
{ key: 'Email', width: 180 },
{ key: 'MobilePhone', width: 130 },
{ key: 'MobilePhoneDisplayText', width: 130 },
{
key: 'edit',
...buttonCol,
@ -1053,13 +1053,13 @@ class CustomerCommunication {
contacts.find(c => c.Email === oriph) :
contacts.find(c => c.MobilePhone === oriph);
if (c != null) {
cname = `${email ? c.Email : c.MobilePhone} - ${c.Name}`;
cname = `${email ? c.Email : c.MobilePhoneDisplayText} - ${c.Name}`;
} else if (followers?.length > 0) {
c = email ?
followers.find(f => f.Email === oriph) :
followers.find(f => f.MobilePhone === oriph);
if (c != null) {
cname = `${email ? c.Email : c.MobilePhone} - ${c.Name}`;
cname = `${email ? c.Email : c.MobilePhoneDisplayText} - ${c.Name}`;
}
}
}