-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hlm 5075 update search across services #674
Conversation
…es and updated contracts accordingly
…-project and made chanegs in test controllers in productVariant projectTask projectBeneficiary projectStaff
… services and orderBy was changed to createdtime
Important Auto Review SkippedAuto reviews are disabled on base/target branches other than the default branch. Please add the base/target branch pattern to the list of additional branches to be reviewed in the settings. Please check the settings in the CodeRabbit UI or the To trigger a single review, invoke the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
…r-by hlm-5031 The search was updated in individual and referral management…
@@ -29,7 +29,7 @@ public class ProductVariantSearch { | |||
|
|||
@JsonProperty("productId") | |||
@Size(min = 2, max = 64) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove the size annotation, make sure the value inserted in any list is not null.
@@ -35,11 +35,11 @@ public class ProjectBeneficiarySearch { | |||
|
|||
@JsonProperty("projectId") | |||
@Size(min=2,max=64) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this
@@ -35,11 +35,11 @@ public class ProjectBeneficiarySearch { | |||
|
|||
@JsonProperty("projectId") | |||
@Size(min=2,max=64) | |||
private String projectId = null; | |||
private List<String> projectId = null; | |||
|
|||
@JsonProperty("beneficiaryId") | |||
@Size(min=2,max=64) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this
@@ -31,7 +31,7 @@ public class ProjectResourceSearch { | |||
|
|||
@JsonProperty("projectId") | |||
@Size(min=2,max=64) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not required
@@ -29,18 +29,18 @@ public class TaskSearch { | |||
|
|||
@JsonProperty("projectId") | |||
@Size(min=2,max=64) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not required
@@ -29,18 +29,18 @@ public class TaskSearch { | |||
|
|||
@JsonProperty("projectId") | |||
@Size(min=2,max=64) | |||
private String projectId = null; | |||
private List<String> projectId = null; | |||
|
|||
@JsonProperty("projectBeneficiaryId") | |||
@Size(min=2,max=64) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not required
|
||
@JsonProperty("projectBeneficiaryId") | ||
@Size(min=2,max=64) | ||
private String projectBeneficiaryId = null; | ||
private List<String> projectBeneficiaryId = null; | ||
|
||
@JsonProperty("clientReferenceId") | ||
private List<String> clientReferenceId = null; | ||
|
||
@JsonProperty("projectBeneficiaryClientReferenceId") | ||
@Size(min=2,max=64) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not required
@@ -33,10 +33,10 @@ public class StockReconciliationSearch { | |||
|
|||
@JsonProperty("facilityId") | |||
@Size(min=2, max=64) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not required
@@ -33,10 +33,10 @@ public class StockReconciliationSearch { | |||
|
|||
@JsonProperty("facilityId") | |||
@Size(min=2, max=64) | |||
private String facilityId = null; | |||
private List<String> facilityId = null; | |||
|
|||
@JsonProperty("productVariantId") | |||
@Size(min=2, max=64) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not required
@@ -37,13 +37,13 @@ public class StockSearch { | |||
|
|||
@JsonProperty("productVariantId") | |||
@Size(min=2, max=64) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not required
No description provided.