-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/dev' into release/uat_is92
- Loading branch information
Showing
555 changed files
with
111,723 additions
and
13,779 deletions.
There are no files selected for viewing
2,615 changes: 2,615 additions & 0 deletions
2,615
etl/PAT_PIMS_DOCUMENT_IMPORT/PAT_PIMS_DOCUMENT_IMPORT/DOCUMENT_IMPORT.dtsx
Large diffs are not rendered by default.
Oops, something went wrong.
400 changes: 400 additions & 0 deletions
400
etl/PAT_PIMS_DOCUMENT_IMPORT/PAT_PIMS_DOCUMENT_IMPORT/PAT_PIMS_DOCUMENT_IMPORT.dtproj
Large diffs are not rendered by default.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
etl/PAT_PIMS_DOCUMENT_IMPORT/PAT_PIMS_DOCUMENT_IMPORT/PAT_PIMS_DOCUMENT_IMPORT.dtproj.user
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,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<DataTransformationsUserConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<Configurations> | ||
<Configuration> | ||
<Name>Development</Name> | ||
<Options> | ||
<AssessmentRuleSuppressionSetting /> | ||
<UseWinAuth>false</UseWinAuth> | ||
<WinAuthUserName /> | ||
<WinAuthDomain /> | ||
<UserIDs /> | ||
<UserPasswords /> | ||
<OfflineMode>false</OfflineMode> | ||
<ProgressReporting>true</ProgressReporting> | ||
<ParameterConfigurationSensitiveValues> | ||
<ConfigurationSetting> | ||
<Id>LastModifiedTime</Id> | ||
<Name>LastModifiedTime</Name> | ||
<Value xsi:type="xsd:dateTime">2024-10-11T23:15:29.0697001Z</Value> | ||
</ConfigurationSetting> | ||
</ParameterConfigurationSensitiveValues> | ||
</Options> | ||
</Configuration> | ||
</Configurations> | ||
</DataTransformationsUserConfiguration> |
22 changes: 22 additions & 0 deletions
22
etl/PAT_PIMS_DOCUMENT_IMPORT/PAT_PIMS_DOCUMENT_IMPORT/PAT_PIMS_DOCUMENT_IMPORT.sln
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,22 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 16 | ||
VisualStudioVersion = 16.0.33027.164 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{C9674DCB-5085-4A16-B785-4C70DD1589BD}") = "PAT_PIMS_DOCUMENT_IMPORT", "PAT_PIMS_DOCUMENT_IMPORT.dtproj", "{8D688065-BC77-4671-BF5F-057201FBF3F4}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Development|Default = Development|Default | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{8D688065-BC77-4671-BF5F-057201FBF3F4}.Development|Default.ActiveCfg = Development | ||
{8D688065-BC77-4671-BF5F-057201FBF3F4}.Development|Default.Build.0 = Development | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {A0AAEAFE-BC23-413A-AC3B-8C50D579C4D3} | ||
EndGlobalSection | ||
EndGlobal |
2 changes: 2 additions & 0 deletions
2
etl/PAT_PIMS_DOCUMENT_IMPORT/PAT_PIMS_DOCUMENT_IMPORT/Project.params
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,2 @@ | ||
<?xml version="1.0"?> | ||
<SSIS:Parameters xmlns:SSIS="www.microsoft.com/SqlServer/SSIS" /> |
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
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
39 changes: 39 additions & 0 deletions
39
source/backend/apimodels/CodeTypes/SubfileInterestTypes.cs
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,39 @@ | ||
using System.Runtime.Serialization; | ||
using System.Text.Json.Serialization; | ||
|
||
namespace Pims.Api.Models.CodeTypes | ||
{ | ||
[JsonConverter(typeof(JsonStringEnumMemberConverter))] | ||
public enum SubfileInterestTypes | ||
{ | ||
[EnumMember(Value = "EASEMENT")] | ||
EASEMENT, | ||
|
||
[EnumMember(Value = "LICOCCUPY")] | ||
LICOCCUPY, | ||
|
||
[EnumMember(Value = "LIEN")] | ||
LIEN, | ||
|
||
[EnumMember(Value = "MORTGAGE")] | ||
MORTGAGE, | ||
|
||
[EnumMember(Value = "OTHER")] | ||
OTHER, | ||
|
||
[EnumMember(Value = "SRWUTILITY")] | ||
SRWUTILITY, | ||
|
||
[EnumMember(Value = "STRATALOT")] | ||
STRATALOT, | ||
|
||
[EnumMember(Value = "SUBTENANT")] | ||
SUBTENANT, | ||
|
||
[EnumMember(Value = "TENANT")] | ||
TENANT, | ||
|
||
[EnumMember(Value = "XINGPERMIT")] | ||
XINGPERMIT, | ||
} | ||
} |
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
31 changes: 31 additions & 0 deletions
31
source/backend/dal/Helpers/Extensions/AcquisitionFileExtensions.cs
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,31 @@ | ||
using Pims.Dal.Entities; | ||
|
||
namespace Pims.Dal.Helpers.Extensions | ||
{ | ||
public static class AcquisitionFileExtensions | ||
{ | ||
/// <summary> | ||
/// Returns the suffix portion of the supplied Acquisition File Number. | ||
/// </summary> | ||
/// <param name="pimsAcquisitionFile">The Acquisition File entity.</param> | ||
/// <returns>The file number suffix (e.g. "1", "2", "3", etc) if it is found, or -1 if it is not.</returns> | ||
public static int GetAcquisitionNumberSuffix(this PimsAcquisitionFile pimsAcquisitionFile) | ||
{ | ||
if (pimsAcquisitionFile is null) | ||
{ | ||
return -1; | ||
} | ||
|
||
int lastIndex = pimsAcquisitionFile.FileNumber.LastIndexOf('-'); | ||
if (lastIndex >= 0 && lastIndex < pimsAcquisitionFile.FileNumber.Length - 1) | ||
{ | ||
string suffix = pimsAcquisitionFile.FileNumber.Substring(lastIndex + 1); | ||
return int.TryParse(suffix, out int number) ? number : -1; | ||
} | ||
else | ||
{ | ||
return -1; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.