hapus assets
This commit is contained in:
@@ -223,28 +223,57 @@
|
||||
<div class="col-4">
|
||||
<div class="form-group">
|
||||
<div class="input-group">
|
||||
<input
|
||||
type="text"
|
||||
class="form-control"
|
||||
placeholder="Kwh"
|
||||
[(ngModel)]="kwhTerm"
|
||||
disabled
|
||||
/>
|
||||
<div class="input-group-append" style="background-color: #252525 !important;">
|
||||
<span class="input-group-text" style="background-color: #252525 !important; color: #ffffff;">Kwh</span>
|
||||
<input
|
||||
type="text"
|
||||
class="form-control"
|
||||
placeholder="Kwh"
|
||||
[(ngModel)]="kwhTerm"
|
||||
disabled
|
||||
/>
|
||||
<div
|
||||
class="input-group-append"
|
||||
style="background-color: #252525 !important"
|
||||
>
|
||||
<span
|
||||
class="input-group-text"
|
||||
style="
|
||||
background-color: #252525 !important;
|
||||
color: #ffffff;
|
||||
height: 40px !important;
|
||||
"
|
||||
>Kwh</span
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-4">
|
||||
<div class="form-group">
|
||||
<input
|
||||
type="text"
|
||||
class="form-control"
|
||||
placeholder="Cost"
|
||||
[(ngModel)]="costTerm"
|
||||
disabled
|
||||
/>
|
||||
<div class="input-group">
|
||||
<input
|
||||
type="text"
|
||||
class="form-control"
|
||||
placeholder="Cost"
|
||||
mask="separator"
|
||||
thousandSeparator="."
|
||||
[(ngModel)]="costTerm"
|
||||
disabled
|
||||
/>
|
||||
<div
|
||||
class="input-group-append"
|
||||
style="background-color: #252525 !important"
|
||||
>
|
||||
<span
|
||||
class="input-group-text"
|
||||
style="
|
||||
background-color: #252525 !important;
|
||||
color: #ffffff;
|
||||
height: 40px !important;
|
||||
"
|
||||
>IDR</span
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -299,14 +328,16 @@
|
||||
>
|
||||
<ngx-datatable-column
|
||||
name="#"
|
||||
[flexGrow]="1"
|
||||
[minWidth]="10"
|
||||
[flexGrow]="0.5"
|
||||
[minWidth]="30"
|
||||
>
|
||||
<ng-template
|
||||
ngx-datatable-cell-template
|
||||
let-rowIndex="rowIndex"
|
||||
>
|
||||
{{ rowIndex + 1 }}
|
||||
<p style="color: #ffffff !important">
|
||||
{{ rowIndex + 1 }}
|
||||
</p>
|
||||
</ng-template>
|
||||
</ngx-datatable-column>
|
||||
<ngx-datatable-column
|
||||
|
||||
@@ -17,7 +17,8 @@ import { NgChartsModule } from 'ng2-charts';
|
||||
import { ChartistModule } from 'ng-chartist';
|
||||
import { MatchHeightModule } from '../../partials/general/match-height/match-height.module';
|
||||
import { ModalAddActualComponent } from './modal-add-actual/modal-add-actual.component';
|
||||
|
||||
import { NgxMaskModule, IConfig } from 'ngx-mask'
|
||||
export const options: Partial<null|IConfig> | (() => Partial<IConfig>) = null;
|
||||
|
||||
|
||||
@NgModule({
|
||||
@@ -40,6 +41,7 @@ import { ModalAddActualComponent } from './modal-add-actual/modal-add-actual.com
|
||||
NgChartsModule,
|
||||
ChartistModule,
|
||||
MatchHeightModule,
|
||||
NgxMaskModule.forRoot(),
|
||||
BlockUIModule.forRoot({
|
||||
template: BlockTemplateComponent
|
||||
}),
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<div class="modal-body" style="background-color: #000000 !important">
|
||||
<h4 style="color: #ffffff">Input the actual cost of your expenses</h4>
|
||||
<p style="color: #ffffff">Building : {{buildingName}}</p>
|
||||
<p style="color: #ffffff">Periode : {{formattedDate}}</p>
|
||||
<p style="color: #ffffff">Building : {{ buildingName }}</p>
|
||||
<p style="color: #ffffff">Periode : {{ formattedDate }}</p>
|
||||
<form [formGroup]="myForm">
|
||||
<div class="form-group">
|
||||
<input
|
||||
@@ -10,6 +10,8 @@
|
||||
id="real_cost"
|
||||
formControlName="real_cost"
|
||||
placeholder="0.00"
|
||||
mask="separator"
|
||||
thousandSeparator="."
|
||||
/>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user