integrasi actual cost

This commit is contained in:
2024-06-13 16:20:09 +07:00
parent fc10a44d5d
commit f6db135ac6
8 changed files with 554 additions and 80 deletions

View File

@@ -1,31 +1,42 @@
<div class="modal-header">
<!-- <h4 class="modal-title">Add New Row</h4> -->
<button type="button" class="close" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<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>
<form [formGroup]="myForm">
<div class="form-group">
<label for="name">Name:</label>
<input
type="text"
class="form-control"
id="name"
formControlName="name"
id="real_cost"
formControlName="real_cost"
placeholder="0.00"
/>
</div>
</form>
</div>
<div class="modal-footer">
<div class="modal-footer" style="background-color: #000000 !important">
<button
type="button"
class="btn btn-secondary"
style="
color: #c3f164;
background-color: #000000 !important;
border-color: #c3f164 !important;
"
(click)="activeModal.dismiss('Cross click')"
>
Close
</button>
<button type="button" class="btn btn-primary" (click)="addRow()">
<button
type="button"
class="btn btn-primary"
style="
color: #000000 !important;
background-color: #c3f164 !important;
border-color: #c3f164 !important;
"
(click)="addRow()"
>
Save Changes
</button>
</div>