GWM:new_key added in applicant table

This commit is contained in:
sriramv 2023-10-11 12:29:18 +05:30
parent 3510041eeb
commit a89f31dea1
2 changed files with 3 additions and 1 deletions

View File

@ -150,7 +150,8 @@ exports.mainLandingPage = async (req, res) =>
name : [value.firstName, value.middleName, value.lastName ].filter(Boolean).join(" "), // concat and ignore null
pan_no : value.panNo,
entity_type : value.kycType.trim(),
applicant_type : 'Main Applicant'
applicant_type : 'Main Applicant',
is_data_from_los : 1
}
lstApplicantKYCDetailDataArray.push(lstApplicantKYCDetailObj);
}

View File

@ -29,6 +29,7 @@ module.exports = (sequelize, DataTypes) => {
bureau_score: { type: DataTypes.STRING },
heir_in_business_and_on_loan_struct: { type: DataTypes.STRING },
nri: { type: DataTypes.STRING },
is_data_from_los : { type: DataTypes.INTEGER },
is_active : { type: DataTypes.INTEGER },
createdby: { type: DataTypes.INTEGER },
updatedby: { type: DataTypes.INTEGER },