-
Notifications
You must be signed in to change notification settings - Fork 9
Bugfix/atr 940 dev pxdb packed integer array support #650
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
Open
SENya1990
wants to merge
8
commits into
dev
Choose a base branch
from
bugfix/ATR-940-dev-PXDBPackedIntegerArray-support
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
c988782
ATR-940: added unit test for PX1023 for PXDBPackedIntegerArrayAttribute
SENya1990 f82f0f0
ATR-940: refactoring - improved unit test names
SENya1990 a1a717c
ATR-940: added more well known non-data type attributes
SENya1990 f351de1
ATR-940: added well known special data type attributes
SENya1990 e472cc5
ATR-940: integrated well known special data type attributes register …
SENya1990 2a6d254
ATR-940: implemeted AI suggestion
SENya1990 0d97cc8
ATR-940: refactoring - fixed local variable name based on AI remark
SENya1990 0d63d17
ATR-940: fixed comment based on AI remark
SENya1990 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
29 changes: 29 additions & 0 deletions
29
...ts/StaticAnalysis/DacPropertyAttributes/Sources/DacWithPXDBPackedIntegerArrayAttribute.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,29 @@ | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using PX.Data; | ||
|
|
||
| namespace PX.Objects.HackathonDemo | ||
| { | ||
| // Acuminator disable once PX1069 MissingMandatoryDacFields No need in unit test | ||
| [PXHidden] | ||
| public class SomeDac : PXBqlTable, IBqlTable | ||
| { | ||
| #region DacID | ||
| public abstract class dacID : PX.Data.BQL.BqlInt.Field<dacID> { } | ||
|
|
||
| [PXDBInt] | ||
| public virtual int? DacID | ||
| { | ||
| get; | ||
| set; | ||
| } | ||
| #endregion | ||
|
|
||
| #region DiscountsAppliedToLine | ||
| public abstract class discountsAppliedToLine : IBqlField { } | ||
|
|
||
| [PXDBPackedIntegerArray] | ||
| public virtual ushort[]? DiscountsAppliedToLine { get; set; } | ||
| #endregion | ||
| } | ||
| } |
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
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.
Uh oh!
There was an error while loading. Please reload this page.