-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "LCSD-7008: Do not display "Submit & Pay" button on /applicati…
…on form if Generate Invoice=Yes" (#4236) * LCSD-7141: Convert User Enter Time into PST (#4191) Co-authored-by: W. Ross White <[email protected]> * LCSD-7141: Convert User Enter Time into PST 3 (#4193) Co-authored-by: W. Ross White <[email protected]> * Revert "LCSD-7141: Convert User Enter Time into PST 3" (#4202) * Add Github Action for Development Build (#4203) * LCSD-7141: Add moment-timezone package (#4204) * LCSD-7141: Merge develop to master for UATL: Convert User Entered Time into PST (#4205) Co-authored-by: williamrosswhite <[email protected]> Co-authored-by: W. Ross White <[email protected]> * LCSD-7153: Update GET to POST for /process_transaction.asp (#4206) * LCSD-7141: PST User Entered time - use accessible TZ wording (#4208) * Revert "LCSD-7153: Update GET to POST for /process_transaction.asp" (#4210) * LCSD-7008: Do not display "Submit & Pay" button on /application form if Generate Invoice=Yes (#4151) Co-authored-by: Wayne Peters <[email protected]> * Revert "LCSD-7008: Do not display "Submit & Pay" button on /application form …" This reverts commit f8183b2. --------- Co-authored-by: williamrosswhite <[email protected]> Co-authored-by: W. Ross White <[email protected]> Co-authored-by: Sam Warren <[email protected]> Co-authored-by: Wayne <[email protected]> Co-authored-by: Wayne Peters <[email protected]>
- Loading branch information
1 parent
14ae422
commit 6fdeac8
Showing
6 changed files
with
93 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -314,6 +314,22 @@ <h3>Event Date(s)</h3> | |
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<app-field label="Time Zone" errorMessage="Please select a value" [valid]="!item.get('isPacificTimeZone').touched || item.get('isPacificTimeZone').valid"> | ||
<div class="form-check"> | ||
<input class="form-check-input" type="radio" formControlName="isPacificTimeZone" [value]="true" id="pacific"> | ||
<label class="form-check-label" for="pacific"> | ||
Pacific Time | ||
</label> | ||
</div> | ||
<div class="form-check"> | ||
<input class="form-check-input" type="radio" formControlName="isPacificTimeZone" [value]="false" id="mountain"> | ||
<label class="form-check-label" for="mountain"> | ||
Mountain Time | ||
</label> | ||
</div> | ||
</app-field> | ||
</td> | ||
<td class="text-right"> | ||
<label>Liquor will be served:</label> | ||
</td> | ||
|
@@ -323,8 +339,8 @@ <h3>Event Date(s)</h3> | |
<select class="form-control" | ||
formControlName="serviceStartValue"> | ||
<option value=""></option> | ||
<option [value]="item.value" *ngFor="let item of timeSlots"> | ||
{{item.name}} | ||
<option [value]="timeSlot.value" *ngFor="let timeSlot of timeSlots"> | ||
{{timeSlot.name}} | ||
</option> | ||
</select> | ||
</app-field> | ||
|
@@ -334,8 +350,8 @@ <h3>Event Date(s)</h3> | |
[valid]="!item.get('serviceEndValue').touched || item.get('serviceEndValue').valid"> | ||
<select class="form-control" formControlName="serviceEndValue"> | ||
<option value=""></option> | ||
<option [value]="item.value" *ngFor="let item of timeSlots"> | ||
{{item.name}} | ||
<option [value]="timeSlot.value" *ngFor="let timeSlot of timeSlots"> | ||
{{timeSlot.name}} | ||
</option> | ||
</select> | ||
</app-field> | ||
|
@@ -346,12 +362,11 @@ <h3>Event Date(s)</h3> | |
<tr> | ||
<td colspan="4"> | ||
<div> | ||
<button (click)="checkTimeZone()">Is the event located outside of Pacific Standard Time? </button> | ||
<app-error-alert *ngIf="!isPacificTimeZone"> | ||
<app-error-notice *ngIf="!item.get('isPacificTimeZone').value"> | ||
<p> | ||
If the area you’re applying from or if the event is located outside of PST, please note the time on your permit may not accurately reflect the time your event is scheduled to start. Please contact the LCRB team at <a href="mailto:[email protected]">[email protected]</a> | ||
Please note: The time on the license you receive will be shown in Pacific Time, adjusted for your Time Zone selection above. For more information please contact the LCRB team at <a href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
</app-error-alert> | ||
</app-error-notice> | ||
</div> | ||
</td> | ||
</tr> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters