TP-57925 | DPD Bucket on Cosmos updated to unpaid days (#736)
This commit is contained in:
committed by
GitHub
parent
2a1270b8c0
commit
567e9d1b23
@@ -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
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -295,6 +295,7 @@ export interface CaseDetail {
|
||||
forceSubmit?: boolean;
|
||||
geolocations?: IGeolocation[];
|
||||
employmentDetail?: EmploymentDetails;
|
||||
unpaidDays?: number;
|
||||
}
|
||||
|
||||
export interface AddressesGeolocationPayload {
|
||||
|
||||
Reference in New Issue
Block a user