Skip to content

Commit

Permalink
Adding support for 2018R2 or higher
Browse files Browse the repository at this point in the history
  • Loading branch information
DhirenChhapgar committed Oct 2, 2019
1 parent 94e53b5 commit 1d9524a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion AcumaticaESign/AR/ARInvoiceESExt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace AcumaticaESign
public class ARInvoiceESExt : PXCacheExtension<ARInvoice>
{
[PXMergeAttributes(Method = MergeMethod.Append)]
[PXSelector(typeof(Search<ARContact.contactID>))]
[PXSelector(typeof(Search<ARContact.contactID>), ValidateValue = false)]
public virtual Int32? BillContactID { get; set; }
}
}
25 changes: 14 additions & 11 deletions AcumaticaESign/AcumaticaESign.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AcumaticaESign</RootNamespace>
<AssemblyName>AcumaticaESign</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
Expand All @@ -34,33 +34,36 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="CsvHelper">
<HintPath>..\..\References\CsvHelper.dll</HintPath>
<HintPath>..\References\CsvHelper.dll</HintPath>
</Reference>
<Reference Include="DocuSign">
<HintPath>..\..\References\DocuSign.dll</HintPath>
<HintPath>..\References\DocuSign.dll</HintPath>
</Reference>
<Reference Include="Microsoft.AspNet.SignalR.Core">
<HintPath>..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2017ESign\Bin\Microsoft.AspNet.SignalR.Core.dll</HintPath>
<HintPath>..\..\..\..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2018ESign\Bin\Microsoft.AspNet.SignalR.Core.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2017ESign\Bin\Newtonsoft.Json.dll</HintPath>
<HintPath>..\..\..\..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2018ESign\Bin\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="PX.Common">
<HintPath>..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2017ESign\Bin\PX.Common.dll</HintPath>
<HintPath>..\..\..\..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2018ESign\Bin\PX.Common.dll</HintPath>
</Reference>
<Reference Include="PX.CS.Contracts">
<HintPath>..\..\..\..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2018ESign\Bin\PX.CS.Contracts.dll</HintPath>
</Reference>
<Reference Include="PX.Data">
<HintPath>..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2017ESign\Bin\PX.Data.dll</HintPath>
<HintPath>..\..\..\..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2018ESign\Bin\PX.Data.dll</HintPath>
</Reference>
<Reference Include="PX.OAuthClient">
<HintPath>..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2017ESign\Bin\PX.OAuthClient.dll</HintPath>
<HintPath>..\..\..\..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2018ESign\Bin\PX.OAuthClient.dll</HintPath>
</Reference>
<Reference Include="PX.Objects">
<HintPath>..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2017ESign\Bin\PX.Objects.dll</HintPath>
<HintPath>..\..\..\..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2018ESign\Bin\PX.Objects.dll</HintPath>
</Reference>
<Reference Include="RestSharp">
<HintPath>..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2017ESign\Bin\RestSharp.dll</HintPath>
<HintPath>..\..\..\..\..\..\..\..\Program Files (x86)\Acumatica ERP\ACM2018ESign\Bin\RestSharp.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
Expand Down
2 changes: 1 addition & 1 deletion AcumaticaESign/CR/CROpportunityESExt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace AcumaticaESign
public class CROpportunityESExt : PXCacheExtension<CROpportunity>
{
[PXMergeAttributes(Method = MergeMethod.Append)]
[PXSelector(typeof(CRContact.contactID))]
[PXSelector(typeof(CRContact.contactID), ValidateValue = false)]
public virtual Int32? OpportunityContactID { get; set; }
}
}
2 changes: 1 addition & 1 deletion AcumaticaESign/PO/POOrderESExt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace AcumaticaESign
public class POOrderESExt : PXCacheExtension<POOrder>
{
[PXMergeAttributes(Method = MergeMethod.Append)]
[PXSelector(typeof(Search<PORemitContact.contactID>))]
[PXSelector(typeof(Search<PORemitContact.contactID>), ValidateValue = false)]
public virtual Int32? RemitContactID { get; set; }
}
}
1 change: 1 addition & 0 deletions AcumaticaESign/SM/WikiFileMaintenanceESExt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using CsvHelper;
using DocuSign.eSign.Model;
using PX.Common;
using PX.CS.Contracts.Interfaces;
using PX.Data;
using PX.Objects.CR;
using PX.Objects.CS;
Expand Down
2 changes: 1 addition & 1 deletion AcumaticaESign/SO/SOOrderESExt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace AcumaticaESign
public class SOOrderESExt : PXCacheExtension<SOOrder>
{
[PXMergeAttributes(Method = MergeMethod.Append)]
[PXSelector(typeof(Search<SOBillingContact.contactID>))]
[PXSelector(typeof(Search<SOBillingContact.contactID>), ValidateValue = false)]
public int? BillContactID { get; set; }
}
}

0 comments on commit 1d9524a

Please sign in to comment.