TP-79857 | Allocation on geolocation
This commit is contained in:
@@ -204,7 +204,11 @@ const GeolocationAddress: React.FC<IGeolocationAddress> = ({
|
||||
</View>
|
||||
{showSimilarGeolocationsCTA ? <ArrowSolidIcon rotateY={180} /> : null}
|
||||
</View>
|
||||
<Text dark ellipsizeMode="tail">Address sus wdgwud wdvwhdgw gduwygd uwgd wgdw dgw udw udgu wgd uwd wdgwuduw dwydgw</Text>
|
||||
{address?.sourceAddress ? (
|
||||
<Text dark ellipsizeMode="tail">
|
||||
{address?.sourceAddress}
|
||||
</Text>
|
||||
) : null}
|
||||
{!isFeedbackView ? (
|
||||
<View style={[GenericStyles.mt8]}>
|
||||
{isFeedbackPresent ? (
|
||||
|
||||
@@ -19,7 +19,7 @@ interface IViewAddressSection {
|
||||
|
||||
const ViewAddressSection = ({ caseId }: IViewAddressSection) => {
|
||||
const caseDetail = useAppSelector((state: RootState) => state.allCases.caseDetails[caseId]) || {};
|
||||
const { addressString, loanAccountNumber, customerReferenceId } = caseDetail;
|
||||
const { addressString, loanAccountNumber, customerReferenceId, addressSourceText = AddressGeolocationTabEnum.ADDRESS } = caseDetail;
|
||||
|
||||
const viewAllAddressHandler = () => {
|
||||
addClickstreamEvent(CLICKSTREAM_EVENT_NAMES.FA_VIEW_ADDRESSES_CLICKED, {
|
||||
@@ -29,7 +29,7 @@ const ViewAddressSection = ({ caseId }: IViewAddressSection) => {
|
||||
loanAccountNumber,
|
||||
customerReferenceId,
|
||||
caseId,
|
||||
tab: AddressGeolocationTabEnum.GEOLOCATION
|
||||
tab: addressSourceText
|
||||
};
|
||||
navigateToScreen(CaseDetailStackEnum.ADDRESS_GEO, commonParams);
|
||||
};
|
||||
|
||||
@@ -255,6 +255,7 @@ export interface IGeolocation {
|
||||
clusterLabels: string[];
|
||||
clusterId: string;
|
||||
minTimestamp: string;
|
||||
sourceAddress?: string;
|
||||
}
|
||||
export interface EmploymentDetails {
|
||||
employmentType: string;
|
||||
@@ -312,6 +313,7 @@ export interface CaseDetail {
|
||||
geolocations?: IGeolocation[];
|
||||
employmentDetail?: EmploymentDetails;
|
||||
unpaidDays?: number;
|
||||
addressSourceText?: string;
|
||||
}
|
||||
|
||||
export interface AddressesGeolocationPayload {
|
||||
|
||||
Reference in New Issue
Block a user