feedback updates
This commit is contained in:
parent
23b6d55261
commit
6abdec85bb
@ -35,7 +35,7 @@ export class ClientService {
|
||||
carnetIssuingRegion: basicDetails.ISSUINGREGION,
|
||||
revenueLocation: basicDetails.REVENUELOCATION,
|
||||
zip: basicDetails.ZIP,
|
||||
industryType: ""
|
||||
industryType: basicDetails.INDUSTRYTYPE
|
||||
// createdBy: basicDetails.CREATEDBY || null,
|
||||
// dateCreated: basicDetails.DATECREATED || null,
|
||||
// lastUpdatedBy: basicDetails.LASTUPDATEDBY || null,
|
||||
|
||||
@ -105,6 +105,6 @@ export class ContactService {
|
||||
}
|
||||
|
||||
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,
|
||||
specialCountry: item.SPCLCOUNTRY,
|
||||
rate: item.RATE,
|
||||
rateInPercentage: item.RATE * 100,
|
||||
rateInPercentage: item.RATE_PCT,
|
||||
effectiveDate: item.EFFDATE,
|
||||
spid: item.SPID,
|
||||
createdBy: item.CREATEDBY || null,
|
||||
|
||||
@ -51,7 +51,7 @@
|
||||
<!-- Rate In Percentage Column -->
|
||||
<ng-container matColumnDef="rateInPercentage">
|
||||
<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>
|
||||
|
||||
<!-- Effective Date Column -->
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user