Advertisement
Guest User

partner accounting

a guest
Jan 17th, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.51 KB | None | 0 0
  1. <ion-header eba-header-title [titleKey]="'PARTNER_ACCOUNTING' | translate" [userDetails]="false">
  2. </ion-header>
  3. <ion-content #content resize-content [content]=content>
  4.   <div style="padding:3rem" text-center *ngIf="loading">
  5.     <ion-spinner class="loader"></ion-spinner>
  6.   </div>
  7.   <ng-container>
  8.     <div class="attendant-accounting-body" [style.display]="!loading?'block':'none'">
  9.       <attendant-reports-header-wrapper [reportType]="reportType" (showReport)="onShowReport($event)"
  10.        (processingData)="onProcessingData($event)">
  11.       </attendant-reports-header-wrapper>
  12.       <ng-container *ngIf="report?.Tables[0]?.Rows?.length>0">
  13.         <div class="data-container">
  14.           <div class="title my-2 mx-2"> {{'PROFIT_SUMMARY' | translate}} </div>
  15.           <div class="data-body" *ngFor="let row of profitSummaryTable?.Rows">
  16.             <div class="rows" *ngFor="let data of row?.CellData; let i=index">
  17.               <div>{{profitSummaryTable?.Header?.CellData[i]}}</div>
  18.               <div>{{data}}</div>
  19.             </div>
  20.           </div>
  21.         </div>
  22.         <div class="data-container">
  23.           <div class="title  my-2 mx-2">{{'FINAL_SUMMARISATION' | translate}} </div>
  24.           <div class="data-body">
  25.             <div class="rows" *ngFor="let row of finalSummarisationTable?.Rows">
  26.               <div>{{row.CellData[0]}}</div>
  27.               <div>{{row.CellData[1]}}</div>
  28.             </div>
  29.           </div>
  30.         </div>
  31.       </ng-container>
  32.     </div>
  33.   </ng-container>
  34. </ion-content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement