UI Changes

This commit is contained in:
venbatechnologies@gmail.com 2019-02-11 19:34:33 +05:30
parent d44d2bd89d
commit ff92f6a504
4 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@
<div fxLayout="row wrap" *ngFor="let item of businessItemForm.controls.busExpense['controls']; let s = index;" [formGroupName]="s">
<div fxFlex="100">
<mat-form-field style="width: 87%">
<mat-select placeholder="Buiness Expense" formControlName="expense_item_id" required>
<mat-select placeholder="Business Expense" formControlName="expense_item_id" required>
<mat-option *ngFor="let expense of businessExpenseData" [value]="expense.expense_item_id">{{expense.expense_item}}</mat-option>
</mat-select>
</mat-form-field>

View File

@ -14,7 +14,7 @@
<div fxLayout="row wrap" *ngFor="let item of businessIncomeItemForm.controls.busIncome['controls']; let s = index;" [formGroupName]="s">
<div fxFlex="100">
<mat-form-field style="width: 87%">
<mat-select placeholder="Buiness Income" formControlName="business_income_id" required>
<mat-select placeholder="business Income" formControlName="business_income_id" required>
<mat-option *ngFor="let income of businessIncomeData" [value]="income.business_income_id">{{income.business_income_item}}</mat-option>
</mat-select>
</mat-form-field>

View File

@ -15,7 +15,7 @@
<table mat-table [dataSource]="businessItemSource">
<ng-container matColumnDef="buiness_expense" sticky>
<th mat-header-cell *matHeaderCellDef> Buiness Expense </th>
<th mat-header-cell *matHeaderCellDef> Business Expense </th>
<td mat-cell *matCellDef="let element"> {{element.expense_item}} </td>
<td mat-footer-cell *matFooterCellDef> Total of Expense</td>

View File

@ -15,7 +15,7 @@
<table mat-table [dataSource]="businessIncomeItemSource">
<ng-container matColumnDef="buiness_income" sticky>
<th mat-header-cell *matHeaderCellDef> Buiness Income </th>
<th mat-header-cell *matHeaderCellDef> business Income </th>
<td mat-cell *matCellDef="let element"> {{element.business_income_item}} </td>
<td mat-footer-cell *matFooterCellDef> Total of Income</td>