TP-57925 | DPD Bucket on Cosmos updated to unpaid days (#736)

This commit is contained in:
Shri Prakash Bajpai
2024-03-08 21:04:26 +05:30
committed by GitHub
parent 2a1270b8c0
commit 567e9d1b23
4 changed files with 7 additions and 5 deletions

View File

@@ -134,8 +134,8 @@ def reactNativeArchitectures() {
return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
}
def VERSION_CODE = 130
def VERSION_NAME = "2.8.1"
def VERSION_CODE = 131
def VERSION_NAME = "2.8.2"
android {
ndkVersion rootProject.ext.ndkVersion

View File

@@ -1,7 +1,7 @@
{
"name": "AV_APP",
"version": "2.8.1",
"buildNumber": "130",
"version": "2.8.2",
"buildNumber": "131",
"private": true,
"scripts": {
"android:dev": "yarn move:dev && react-native run-android",

View File

@@ -25,6 +25,7 @@ const CollectionCaseData: React.FC<ICollectionCaseData> = ({ caseData }) => {
pos,
collectionTag,
employmentDetail,
unpaidDays
} = caseData;
return (
@@ -36,7 +37,7 @@ const CollectionCaseData: React.FC<ICollectionCaseData> = ({ caseData }) => {
)}
<View style={[GenericStyles.row, GenericStyles.mv8]}>
<Text style={[GenericStyles.chip, GenericStyles.whiteBackground]} small>
Current DPD {currentDpd}
Current DPD {unpaidDays ? unpaidDays : currentDpd}
</Text>
{loanAccountNumber && (
<Chip

View File

@@ -295,6 +295,7 @@ export interface CaseDetail {
forceSubmit?: boolean;
geolocations?: IGeolocation[];
employmentDetail?: EmploymentDetails;
unpaidDays?: number;
}
export interface AddressesGeolocationPayload {