Type 1 is cash, 2 is check

test
dan 2019-12-31 12:23:49 -07:00
parent 50923319fb
commit 95e90279ee
1 changed files with 1 additions and 1 deletions

View File

@ -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>