Skip to content

Commit

Permalink
Merge pull request #2056 from Siemens-Healthineers/feat/RequestPortle…
Browse files Browse the repository at this point in the history
…tFeatures-2051

feat(RequestsPortlet): Added On Hold value for request status and Next/Last 15 days filter

Reviewed by: anupam.ghosh@siemens.com
Tested by:  kumar.nikesh@siemens.com
  • Loading branch information
ag4ums authored Jul 26, 2023
2 parents a6d0c7c + 4d4c863 commit c5185ab
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@
<option value="0" class="textlabel stackedLabel"><liferay-ui:message key="today" /></option>
<option value="-30" class="textlabel stackedLabel"><liferay-ui:message key="last.30.days" /></option>
<option value="-7" class="textlabel stackedLabel"><liferay-ui:message key="last.7.days" /></option>
<option value="-15" class="textlabel stackedLabel"><liferay-ui:message key="last.15.days" /></option>
<option value="15" class="textlabel stackedLabel"><liferay-ui:message key="next.15.days" /></option>
<option value="7" class="textlabel stackedLabel"><liferay-ui:message key="next.7.days" /></option>
<option value="30" class="textlabel stackedLabel"><liferay-ui:message key="next.30.days" /></option>
</select>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -782,6 +782,7 @@ key.user=Key user
keyword.search=Keyword Search
languages=Languages
large=Large
last.15.days=Last 15 days
last.7.days=Last 7 days
last.30.days=Last 30 days
last.export.happened.with.old.storage.format.so.restored.data.might.not.be.correct.for.attachments.of.releases.in.subprojects=Last export happened with old storage format, so restored data might not be correct for attachments of releases in subprojects.
Expand Down Expand Up @@ -922,6 +923,7 @@ new.license=New License
new.project=New Project
new.releases=New releases
next=next
next.15.days=Next 15 days
next.7.days=Next 7 days
next.30.days=Next 30 days
next.synchronization=Next Synchronization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ private ThriftEnumUtils() {
.put(ClearingRequestState.IN_PROGRESS, "In Progress")
.put(ClearingRequestState.CLOSED, "Closed")
.put(ClearingRequestState.AWAITING_RESPONSE, "Awaiting Response")
.put(ClearingRequestState.ON_HOLD, "On Hold")
.build();

private static final ImmutableMap<ClearingReportStatus, String> MAP_CLEARING_REPORT_STATUS_STRING = ImmutableMap.<ClearingReportStatus, String>builder()
Expand Down
1 change: 1 addition & 0 deletions libraries/datahandler/src/main/thrift/sw360.thrift
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ enum ClearingRequestState {
IN_PROGRESS = 4,
CLOSED = 5,
AWAITING_RESPONSE = 6
ON_HOLD = 7
}

enum ClearingRequestPriority {
Expand Down

0 comments on commit c5185ab

Please sign in to comment.