Fix fund and type

test
dan 2019-12-31 11:54:07 -07:00
parent 73008adc66
commit 50923319fb
1 changed files with 2 additions and 2 deletions

View File

@ -82,9 +82,9 @@
<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.type === 0 ? 'Cash' : 'Check'}}</td>
<td nowrap>{{t.typeId === 2 ? 'Cash' : (t.typeId === 1 ? 'Check' : 'NA')}}</td>
<td nowrap>{{t.checkNumber}}</td>
<td nowrap>{{t.fund === 0 ? 'General' : 'Missions'}}</td>
<td nowrap>{{t.fundId === 1 ? 'General' : (t.fundId === 2 ? 'Missions' : 'NA')}}</td>
<td width="99%">{{t.description}}</td>
<td nowrap>{{t.amount | currency}}</td>
</tr>