Fixes : ps
This commit is contained in:
parent
731815229e
commit
e472388631
File diff suppressed because one or more lines are too long
2032
package-lock.json
generated
2032
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -101,4 +101,4 @@
|
||||
"android"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -442,7 +442,7 @@ countRowsForTextarea(text){
|
||||
console.log("pin init", this.pincodeValue[0])
|
||||
if(AddressDetails != null){
|
||||
return this.fb.group({
|
||||
address: [AddressDetails.address + 'qqqqqqqqqqqqqqqqqqqqqqqqqqqq wwwwwwwwwwwwwwwwwwwe eeeeeeeeeeeeeeeeeeeeeeeeeeeee eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr rrrrrrrrrrrrr', Validators.compose([Validators.required])],
|
||||
address: [AddressDetails.address, Validators.compose([Validators.required])],
|
||||
address_type: [AddressDetails.address_type, Validators.compose([Validators.required])],
|
||||
address_type_others: [AddressDetails.address_type_others],
|
||||
state: [AddressDetails.state],
|
||||
|
||||
@ -95,7 +95,8 @@
|
||||
<!-- </mat-form-field> -->
|
||||
<!-- </div> -->
|
||||
<div fxLayout="column" fxLayoutAlign="start stretch">
|
||||
<p>Approximate vintage of the account (No of years)</p>
|
||||
<!-- <p>Approximate vintage of the account (No of years)</p> -->
|
||||
<p>Number of Years / Months since account was started</p>
|
||||
<mat-form-field style="width: 46%">
|
||||
<input type="number" matInput placeholder="Year" name="vintage" formControlName="vintage_year">
|
||||
</mat-form-field>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,7 @@
|
||||
page-pd-question-business-info {
|
||||
mat-form-field{
|
||||
width:100%;
|
||||
}
|
||||
// mat-form-field{
|
||||
// width:100%;
|
||||
// }
|
||||
mat-card-title{
|
||||
font-weight: bold;
|
||||
font-size:18px;
|
||||
@ -42,6 +42,9 @@ page-pd-question-business-info {
|
||||
.mat-form-field-label {
|
||||
white-space: normal;
|
||||
}
|
||||
.labelcss{
|
||||
white-space: normal;
|
||||
}
|
||||
textarea.mat-input-element {
|
||||
padding: 0px 0;
|
||||
margin: 5px 0;
|
||||
|
||||
@ -1,14 +1,10 @@
|
||||
<ion-header>
|
||||
|
||||
<ion-navbar color="optblue">
|
||||
<button ion-button menuToggle>
|
||||
<ion-icon name="menu">{{FormId.form_name}}</ion-icon>
|
||||
</button>
|
||||
|
||||
|
||||
|
||||
</ion-navbar>
|
||||
|
||||
<ion-navbar color="optblue">
|
||||
<button ion-button menuToggle>
|
||||
<ion-icon name="menu"></ion-icon>
|
||||
</button>
|
||||
<ion-title *ngIf="!viewchange">{{FormId.form_name}}</ion-title>
|
||||
</ion-navbar>
|
||||
</ion-header>
|
||||
|
||||
|
||||
@ -69,7 +65,7 @@
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width: 100%">
|
||||
<mat-select (selectionChange)="selectedfrequency($event.value,i)" placeholder="Instalment Frequency"
|
||||
formControlName="frequency" required>
|
||||
formControlName="frequency">
|
||||
<mat-option>Select</mat-option>
|
||||
<mat-option *ngFor="let freq of frequencyData" value="{{freq.frequency_id}}">{{freq.name}}</mat-option>
|
||||
</mat-select>
|
||||
|
||||
@ -69,6 +69,7 @@ applicants: any;
|
||||
}
|
||||
ionViewDidLoad() {
|
||||
console.log('ionViewDidLoad PdQuestionCurrentLoansPage');
|
||||
console.log('{{FormId.form_name}}',this.FormId.form_name,this.FormId);
|
||||
this.getcurrentLoans()
|
||||
}
|
||||
|
||||
@ -141,19 +142,32 @@ applicants: any;
|
||||
createLoanDetail(data) {
|
||||
return this.fb.group({
|
||||
label: data == null ? [''] : [data.label],
|
||||
other_frequency:[''],
|
||||
loan_amount: [''],
|
||||
frequency:[''],
|
||||
emi: [''],
|
||||
loan_type: [''],
|
||||
others_loan_type:[''],
|
||||
loan_taken_by:[''],
|
||||
others_loan_taken:[''],
|
||||
lender: [''],
|
||||
others_lender:[''],
|
||||
original_tenure: [''],
|
||||
current_balance_tenure: [''],
|
||||
elapsed_tenure:[],
|
||||
loan_amount: data == null ? [''] : [data.loan_amount],
|
||||
frequency: data == null ? [''] : [data.frequency],
|
||||
other_frequency: data == null ? [''] : [data.other_frequency],
|
||||
emi: data == null ? [''] : [data.emi],
|
||||
loan_type: data == null ? [''] : [data.loan_type],
|
||||
others_loan_type: data == null ? [''] : [data.others_loan_type],
|
||||
loan_taken_by: data == null ? [''] : [data.loan_taken_by],
|
||||
others_loan_taken: data == null ? [''] : [data.others_loan_taken],
|
||||
lender: data == null ? [''] : [data.lender],
|
||||
others_lender: data == null ? [''] : [data.others_lender],
|
||||
original_tenure: data == null ? [''] : [data.original_tenure],
|
||||
current_balance_tenure: data == null ? [''] : [data.current_balance_tenure],
|
||||
elapsed_tenure: data == null ? [''] : [data.elapsed_tenure]
|
||||
// other_frequency:[''],
|
||||
// loan_amount: [''],
|
||||
// frequency:[''],
|
||||
// emi: [''],
|
||||
// loan_type: [''],
|
||||
// others_loan_type:[''],
|
||||
// loan_taken_by:[''],
|
||||
// others_loan_taken:[''],
|
||||
// lender: [''],
|
||||
// others_lender:[''],
|
||||
// original_tenure: [''],
|
||||
// current_balance_tenure: [''],
|
||||
// elapsed_tenure:[],
|
||||
});
|
||||
}
|
||||
addLoanDetails() {
|
||||
@ -301,7 +315,7 @@ submitCurrentloan(answerData) {
|
||||
records.existing_loan = answerData.existing_loan;
|
||||
records.loan_details = answerData.loan_details;
|
||||
records.currentloan_remarks = answerData.currentloan_remarks;
|
||||
|
||||
console.log(' final records when save',records);
|
||||
this.qustCat.saveForm(records).subscribe(data => {
|
||||
|
||||
if(data['dataStatus']==true)
|
||||
|
||||
@ -131,13 +131,13 @@
|
||||
<h6>Number of Years for which rental income is being received</h6>
|
||||
</mat-card-title>
|
||||
<mat-form-field style="width: 100%;">
|
||||
<input matInput placeholder="Year" formControlName="rental_income_rcv_in_years" autocomplete="off" OnlyNumber
|
||||
type="text" required>
|
||||
<input matInput placeholder="Year" formControlName="rental_income_rcv_in_years" autocomplete="off"
|
||||
type="number" required>
|
||||
<mat-error style="font-size: 12px">Please Enter Correct Year</mat-error>
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width: 100%;">
|
||||
<input matInput type="text" placeholder="Month" formControlName="rental_income_rcv_in_month" autocomplete="off"
|
||||
OnlyNumber type="text" (change)="ConvertMonthintoYearforBusiness($event.target.value,'',2)">
|
||||
<input matInput placeholder="Month" formControlName="rental_income_rcv_in_month" autocomplete="off"
|
||||
type="number" (change)="ConvertMonthintoYearforBusiness($event.target.value,'',2)">
|
||||
</mat-form-field>
|
||||
</mat-card>
|
||||
|
||||
|
||||
@ -47,7 +47,8 @@
|
||||
<mat-form-field style="width:100%" *ngIf="details.get('source').value == '5'">
|
||||
<mat-label>Address</mat-label>
|
||||
<input matInput placeholder="Rental Info Details" formControlName="address" autocomplete="off">
|
||||
<mat-hint align="end"><i (click)="Toview()">Rental Info Details</i></mat-hint>
|
||||
<!-- <mat-hint align="end"><i (click)="Toview()">Rental Info Details</i></mat-hint> -->
|
||||
<mat-hint align="end"><strong (click)="Toview()">Validate Rental Income</strong></mat-hint>
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width: 100%;"*ngIf="details.get('source').value == '1'">
|
||||
<input matInput placeholder="Specify Others Source"
|
||||
|
||||
@ -216,8 +216,8 @@ Toview(){
|
||||
alert('Rental Income Details - Is inprogress');
|
||||
|
||||
// here Hardcoded;
|
||||
// let RIFormDtls = {'form_id':17,'form_name':'Rental Verification'};
|
||||
// this.navCtrl.push(PdQuestionRentalInfoPage,{'FormId':RIFormDtls,'pdDetails':this.pdDetails});
|
||||
let RIFormDtls = {'form_id':17,'form_name':'Rental Verification'};
|
||||
this.navCtrl.push(PdQuestionRentalInfoPage,{'FormId':RIFormDtls,'pdDetails':this.pdDetails});
|
||||
}
|
||||
submitOtherIncome(answerData)
|
||||
{
|
||||
|
||||
@ -10,9 +10,9 @@
|
||||
<ion-content padding>
|
||||
<form [formGroup]="rentalForms">
|
||||
<mat-card>
|
||||
<mat-card-header>
|
||||
<mat-card-title>Property Details</mat-card-title>
|
||||
</mat-card-header>
|
||||
|
||||
<mat-card-title><strong>Property Details</strong></mat-card-title>
|
||||
|
||||
|
||||
<mat-card-content>
|
||||
|
||||
@ -25,15 +25,15 @@
|
||||
</mat-form-field>
|
||||
|
||||
<!--start name of the who showing property to officer -->
|
||||
<mat-form-field style="width:31%">
|
||||
<mat-form-field style="width:100%">
|
||||
<mat-select placeholder="State" formControlName="state" required>
|
||||
<mat-option *ngFor="let stVal of stateList" [value]="stVal.state_id">
|
||||
{{stVal.name}}
|
||||
</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field style="width:31%">
|
||||
|
||||
<mat-form-field style="width:100%">
|
||||
<mat-label>City</mat-label>
|
||||
<mat-select placeholder="City" formControlName="city" required>
|
||||
<mat-option *ngFor="let ctVal of cityList" [value]="ctVal.city_id">
|
||||
@ -41,8 +41,8 @@
|
||||
</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field style="width:31%">
|
||||
|
||||
<mat-form-field style="width:100%">
|
||||
<mat-label>Pincode</mat-label>
|
||||
<mat-select placeholder="" formControlName="pincode" required>
|
||||
<mat-option *ngFor="let pinVal of pincodeList" [value]="pinVal.pincode_id">
|
||||
@ -50,9 +50,10 @@
|
||||
</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
|
||||
<div align="left" style="margin-left: 0%;">
|
||||
<mat-checkbox color="primary" formControlName="validate_visited_address">Is This the Address Visited ?
|
||||
<strong>( {{rentalForms.value.validate_visited_address===true ? 'Yes' : 'No'}} )</strong></mat-checkbox>
|
||||
<strong>( {{rentalForms.value.validate_visited_address===true ? 'Yes' : 'No'}} )</strong></mat-checkbox><br>
|
||||
</div>
|
||||
<mat-form-field style="width:90%;margin-top: 2%;" *ngIf="rentalForms.controls['other_visited_address']">
|
||||
<mat-label>Actual Address Visited</mat-label>
|
||||
@ -197,17 +198,17 @@
|
||||
|
||||
<mat-form-field style="width:100%;" *ngIf="rentalForms.controls['no_units']">
|
||||
<mat-label>Tot No of Units</mat-label>
|
||||
<input OnlyNumber matInput autocomplete="off" placeholder="" formControlName="no_units" maxlength="3">
|
||||
<input type="number" matInput autocomplete="off" placeholder="" formControlName="no_units" maxlength="3">
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field style="width:100%" *ngIf="rentalForms.controls['no_floor']">
|
||||
<mat-label>No of Floors</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="no_floor" maxlength="2">
|
||||
<input matInput autocomplete="off" placeholder="" (keyup)="generateFloor($event)" formControlName="no_floor" maxlength="2" type="number">
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field style="width:100%;" *ngIf="rentalForms.controls['multistoried_total_area']">
|
||||
<mat-label>Total Area Given on Rent</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="multistoried_total_area" required><!--maxlength="3"-->
|
||||
<input matInput autocomplete="off" placeholder="" formControlName="multistoried_total_area" type="number" required><!--maxlength="3"-->
|
||||
</mat-form-field>
|
||||
<!-- end -->
|
||||
|
||||
@ -235,16 +236,15 @@
|
||||
<!-- this is for multistoried floor details -->
|
||||
<ng-container formArrayName="multistoried_building_details" *ngIf="rentalForms.value.multistoried_building_details.length>0">
|
||||
<mat-card *ngFor="let floor of rentalForms.controls.multistoried_building_details['controls']; let f=index;let flast = last" [formGroupName]="f">
|
||||
<mat-card-header>
|
||||
<mat-form-field style="width:100%; margin-top: 2%;">
|
||||
<mat-card-content>
|
||||
<mat-form-field style="width:100%;">
|
||||
<mat-label>Floor Level Name</mat-label>
|
||||
<input matInput autocomplete="off" placeholder="" formControlName="floor_level" required>
|
||||
</mat-form-field>
|
||||
</mat-card-header>
|
||||
<mat-card-content>
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field style="width:100%;">
|
||||
<mat-label>No of Units</mat-label>
|
||||
<input OnlyNumber matInput autocomplete="off" placeholder="" formControlName="no_units_in_floor" (keyup)="generateFloorUnit(floor.value,f)" required>
|
||||
<input matInput autocomplete="off" placeholder="" formControlName="no_units_in_floor" (keyup)="generateFloorUnit(floor.value,f)" required type="number">
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width:100%;">
|
||||
<mat-label>Is Rent Same for All Units</mat-label>
|
||||
@ -255,7 +255,6 @@
|
||||
</mat-form-field>
|
||||
|
||||
<!-- start floor unit array details -->
|
||||
<!-- -->
|
||||
<div [ngSwitch]="floor.value.unit_rent_difference_options">
|
||||
<!-- this is for same rent for all unit -->
|
||||
<ng-container *ngSwitchCase="1">
|
||||
@ -263,13 +262,13 @@
|
||||
<div fxLayout="row wrap" class="align-margin" *ngFor="let fUnits of floor.controls.floor_unit_details['controls']; let fu=index;" [formGroupName]="fu">
|
||||
<mat-form-field style="width:100%;">
|
||||
<mat-label>Rent per Unit</mat-label>
|
||||
<input OnlyNumber matInput autocomplete="off" placeholder="" formControlName="rent_per_unit" (keyup)="calculateFloorRentAmt(floor.value,f)" required (keyup)="inWords($event.target.value,fu,1)">
|
||||
<input type="number" matInput autocomplete="off" placeholder="" formControlName="rent_per_unit" (keyup)="calculateFloorRentAmt(floor.value,f)" required (keyup)="inWords($event.target.value,fu,1)">
|
||||
<mat-hint align="end" style="font-size:12px" *ngIf="fUnits.value.rent_per_unit != ''">{{"₹"}} {{rent_per_unit_Inwords[f]}} Only</mat-hint>
|
||||
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width:100%;">
|
||||
<mat-label>Amount</mat-label>
|
||||
<input OnlyNumber matInput autocomplete="off" placeholder="" formControlName="amount" readonly (keyup)="inWords($event.target.value,fu,2)">
|
||||
<input type="number" matInput autocomplete="off" placeholder="" formControlName="amount" readonly (keyup)="inWords($event.target.value,fu,2)">
|
||||
<mat-hint align="end" style="font-size:12px" *ngIf="fUnits.value.amount != ''">{{"₹"}} {{amount_Inwords[f] }} Only</mat-hint>
|
||||
|
||||
</mat-form-field>
|
||||
@ -281,9 +280,9 @@
|
||||
<div fxLayout="row wrap" class="align-margin" formArrayName="floor_unit_details" *ngIf="floor.value.floor_unit_details.length>0">
|
||||
<div class="rent-unit" fxFlex.xs="100" fxFlex.sm="45" fxFlex.md="45" fxFlex.lg="45" fxFlex.xl="45" *ngFor="let fUnits of floor.controls.floor_unit_details['controls']; let fu=index;" [formGroupName]="fu">
|
||||
<mat-form-field style="width:100%" appearance="outline">
|
||||
<mat-label>Rent Unit {{fu1}} </mat-label>
|
||||
<input OnlyNumber matInput autocomplete="off" placeholder="" formControlName="rent_per_unit" (keyup)="calculateFloorRentAmt(floor.value,f)" required (keyup)="inWords($event.target.value,fu,3)">
|
||||
<!-- <mat-hint align="end" style="font-size:12px" *ngIf="fUnits.value.rent_per_unit != ''">{{"₹"}} {{rent_per_unit_2_Inwords[f]}} Only</mat-hint> -->
|
||||
<mat-label>Rent Unit {{fu+1}} </mat-label>
|
||||
<input type="number" matInput autocomplete="off" placeholder="" formControlName="rent_per_unit" (keyup)="calculateFloorRentAmt(floor.value,f)" required (keyup)="inWords($event.target.value,fu,3)">
|
||||
<mat-hint align="end" style="font-size:12px" *ngIf="fUnits.value.rent_per_unit != ''">{{"₹"}} {{rent_per_unit_2_Inwords[f]}} Only</mat-hint>
|
||||
</mat-form-field>
|
||||
</div>
|
||||
</div>
|
||||
@ -291,11 +290,11 @@
|
||||
</div>
|
||||
<!-- end floor unit array details-->
|
||||
</mat-card-content>
|
||||
<mat-card-actions *ngIf="floor.value.unit_rent_difference_options==0">
|
||||
<mat-card-actions *ngIf="floor.value.unit_rent_difference_options==0" style="margin-right: 2%;margin-left: 2%;">
|
||||
<div fxFlex="100" class="total-rent-amt">
|
||||
<mat-form-field style="width:96%" appearance="outline">
|
||||
<mat-form-field style="width:100%">
|
||||
<mat-label>Total Rent Amount</mat-label>
|
||||
<input OnlyNumber matInput autocomplete="off" placeholder="" formControlName="floor_rent_amount" readonly>
|
||||
<input type="number" matInput autocomplete="off" placeholder="" formControlName="floor_rent_amount" readonly>
|
||||
<!-- <mat-hint align="end" style="font-size:12px" *ngIf="floor.value.floor_rent_amount != ''">{{"₹"}} {{floor_rent_amount_Inwords[f]}} Only</mat-hint> -->
|
||||
</mat-form-field>
|
||||
</div>
|
||||
@ -309,11 +308,11 @@
|
||||
<ng-container formArrayName="property_unit_details" *ngIf="rentalForms.value.property_unit_details.length>0">
|
||||
<mat-card *ngFor="let units of rentalForms.controls.property_unit_details['controls']; let u=index;let ulast = last"
|
||||
[formGroupName]="u">
|
||||
<mat-card-header>
|
||||
|
||||
<mat-card-title>
|
||||
Unit {{u1}}
|
||||
<strong>Unit {{u+1}}</strong>
|
||||
</mat-card-title>
|
||||
</mat-card-header>
|
||||
|
||||
<mat-card-content>
|
||||
<div fxLayout="row wrap">
|
||||
<!-- start tenant/lessees -->
|
||||
@ -337,8 +336,8 @@
|
||||
<!--start payment -->
|
||||
<mat-form-field style="width:100%">
|
||||
<mat-label>Monthly Rent Amount as per Loan Applicant</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="monthly_rent_amount"
|
||||
required (keyup)="inWords($event.target.value,u,5)">
|
||||
<input matInput autocomplete="off" placeholder="" formControlName="monthly_rent_amount"
|
||||
required (keyup)="inWords($event.target.value,u,5)" type="number">
|
||||
<!-- (keyup)="inWords($event,1)" -->
|
||||
<!-- <mat-hint align="end" style="font-size:12px" *ngIf="units.value.monthly_rent_amount != ''">{{"₹"}} {{monthly_rent_amount_Inwords[u]}} Only</mat-hint> -->
|
||||
</mat-form-field>
|
||||
@ -353,15 +352,15 @@
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width:100%;" *ngIf="units.controls['amount_received_cash']">
|
||||
<mat-label>Amount Received in Cash</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="amount_received_cash"
|
||||
required (keyup)="inWords($event.target.value,u,6)">
|
||||
<input matInput autocomplete="off" placeholder="" formControlName="amount_received_cash"
|
||||
required (keyup)="inWords($event.target.value,u,6)" type="number">
|
||||
|
||||
<mat-hint align="end" style="font-size:12px" *ngIf="units.value.amount_received_cash != ''">{{"₹"}} {{amount_received_cash_Inwords[u]}} Only</mat-hint>
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field style="width:100%;" *ngIf="units.controls['amount_received_bank']" (keyup)="inWords($event.target.value,u,7)">
|
||||
<mat-label>Amount Received in Bank</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="amount_received_bank"
|
||||
<input matInput autocomplete="off" placeholder="" formControlName="amount_received_bank" type="number"
|
||||
required>
|
||||
<mat-hint align="end" style="font-size:12px" *ngIf="units.value.amount_received_bank != ''">{{"₹"}} {{amount_received_bank_Inwords[u]}} Only</mat-hint>
|
||||
</mat-form-field>
|
||||
@ -371,7 +370,7 @@
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width:100%">
|
||||
<mat-label>Securtity Deposit amount as per Loan Applicant</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="securtity_deposit_amount"
|
||||
<input matInput type="number" autocomplete="off" placeholder="" formControlName="securtity_deposit_amount"
|
||||
required (keyup)="inWords($event.target.value,u,8)">
|
||||
<mat-hint align="end" style="font-size:12px" *ngIf="units.value.securtity_deposit_amount != ''">{{"₹"}} {{securtity_deposit_amount_Inwords[u]}} Only</mat-hint>
|
||||
</mat-form-field>
|
||||
@ -379,7 +378,7 @@
|
||||
<!-- start area covered by the property -->
|
||||
<mat-form-field style="width:100%;">
|
||||
<mat-label>Area Covered by the Unit</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="property_cover_area"
|
||||
<input matInput type="number" autocomplete="off" placeholder="" formControlName="property_cover_area"
|
||||
required>
|
||||
<!--maxlength="3"-->
|
||||
</mat-form-field>
|
||||
@ -444,7 +443,7 @@
|
||||
|
||||
<mat-form-field style="width:100%" *ngIf="units.controls['agreement_no_months']">
|
||||
<mat-label>No of Months for Which Property has been let out as per Agreement</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" maxlength="4" formControlName="agreement_no_months"
|
||||
<input matInput type="number" autocomplete="off" placeholder="" maxlength="4" formControlName="agreement_no_months"
|
||||
(keyup)="calculateExpiryDate($event,u)" required>
|
||||
</mat-form-field>
|
||||
|
||||
@ -454,14 +453,14 @@
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width:100%" *ngIf="units.controls['rental_remaining_months']">
|
||||
<mat-label>No of Rental Months Remaining as per Agreement</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="rental_remaining_months"
|
||||
<input matInput type="number" autocomplete="off" placeholder="" formControlName="rental_remaining_months"
|
||||
readonly>
|
||||
</mat-form-field>
|
||||
<!-- end -->
|
||||
<!-- start agreement rent amount -->
|
||||
<mat-form-field style="width:100%" *ngIf="units.controls['agreement_monthly_rent_amount']">
|
||||
<mat-label>Monthly Rent Amount as per Agreement</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="agreement_monthly_rent_amount"
|
||||
<input matInput type="number" autocomplete="off" placeholder="" formControlName="agreement_monthly_rent_amount"
|
||||
required (keyup)="inWords($event.target.value,u,9)">
|
||||
<mat-hint align="end" style="font-size:12px" *ngIf="units.value.agreement_monthly_rent_amount != ''">{{"₹"}} {{agreement_monthly_rent_amount_Inwords[u]}} Only</mat-hint>
|
||||
</mat-form-field>
|
||||
@ -470,7 +469,7 @@
|
||||
<!-- start Security Deposit amount as per agreement -->
|
||||
<mat-form-field style="width:100%" *ngIf="units.controls['agreement_security_deposit_amount']">
|
||||
<mat-label>Security Deposit Amount as per Agreement</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="agreement_security_deposit_amount"
|
||||
<input matInput type="number" autocomplete="off" placeholder="" formControlName="agreement_security_deposit_amount"
|
||||
required (keyup)="inWords($event.target.value,u,10)">
|
||||
<mat-hint align="end" style="font-size:12px" *ngIf="units.value.agreement_security_deposit_amount != ''">{{"₹"}} {{agreement_security_deposit_amount_Inwords[u]}} Only</mat-hint>
|
||||
</mat-form-field>
|
||||
@ -599,14 +598,14 @@
|
||||
<!-- start met payment -->
|
||||
<mat-form-field style="width:100%" *ngIf="units.controls['paid_monthly_rent_per_met']">
|
||||
<mat-label>Monthly Rent Amount Paid as per Tenant / Lessee Met</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="paid_monthly_rent_per_met"
|
||||
<input matInput type="number" autocomplete="off" placeholder="" formControlName="paid_monthly_rent_per_met"
|
||||
required (keyup)="inWords($event.target.value,u,11)">
|
||||
<mat-hint align="end" style="font-size:12px" *ngIf="units.value.paid_monthly_rent_per_met != ''">{{"₹"}} {{paid_monthly_rent_per_met_Inwords[u]}} Only</mat-hint>
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field style="width:100%" *ngIf="units.controls['period_of_stay_per_met']">
|
||||
<mat-label>Period (Months) of Stay as per Tenant / Lessee Met</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="period_of_stay_per_met"
|
||||
<input matInput type="number" autocomplete="off" placeholder="" formControlName="period_of_stay_per_met"
|
||||
maxlength="5" required>
|
||||
</mat-form-field>
|
||||
|
||||
@ -621,14 +620,14 @@
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width:100%;" *ngIf="units.controls['amount_received_cash_per_met']">
|
||||
<mat-label>Amount Paid in Cash</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="amount_received_cash_per_met"
|
||||
<input matInput type="number" autocomplete="off" placeholder="" formControlName="amount_received_cash_per_met"
|
||||
required (keyup)="inWords($event.target.value,u,12)">
|
||||
<mat-hint align="end" style="font-size:12px" *ngIf="units.value.amount_received_cash_per_met != ''">{{"₹"}} {{amount_received_cash_per_met_Inwords[u]}} Only</mat-hint>
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field style="width:100%;" *ngIf="units.controls['amount_received_bank_per_met']">
|
||||
<mat-label>Amount Paid in Bank</mat-label>
|
||||
<input matInput OnlyNumber autocomplete="off" placeholder="" formControlName="amount_received_bank_per_met"
|
||||
<input matInput type="number" autocomplete="off" placeholder="" formControlName="amount_received_bank_per_met"
|
||||
required (keyup)="inWords($event.target.value,u,13)">
|
||||
<mat-hint align="end" style="font-size:12px" *ngIf="units.value.amount_received_bank_per_met != ''">{{"₹"}} {{amount_received_bank_per_met_Inwords[u]}} Only</mat-hint>
|
||||
</mat-form-field>
|
||||
@ -665,11 +664,11 @@
|
||||
|
||||
|
||||
<mat-card>
|
||||
<mat-card-header>
|
||||
|
||||
<mat-card-title>
|
||||
Third Party Check
|
||||
<strong>Third Party Check</strong>
|
||||
</mat-card-title>
|
||||
</mat-card-header>
|
||||
|
||||
<mat-card-content>
|
||||
<div fxLayout="row wrap">
|
||||
<!-- start third party check -->
|
||||
|
||||
@ -14,8 +14,16 @@ page-pd-question-rental-info {
|
||||
.scroll-content{
|
||||
background-color: #eee;
|
||||
}
|
||||
// .button-md{
|
||||
// padding: 0 2.9em !important;
|
||||
|
||||
// mat-label{
|
||||
// white-space: pre-wrap
|
||||
// }
|
||||
.mat-form-field-label {
|
||||
white-space: normal;
|
||||
}
|
||||
mat-select{
|
||||
margin-top:7px;
|
||||
}
|
||||
input{
|
||||
height: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -29047,6 +29047,10 @@ page-pd-question-address .mat-card-content {
|
||||
margin-bottom: 0px !important;
|
||||
}
|
||||
|
||||
page-pd-question-address textarea {
|
||||
resize: none;
|
||||
}
|
||||
|
||||
page-pd-question-assessed-daily-sales .input-cover {
|
||||
position: static;
|
||||
}
|
||||
@ -29453,10 +29457,6 @@ page-pd-question-business-banking .scroll-content {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
page-pd-question-business-info mat-form-field {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
page-pd-question-business-info mat-card-title {
|
||||
font-weight: bold;
|
||||
font-size: 18px;
|
||||
@ -29502,6 +29502,10 @@ page-pd-question-business-info .mat-form-field-label {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
page-pd-question-business-info .labelcss {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
page-pd-question-business-info textarea.mat-input-element {
|
||||
padding: 0px 0;
|
||||
margin: 5px 0;
|
||||
@ -29872,6 +29876,33 @@ page-pd-question-other-income .scroll-content {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
page-pd-question-rental-info .button-md {
|
||||
padding: 0 2.9em !important;
|
||||
page-pd-question-rental-info mat-hint {
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
page-pd-question-rental-info mat-card {
|
||||
margin-bottom: 15px;
|
||||
border-radius: 10px !important;
|
||||
-webkit-box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2) !important;
|
||||
box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2) !important;
|
||||
}
|
||||
|
||||
page-pd-question-rental-info .mat-card-content {
|
||||
margin-bottom: 0px !important;
|
||||
}
|
||||
|
||||
page-pd-question-rental-info .scroll-content {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
page-pd-question-rental-info .mat-form-field-label {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
page-pd-question-rental-info mat-select {
|
||||
margin-top: 7px;
|
||||
}
|
||||
|
||||
page-pd-question-rental-info input {
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user