-
Notifications
You must be signed in to change notification settings - Fork 3
Test #1490
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
Merged
Merged
Test #1490
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
07e755a
29103:Restructuring the Tagging data model in the Application & Payme…
don-aot 3faa0d6
29103:Restructuring the Tagging data model in the Payment List
don-aot ce7c719
Merge branch 'dev' into feature/AB#29103-Restructuring-the-Tagging-da…
don-aot 970d345
feature/AB#29310-AddPaymentGroupToSite
jimmyPasta 071f636
29103:Restructuring the Tagging data model in the Payment List
don-aot 1804606
29103:Restructuring the Tagging data model in the Payment List
don-aot a2fa7d3
Sonarqube Issue fixes
don-aot 1373664
feature/AB#29310-AddPaymentGroupToSite
jimmyPasta e1db7d7
Sonarqube fixes
don-aot af7af0b
feature/AB#29310-AddPaymentGroupToSite
jimmyPasta 6c28043
Merge pull request #1476 from bcgov/feature/AB#29103-Restructuring-th…
JamesPasta b4bc88b
AB#29096 - Add SettingManagement.Tags.Create Permissions
plavoie-BC 53a18a3
Merge remote-tracking branch 'origin/dev' into feature/AB#29096-tag-m…
plavoie-BC a6f4061
feature/AB#29310-AddPaymentGroupToSite-SonarFixes
jimmyPasta cad671a
Merge pull request #1483 from bcgov/feature/AB#29310-AddPaygroupToSite
JamesPasta 25fd6c9
AB#29451 add fix endpoint to recover missing worksheet instances
AndreGAot 5455af5
feature/AB#29464 Add ApplicantName to Applicant Info Tab
samsaravillo cce7983
AB#29451 some updates based on codeQL suggestions
AndreGAot c67a615
feature/AB#29103-AddInDrop-DropFK for app tage
jimmyPasta 21f520b
Merge pull request #1486 from bcgov/bugfix/AB#29103-AddInDropForForei…
JamesPasta d3168a1
AB#29451 more codeQL suggestions
AndreGAot 849bdc4
AB#29103 - Global Tags - Add Tag Normalization Migration Scripts
plavoie-BC 76df73c
AB#29103 - Global Tags - Add Tag Normalization Migration Scripts - Sc…
plavoie-BC 74576d8
Merge pull request #1488 from bcgov/bugfix/AB#29103-tag-model-normali…
don-aot e97c28c
AB#29451 secure behind admin with tenant specify capability
AndreGAot 8310bb5
Merge remote-tracking branch 'origin/dev' into feature/AB#29096-tag-m…
plavoie-BC 0d96a24
AB#29096 - Tag Management - Configure 'Add New Tag' Permission on Int…
plavoie-BC 7357936
AB#29096 - Tag Management - Remove Legacy Tag Management Logic
plavoie-BC 33f4f02
AB#29096 - Tag Management - Resolve SonarQube issue and fix RenameTag…
plavoie-BC 0a0cc48
AB#29096 - Tag Management - Bugfix for RenameTagAsync
plavoie-BC 16fd0f5
Merge pull request #1484 from bcgov/feature/AB#29464-Add-Applicant-Na…
JamesPasta 03168be
Merge pull request #1489 from bcgov/feature/AB#29096-tag-management-p…
JamesPasta 6088f47
Merge pull request #1485 from bcgov/bugfix/AB#29451-missing-worksheet…
JamesPasta b6309f9
Merge pull request #1487 from bcgov/dev
JamesPasta File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -3,7 +3,6 @@ | |
| public enum PaymentGroup | ||
| { | ||
| EFT = 1, | ||
| Cheque = 2, | ||
| GLP = 3 | ||
| Cheque = 2 | ||
| } | ||
| } | ||
12 changes: 12 additions & 0 deletions
12
...nity.Payments/src/Unity.Payments.Application.Contracts/PaymentTags/AssignPaymentTagDto.cs
This file contains hidden or 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,12 @@ | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using Volo.Abp.Application.Dtos; | ||
|
|
||
| namespace Unity.Payments.PaymentTags; | ||
|
|
||
| [Serializable] | ||
| public class AssignPaymentTagDto : AuditedEntityDto<Guid> | ||
| { | ||
| public Guid PaymentRequestId { get; set; } | ||
| public List<GlobalTagDto>? Tags { get; set; } | ||
| } |
12 changes: 12 additions & 0 deletions
12
...dules/Unity.Payments/src/Unity.Payments.Application.Contracts/PaymentTags/GlobalTagDto.cs
This file contains hidden or 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,12 @@ | ||
| using System; | ||
| using Volo.Abp.Application.Dtos; | ||
|
|
||
| namespace Unity.Payments.PaymentTags | ||
| { | ||
| [Serializable] | ||
| public class GlobalTagDto : EntityDto<Guid> | ||
| { | ||
| public string Name { get; set; } = string.Empty; | ||
| } | ||
| } | ||
|
|
This file contains hidden or 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 hidden or 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
2 changes: 1 addition & 1 deletion
2
...Unity.Payments/src/Unity.Payments.Application.Contracts/PaymentTags/TagSummaryCountDto.cs
This file contains hidden or 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,6 +1,6 @@ | ||
| namespace Unity.Payments.PaymentTags; | ||
| public class TagSummaryCountDto | ||
| { | ||
| public required string Text { get; set; } | ||
| public required GlobalTagDto Tag { get; set; } | ||
| public required int Count { get; set; } | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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
8 changes: 5 additions & 3 deletions
8
...dules/Unity.Payments/src/Unity.Payments.Application/Domain/PaymentTags/TagSummaryCount.cs
This file contains hidden or 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,6 +1,8 @@ | ||
| namespace Unity.Payments.Domain.PaymentTags; | ||
| public class TagSummaryCount(string name, int count) | ||
| using Unity.GrantManager.GlobalTag; | ||
|
|
||
| namespace Unity.Payments.Domain.PaymentTags; | ||
| public class PaymentTagSummaryCount(Tag tag, int count) | ||
| { | ||
| public string Text { get; set; } = name; | ||
| public Tag Tag { get; set; } = tag; | ||
| public int Count { get; set; } = count; | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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
9 changes: 9 additions & 0 deletions
9
...rantManager/modules/Unity.Payments/src/Unity.Payments.Application/Events/TagDeletedEto.cs
This file contains hidden or 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,9 @@ | ||
| using System; | ||
|
|
||
| namespace Unity.Payments.Events; | ||
|
|
||
| [Serializable] | ||
| public class TagDeletedEto | ||
| { | ||
| public required Guid TagId { get; set; } | ||
| } |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
The removal of the GLP = 3 enum value could be a breaking change if this enum is used elsewhere in the codebase. Consider using the Obsolete attribute instead of completely removing it to maintain backward compatibility.