-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added an order number column to track the vendor's order number a radio belongs to. - Allow expired assets to be forced checked out because the playa always throws a curveball every event. - Indicate if an asset was forced checked out on some reports and table listings. - Added mobile/vehicle radios, desktop radios, and radio charge asset types. - Let the user know assets with entity assignments cannot be checked out. - Renamed asset assignment (event vs shift) columns to duration.
- Loading branch information
Showing
19 changed files
with
379 additions
and
181 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{{#if (eq @asset.type "radio")}} | ||
{{#if @asset.perm_assign}} | ||
<UiBadge @text="event" @type="gray"/> | ||
{{else}} | ||
<UiBadge @text="shift" @type="warning"/> | ||
{{/if}} | ||
{{else}} | ||
{{#if @asset.perm_assign}} | ||
<UiBadge @text="permanent" @type="gray"/> | ||
{{else}} | ||
<UiBadge @text="temporary" @type="warning"/> | ||
{{/if}} | ||
{{/if}} |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<table class="table {{unless @noWidthAuto "table-width-auto"}} {{unless @normalSize "table-sm"}} table-hover {{unless @noStriped "table-striped"}}" ...attributes> | ||
<table class="table {{unless @noWidthAuto "table-width-auto"}} {{unless @normalSize "table-sm"}} table-hover {{unless @noStriped "table-striped"}} {{if @stickyHeader "table-sticky"}}" ...attributes> | ||
{{yield}} | ||
</table> |
Oops, something went wrong.