@if ((historyItems$ | async)?.length && this.userSelectionsForm.controls['actualTypeId'].value === 1) {
@for (item of (historyItems$ | async); track item) {
Changed : {{ item.saveDate }}
Actual Volume : {{ item.actualVolume }}
Price : {{ item.price }}
Price Adj. : {{ item.priceAdj }}
T&E : {{ item.transportRate }}
}
}
@if ((historyItems$ | async)?.length && this.userSelectionsForm.controls['actualTypeId'].value === -1) {
@for (item of (historyItems$ | async); track item) {
Changed : {{ item.saveDate }}
Actual Volume : {{ item.actualVolume }}
Price : {{ item.price }}
Price Adj. : {{ item.priceAdj }}
}
}
@if ((historyItems$ | async)?.length && this.userSelectionsForm.controls['actualTypeId'].value === 0) {
@for (item of (historyItems$ | async); track item) {
Changed : {{ item.saveDate }}
Actual Volume : {{ item.actualVolume }}
}
}
@if ((!(historyItems$ | async)?.length)) {
}
No history available
}