|
|
@@ -35,7 +35,7 @@ |
|
|
|
<td> |
|
|
|
<div class="action-buttons"> |
|
|
|
<button class="round-button"> Confirm </button> |
|
|
|
<button class="round-button"> Reject </button> |
|
|
|
<button class="round-button" (click)="showRejectionPopup = true"> Reject </button> |
|
|
|
</div> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
@@ -80,8 +80,24 @@ |
|
|
|
<td> |
|
|
|
<div class="action-buttons"> |
|
|
|
<button class="round-button"> Confirm </button> |
|
|
|
<button class="round-button"> Reject </button> |
|
|
|
<button class="round-button" (click)="showRejectionPopup = true"> Reject </button> |
|
|
|
</div> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
</table> |
|
|
|
|
|
|
|
<section class="popup" [ngClass]="{'active' : showRejectionPopup }"> |
|
|
|
<div class="popup-box"> |
|
|
|
<header> Reason to Reject the Order </header> |
|
|
|
<select> |
|
|
|
<option selected> Item not available </option> |
|
|
|
<option> The customer was impatient </option> |
|
|
|
<option> Other </option> |
|
|
|
</select> |
|
|
|
|
|
|
|
<div class="action-buttons"> |
|
|
|
<button class="rect-button" (click)="showRejectionPopup = false"> Reject </button> |
|
|
|
<button class="rect-button" (click)="showRejectionPopup = false"> Cancel </button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</section> |