Type 1 is cash, 2 is check
parent
50923319fb
commit
95e90279ee
|
|
@ -82,7 +82,7 @@
|
|||
<ng-container *ngFor="let t of transactions; let i = index">
|
||||
<tr class="row">
|
||||
<td nowrap>{{t.date | date:'MM-dd-yyyy'}}</td>
|
||||
<td nowrap>{{t.typeId === 2 ? 'Cash' : (t.typeId === 1 ? 'Check' : 'NA')}}</td>
|
||||
<td nowrap>{{t.typeId === 1 ? 'Cash' : (t.typeId === 2 ? 'Check' : 'NA')}}</td>
|
||||
<td nowrap>{{t.checkNumber}}</td>
|
||||
<td nowrap>{{t.fundId === 1 ? 'General' : (t.fundId === 2 ? 'Missions' : 'NA')}}</td>
|
||||
<td width="99%">{{t.description}}</td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue