financial and sales issue fixed
This commit is contained in:
parent
61beb9d3ae
commit
70c0b9c3e6
@ -477,7 +477,7 @@
|
|||||||
formControlName="estimate_reason_for_loss">
|
formControlName="estimate_reason_for_loss">
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
</div>
|
||||||
<mat-form-field style="width:54%" *ngIf="lender_short_name == 'CLIX' || lender_short_name == 'MWISE' || product_abbr == 'LAEP'">
|
<mat-form-field style="width:54%" *ngIf="(lender_short_name == 'CLIX' ? product_abbr !='BL' ? true : false : true) && (lender_short_name == 'MWISE' ? product_abbr != 'BL' ? true : false : true)">
|
||||||
<input matInput placeholder="Annual Sales through Credit Card / POS machines"
|
<input matInput placeholder="Annual Sales through Credit Card / POS machines"
|
||||||
formControlName="estimate_posmachine_or_cc_annual_sales">
|
formControlName="estimate_posmachine_or_cc_annual_sales">
|
||||||
<mat-hint align="start" style="font-size:90%" *ngIf="details.get('estimate_posmachine_or_cc_annual_sales').value != ''">{{"₹"}}
|
<mat-hint align="start" style="font-size:90%" *ngIf="details.get('estimate_posmachine_or_cc_annual_sales').value != ''">{{"₹"}}
|
||||||
|
|||||||
@ -86,14 +86,19 @@
|
|||||||
<small mat-line>{{details.sales_pd_id}}</small>
|
<small mat-line>{{details.sales_pd_id}}</small>
|
||||||
</mat-cell>
|
</mat-cell>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
<ng-container matColumnDef="SalesPdSno">
|
||||||
|
<mat-cell class="cell" *matCellDef="let details;">
|
||||||
|
<small mat-line>{{details.sales_pd_sno}}</small>
|
||||||
|
</mat-cell>
|
||||||
|
</ng-container>
|
||||||
<ng-container matColumnDef="Applicant Name">
|
<ng-container matColumnDef="Applicant Name">
|
||||||
<mat-cell class="cell" *matCellDef="let details;">
|
<mat-cell class="cell" *matCellDef="let details;">
|
||||||
<span *ngIf="!details.applicant_name" mat-line>
|
<span *ngIf="!details.applicant_name" mat-line>
|
||||||
<small>--</small>
|
<small>--</small>
|
||||||
</span><br>
|
</span>
|
||||||
<span *ngIf="details.applicant_name" mat-line>
|
<span *ngIf="details.applicant_name" mat-line>
|
||||||
<b>{{details.applicant_name}}</b>
|
<b>{{details.applicant_name}}</b>
|
||||||
</span><br>
|
</span>
|
||||||
<span class="fontsize"> {{details.applicant_id}}</span>
|
<span class="fontsize"> {{details.applicant_id}}</span>
|
||||||
</mat-cell>
|
</mat-cell>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
@ -111,7 +116,7 @@
|
|||||||
<mat-cell class="cell center" *matCellDef="let details;">
|
<mat-cell class="cell center" *matCellDef="let details;">
|
||||||
<span *ngIf="!details.officer_name" mat-line>
|
<span *ngIf="!details.officer_name" mat-line>
|
||||||
<small>--</small>
|
<small>--</small>
|
||||||
</span><br>
|
</span>
|
||||||
<span *ngIf="details.applicant_name" mat-line>
|
<span *ngIf="details.applicant_name" mat-line>
|
||||||
<small mat-line>{{details.officer_name}}</small>
|
<small mat-line>{{details.officer_name}}</small>
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@ -12,7 +12,7 @@ export class SalesPdComponent implements OnInit {
|
|||||||
public dataLengthTab4: number;
|
public dataLengthTab4: number;
|
||||||
public dataSourceTab4 = new MatTableDataSource();
|
public dataSourceTab4 = new MatTableDataSource();
|
||||||
|
|
||||||
displayedColumns = ['SalesPdId','Applicant Name','Short Name','Abbr','Officer Name','Create On','Action'];
|
displayedColumns = ['SalesPdId','SalesPdSno','Applicant Name','Short Name','Abbr','Officer Name','Create On','Action'];
|
||||||
|
|
||||||
@ViewChild(MatPaginator) paginator: MatPaginator;
|
@ViewChild(MatPaginator) paginator: MatPaginator;
|
||||||
@ViewChild(MatSort) sort: MatSort;
|
@ViewChild(MatSort) sort: MatSort;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user