feedback updates
This commit is contained in:
parent
23b6d55261
commit
6abdec85bb
@ -35,7 +35,7 @@ export class ClientService {
|
|||||||
carnetIssuingRegion: basicDetails.ISSUINGREGION,
|
carnetIssuingRegion: basicDetails.ISSUINGREGION,
|
||||||
revenueLocation: basicDetails.REVENUELOCATION,
|
revenueLocation: basicDetails.REVENUELOCATION,
|
||||||
zip: basicDetails.ZIP,
|
zip: basicDetails.ZIP,
|
||||||
industryType: ""
|
industryType: basicDetails.INDUSTRYTYPE
|
||||||
// createdBy: basicDetails.CREATEDBY || null,
|
// createdBy: basicDetails.CREATEDBY || null,
|
||||||
// dateCreated: basicDetails.DATECREATED || null,
|
// dateCreated: basicDetails.DATECREATED || null,
|
||||||
// lastUpdatedBy: basicDetails.LASTUPDATEDBY || null,
|
// lastUpdatedBy: basicDetails.LASTUPDATEDBY || null,
|
||||||
|
|||||||
@ -105,6 +105,6 @@ export class ContactService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
setDefaultServiceProviderContact(clientContactId: string): Observable<any> {
|
setDefaultServiceProviderContact(clientContactId: string): Observable<any> {
|
||||||
return this.http.patch(`${this.apiUrl}/${this.apiDb}/ReactivateClientContacts/${this.userService.getUserSpid()}/${clientContactId}/${this.userService.getUser()}`, null);
|
return this.http.patch(`${this.apiUrl}/${this.apiDb}/SetDefaultClientContacts/${this.userService.getUserSpid()}/${clientContactId}/${this.userService.getUser()}`, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,7 +30,7 @@ export class SecurityDepositService {
|
|||||||
specialCommodity: item.SPCLCOMMODITY,
|
specialCommodity: item.SPCLCOMMODITY,
|
||||||
specialCountry: item.SPCLCOUNTRY,
|
specialCountry: item.SPCLCOUNTRY,
|
||||||
rate: item.RATE,
|
rate: item.RATE,
|
||||||
rateInPercentage: item.RATE * 100,
|
rateInPercentage: item.RATE_PCT,
|
||||||
effectiveDate: item.EFFDATE,
|
effectiveDate: item.EFFDATE,
|
||||||
spid: item.SPID,
|
spid: item.SPID,
|
||||||
createdBy: item.CREATEDBY || null,
|
createdBy: item.CREATEDBY || null,
|
||||||
|
|||||||
@ -51,7 +51,7 @@
|
|||||||
<!-- Rate In Percentage Column -->
|
<!-- Rate In Percentage Column -->
|
||||||
<ng-container matColumnDef="rateInPercentage">
|
<ng-container matColumnDef="rateInPercentage">
|
||||||
<th mat-header-cell *matHeaderCellDef mat-sort-header>Rate In Percentage</th>
|
<th mat-header-cell *matHeaderCellDef mat-sort-header>Rate In Percentage</th>
|
||||||
<td mat-cell *matCellDef="let deposit">{{ deposit.rateInPercentage | percent }}</td>
|
<td mat-cell *matCellDef="let deposit">{{ deposit.rateInPercentage/100 | percent }}</td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
<!-- Effective Date Column -->
|
<!-- Effective Date Column -->
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user