Rebase Develop

This commit is contained in:
2021-04-07 11:23:42 +02:00
parent 8a700d7162
commit 11a8d4b6af
67 changed files with 608 additions and 429 deletions
+1
View File
@@ -54,3 +54,4 @@
/SISBusiness.Win/obj/Debug /SISBusiness.Win/obj/Debug
/SISBusiness.Module.Web/obj/R64/SISBusiness.Module.Web.vbprojAssemblyReference.cache /SISBusiness.Module.Web/obj/R64/SISBusiness.Module.Web.vbprojAssemblyReference.cache
*.cache *.cache
/.vs/WIN_ALL/v15/Server/sqlite3
BIN
View File
Binary file not shown.
+9
View File
@@ -1,4 +1,13 @@
msbuild WIN.sln /t:Clean /p:Configuration=R64 msbuild WIN.sln /t:Clean /p:Configuration=R64
msbuild WIN.sln /t:Clean /p:Configuration=Debug msbuild WIN.sln /t:Clean /p:Configuration=Debug
msbuild WIN.sln /t:Clean /p:Configuration=Release msbuild WIN.sln /t:Clean /p:Configuration=Release
msbuild WEB_SUPPORT.sln /t:Clean /p:Configuration=R64
msbuild WEB_SUPPORT.sln /t:Clean /p:Configuration=Debug
msbuild WEB_SUPPORT.sln /t:Clean /p:Configuration=Release
msbuild WEB_SUBCONTRACTOR.sln /t:Clean /p:Configuration=R64
msbuild WEB_SUBCONTRACTOR.sln /t:Clean /p:Configuration=Debug
msbuild WEB_SUBCONTRACTOR.sln /t:Clean /p:Configuration=Release
pause pause
@@ -4,6 +4,7 @@ using DevExpress.ExpressApp.Actions;
using DevExpress.ExpressApp.Xpo; using DevExpress.ExpressApp.Xpo;
using DevExpress.Persistent.Base; using DevExpress.Persistent.Base;
using Newtonsoft.Json; using Newtonsoft.Json;
using SISBusiness.Module.NAV;
using SISBusiness.Module.StaticClass; using SISBusiness.Module.StaticClass;
namespace SISBusiness.Module.Controllers namespace SISBusiness.Module.Controllers
@@ -90,61 +91,67 @@ namespace SISBusiness.Module.Controllers
{ {
XPObjectSpace _ocur = View.ObjectSpace as XPObjectSpace; XPObjectSpace _ocur = View.ObjectSpace as XPObjectSpace;
InvoiceHeader _InvoiceHeader = View.SelectedObjects[0] as InvoiceHeader; InvoiceHeader _InvoiceHeader = View.SelectedObjects[0] as InvoiceHeader;
string _operation = "CREATE";
if (_InvoiceHeader.IsStorno) OnlineInvoiceHelper _OnlineInvoiceHelper = new OnlineInvoiceHelper(_ocur.Session);
{ _OnlineInvoiceHelper.manageInvoice(_ocur, _InvoiceHeader, Application);
_operation = "STORNO";
}
var _postData = new
{
documentnumber = _InvoiceHeader.DocumentNumber,
customersfrom = _InvoiceHeader.CustomersFrom.Oid.ToString(),
operation = _operation,
technicalAnnulment = false,
softwareId = "123456789123456789",
softwareName = "3C ERP System",
softwareOperation = "ONLINE_SERVICE",
softwareMainVersion = "17.2.3",
softwareDevName = "3C Távközlési Kft.",
softwareDevContact = "http:\\3ctelecom.hu",
softwareDevCountryCode = "HU",
softwareDevTaxNumber = "10644209-2-43"
}; //XPObjectSpace _ocur = View.ObjectSpace as XPObjectSpace;
//InvoiceHeader _InvoiceHeader = View.SelectedObjects[0] as InvoiceHeader;
//string _operation = "CREATE";
RestAPI.ExecuteRootePOST("onlineinvoice/manageinvoice", true, JsonConvert.SerializeObject(_postData)); //if (_InvoiceHeader.IsStorno)
var _StatusCode = RestAPI.StatusCode; //{
var _StatusDescription = RestAPI.StatusMessage; // _operation = "STORNO";
//}
//var _postData = new
//{
// documentnumber = _InvoiceHeader.DocumentNumber,
// customersfrom = _InvoiceHeader.CustomersFrom.Oid.ToString(),
// operation = _operation,
// technicalAnnulment = false,
// softwareId = "123456789123456789",
// softwareName = "3C ERP System",
// softwareOperation = "ONLINE_SERVICE",
// softwareMainVersion = "17.2.3",
// softwareDevName = "3C Távközlési Kft.",
// softwareDevContact = "http:\\3ctelecom.hu",
// softwareDevCountryCode = "HU",
// softwareDevTaxNumber = "10644209-2-43"
Tracing.Tracer.LogText(_StatusCode.ToString()); //};
Tracing.Tracer.LogText(_StatusDescription.ToString());
if (_StatusCode == 200) //RestAPI.ExecuteRootePOST("onlineinvoice/manageinvoice", true, JsonConvert.SerializeObject(_postData));
{ //var _StatusCode = RestAPI.StatusCode;
dynamic _ResultJSON = JsonConvert.DeserializeObject(_StatusDescription); //var _StatusDescription = RestAPI.StatusMessage;
if (_ResultJSON.status.ToString() == "OK") //Tracing.Tracer.LogText(_StatusCode.ToString());
{ //Tracing.Tracer.LogText(_StatusDescription.ToString());
_ocur.Session.ExecuteNonQuery(string.Format("UPDATE InvoiceHeader set NAV_transactionID='{0}' WHERE Oid = '{1}'", _ResultJSON.transactionId["0"].ToString(), _InvoiceHeader.Oid.ToString()));
Application.ShowViewStrategy.ShowMessage("A számla beküldése megtörtént !", InformationType.Success, 2000, InformationPosition.Bottom); //if (_StatusCode == 200)
} //{
if (_ResultJSON.status.ToString() == "ERROR") // dynamic _ResultJSON = JsonConvert.DeserializeObject(_StatusDescription);
{
string _ERROR = "A számla beküldése nem történt meg !";
_ERROR += " [" + _ResultJSON.ToString() + "]";
Application.ShowViewStrategy.ShowMessage(_ERROR, InformationType.Error, 5000, InformationPosition.Bottom);
}
}
else
{
string _ERROR = "A számla beküldése nem történt meg !";
_ERROR += " [" + _StatusDescription + "]";
Application.ShowViewStrategy.ShowMessage(_ERROR, InformationType.Error, 5000, InformationPosition.Bottom);
}
(View as ListView).CollectionSource.Reload(); // if (_ResultJSON.status.ToString() == "OK")
// {
// _ocur.Session.ExecuteNonQuery(string.Format("UPDATE InvoiceHeader set NAV_transactionID='{0}' WHERE Oid = '{1}'", _ResultJSON.transactionId["0"].ToString(), _InvoiceHeader.Oid.ToString()));
// Application.ShowViewStrategy.ShowMessage("A számla beküldése megtörtént !", InformationType.Success, 2000, InformationPosition.Bottom);
// }
// if (_ResultJSON.status.ToString() == "ERROR")
// {
// string _ERROR = "A számla beküldése nem történt meg !";
// _ERROR += " [" + _ResultJSON.ToString() + "]";
// Application.ShowViewStrategy.ShowMessage(_ERROR, InformationType.Error, 5000, InformationPosition.Bottom);
// }
//}
//else
//{
// string _ERROR = "A számla beküldése nem történt meg !";
// _ERROR += " [" + _StatusDescription + "]";
// Application.ShowViewStrategy.ShowMessage(_ERROR, InformationType.Error, 5000, InformationPosition.Bottom);
//}
//(View as ListView).CollectionSource.Reload();
} }
private void aNAV_queryInvoiceStatus_Execute(object sender, SimpleActionExecuteEventArgs e) private void aNAV_queryInvoiceStatus_Execute(object sender, SimpleActionExecuteEventArgs e)
@@ -16,6 +16,12 @@
<Member Name="NAV_valid" Caption="NAV valós?" /> <Member Name="NAV_valid" Caption="NAV valós?" />
</OwnMembers> </OwnMembers>
</Class> </Class>
<Class Name="SISBusiness.Module.CustomersFrom">
<OwnMembers>
<Member Name="NAV_NumberGenerator" Caption="NAV sorszám" />
<Member Name="NAV_password" Caption="NAV jelszó" />
</OwnMembers>
</Class>
<Class Name="SISBusiness.Module.InvoiceHeader"> <Class Name="SISBusiness.Module.InvoiceHeader">
<OwnMembers> <OwnMembers>
<Member Name="NAV_InvoiceStatus" Caption="NAV számla státusza" /> <Member Name="NAV_InvoiceStatus" Caption="NAV számla státusza" />
@@ -44,6 +50,22 @@
</Items> </Items>
</NavigationItems> </NavigationItems>
<Views> <Views>
<DetailView Id="Customers_DetailView">
<Layout>
<LayoutGroup Id="Main">
<TabbedGroup Id="Tabs">
<LayoutGroup Id="Item1">
<LayoutGroup Id="Autod82cce55-c01d-494f-828e-ef1cdff54b9d">
<LayoutGroup Id="Item9">
<LayoutGroup Id="Auto6a405a6a-2220-450c-869c-a80ab7703510" Caption="Auto6a405a6a-2220-450c-869c-a80ab7703510(54)" />
<LayoutGroup Id="Autoc668ecda-5173-4e23-88dc-2f8af6b93146" Caption="Autoc668ecda-5173-4e23-88dc-2f8af6b93146(57)" />
</LayoutGroup>
</LayoutGroup>
</LayoutGroup>
</TabbedGroup>
</LayoutGroup>
</Layout>
</DetailView>
<ListView Id="Customers_ListView_Base"> <ListView Id="Customers_ListView_Base">
<Variants> <Variants>
<Variant Id="@Customers_ListView_NAV" Caption="Ügyfelek (belföldi NAV)" /> <Variant Id="@Customers_ListView_NAV" Caption="Ügyfelek (belföldi NAV)" />
@@ -110,6 +110,118 @@
<ColumnInfo Id="Completed" Index="4" Width="49" /> <ColumnInfo Id="Completed" Index="4" Width="49" />
</Columns> </Columns>
</ListView> </ListView>
<DetailView Id="Customers_DetailView">
<Layout>
<LayoutGroup Id="Main">
<LayoutGroup Id="SimpleEditors" RelativeSize="20.668316831683168">
<LayoutGroup Id="Customers_col1">
<LayoutGroup Id="268261eb-f7e3-4580-9f0e-c6bcd271e86e" RelativeSize="38.164665523156089">
<LayoutItem Id="WebSite" RelativeSize="21.818181818181817" />
<LayoutItem Id="ExportMode" ViewItem="ExportMode" Index="3" RelativeSize="27.272727272727273" IsNewNode="True" />
</LayoutGroup>
<LayoutGroup Id="a8e55f01-52cb-4fdb-b694-2e16e5ed4994" RelativeSize="61.835334476843911">
<LayoutGroup Id="2648ffd8-acfc-45ec-8d6f-266b71223e75" RelativeSize="45.076282940360613" />
<LayoutGroup Id="55e9db82-4829-41e1-8c83-bde37f4ba6fd" RelativeSize="54.923717059639387" />
</LayoutGroup>
</LayoutGroup>
</LayoutGroup>
<TabbedGroup Id="Tabs" RelativeSize="79.331683168316829">
<LayoutGroup Id="PhoneNumbers" TextAlignMode="AlignWithChildren">
<LayoutItem Id="PhoneNumbers" TextAlignMode="AutoSize" />
</LayoutGroup>
<LayoutGroup Id="Contacts" TextAlignMode="AlignWithChildren">
<LayoutItem Id="Contacts" TextAlignMode="AutoSize" />
</LayoutGroup>
<LayoutGroup Id="Item1">
<LayoutGroup Id="Auto09cd2e01-3d71-454b-bd3a-e1cbb30c2038" RelativeSize="45.606326889279437">
<LayoutGroup Id="Item7" RelativeSize="24.414715719063544">
<LayoutItem Id="PricingIn" RelativeSize="28.571428571428573" />
<LayoutItem Id="Pricing" RelativeSize="21.428571428571427" />
<LayoutItem Id="CompanyStatisticsNumber" RelativeSize="21.428571428571427" />
<LayoutItem Id="HRPerson_SalesPerson" RelativeSize="28.571428571428573" />
</LayoutGroup>
<LayoutGroup Id="Item4" RelativeSize="75.585284280936449">
<LayoutItem Id="PaymentOption" RelativeSize="7.6555023923444976" />
<LayoutItem Id="ShipmentOption" RelativeSize="5.741626794258373" />
<LayoutItem Id="QualityOption" RelativeSize="5.741626794258373" />
<LayoutItem Id="EMail_Invoice" RelativeSize="5.741626794258373" />
<LayoutItem Id="Contact_Decision" RelativeSize="5.741626794258373" />
<LayoutItem Id="Contact_Finance" RelativeSize="5.741626794258373" />
<LayoutItem Id="ClassificationByMoney" RelativeSize="5.741626794258373" />
<LayoutItem Id="ClassificationByPersonal" RelativeSize="57.89473684210526" />
</LayoutGroup>
</LayoutGroup>
<LayoutGroup Id="Autod82cce55-c01d-494f-828e-ef1cdff54b9d" RelativeSize="54.393673110720563">
<LayoutGroup Id="Item8" RelativeSize="44.481605351170572">
<LayoutItem Id="MotherName" RelativeSize="13.793103448275861" />
<LayoutItem Id="BirthAddress" RelativeSize="10.344827586206897" />
<LayoutItem Id="BirthDate" RelativeSize="10.344827586206897" />
<LayoutItem Id="TAJNumber" RelativeSize="10.344827586206897" />
<LayoutItem Id="MVHRegistrationNumber" RelativeSize="10.344827586206897" />
<LayoutItem Id="FamilyFarmNumber" RelativeSize="10.344827586206897" />
<LayoutItem Id="FarmerCardNumber" RelativeSize="10.344827586206897" />
<LayoutItem Id="BusinessCardNumber" RelativeSize="10.344827586206897" />
<LayoutItem Id="Citizen" RelativeSize="13.793103448275861" />
</LayoutGroup>
<LayoutGroup Id="Item9" RelativeSize="55.518394648829428">
<LayoutGroup Id="Auto6a405a6a-2220-450c-869c-a80ab7703510" RelativeSize="51.166666666666664">
<LayoutItem Id="CanUseMarketingInfo" RelativeSize="9.7315436241610733" />
<LayoutItem Id="LyonessID" RelativeSize="90.268456375838923" />
</LayoutGroup>
<LayoutGroup Id="Autoc668ecda-5173-4e23-88dc-2f8af6b93146" RelativeSize="48.833333333333336">
<LayoutItem Id="CanUseMarketingInfoThirdParts" RelativeSize="9.7315436241610733" />
<LayoutItem Id="LyonessCardID" RelativeSize="90.268456375838923" />
</LayoutGroup>
</LayoutGroup>
</LayoutGroup>
</LayoutGroup>
<LayoutGroup Id="Customers_BusinessDirectory" TextAlignMode="AlignWithChildren">
<LayoutItem Id="Customers_BusinessDirectory" TextAlignMode="AutoSize" />
</LayoutGroup>
<LayoutGroup Id="CustomerBankAccounts" TextAlignMode="AlignWithChildren">
<LayoutItem Id="CustomerBankAccounts" TextAlignMode="AutoSize" />
</LayoutGroup>
<LayoutGroup Id="Item3" TextAlignMode="AlignWithChildren">
<LayoutItem Id="CustomersAddress" TextAlignMode="AutoSize" />
</LayoutGroup>
<LayoutGroup Id="CustomersFileAttachment" TextAlignMode="AlignWithChildren">
<LayoutItem Id="CustomersFileAttachment" TextAlignMode="AutoSize" />
</LayoutGroup>
<LayoutGroup Id="ContractProductsCredit">
<LayoutGroup Id="Item5" RelativeSize="12.374581939799331">
<LayoutItem Id="CreditlineAmountHUF" RelativeSize="33.662477558348293" />
<LayoutItem Id="CreditlineAmountDEV" RelativeSize="66.3375224416517" />
</LayoutGroup>
<LayoutGroup Id="Item6" TextAlignMode="AlignWithChildren" RelativeSize="87.625418060200673">
<LayoutItem Id="ContractProductsCredit" RelativeSize="100" />
</LayoutGroup>
</LayoutGroup>
<LayoutGroup Id="Item2" TextAlignMode="AlignWithChildren">
<LayoutItem Id="Description" TextAlignMode="AutoSize" />
</LayoutGroup>
<LayoutGroup Id="CRM_Opportunities" TextAlignMode="AlignWithChildren">
<LayoutItem Id="CRM_Opportunities" TextAlignMode="AutoSize" />
</LayoutGroup>
<LayoutGroup Id="OfferOutRows" TextAlignMode="AlignWithChildren" Index="10" RelativeSize="100">
<LayoutItem Id="OfferOutRows" TextAlignMode="AutoSize" RelativeSize="100" />
</LayoutGroup>
<LayoutGroup Id="CustomersNGCollection" TextAlignMode="AlignWithChildren" Index="11">
<LayoutGroup Id="Autobe654cb2-83e6-46f5-be3f-0a6a031822ec" RelativeSize="10.367892976588628">
<LayoutGroup Id="Auto37510ae5-7d0b-43a4-a62c-e8d34e0ccf90" RelativeSize="44.288224956063267">
<LayoutItem Id="IsAssetsHandling" RelativeSize="46.774193548387096" />
<LayoutItem Id="AssetsHandling_Note" RelativeSize="53.225806451612904" />
</LayoutGroup>
<LayoutGroup Id="Auto487668fa-dfd3-4f9b-b664-ce19dfe2bfd5" RelativeSize="55.711775043936733" />
</LayoutGroup>
<LayoutItem Id="CustomersNGCollection" RelativeSize="89.632107023411365" />
</LayoutGroup>
<LayoutGroup Id="CustomersNGCollectionWorkSheetType" TextAlignMode="AlignWithChildren" Index="12">
<LayoutItem Id="CustomersNGCollectionWorkSheetType" TextAlignMode="AutoSize" />
</LayoutGroup>
</TabbedGroup>
</LayoutGroup>
</Layout>
</DetailView>
<ListView Id="Customers_ListView_Base"> <ListView Id="Customers_ListView_Base">
<Variants> <Variants>
<Variant Id="@Active" Index="0" /> <Variant Id="@Active" Index="0" />
@@ -142,16 +254,16 @@
<DetailView Id="CustomersFrom_DetailView"> <DetailView Id="CustomersFrom_DetailView">
<Layout> <Layout>
<LayoutGroup Id="Main"> <LayoutGroup Id="Main">
<LayoutGroup Id="SimpleEditors" RelativeSize="29.249617151607964"> <LayoutGroup Id="SimpleEditors" RelativeSize="23.638613861386137">
<LayoutGroup Id="Autod257e2eb-d1ce-4fce-9922-dea39f6d87ed" RelativeSize="70.157068062827221"> <LayoutGroup Id="Autod257e2eb-d1ce-4fce-9922-dea39f6d87ed" RelativeSize="70.157068062827221">
<LayoutGroup Id="Customers_col1" RelativeSize="47.455752212389378"> <LayoutGroup Id="Customers_col1" RelativeSize="47.341337907375646">
<LayoutItem Id="CustomerNumber" RelativeSize="23.880597014925375" /> <LayoutItem Id="CustomerNumber" RelativeSize="23.880597014925375" />
<LayoutItem Id="Name" RelativeSize="17.910447761194028" /> <LayoutItem Id="Name" RelativeSize="17.910447761194028" />
<LayoutItem Id="FullName" RelativeSize="17.910447761194028" /> <LayoutItem Id="FullName" RelativeSize="17.910447761194028" />
<LayoutItem Id="CustomersNG" RelativeSize="17.910447761194028" /> <LayoutItem Id="CustomersNG" RelativeSize="17.910447761194028" />
<LayoutItem Id="Email" RelativeSize="22.388059701492537" /> <LayoutItem Id="Email" RelativeSize="22.388059701492537" />
</LayoutGroup> </LayoutGroup>
<LayoutGroup Id="Customers_col2" RelativeSize="52.544247787610622"> <LayoutGroup Id="Customers_col2" RelativeSize="52.658662092624354">
<LayoutItem Id="IsDefault" RelativeSize="21.64179104477612" /> <LayoutItem Id="IsDefault" RelativeSize="21.64179104477612" />
<LayoutItem Id="VATNumber" RelativeSize="17.910447761194028" /> <LayoutItem Id="VATNumber" RelativeSize="17.910447761194028" />
<LayoutItem Id="VATNumberEU" RelativeSize="17.910447761194028" /> <LayoutItem Id="VATNumberEU" RelativeSize="17.910447761194028" />
@@ -162,10 +274,9 @@
<LayoutGroup Id="Party" RelativeSize="29.842931937172775"> <LayoutGroup Id="Party" RelativeSize="29.842931937172775">
<LayoutItem Id="Address1" RelativeSize="47.368421052631582" /> <LayoutItem Id="Address1" RelativeSize="47.368421052631582" />
<LayoutItem Id="Address2" RelativeSize="52.631578947368418" /> <LayoutItem Id="Address2" RelativeSize="52.631578947368418" />
<LayoutItem Id="Description" Removed="True" />
</LayoutGroup> </LayoutGroup>
</LayoutGroup> </LayoutGroup>
<TabbedGroup Id="Tabs" RelativeSize="70.750382848392036"> <TabbedGroup Id="Tabs" RelativeSize="76.361386138613867">
<LayoutGroup Id="Item1" TextAlignMode="AlignWithChildren"> <LayoutGroup Id="Item1" TextAlignMode="AlignWithChildren">
<LayoutItem Id="CustomersAddress" TextAlignMode="AutoSize" /> <LayoutItem Id="CustomersAddress" TextAlignMode="AutoSize" />
</LayoutGroup> </LayoutGroup>
@@ -182,10 +293,11 @@
<LayoutItem Id="Customers_BusinessDirectory" TextAlignMode="AutoSize" RelativeSize="100" /> <LayoutItem Id="Customers_BusinessDirectory" TextAlignMode="AutoSize" RelativeSize="100" />
</LayoutGroup> </LayoutGroup>
<LayoutGroup Id="Item2" ShowCaption="True" CaptionLocation="Top" Direction="Vertical" Index="5" RelativeSize="100" IsNewNode="True"> <LayoutGroup Id="Item2" ShowCaption="True" CaptionLocation="Top" Direction="Vertical" Index="5" RelativeSize="100" IsNewNode="True">
<LayoutItem Id="NAV_login" ViewItem="NAV_login" Index="0" RelativeSize="7.6372315035799518" IsNewNode="True" /> <LayoutItem Id="NAV_login" ViewItem="NAV_login" Index="0" RelativeSize="5.5749128919860631" IsNewNode="True" />
<LayoutItem Id="NAV_password" ViewItem="NAV_password" Index="1" RelativeSize="7.6372315035799518" IsNewNode="True" /> <LayoutItem Id="NAV_password" ViewItem="NAV_password" Index="1" RelativeSize="4.1811846689895473" IsNewNode="True" />
<LayoutItem Id="NAV_xmlSignkey" ViewItem="NAV_xmlSignkey" Index="2" RelativeSize="7.6372315035799518" IsNewNode="True" /> <LayoutItem Id="NAV_xmlSignkey" ViewItem="NAV_xmlSignkey" Index="2" RelativeSize="4.1811846689895473" IsNewNode="True" />
<LayoutItem Id="NAV_exchangeKey" ViewItem="NAV_exchangeKey" Index="3" RelativeSize="77.088305489260136" IsNewNode="True" /> <LayoutItem Id="NAV_exchangeKey" ViewItem="NAV_exchangeKey" Index="3" RelativeSize="4.1811846689895473" IsNewNode="True" />
<LayoutItem Id="NAV_NumberGenerator" ViewItem="NAV_NumberGenerator" Index="4" RelativeSize="81.881533101045292" IsNewNode="True" />
</LayoutGroup> </LayoutGroup>
<LayoutGroup Id="OfferOutRows" TextAlignMode="AlignWithChildren" Index="5" RelativeSize="100" Removed="True"> <LayoutGroup Id="OfferOutRows" TextAlignMode="AlignWithChildren" Index="5" RelativeSize="100" Removed="True">
<LayoutItem Id="OfferOutRows" TextAlignMode="AutoSize" RelativeSize="100" /> <LayoutItem Id="OfferOutRows" TextAlignMode="AutoSize" RelativeSize="100" />
@@ -28,5 +28,5 @@ using System.Runtime.InteropServices;
// //
// You can specify all the values or you can default the Revision and Build Numbers // You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
[assembly: AssemblyVersion("15.2.5.1001")] [assembly: AssemblyVersion("17.2.3.1002")]
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -15,7 +15,7 @@
<OldToolsVersion>3.5</OldToolsVersion> <OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation> <UpgradeBackupLocation>
</UpgradeBackupLocation> </UpgradeBackupLocation>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFrameworkProfile /> <TargetFrameworkProfile />
<PublishUrl>publish\</PublishUrl> <PublishUrl>publish\</PublishUrl>
<Install>true</Install> <Install>true</Install>
@@ -45,6 +45,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants> <DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType> <DebugType>none</DebugType>
@@ -53,8 +54,12 @@
<DefineConstants>TRACE</DefineConstants> <DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="BouncyCastle.Crypto, Version=1.8.8.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\BouncyCastle.NetCore.1.8.8\lib\net20\BouncyCastle.Crypto.dll</HintPath>
</Reference>
<Reference Include="DevExpress.Charts.v17.2.Core, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL"> <Reference Include="DevExpress.Charts.v17.2.Core, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
</Reference> </Reference>
@@ -251,6 +256,8 @@
<Compile Include="Module.Designer.cs"> <Compile Include="Module.Designer.cs">
<DependentUpon>Module.cs</DependentUpon> <DependentUpon>Module.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="NAV\AES.cs" />
<Compile Include="NAV\OnlineInvoiceHelper.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="DatabaseUpdate\Updater.cs" /> <Compile Include="DatabaseUpdate\Updater.cs" />
<Compile Include="StaticClass\RestAPI.cs" /> <Compile Include="StaticClass\RestAPI.cs" />
@@ -295,6 +302,7 @@
<DependentUpon>Model.DesignedDiffs.xafml</DependentUpon> <DependentUpon>Model.DesignedDiffs.xafml</DependentUpon>
<SubType>Designer</SubType> <SubType>Designer</SubType>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="NAV\XML\3.0\Specification.pdf" />
<None Include="packages.config" /> <None Include="packages.config" />
<None Include="ReadMe.txt" /> <None Include="ReadMe.txt" />
</ItemGroup> </ItemGroup>
@@ -331,6 +339,74 @@
<SubType>Designer</SubType> <SubType>Designer</SubType>
</None> </None>
</ItemGroup> </ItemGroup>
<ItemGroup>
<EmbeddedResource Include="NAV\XML\3.0\manageAnnulment.xml" />
<EmbeddedResource Include="NAV\XML\3.0\manageInvoice.xml" />
<EmbeddedResource Include="NAV\XML\3.0\queryInvoiceChainDigest.xml" />
<EmbeddedResource Include="NAV\XML\3.0\queryInvoiceCheck.xml" />
<EmbeddedResource Include="NAV\XML\3.0\queryInvoiceData.xml" />
<EmbeddedResource Include="NAV\XML\3.0\queryInvoiceDigest_inbound_invoice_chain.xml" />
<EmbeddedResource Include="NAV\XML\3.0\queryInvoiceDigest_outbound_query_params.xml" />
<EmbeddedResource Include="NAV\XML\3.0\queryTaxpayer.xml" />
<EmbeddedResource Include="NAV\XML\3.0\queryTransactionList.xml" />
<EmbeddedResource Include="NAV\XML\3.0\queryTransactionStatus.xml" />
<EmbeddedResource Include="NAV\XML\3.0\tokenExchange.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Belfoldi devizas szamla.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Belfoldi devizas vegszamla tobb eloleg tetel.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Belfoldi egyszerusitett szamla.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Belfoldi elolegszamla egysegar nelkul .xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Belfoldi elolegszamla.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Belfoldi ertekesites tobb AFA tipus.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Belfoldi termekertekesites AFA csoportok kozott.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Belfoldi termekertekesites maganszemelynek.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Belfoldi termekertekesites tetelbol adott engedmennyel.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Belfoldi termekertekesites.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Belfoldi vegszamla.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Eredeti szamla modositasokhoz.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Gyujtoszamla 1.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Gyujtoszamla 2.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Harmadik orszagbeli devizas szamla.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Modositas es ervenytelenites 1.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Modositas es ervenytelenites 2.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Tagorszagi devizas szamla.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Termekdijas szamla.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Teteladatok modositasa.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Teves termek helyesbitese 20.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Teves termek helyesbitese 21.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Teves termek helyesbitese.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Tobb szamla modositasa egy okirattal alap 1.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Tobb szamla modositasa egy okirattal alap 2.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Tobb szamla modositasa egy okirattal alap 3.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Tobb szamla modositasa egy okirattal.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Tobbszoros modositas 1.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Tobbszoros modositas 2.xml" />
<EmbeddedResource Include="NAV\XML\Data\Example\Uj kozlekedesi eszkoz export.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_invoiceAnnulment.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_invoiceData.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_invoiceHead.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_invoiceHeadEU.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_invoiceHeadNoEU.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_invoiceHeadPrivatePerson.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_invoiceLines.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_invoiceLinesEU.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_invoiceLinesNoEU.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_summaryByVatRate3Vat.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_summaryByVatRateEUVat.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_summaryByVatRateNoVat.xml" />
<EmbeddedResource Include="NAV\XML\Data\NAV_summaryByVatRateVat.xml" />
</ItemGroup>
<ItemGroup>
<None Include="UnusableNodes1.xml">
<DependentUpon>Model.DesignedDiffs.xafml</DependentUpon>
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="NAV\XML\Data\NAV_summaryByVatRateTAM.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="NAV\XML\Data\NAV_invoiceLinesTAM.xml" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets. Other similar extension points exist, see Microsoft.Common.targets.
+2 -1
View File
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<packages> <packages>
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net40" /> <package id="BouncyCastle.NetCore" version="1.8.8" targetFramework="net40" />
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net40" requireReinstallation="true" />
</packages> </packages>
+1 -1
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
+2 -2
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -22,7 +22,7 @@ Namespace My.Resources
'''<summary> '''<summary>
''' A strongly-typed resource class, for looking up localized strings, etc. ''' A strongly-typed resource class, for looking up localized strings, etc.
'''</summary> '''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _ <Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0"), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _ Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _ Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
+3 -3
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -15,7 +15,7 @@ Option Explicit On
Namespace My Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ <Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _ Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase Inherits Global.System.Configuration.ApplicationSettingsBase
@@ -29,7 +29,7 @@ Namespace My
Private Shared addedHandlerLockObject As New Object Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ <Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then If My.Application.SaveMySettingsOnExit Then
My.Settings.Save() My.Settings.Save()
End If End If
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -18,7 +18,7 @@
<SccLocalPath>SAK</SccLocalPath> <SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath> <SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider> <SccProvider>SAK</SccProvider>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileUpgradeFlags> <FileUpgradeFlags>
</FileUpgradeFlags> </FileUpgradeFlags>
<OldToolsVersion>4.0</OldToolsVersion> <OldToolsVersion>4.0</OldToolsVersion>
+4 -4
View File
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<configuration> <configuration>
<system.data> <system.data>
<DbProviderFactories> <DbProviderFactories>
<remove invariant="MySql.Data.MySqlClient" /> <remove invariant="MySql.Data.MySqlClient"/>
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.8.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" /> <add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.8.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"/>
</DbProviderFactories> </DbProviderFactories>
</system.data> </system.data>
</configuration> <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/></startup></configuration>
+3 -3
View File
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<packages> <packages>
<package id="Microsoft.Office.Interop.Outlook" version="14.0.0" targetFramework="net40" /> <package id="Microsoft.Office.Interop.Outlook" version="14.0.0" targetFramework="net40" />
<package id="MySql.Data" version="6.8.8" targetFramework="net40" /> <package id="MySql.Data" version="6.8.8" targetFramework="net40" requireReinstallation="true" />
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net40" /> <package id="Newtonsoft.Json" version="8.0.3" targetFramework="net40" requireReinstallation="true" />
<package id="Npgsql" version="2.2.7" targetFramework="net40" /> <package id="Npgsql" version="2.2.7" targetFramework="net40" requireReinstallation="true" />
</packages> </packages>
@@ -146,6 +146,7 @@ Public Class InvoiceHeader
Private _NAV_transactionId As String Private _NAV_transactionId As String
Private _NAV_InvoiceStatus As String Private _NAV_InvoiceStatus As String
Private _NAV_queryDate As DateTime Private _NAV_queryDate As DateTime
Private _NAV_statusInfo As String
'-- Nonpersistent objektumok a számla sor rögzítéséhez '-- Nonpersistent objektumok a számla sor rögzítéséhez
Private _row_CustomsTariffs As CustomsTariffs 'ITJ, SZJ, Vámtarifaszám stb. Private _row_CustomsTariffs As CustomsTariffs 'ITJ, SZJ, Vámtarifaszám stb.
@@ -1094,7 +1095,19 @@ Public Class InvoiceHeader
SetPropertyValue("NAV_queryDate", _NAV_queryDate, value) SetPropertyValue("NAV_queryDate", _NAV_queryDate, value)
End Set End Set
End Property End Property
''' <summary>
''' Utolsó státusz info ...
''' </summary>
''' <returns></returns>
<Size(255)>
Property NAV_statusInfo As String
Get
Return _NAV_statusInfo
End Get
Set(value As String)
SetPropertyValue(NameOf(NAV_statusInfo), _NAV_statusInfo, value)
End Set
End Property
'-- Nonpersistent property-k a számla sor rögzítéséhez '-- Nonpersistent property-k a számla sor rögzítéséhez
<NonPersistent()> <NonPersistent()>
<VisibleInListView(False)> <VisibleInListView(False)>
@@ -25,6 +25,7 @@ Public Class Customers
Private _CustomerNumber As String = "" 'Ügyfél azonosítója Private _CustomerNumber As String = "" 'Ügyfél azonosítója
Private _VATNumber As String 'Adószám (belföldi) Private _VATNumber As String 'Adószám (belföldi)
Private _VATNumberEU As String 'EU adószám Private _VATNumberEU As String 'EU adószám
Private _VATNumberOther As String '-- Egyéb adószám (3. országbeli)
Private _CustomersGLParameters As CustomersGLParameters 'Ügyfél főkönyvi kategária Private _CustomersGLParameters As CustomersGLParameters 'Ügyfél főkönyvi kategária
Private _CustomersNG As CustomersNG 'Ügyfél sorszám generátor Private _CustomersNG As CustomersNG 'Ügyfél sorszám generátor
Private _Pricing As Pricing 'Árképzés ha vevő az ügyfél Private _Pricing As Pricing 'Árképzés ha vevő az ügyfél
@@ -92,6 +93,8 @@ Public Class Customers
Private _NAV_queryTaxpayer As String Private _NAV_queryTaxpayer As String
Private _NAV_valid As Boolean Private _NAV_valid As Boolean
Private _NAV_queryDate As DateTime Private _NAV_queryDate As DateTime
Private _ExportMode As eExportMode '-- Belföldi, küldöldi, EU belfüldi ÁFA stb.
Private _IsPrivatePerson As Boolean '-- Magánszemély
Public Sub New(ByVal session As Session) Public Sub New(ByVal session As Session)
MyBase.New(session) MyBase.New(session)
@@ -178,7 +181,7 @@ Public Class Customers
SetPropertyValue("VATNumber", _VATNumber, value) SetPropertyValue("VATNumber", _VATNumber, value)
End Set End Set
End Property End Property
<RuleUniqueValue("Customers-VATNumberEU", DefaultContexts.Save, skipnulloremptyvalues:=True)> _ <RuleUniqueValue("Customers-VATNumberEU", DefaultContexts.Save, skipnulloremptyvalues:=True)>
Property VATNumberEU As String Property VATNumberEU As String
Get Get
Return _VATNumberEU Return _VATNumberEU
@@ -187,6 +190,19 @@ Public Class Customers
SetPropertyValue("VATNumberEU", _VATNumberEU, value) SetPropertyValue("VATNumberEU", _VATNumberEU, value)
End Set End Set
End Property End Property
''' <summary>
''' Adószám 3. országbeli
''' </summary>
''' <returns></returns>
<RuleRequiredField("Customers-VATNumberOther-Require", DefaultContexts.Save, TargetCriteria:="ExportMode IN (1,3) AND IsPrivatePerson<>True")>
Property VATNumberOther As String
Get
Return _VATNumberOther
End Get
Set(ByVal value As String)
SetPropertyValue("VATNumberOther", _VATNumberOther, value)
End Set
End Property
<RuleRequiredField("Customers-CustomersGLParameters", DefaultContexts.Save)> _ <RuleRequiredField("Customers-CustomersGLParameters", DefaultContexts.Save)> _
<VisibleInDetailView(False)> _ <VisibleInDetailView(False)> _
<VisibleInListView(False)> _ <VisibleInListView(False)> _
@@ -687,6 +703,30 @@ Public Class Customers
SetPropertyValue("NAV_queryDate", _NAV_queryDate, value) SetPropertyValue("NAV_queryDate", _NAV_queryDate, value)
End Set End Set
End Property End Property
''' <summary>
''' Export mód
''' </summary>
''' <returns></returns>
Public Property ExportMode As eExportMode
Get
Return _ExportMode
End Get
Set(value As eExportMode)
SetPropertyValue(NameOf(ExportMode), _ExportMode, value)
End Set
End Property
''' <summary>
''' Magánszemély ?
''' </summary>
''' <returns></returns>
Public Property IsPrivatePerson As Boolean
Get
Return _IsPrivatePerson
End Get
Set(value As Boolean)
SetPropertyValue("IsPrivatePerson", _IsPrivatePerson, value)
End Set
End Property
'-----ReadOnly--------------- '-----ReadOnly---------------
Overloads ReadOnly Property IsDeleted As Boolean Overloads ReadOnly Property IsDeleted As Boolean
Get Get
@@ -35,6 +35,7 @@ Public Class CustomersFrom '-- Ezek azok a cégek akik használják a programot
Private _NAV_xmlSignkey As String Private _NAV_xmlSignkey As String
Private _NAV_password As String Private _NAV_password As String
Private _NAV_exchangeKey As String Private _NAV_exchangeKey As String
Private _NAV_NumberGenerator As NumberGenerator
Public Overrides Sub AfterConstruction() Public Overrides Sub AfterConstruction()
MyBase.AfterConstruction() MyBase.AfterConstruction()
@@ -169,6 +170,18 @@ Public Class CustomersFrom '-- Ezek azok a cégek akik használják a programot
SetPropertyValue("NAV_exchangeKey", _NAV_exchangeKey, value) SetPropertyValue("NAV_exchangeKey", _NAV_exchangeKey, value)
End Set End Set
End Property End Property
''' <summary>
''' NAV RequestID numbergeneratora
''' </summary>
''' <returns></returns>
Property NAV_NumberGenerator As NumberGenerator
Get
Return _NAV_NumberGenerator
End Get
Set(value As NumberGenerator)
SetPropertyValue(NameOf(NAV_NumberGenerator), _NAV_NumberGenerator, value)
End Set
End Property
ReadOnly Property DefaultCustomerBankAccounts As CustomerBankAccounts ReadOnly Property DefaultCustomerBankAccounts As CustomerBankAccounts
Get Get
Dim _CustomerBankAccounts As CustomerBankAccounts = Nothing Dim _CustomerBankAccounts As CustomerBankAccounts = Nothing
@@ -9,8 +9,9 @@ Imports DevExpress.Persistent.Base
Imports DevExpress.Persistent.BaseImpl Imports DevExpress.Persistent.BaseImpl
Imports DevExpress.Persistent.Validation Imports DevExpress.Persistent.Validation
<DefaultClassOptions()> _ <DefaultClassOptions()>
<NavigationItem("GeneralStock")> _ <NavigationItem("GeneralStock")>
<RuleCriteria("Units - ShortName_NAV", DefaultContexts.Save, "ShortName_NAV IN ('PIECE', 'KILOGRAM', 'TON', 'KWH', 'DAY', 'HOUR', 'MINUTE', 'MONTH', 'LITER', 'KILOMETER', 'CUBIC_METER', 'METER', 'LINEAR_METER', 'CARTON', 'PACK', 'OWN')", SkipNullOrEmptyValues:=True)>
Public Class Units Public Class Units
Inherits BaseObject Inherits BaseObject
Private _ShortName As String Private _ShortName As String
@@ -18,6 +19,8 @@ Public Class Units
Private _Shortname_De As String Private _Shortname_De As String
Private _Description As String Private _Description As String
Private _DefaultForBusinnes As Boolean = False Private _DefaultForBusinnes As Boolean = False
Private _ShortName_NAV As String
Public Sub New(ByVal session As Session) Public Sub New(ByVal session As Session)
MyBase.New(session) MyBase.New(session)
End Sub End Sub
@@ -65,6 +68,18 @@ Public Class Units
SetPropertyValue("DefaultForBusinnes", _DefaultForBusinnes, value) SetPropertyValue("DefaultForBusinnes", _DefaultForBusinnes, value)
End Set End Set
End Property End Property
''' <summary>
''' NAV számla feladáshoz
''' </summary>
''' <returns></returns>
Property ShortName_NAV As String
Get
Return _ShortName_NAV
End Get
Set(value As String)
SetPropertyValue(NameOf(ShortName_NAV), _ShortName_NAV, value)
End Set
End Property
End Class End Class
@@ -43,7 +43,7 @@ Public Class NumberGenerator
Private _CurrentDay As Boolean Private _CurrentDay As Boolean
Private _CurrentDayFormat As String Private _CurrentDayFormat As String
Public Function GetNewNumber(ByVal NGO As NumberGenerator, Optional ByVal _YearString As String = "", Optional _MonthString As String = "") Public Function GetNewNumber(ByVal NGO As NumberGenerator, Optional ByVal _YearString As String = "", Optional _MonthString As String = "") As String
Dim _NGSemafor As NumberGeneratorSemafor Dim _NGSemafor As NumberGeneratorSemafor
If _YearString = "" Or _YearString Is Nothing Then If _YearString = "" Or _YearString Is Nothing Then
@@ -2781,7 +2781,6 @@
<Class Name="SISBusiness.Module.CustomersOrder" Caption="Beszállítók"> <Class Name="SISBusiness.Module.CustomersOrder" Caption="Beszállítók">
<OwnMembers> <OwnMembers>
<Member Name="CustomersOrderDocuments" Caption="Dokumentumok, paraméterek" /> <Member Name="CustomersOrderDocuments" Caption="Dokumentumok, paraméterek" />
<Member Name="DocumentPath" Caption="Könyvtár (Path)" />
</OwnMembers> </OwnMembers>
</Class> </Class>
<Class Name="SISBusiness.Module.CustomersOrderDocuments" Caption="Beszállítói dokumentációk"> <Class Name="SISBusiness.Module.CustomersOrderDocuments" Caption="Beszállítói dokumentációk">
+26 -21
View File
@@ -4545,8 +4545,8 @@
</NavigationItems> </NavigationItems>
<Options NAVProgramPath="c:\NAV\abevjava_start.bat" /> <Options NAVProgramPath="c:\NAV\abevjava_start.bat" />
<SchemaModules> <SchemaModules>
<SchemaModule Name="CloneObjectModule" Version="15.2.5.0" IsNewNode="True" /> <SchemaModule Name="CloneObjectModule" Version="17.2.3.0" IsNewNode="True" />
<SchemaModule Name="SystemModule" Version="15.2.5.0" IsNewNode="True" /> <SchemaModule Name="SystemModule" Version="17.2.3.0" IsNewNode="True" />
</SchemaModules> </SchemaModules>
<Validation> <Validation>
<Contexts> <Contexts>
@@ -11157,21 +11157,21 @@
</Items> </Items>
<Layout> <Layout>
<LayoutGroup Id="Main" RelativeSize="100" ImageName="" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" Caption="Main"> <LayoutGroup Id="Main" RelativeSize="100" ImageName="" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" Caption="Main">
<LayoutGroup Id="SimpleEditors" RelativeSize="40" ImageName="" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" Caption="SimpleEditors"> <LayoutGroup Id="SimpleEditors" RelativeSize="23.638613861386137" ImageName="" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" Caption="SimpleEditors">
<LayoutGroup Id="Autod257e2eb-d1ce-4fce-9922-dea39f6d87ed" ShowCaption="False" Direction="Horizontal" Index="0" RelativeSize="61" IsNewNode="True"> <LayoutGroup Id="Autod257e2eb-d1ce-4fce-9922-dea39f6d87ed" ShowCaption="False" Direction="Horizontal" Index="0" RelativeSize="70.157068062827221" IsNewNode="True">
<LayoutGroup Id="Customers_col1" ShowCaption="False" Index="0" RelativeSize="47" IsNewNode="True"> <LayoutGroup Id="Customers_col1" ShowCaption="False" Index="0" RelativeSize="47.413793103448278" IsNewNode="True">
<LayoutItem Id="CustomerNumber" ViewItem="CustomerNumber" SizeConstraintsType="Default" Index="0" RelativeSize="24" IsNewNode="True" /> <LayoutItem Id="CustomerNumber" ViewItem="CustomerNumber" SizeConstraintsType="Default" Index="0" RelativeSize="23.880597014925375" IsNewNode="True" />
<LayoutItem Id="Name" ViewItem="Name" SizeConstraintsType="Default" Index="1" RelativeSize="18" IsNewNode="True" /> <LayoutItem Id="Name" ViewItem="Name" SizeConstraintsType="Default" Index="1" RelativeSize="17.910447761194028" IsNewNode="True" />
<LayoutItem Id="FullName" ViewItem="FullName" SizeConstraintsType="Default" Index="2" RelativeSize="18" IsNewNode="True" /> <LayoutItem Id="FullName" ViewItem="FullName" SizeConstraintsType="Default" Index="2" RelativeSize="17.910447761194028" IsNewNode="True" />
<LayoutItem Id="CustomersNG" ViewItem="CustomersNG" SizeConstraintsType="Default" Index="3" RelativeSize="18" IsNewNode="True" /> <LayoutItem Id="CustomersNG" ViewItem="CustomersNG" SizeConstraintsType="Default" Index="3" RelativeSize="17.910447761194028" IsNewNode="True" />
<LayoutItem Id="Email" ViewItem="Email" SizeConstraintsType="Default" Index="4" RelativeSize="20" IsNewNode="True" /> <LayoutItem Id="Email" ViewItem="Email" SizeConstraintsType="Default" Index="4" RelativeSize="22.388059701492537" IsNewNode="True" />
</LayoutGroup> </LayoutGroup>
<LayoutGroup Id="Customers_col2" ShowCaption="False" Index="1" RelativeSize="52" IsNewNode="True"> <LayoutGroup Id="Customers_col2" ShowCaption="False" Index="1" RelativeSize="52.586206896551722" IsNewNode="True">
<LayoutItem Id="IsDefault" ViewItem="IsDefault" SizeConstraintsType="Default" Index="0" RelativeSize="24" IsNewNode="True" /> <LayoutItem Id="IsDefault" ViewItem="IsDefault" SizeConstraintsType="Default" Index="0" RelativeSize="23.880597014925375" IsNewNode="True" />
<LayoutItem Id="VATNumber" ViewItem="VATNumber" SizeConstraintsType="Default" Index="1" RelativeSize="18" IsNewNode="True" /> <LayoutItem Id="VATNumber" ViewItem="VATNumber" SizeConstraintsType="Default" Index="1" RelativeSize="17.910447761194028" IsNewNode="True" />
<LayoutItem Id="VATNumberEU" ViewItem="VATNumberEU" SizeConstraintsType="Default" Index="2" RelativeSize="18" IsNewNode="True" /> <LayoutItem Id="VATNumberEU" ViewItem="VATNumberEU" SizeConstraintsType="Default" Index="2" RelativeSize="17.910447761194028" IsNewNode="True" />
<LayoutItem Id="WebSite" ViewItem="WebSite" SizeConstraintsType="Default" Index="3" RelativeSize="18" IsNewNode="True" /> <LayoutItem Id="WebSite" ViewItem="WebSite" SizeConstraintsType="Default" Index="3" RelativeSize="17.910447761194028" IsNewNode="True" />
<LayoutItem Id="CompanyRegistrationNumber" ViewItem="CompanyRegistrationNumber" SizeConstraintsType="Default" Index="4" RelativeSize="20" IsNewNode="True" /> <LayoutItem Id="CompanyRegistrationNumber" ViewItem="CompanyRegistrationNumber" SizeConstraintsType="Default" Index="4" RelativeSize="22.388059701492537" IsNewNode="True" />
</LayoutGroup> </LayoutGroup>
</LayoutGroup> </LayoutGroup>
<LayoutGroup Id="Customers" Index="0" RelativeSize="66" Caption="Saját cég adatok" ImageName="" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" Removed="True"> <LayoutGroup Id="Customers" Index="0" RelativeSize="66" Caption="Saját cég adatok" ImageName="" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" Removed="True">
@@ -11221,17 +11221,16 @@
<LayoutItem Id="QualityOption" SizeConstraintsType="Default" RelativeSize="7" ViewItem="QualityOption" Removed="True" /> <LayoutItem Id="QualityOption" SizeConstraintsType="Default" RelativeSize="7" ViewItem="QualityOption" Removed="True" />
</LayoutGroup> </LayoutGroup>
</LayoutGroup> </LayoutGroup>
<LayoutGroup Id="Party" Index="1" RelativeSize="38" ImageName="" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" Caption="Party"> <LayoutGroup Id="Party" Index="1" RelativeSize="29.842931937172775" ImageName="" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" Caption="Party">
<LayoutItem Id="Address1" Index="0" RelativeSize="33" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" SizeConstraintsType="Default" ViewItem="Address1" /> <LayoutItem Id="Address1" Index="0" RelativeSize="47.368421052631582" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" SizeConstraintsType="Default" ViewItem="Address1" />
<LayoutItem Id="Address2" Index="1" RelativeSize="29" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" SizeConstraintsType="Default" ViewItem="Address2" /> <LayoutItem Id="Address2" Index="1" RelativeSize="52.631578947368418" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" SizeConstraintsType="Default" ViewItem="Address2" />
<LayoutItem Id="Description" Index="2" RelativeSize="37" ViewItem="Description" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" SizeConstraintsType="Default" IsNewNode="True" />
<LayoutItem Id="DisplayName" ViewItem="DisplayName" Removed="True" /> <LayoutItem Id="DisplayName" ViewItem="DisplayName" Removed="True" />
<LayoutItem Id="Photo" ViewItem="Photo" Removed="True" /> <LayoutItem Id="Photo" ViewItem="Photo" Removed="True" />
</LayoutGroup> </LayoutGroup>
<LayoutGroup Id="CustomersFrom" Removed="True" /> <LayoutGroup Id="CustomersFrom" Removed="True" />
<LayoutGroup Id="Organization" Removed="True" /> <LayoutGroup Id="Organization" Removed="True" />
</LayoutGroup> </LayoutGroup>
<TabbedGroup Id="Tabs" Index="1" RelativeSize="59" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default"> <TabbedGroup Id="Tabs" Index="1" RelativeSize="76.361386138613867" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default">
<LayoutGroup Id="Item1" ShowCaption="True" CaptionLocation="Top" Direction="Vertical" Index="0" RelativeSize="100" Caption="További címek" ImageName="mail2" IsNewNode="True"> <LayoutGroup Id="Item1" ShowCaption="True" CaptionLocation="Top" Direction="Vertical" Index="0" RelativeSize="100" Caption="További címek" ImageName="mail2" IsNewNode="True">
<LayoutItem Id="CustomersAddress" ViewItem="CustomersAddress" Index="0" RelativeSize="100" ShowCaption="False" SizeConstraintsType="Default" IsNewNode="True" /> <LayoutItem Id="CustomersAddress" ViewItem="CustomersAddress" Index="0" RelativeSize="100" ShowCaption="False" SizeConstraintsType="Default" IsNewNode="True" />
</LayoutGroup> </LayoutGroup>
@@ -11256,9 +11255,15 @@
<LayoutGroup Id="ContractProductsCredit" Index="5" RelativeSize="100" ImageName="creditcards" Removed="True"> <LayoutGroup Id="ContractProductsCredit" Index="5" RelativeSize="100" ImageName="creditcards" Removed="True">
<LayoutItem Id="ContractProductsCredit" SizeConstraintsType="Default" RelativeSize="100" ViewItem="ContractProductsCredit" /> <LayoutItem Id="ContractProductsCredit" SizeConstraintsType="Default" RelativeSize="100" ViewItem="ContractProductsCredit" />
</LayoutGroup> </LayoutGroup>
<LayoutGroup Id="Customers_BusinessDirectory" Index="5" RelativeSize="100">
<LayoutItem Id="Customers_BusinessDirectory" RelativeSize="100" />
</LayoutGroup>
<LayoutGroup Id="CustomersCCustomers" Index="5" RelativeSize="100" ImageName="BO_Unknown" Removed="True"> <LayoutGroup Id="CustomersCCustomers" Index="5" RelativeSize="100" ImageName="BO_Unknown" Removed="True">
<LayoutItem Id="CustomersCCustomers" SizeConstraintsType="Default" RelativeSize="100" ViewItem="CustomersCCustomers" /> <LayoutItem Id="CustomersCCustomers" SizeConstraintsType="Default" RelativeSize="100" ViewItem="CustomersCCustomers" />
</LayoutGroup> </LayoutGroup>
<LayoutGroup Id="OfferOutRows" Index="6" RelativeSize="100">
<LayoutItem Id="OfferOutRows" RelativeSize="100" />
</LayoutGroup>
<LayoutGroup Id="CRM_Opportunities" RelativeSize="100" ImageName="BO_Opportunity" Caption="CRM ügyek" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" Removed="True"> <LayoutGroup Id="CRM_Opportunities" RelativeSize="100" ImageName="BO_Opportunity" Caption="CRM ügyek" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" Removed="True">
<LayoutItem Id="CRM_Opportunities" RelativeSize="100" ViewItem="CRM_Opportunities" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" /> <LayoutItem Id="CRM_Opportunities" RelativeSize="100" ViewItem="CRM_Opportunities" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" />
</LayoutGroup> </LayoutGroup>
+1 -1
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -28,5 +28,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below: ' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")> ' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("17.2.3.1004")> <Assembly: AssemblyVersion("17.2.3.1005")>
+2 -2
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -22,7 +22,7 @@ Namespace My.Resources
'''<summary> '''<summary>
''' A strongly-typed resource class, for looking up localized strings, etc. ''' A strongly-typed resource class, for looking up localized strings, etc.
'''</summary> '''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _ <Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0"), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _ Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _ Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
+3 -3
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -15,7 +15,7 @@ Option Explicit On
Namespace My Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ <Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _ Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase Inherits Global.System.Configuration.ApplicationSettingsBase
@@ -29,7 +29,7 @@ Namespace My
Private Shared addedHandlerLockObject As New Object Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ <Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then If My.Application.SaveMySettingsOnExit Then
My.Settings.Save() My.Settings.Save()
End If End If
@@ -1 +1,3 @@
DevExpress.ExpressApp.ViewController, DevExpress.ExpressApp.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a DevExpress.ExpressApp.ViewController, DevExpress.ExpressApp.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
DevExpress.ExpressApp.SystemModule.SystemModule, DevExpress.ExpressApp.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+7 -2
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -18,7 +18,7 @@
<SccLocalPath>SAK</SccLocalPath> <SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath> <SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider> <SccProvider>SAK</SccProvider>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileUpgradeFlags> <FileUpgradeFlags>
</FileUpgradeFlags> </FileUpgradeFlags>
<OldToolsVersion>4.0</OldToolsVersion> <OldToolsVersion>4.0</OldToolsVersion>
@@ -113,6 +113,7 @@
<DebugType>None</DebugType> <DebugType>None</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget> <PlatformTarget>AnyCPU</PlatformTarget>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="DevExpress.ExpressApp.Chart.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" /> <Reference Include="DevExpress.ExpressApp.Chart.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
@@ -2571,6 +2572,10 @@
</EmbeddedResource> </EmbeddedResource>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="UnusableNodes_hu.xml">
<DependentUpon>Model.DesignedDiffs.xafml</DependentUpon>
<SubType>Designer</SubType>
</None>
<None Include="packages.config" /> <None Include="packages.config" />
<None Include="Service References\MNBArfolyamService\Reference.svcmap"> <None Include="Service References\MNBArfolyamService\Reference.svcmap">
<Generator>WCF Proxy Generator</Generator> <Generator>WCF Proxy Generator</Generator>
@@ -6,5 +6,5 @@
cause the file to be unrecognizable by the program. cause the file to be unrecognizable by the program.
--> -->
<GenericObjectDataSource DisplayName="GetCurrenciesResponseBody" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource"> <GenericObjectDataSource DisplayName="GetCurrenciesResponseBody" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>SISBusiness.Module.MNBArfolyamService.GetCurrenciesResponseBody, Service References.MNBArfolyamService.Reference.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo> <TypeInfo>SISBusiness.Module.MNBArfolyamService.GetCurrenciesResponseBody, Service References.MNBArfolyamService.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource> </GenericObjectDataSource>
@@ -6,5 +6,5 @@
cause the file to be unrecognizable by the program. cause the file to be unrecognizable by the program.
--> -->
<GenericObjectDataSource DisplayName="GetCurrencyUnitsResponseBody" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource"> <GenericObjectDataSource DisplayName="GetCurrencyUnitsResponseBody" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>SISBusiness.Module.MNBArfolyamService.GetCurrencyUnitsResponseBody, Service References.MNBArfolyamService.Reference.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo> <TypeInfo>SISBusiness.Module.MNBArfolyamService.GetCurrencyUnitsResponseBody, Service References.MNBArfolyamService.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource> </GenericObjectDataSource>
@@ -6,5 +6,5 @@
cause the file to be unrecognizable by the program. cause the file to be unrecognizable by the program.
--> -->
<GenericObjectDataSource DisplayName="GetCurrentExchangeRatesResponseBody" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource"> <GenericObjectDataSource DisplayName="GetCurrentExchangeRatesResponseBody" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>SISBusiness.Module.MNBArfolyamService.GetCurrentExchangeRatesResponseBody, Service References.MNBArfolyamService.Reference.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo> <TypeInfo>SISBusiness.Module.MNBArfolyamService.GetCurrentExchangeRatesResponseBody, Service References.MNBArfolyamService.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource> </GenericObjectDataSource>
@@ -6,5 +6,5 @@
cause the file to be unrecognizable by the program. cause the file to be unrecognizable by the program.
--> -->
<GenericObjectDataSource DisplayName="GetDateIntervalResponseBody" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource"> <GenericObjectDataSource DisplayName="GetDateIntervalResponseBody" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>SISBusiness.Module.MNBArfolyamService.GetDateIntervalResponseBody, Service References.MNBArfolyamService.Reference.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo> <TypeInfo>SISBusiness.Module.MNBArfolyamService.GetDateIntervalResponseBody, Service References.MNBArfolyamService.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource> </GenericObjectDataSource>
@@ -6,5 +6,5 @@
cause the file to be unrecognizable by the program. cause the file to be unrecognizable by the program.
--> -->
<GenericObjectDataSource DisplayName="GetExchangeRatesResponseBody" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource"> <GenericObjectDataSource DisplayName="GetExchangeRatesResponseBody" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>SISBusiness.Module.MNBArfolyamService.GetExchangeRatesResponseBody, Service References.MNBArfolyamService.Reference.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo> <TypeInfo>SISBusiness.Module.MNBArfolyamService.GetExchangeRatesResponseBody, Service References.MNBArfolyamService.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource> </GenericObjectDataSource>
@@ -6,5 +6,5 @@
cause the file to be unrecognizable by the program. cause the file to be unrecognizable by the program.
--> -->
<GenericObjectDataSource DisplayName="GetInfoResponseBody" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource"> <GenericObjectDataSource DisplayName="GetInfoResponseBody" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>SISBusiness.Module.MNBArfolyamService.GetInfoResponseBody, Service References.MNBArfolyamService.Reference.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo> <TypeInfo>SISBusiness.Module.MNBArfolyamService.GetInfoResponseBody, Service References.MNBArfolyamService.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource> </GenericObjectDataSource>
+3 -5
View File
@@ -26,19 +26,17 @@
</sharedListeners> </sharedListeners>
</system.diagnostics> </system.diagnostics>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup> </startup>
<system.serviceModel> <system.serviceModel>
<bindings> <bindings>
<basicHttpBinding> <basicHttpBinding>
<binding name="BasicHttpBinding_MNBArfolyamServiceSoap" /> <binding name="BasicHttpBinding_MNBArfolyamServiceSoap"/>
</basicHttpBinding> </basicHttpBinding>
</bindings> </bindings>
<client> <client>
<endpoint address="http://www.mnb.hu/arfolyamok.asmx" binding="basicHttpBinding" <endpoint address="http://www.mnb.hu/arfolyamok.asmx" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_MNBArfolyamServiceSoap" contract="MNBArfolyamService.MNBArfolyamServiceSoap" name="BasicHttpBinding_MNBArfolyamServiceSoap"/>
bindingConfiguration="BasicHttpBinding_MNBArfolyamServiceSoap"
contract="MNBArfolyamService.MNBArfolyamServiceSoap" name="BasicHttpBinding_MNBArfolyamServiceSoap" />
</client> </client>
</system.serviceModel> </system.serviceModel>
</configuration> </configuration>
+13 -22
View File
@@ -7,28 +7,19 @@
<section name="Services_VAT" type="System.Configuration.NameValueSectionHandler"/> <section name="Services_VAT" type="System.Configuration.NameValueSectionHandler"/>
</configSections> </configSections>
<appSettings> <appSettings>
<!--0=Reader, 1=Publisher, 2=Both--> <add key="RunningMode" value="0" />
<add key="RunningMode" value="0"/> <add key="Factory_HostName" value="node1.mq3c.hu" />
<add key="Factory_HostName" value="node1.mq3c.hu"></add> <add key="Factory_UserName" value="sis_testing" />
<add key="Factory_UserName" value="sis_testing"></add> <add key="Factory_Password" value="Iet3ooko" />
<add key="Factory_Password" value="Iet3ooko"></add> <add key="Factory_VirtualHost" value="testing" />
<!--<add key="Factory_VirtualHost" value="sis_jatszos"></add>--> <add key="Queue_Name" value="sis.sis3cteszt.rpc" />
<add key="Factory_VirtualHost" value="testing"></add> <add key="Exchange_Name" value="sis.sis3cteszt.out" />
<!--Fogadáshoz ...--> <add key="Exchange_RoutingKey" value="dh.dh3cteszt.rpc" />
<add key="Queue_Name" value="sis.sis3cteszt.rpc"></add> <add key="Exchange_RoutingKey_Error" value="dh.dh3cteszt.rpc" />
<!--<add key="Queue_Name" value="sis.3cteszt.ugyfelteszt"></add>--> <add key="Exchange_RoutingKey_Alert" value="dh.dh3cteszt.rpc" />
<add key="CustomersFrom" value="fa802589-acd5-437b-a8d9-cf2eb96af21c" />
<!--Küldéshez--> <add key="ErrorLogPath" value="Path=CurrentDirectory;FileName=WIN_RabbitMQ.log" />
<add key="Exchange_Name" value="sis.sis3cteszt.out"/> <add key="Languages" value="hu" />
<add key="Exchange_RoutingKey" value="dh.dh3cteszt.rpc"/>
<add key="Exchange_RoutingKey_Error" value="dh.dh3cteszt.rpc"/>
<add key="Exchange_RoutingKey_Alert" value="dh.dh3cteszt.rpc"/>
<!--<add key="Exchange_Name" value=""/>
<add key="Exchange_RoutingKey" value="RDBH.queue.ok"/>-->
<!--Egyéb-->
<add key="CustomersFrom" value="fa802589-acd5-437b-a8d9-cf2eb96af21c"/>
<!--0: CurrentDirectory-->
<add key="ErrorLogPath" value="Path=CurrentDirectory;FileName=WIN_RabbitMQ.log"/>
</appSettings> </appSettings>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"></supportedRuntime> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"></supportedRuntime>
+1 -1
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
+2 -2
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -22,7 +22,7 @@ Namespace My.Resources
'''<summary> '''<summary>
''' A strongly-typed resource class, for looking up localized strings, etc. ''' A strongly-typed resource class, for looking up localized strings, etc.
'''</summary> '''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _ <Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0"), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _ Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _ Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
+3 -3
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -15,7 +15,7 @@ Option Explicit On
Namespace My Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ <Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _ Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase Inherits Global.System.Configuration.ApplicationSettingsBase
@@ -29,7 +29,7 @@ Namespace My
Private Shared addedHandlerLockObject As New Object Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ <Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then If My.Application.SaveMySettingsOnExit Then
My.Settings.Save() My.Settings.Save()
End If End If
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -20,7 +20,7 @@
<SccLocalPath>SAK</SccLocalPath> <SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath> <SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider> <SccProvider>SAK</SccProvider>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileUpgradeFlags> <FileUpgradeFlags>
</FileUpgradeFlags> </FileUpgradeFlags>
<OldToolsVersion>4.0</OldToolsVersion> <OldToolsVersion>4.0</OldToolsVersion>
+11 -13
View File
@@ -7,20 +7,20 @@
<add key="Languages" value="en;hu" /> <add key="Languages" value="en;hu" />
<add key="ClientSettingsProvider.ServiceUri" value="" /> <add key="ClientSettingsProvider.ServiceUri" value="" />
<add key="Uri" value="http://3conline.com:88/api/" /> <add key="Uri" value="http://3conline.com:88/api/" />
<add key="GeocodeAPIKey" value="AIzaSyD4RgVEapyYNlAgjemLgtbpOEVC2p2yXY4"/> <add key="GeocodeAPIKey" value="AIzaSyD4RgVEapyYNlAgjemLgtbpOEVC2p2yXY4" />
<add key="BingMapsKey" value="AkuhLMqiOJ6mqhY8zVPQCLMNFPEP0b4neaExb_eolTgT4Q0hF3098zXBJHMQa1WI"/> <add key="BingMapsKey" value="AkuhLMqiOJ6mqhY8zVPQCLMNFPEP0b4neaExb_eolTgT4Q0hF3098zXBJHMQa1WI" />
</appSettings> </appSettings>
<connectionStrings> <connectionStrings>
<add name="ConnectionString" connectionString="Integrated Security=SSPI;Pooling=false;Data Source=SISNBOOK7\SIS;Initial Catalog=FETOOLS" /> <add name="ConnectionString" connectionString="Integrated Security=SSPI;Pooling=false;Data Source=SISNBOOK7\SIS;Initial Catalog=FETOOLS"/>
</connectionStrings> </connectionStrings>
<system.diagnostics> <system.diagnostics>
<switches> <switches>
<!-- Use the one of predefined values: 0-Off, 1-Errors, 2-Warnings, 3-Info, 4-Verbose. The default value is 3. --> <!-- Use the one of predefined values: 0-Off, 1-Errors, 2-Warnings, 3-Info, 4-Verbose. The default value is 3. -->
<add name="eXpressAppFramework" value="3" /> <add name="eXpressAppFramework" value="3"/>
<!-- <!--
<add name="XPO" value="3" /> <add name="XPO" value="3" />
--> -->
<add name="AllowDebugXtraReportScripts" value="False" /> <add name="AllowDebugXtraReportScripts" value="False"/>
</switches> </switches>
</system.diagnostics> </system.diagnostics>
<!-- <!--
@@ -31,28 +31,26 @@
<system.serviceModel> <system.serviceModel>
<bindings> <bindings>
<basicHttpBinding> <basicHttpBinding>
<binding name="BasicHttpBinding_MNBArfolyamServiceSoap" /> <binding name="BasicHttpBinding_MNBArfolyamServiceSoap"/>
</basicHttpBinding> </basicHttpBinding>
</bindings> </bindings>
<client> <client>
<endpoint address="http://www.mnb.hu/arfolyamok.asmx" binding="basicHttpBinding" <endpoint address="http://www.mnb.hu/arfolyamok.asmx" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_MNBArfolyamServiceSoap" contract="MNBArfolyamService.MNBArfolyamServiceSoap" name="BasicHttpBinding_MNBArfolyamServiceSoap"/>
bindingConfiguration="BasicHttpBinding_MNBArfolyamServiceSoap"
contract="MNBArfolyamService.MNBArfolyamServiceSoap" name="BasicHttpBinding_MNBArfolyamServiceSoap" />
</client> </client>
</system.serviceModel> </system.serviceModel>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" /> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup> </startup>
<system.web> <system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider"> <membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers> <providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" /> <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri=""/>
</providers> </providers>
</membership> </membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true"> <roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers> <providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" /> <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400"/>
</providers> </providers>
</roleManager> </roleManager>
</system.web> </system.web>
</configuration> </configuration>
+2 -2
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<packages> <packages>
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net40" /> <package id="Newtonsoft.Json" version="8.0.3" targetFramework="net40" requireReinstallation="true" />
<package id="Npgsql" version="2.2.7" targetFramework="net40" /> <package id="Npgsql" version="2.2.7" targetFramework="net40" requireReinstallation="true" />
</packages> </packages>
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
+2 -2
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -22,7 +22,7 @@ Namespace My.Resources
'''<summary> '''<summary>
''' A strongly-typed resource class, for looking up localized strings, etc. ''' A strongly-typed resource class, for looking up localized strings, etc.
'''</summary> '''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _ <Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0"), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _ Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _ Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
+3 -3
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -15,7 +15,7 @@ Option Explicit On
Namespace My Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ <Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _ Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase Inherits Global.System.Configuration.ApplicationSettingsBase
@@ -29,7 +29,7 @@ Namespace My
Private Shared addedHandlerLockObject As New Object Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ <Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then If My.Application.SaveMySettingsOnExit Then
My.Settings.Save() My.Settings.Save()
End If End If
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -20,7 +20,7 @@
<SccLocalPath>SAK</SccLocalPath> <SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath> <SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider> <SccProvider>SAK</SccProvider>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileUpgradeFlags> <FileUpgradeFlags>
</FileUpgradeFlags> </FileUpgradeFlags>
<OldToolsVersion>4.0</OldToolsVersion> <OldToolsVersion>4.0</OldToolsVersion>
@@ -11,135 +11,9 @@
Option Strict On Option Strict On
Option Explicit On Option Explicit On
Imports System
Imports System.Runtime.Serialization
Namespace MNBArfolyamService Namespace MNBArfolyamService
<System.Diagnostics.DebuggerStepThroughAttribute(), _
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
System.Runtime.Serialization.DataContractAttribute(Name:="GetCurrenciesRequestBody", [Namespace]:="http://www.mnb.hu/webservices/"), _
System.SerializableAttribute()> _
Partial Public Class GetCurrenciesRequestBody
Inherits Object
Implements System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged
<System.NonSerializedAttribute()> _
Private extensionDataField As System.Runtime.Serialization.ExtensionDataObject
<Global.System.ComponentModel.BrowsableAttribute(false)> _
Public Property ExtensionData() As System.Runtime.Serialization.ExtensionDataObject Implements System.Runtime.Serialization.IExtensibleDataObject.ExtensionData
Get
Return Me.extensionDataField
End Get
Set
Me.extensionDataField = value
End Set
End Property
Public Event PropertyChanged As System.ComponentModel.PropertyChangedEventHandler Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Protected Sub RaisePropertyChanged(ByVal propertyName As String)
Dim propertyChanged As System.ComponentModel.PropertyChangedEventHandler = Me.PropertyChangedEvent
If (Not (propertyChanged) Is Nothing) Then
propertyChanged(Me, New System.ComponentModel.PropertyChangedEventArgs(propertyName))
End If
End Sub
End Class
<System.Diagnostics.DebuggerStepThroughAttribute(), _
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
System.Runtime.Serialization.DataContractAttribute(Name:="GetCurrentExchangeRatesRequestBody", [Namespace]:="http://www.mnb.hu/webservices/"), _
System.SerializableAttribute()> _
Partial Public Class GetCurrentExchangeRatesRequestBody
Inherits Object
Implements System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged
<System.NonSerializedAttribute()> _
Private extensionDataField As System.Runtime.Serialization.ExtensionDataObject
<Global.System.ComponentModel.BrowsableAttribute(false)> _
Public Property ExtensionData() As System.Runtime.Serialization.ExtensionDataObject Implements System.Runtime.Serialization.IExtensibleDataObject.ExtensionData
Get
Return Me.extensionDataField
End Get
Set
Me.extensionDataField = value
End Set
End Property
Public Event PropertyChanged As System.ComponentModel.PropertyChangedEventHandler Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Protected Sub RaisePropertyChanged(ByVal propertyName As String)
Dim propertyChanged As System.ComponentModel.PropertyChangedEventHandler = Me.PropertyChangedEvent
If (Not (propertyChanged) Is Nothing) Then
propertyChanged(Me, New System.ComponentModel.PropertyChangedEventArgs(propertyName))
End If
End Sub
End Class
<System.Diagnostics.DebuggerStepThroughAttribute(), _
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
System.Runtime.Serialization.DataContractAttribute(Name:="GetDateIntervalRequestBody", [Namespace]:="http://www.mnb.hu/webservices/"), _
System.SerializableAttribute()> _
Partial Public Class GetDateIntervalRequestBody
Inherits Object
Implements System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged
<System.NonSerializedAttribute()> _
Private extensionDataField As System.Runtime.Serialization.ExtensionDataObject
<Global.System.ComponentModel.BrowsableAttribute(false)> _
Public Property ExtensionData() As System.Runtime.Serialization.ExtensionDataObject Implements System.Runtime.Serialization.IExtensibleDataObject.ExtensionData
Get
Return Me.extensionDataField
End Get
Set
Me.extensionDataField = value
End Set
End Property
Public Event PropertyChanged As System.ComponentModel.PropertyChangedEventHandler Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Protected Sub RaisePropertyChanged(ByVal propertyName As String)
Dim propertyChanged As System.ComponentModel.PropertyChangedEventHandler = Me.PropertyChangedEvent
If (Not (propertyChanged) Is Nothing) Then
propertyChanged(Me, New System.ComponentModel.PropertyChangedEventArgs(propertyName))
End If
End Sub
End Class
<System.Diagnostics.DebuggerStepThroughAttribute(), _
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
System.Runtime.Serialization.DataContractAttribute(Name:="GetInfoRequestBody", [Namespace]:="http://www.mnb.hu/webservices/"), _
System.SerializableAttribute()> _
Partial Public Class GetInfoRequestBody
Inherits Object
Implements System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged
<System.NonSerializedAttribute()> _
Private extensionDataField As System.Runtime.Serialization.ExtensionDataObject
<Global.System.ComponentModel.BrowsableAttribute(false)> _
Public Property ExtensionData() As System.Runtime.Serialization.ExtensionDataObject Implements System.Runtime.Serialization.IExtensibleDataObject.ExtensionData
Get
Return Me.extensionDataField
End Get
Set
Me.extensionDataField = value
End Set
End Property
Public Event PropertyChanged As System.ComponentModel.PropertyChangedEventHandler Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Protected Sub RaisePropertyChanged(ByVal propertyName As String)
Dim propertyChanged As System.ComponentModel.PropertyChangedEventHandler = Me.PropertyChangedEvent
If (Not (propertyChanged) Is Nothing) Then
propertyChanged(Me, New System.ComponentModel.PropertyChangedEventArgs(propertyName))
End If
End Sub
End Class
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0"), _ <System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0"), _
System.ServiceModel.ServiceContractAttribute([Namespace]:="http://www.mnb.hu/webservices/", ConfigurationName:="MNBArfolyamService.MNBArfolyamServiceSoap")> _ System.ServiceModel.ServiceContractAttribute([Namespace]:="http://www.mnb.hu/webservices/", ConfigurationName:="MNBArfolyamService.MNBArfolyamServiceSoap")> _
Public Interface MNBArfolyamServiceSoap Public Interface MNBArfolyamServiceSoap
@@ -184,13 +58,13 @@ Namespace MNBArfolyamService
Partial Public Class GetCurrenciesRequest Partial Public Class GetCurrenciesRequest
<System.ServiceModel.MessageBodyMemberAttribute([Namespace]:="http://www.mnb.hu/webservices/", Order:=0)> _ <System.ServiceModel.MessageBodyMemberAttribute([Namespace]:="http://www.mnb.hu/webservices/", Order:=0)> _
Public GetCurrencies As MNBArfolyamService.GetCurrenciesRequestBody Public GetCurrencies As SISBusiness.[Module].MNBArfolyamService.GetCurrenciesRequestBody
Public Sub New() Public Sub New()
MyBase.New MyBase.New
End Sub End Sub
Public Sub New(ByVal GetCurrencies As MNBArfolyamService.GetCurrenciesRequestBody) Public Sub New(ByVal GetCurrencies As SISBusiness.[Module].MNBArfolyamService.GetCurrenciesRequestBody)
MyBase.New MyBase.New
Me.GetCurrencies = GetCurrencies Me.GetCurrencies = GetCurrencies
End Sub End Sub
@@ -260,13 +134,13 @@ Namespace MNBArfolyamService
Partial Public Class GetCurrentExchangeRatesRequest Partial Public Class GetCurrentExchangeRatesRequest
<System.ServiceModel.MessageBodyMemberAttribute([Namespace]:="http://www.mnb.hu/webservices/", Order:=0)> _ <System.ServiceModel.MessageBodyMemberAttribute([Namespace]:="http://www.mnb.hu/webservices/", Order:=0)> _
Public GetCurrentExchangeRates As MNBArfolyamService.GetCurrentExchangeRatesRequestBody Public GetCurrentExchangeRates As SISBusiness.[Module].MNBArfolyamService.GetCurrentExchangeRatesRequestBody
Public Sub New() Public Sub New()
MyBase.New MyBase.New
End Sub End Sub
Public Sub New(ByVal GetCurrentExchangeRates As MNBArfolyamService.GetCurrentExchangeRatesRequestBody) Public Sub New(ByVal GetCurrentExchangeRates As SISBusiness.[Module].MNBArfolyamService.GetCurrentExchangeRatesRequestBody)
MyBase.New MyBase.New
Me.GetCurrentExchangeRates = GetCurrentExchangeRates Me.GetCurrentExchangeRates = GetCurrentExchangeRates
End Sub End Sub
@@ -298,13 +172,13 @@ Namespace MNBArfolyamService
Partial Public Class GetDateIntervalRequest Partial Public Class GetDateIntervalRequest
<System.ServiceModel.MessageBodyMemberAttribute([Namespace]:="http://www.mnb.hu/webservices/", Order:=0)> _ <System.ServiceModel.MessageBodyMemberAttribute([Namespace]:="http://www.mnb.hu/webservices/", Order:=0)> _
Public GetDateInterval As MNBArfolyamService.GetDateIntervalRequestBody Public GetDateInterval As SISBusiness.[Module].MNBArfolyamService.GetDateIntervalRequestBody
Public Sub New() Public Sub New()
MyBase.New MyBase.New
End Sub End Sub
Public Sub New(ByVal GetDateInterval As MNBArfolyamService.GetDateIntervalRequestBody) Public Sub New(ByVal GetDateInterval As SISBusiness.[Module].MNBArfolyamService.GetDateIntervalRequestBody)
MyBase.New MyBase.New
Me.GetDateInterval = GetDateInterval Me.GetDateInterval = GetDateInterval
End Sub End Sub
@@ -374,13 +248,13 @@ Namespace MNBArfolyamService
Partial Public Class GetInfoRequest Partial Public Class GetInfoRequest
<System.ServiceModel.MessageBodyMemberAttribute([Namespace]:="http://www.mnb.hu/webservices/", Order:=0)> _ <System.ServiceModel.MessageBodyMemberAttribute([Namespace]:="http://www.mnb.hu/webservices/", Order:=0)> _
Public GetInfo As MNBArfolyamService.GetInfoRequestBody Public GetInfo As SISBusiness.[Module].MNBArfolyamService.GetInfoRequestBody
Public Sub New() Public Sub New()
MyBase.New MyBase.New
End Sub End Sub
Public Sub New(ByVal GetInfo As MNBArfolyamService.GetInfoRequestBody) Public Sub New(ByVal GetInfo As SISBusiness.[Module].MNBArfolyamService.GetInfoRequestBody)
MyBase.New MyBase.New
Me.GetInfo = GetInfo Me.GetInfo = GetInfo
End Sub End Sub
@@ -441,7 +315,7 @@ Namespace MNBArfolyamService
Return MyBase.Channel.GetCurrencies(request) Return MyBase.Channel.GetCurrencies(request)
End Function End Function
Public Function GetCurrencies(ByVal GetCurrencies1 As MNBArfolyamService.GetCurrenciesRequestBody) As SISBusiness.[Module].MNBArfolyamService.GetCurrenciesResponseBody Public Function GetCurrencies(ByVal GetCurrencies1 As SISBusiness.[Module].MNBArfolyamService.GetCurrenciesRequestBody) As SISBusiness.[Module].MNBArfolyamService.GetCurrenciesResponseBody
Dim inValue As MNBArfolyamService.GetCurrenciesRequest = New MNBArfolyamService.GetCurrenciesRequest() Dim inValue As MNBArfolyamService.GetCurrenciesRequest = New MNBArfolyamService.GetCurrenciesRequest()
inValue.GetCurrencies = GetCurrencies1 inValue.GetCurrencies = GetCurrencies1
Dim retVal As MNBArfolyamService.GetCurrenciesResponse = CType(Me,MNBArfolyamService.MNBArfolyamServiceSoap).GetCurrencies(inValue) Dim retVal As MNBArfolyamService.GetCurrenciesResponse = CType(Me,MNBArfolyamService.MNBArfolyamServiceSoap).GetCurrencies(inValue)
@@ -465,7 +339,7 @@ Namespace MNBArfolyamService
Return MyBase.Channel.GetCurrentExchangeRates(request) Return MyBase.Channel.GetCurrentExchangeRates(request)
End Function End Function
Public Function GetCurrentExchangeRates(ByVal GetCurrentExchangeRates1 As MNBArfolyamService.GetCurrentExchangeRatesRequestBody) As SISBusiness.[Module].MNBArfolyamService.GetCurrentExchangeRatesResponseBody Public Function GetCurrentExchangeRates(ByVal GetCurrentExchangeRates1 As SISBusiness.[Module].MNBArfolyamService.GetCurrentExchangeRatesRequestBody) As SISBusiness.[Module].MNBArfolyamService.GetCurrentExchangeRatesResponseBody
Dim inValue As MNBArfolyamService.GetCurrentExchangeRatesRequest = New MNBArfolyamService.GetCurrentExchangeRatesRequest() Dim inValue As MNBArfolyamService.GetCurrentExchangeRatesRequest = New MNBArfolyamService.GetCurrentExchangeRatesRequest()
inValue.GetCurrentExchangeRates = GetCurrentExchangeRates1 inValue.GetCurrentExchangeRates = GetCurrentExchangeRates1
Dim retVal As MNBArfolyamService.GetCurrentExchangeRatesResponse = CType(Me,MNBArfolyamService.MNBArfolyamServiceSoap).GetCurrentExchangeRates(inValue) Dim retVal As MNBArfolyamService.GetCurrentExchangeRatesResponse = CType(Me,MNBArfolyamService.MNBArfolyamServiceSoap).GetCurrentExchangeRates(inValue)
@@ -477,7 +351,7 @@ Namespace MNBArfolyamService
Return MyBase.Channel.GetDateInterval(request) Return MyBase.Channel.GetDateInterval(request)
End Function End Function
Public Function GetDateInterval(ByVal GetDateInterval1 As MNBArfolyamService.GetDateIntervalRequestBody) As SISBusiness.[Module].MNBArfolyamService.GetDateIntervalResponseBody Public Function GetDateInterval(ByVal GetDateInterval1 As SISBusiness.[Module].MNBArfolyamService.GetDateIntervalRequestBody) As SISBusiness.[Module].MNBArfolyamService.GetDateIntervalResponseBody
Dim inValue As MNBArfolyamService.GetDateIntervalRequest = New MNBArfolyamService.GetDateIntervalRequest() Dim inValue As MNBArfolyamService.GetDateIntervalRequest = New MNBArfolyamService.GetDateIntervalRequest()
inValue.GetDateInterval = GetDateInterval1 inValue.GetDateInterval = GetDateInterval1
Dim retVal As MNBArfolyamService.GetDateIntervalResponse = CType(Me,MNBArfolyamService.MNBArfolyamServiceSoap).GetDateInterval(inValue) Dim retVal As MNBArfolyamService.GetDateIntervalResponse = CType(Me,MNBArfolyamService.MNBArfolyamServiceSoap).GetDateInterval(inValue)
@@ -501,7 +375,7 @@ Namespace MNBArfolyamService
Return MyBase.Channel.GetInfo(request) Return MyBase.Channel.GetInfo(request)
End Function End Function
Public Function GetInfo(ByVal GetInfo1 As MNBArfolyamService.GetInfoRequestBody) As SISBusiness.[Module].MNBArfolyamService.GetInfoResponseBody Public Function GetInfo(ByVal GetInfo1 As SISBusiness.[Module].MNBArfolyamService.GetInfoRequestBody) As SISBusiness.[Module].MNBArfolyamService.GetInfoResponseBody
Dim inValue As MNBArfolyamService.GetInfoRequest = New MNBArfolyamService.GetInfoRequest() Dim inValue As MNBArfolyamService.GetInfoRequest = New MNBArfolyamService.GetInfoRequest()
inValue.GetInfo = GetInfo1 inValue.GetInfo = GetInfo1
Dim retVal As MNBArfolyamService.GetInfoResponse = CType(Me,MNBArfolyamService.MNBArfolyamServiceSoap).GetInfo(inValue) Dim retVal As MNBArfolyamService.GetInfoResponse = CType(Me,MNBArfolyamService.MNBArfolyamServiceSoap).GetInfo(inValue)
+10 -12
View File
@@ -4,20 +4,20 @@
<add key="Modules" value="" /> <add key="Modules" value="" />
<add key="NewVersionServer" value="" /> <add key="NewVersionServer" value="" />
<add key="EnableDiagnosticActions" value="False" /> <add key="EnableDiagnosticActions" value="False" />
<add key="Languages" value="hu;en" /> <add key="Languages" value="en;hu" />
<add key="ClientSettingsProvider.ServiceUri" value="" /> <add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings> </appSettings>
<connectionStrings> <connectionStrings>
<add name="ConnectionString" connectionString="Integrated Security=SSPI;Pooling=false;Data Source=SISNBOOK7\SIS;Initial Catalog=FETOOLS" /> <add name="ConnectionString" connectionString="Integrated Security=SSPI;Pooling=false;Data Source=SISNBOOK7\SIS;Initial Catalog=FETOOLS"/>
</connectionStrings> </connectionStrings>
<system.diagnostics> <system.diagnostics>
<switches> <switches>
<!-- Use the one of predefined values: 0-Off, 1-Errors, 2-Warnings, 3-Info, 4-Verbose. The default value is 3. --> <!-- Use the one of predefined values: 0-Off, 1-Errors, 2-Warnings, 3-Info, 4-Verbose. The default value is 3. -->
<add name="eXpressAppFramework" value="3" /> <add name="eXpressAppFramework" value="3"/>
<!-- <!--
<add name="XPO" value="3" /> <add name="XPO" value="3" />
--> -->
<add name="AllowDebugXtraReportScripts" value="False" /> <add name="AllowDebugXtraReportScripts" value="False"/>
</switches> </switches>
</system.diagnostics> </system.diagnostics>
<!-- <!--
@@ -28,28 +28,26 @@
<system.serviceModel> <system.serviceModel>
<bindings> <bindings>
<basicHttpBinding> <basicHttpBinding>
<binding name="BasicHttpBinding_MNBArfolyamServiceSoap" /> <binding name="BasicHttpBinding_MNBArfolyamServiceSoap"/>
</basicHttpBinding> </basicHttpBinding>
</bindings> </bindings>
<client> <client>
<endpoint address="http://www.mnb.hu/arfolyamok.asmx" binding="basicHttpBinding" <endpoint address="http://www.mnb.hu/arfolyamok.asmx" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_MNBArfolyamServiceSoap" contract="MNBArfolyamService.MNBArfolyamServiceSoap" name="BasicHttpBinding_MNBArfolyamServiceSoap"/>
bindingConfiguration="BasicHttpBinding_MNBArfolyamServiceSoap"
contract="MNBArfolyamService.MNBArfolyamServiceSoap" name="BasicHttpBinding_MNBArfolyamServiceSoap" />
</client> </client>
</system.serviceModel> </system.serviceModel>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" /> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup> </startup>
<system.web> <system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider"> <membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers> <providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" /> <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri=""/>
</providers> </providers>
</membership> </membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true"> <roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers> <providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" /> <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400"/>
</providers> </providers>
</roleManager> </roleManager>
</system.web> </system.web>
</configuration> </configuration>
+2 -2
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<packages> <packages>
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net40" /> <package id="Newtonsoft.Json" version="11.0.2" targetFramework="net40" requireReinstallation="true" />
<package id="Npgsql" version="2.2.7" targetFramework="net40" /> <package id="Npgsql" version="2.2.7" targetFramework="net40" requireReinstallation="true" />
</packages> </packages>
+1 -1
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
+2 -2
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -22,7 +22,7 @@ Namespace My.Resources
'''<summary> '''<summary>
''' A strongly-typed resource class, for looking up localized strings, etc. ''' A strongly-typed resource class, for looking up localized strings, etc.
'''</summary> '''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _ <Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0"), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _ Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _ Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
+3 -3
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -15,7 +15,7 @@ Option Explicit On
Namespace My Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ <Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _ Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase Inherits Global.System.Configuration.ApplicationSettingsBase
@@ -29,7 +29,7 @@ Namespace My
Private Shared addedHandlerLockObject As New Object Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ <Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then If My.Application.SaveMySettingsOnExit Then
My.Settings.Save() My.Settings.Save()
End If End If
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -20,7 +20,7 @@
<SccLocalPath>SAK</SccLocalPath> <SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath> <SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider> <SccProvider>SAK</SccProvider>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileUpgradeFlags> <FileUpgradeFlags>
</FileUpgradeFlags> </FileUpgradeFlags>
<OldToolsVersion>4.0</OldToolsVersion> <OldToolsVersion>4.0</OldToolsVersion>
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
+16 -16
View File
@@ -1,18 +1,18 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<configuration> <configuration>
<configSections> <configSections>
<section name="DevExpressXpoProfiler" type="DevExpress.Xpo.Logger.ProfilerConfigSection, DevExpress.Data.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" allowLocation="true" allowDefinition="Everywhere" /> <section name="DevExpressXpoProfiler" type="DevExpress.Xpo.Logger.ProfilerConfigSection, DevExpress.Data.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" allowLocation="true" allowDefinition="Everywhere"/>
</configSections> </configSections>
<appSettings> <appSettings>
<add key="Modules" value="" /> <add key="Modules" value=""/>
<add key="NewVersionServer" value="" /> <add key="NewVersionServer" value=""/>
<add key="EnableDiagnosticActions" value="False" /> <add key="EnableDiagnosticActions" value="False"/>
<add key="Languages" value="hu;en" /> <add key="Languages" value="hu;en"/>
<add key="ClientSettingsProvider.ServiceUri" value="" /> <add key="ClientSettingsProvider.ServiceUri" value=""/>
</appSettings> </appSettings>
<connectionStrings> <connectionStrings>
<!--XPO Profiler MySQL--> <!--XPO Profiler MySQL-->
<add name="ConnectionString" connectionString="XpoProvider=MySql;server=localhost;user id=root; password=pcl718; database=3c;persist security info=true;CharSet=utf8;" /> <add name="ConnectionString" connectionString="XpoProvider=MySql;server=localhost;user id=root; password=pcl718; database=3c;persist security info=true;CharSet=utf8;"/>
<!--XPO Profiler MS SQL--> <!--XPO Profiler MS SQL-->
<!--<add name="ConnectionString" connectionString="User ID=sa; Application Name=FM System; Password=pcl718; Pooling=false; Data Source=SISI5SSD2\SQLEXPRESS; Initial Catalog=FM"/>--> <!--<add name="ConnectionString" connectionString="User ID=sa; Application Name=FM System; Password=pcl718; Pooling=false; Data Source=SISI5SSD2\SQLEXPRESS; Initial Catalog=FM"/>-->
<!--XPO Profiler Postgre SQL--> <!--XPO Profiler Postgre SQL-->
@@ -21,9 +21,9 @@
<system.diagnostics> <system.diagnostics>
<switches> <switches>
<!-- Use the one of predefined values: 0-Off, 1-Errors, 2-Warnings, 3-Info, 4-Verbose. The default value is 3. --> <!-- Use the one of predefined values: 0-Off, 1-Errors, 2-Warnings, 3-Info, 4-Verbose. The default value is 3. -->
<add name="eXpressAppFramework" value="3" /> <add name="eXpressAppFramework" value="3"/>
<!--<add name="XPO" value="3" />--> <!--<add name="XPO" value="3" />-->
<add name="AllowDebugXtraReportScripts" value="False" /> <add name="AllowDebugXtraReportScripts" value="False"/>
</switches> </switches>
</system.diagnostics> </system.diagnostics>
<!-- <!--
@@ -34,27 +34,27 @@
<system.serviceModel> <system.serviceModel>
<bindings> <bindings>
<basicHttpBinding> <basicHttpBinding>
<binding name="MNBArfolyamServiceSoap" /> <binding name="MNBArfolyamServiceSoap"/>
</basicHttpBinding> </basicHttpBinding>
</bindings> </bindings>
<client> <client>
<endpoint address="http://www.mnb.hu/arfolyamok.asmx" binding="basicHttpBinding" bindingConfiguration="MNBArfolyamServiceSoap" contract="MNBArfolyamService.MNBArfolyamServiceSoap" name="MNBArfolyamServiceSoap" /> <endpoint address="http://www.mnb.hu/arfolyamok.asmx" binding="basicHttpBinding" bindingConfiguration="MNBArfolyamServiceSoap" contract="MNBArfolyamService.MNBArfolyamServiceSoap" name="MNBArfolyamServiceSoap"/>
</client> </client>
</system.serviceModel> </system.serviceModel>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" /> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup> </startup>
<system.web> <system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider"> <membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers> <providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" /> <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri=""/>
</providers> </providers>
</membership> </membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true"> <roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers> <providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" /> <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400"/>
</providers> </providers>
</roleManager> </roleManager>
</system.web> </system.web>
<DevExpressXpoProfiler serverType="DevExpress.Xpo.Logger.Transport.LogServer" serverAssembly="DevExpress.Xpo.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" categories="SQL;Session;DataCache" port="52934" /> <DevExpressXpoProfiler serverType="DevExpress.Xpo.Logger.Transport.LogServer" serverAssembly="DevExpress.Xpo.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" categories="SQL;Session;DataCache" port="52934"/>
</configuration> </configuration>
+1 -1
View File
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<packages> <packages>
<package id="Npgsql" version="2.2.7" targetFramework="net40" /> <package id="Npgsql" version="2.2.7" targetFramework="net40" requireReinstallation="true" />
</packages> </packages>
+1 -1
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
+2 -2
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -22,7 +22,7 @@ Namespace My.Resources
'''<summary> '''<summary>
''' A strongly-typed resource class, for looking up localized strings, etc. ''' A strongly-typed resource class, for looking up localized strings, etc.
'''</summary> '''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _ <Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0"), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _ Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _ Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
+3 -3
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.17929 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -15,7 +15,7 @@ Option Explicit On
Namespace My Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ <Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _ Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase Inherits Global.System.Configuration.ApplicationSettingsBase
@@ -29,7 +29,7 @@ Namespace My
Private Shared addedHandlerLockObject As New Object Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ <Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then If My.Application.SaveMySettingsOnExit Then
My.Settings.Save() My.Settings.Save()
End If End If
+2 -2
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -20,7 +20,7 @@
<SccLocalPath>SAK</SccLocalPath> <SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath> <SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider> <SccProvider>SAK</SccProvider>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileUpgradeFlags> <FileUpgradeFlags>
</FileUpgradeFlags> </FileUpgradeFlags>
<OldToolsVersion>4.0</OldToolsVersion> <OldToolsVersion>4.0</OldToolsVersion>
+13 -16
View File
@@ -1,7 +1,7 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<configuration> <configuration>
<configSections> <configSections>
<section name="DevExpressXpoProfiler" type="DevExpress.Xpo.Logger.ProfilerConfigSection, DevExpress.Data.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" allowLocation="true" allowDefinition="Everywhere" /> <section name="DevExpressXpoProfiler" type="DevExpress.Xpo.Logger.ProfilerConfigSection, DevExpress.Data.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" allowLocation="true" allowDefinition="Everywhere"/>
</configSections> </configSections>
<appSettings> <appSettings>
<add key="Modules" value="" /> <add key="Modules" value="" />
@@ -10,13 +10,12 @@
<add key="Languages" value="en;hu" /> <add key="Languages" value="en;hu" />
<add key="ClientSettingsProvider.ServiceUri" value="" /> <add key="ClientSettingsProvider.ServiceUri" value="" />
<add key="Uri" value="http://3conline.com:88/api/" /> <add key="Uri" value="http://3conline.com:88/api/" />
<add key="GeocodeAPIKey" value="AIzaSyD4RgVEapyYNlAgjemLgtbpOEVC2p2yXY4"/> <add key="GeocodeAPIKey" value="AIzaSyD4RgVEapyYNlAgjemLgtbpOEVC2p2yXY4" />
<add key="BingMapsKey" value="AkuhLMqiOJ6mqhY8zVPQCLMNFPEP0b4neaExb_eolTgT4Q0hF3098zXBJHMQa1WI"/> <add key="BingMapsKey" value="AkuhLMqiOJ6mqhY8zVPQCLMNFPEP0b4neaExb_eolTgT4Q0hF3098zXBJHMQa1WI" />
</appSettings> </appSettings>
<connectionStrings> <connectionStrings>
<!--XPO Profiler MySQL--> <!--XPO Profiler MySQL-->
<add name="ConnectionString" connectionString="XpoProvider=MySql;server=localhost;user id=root; password=pcl718; database=3c;persist security info=true;CharSet=utf8;" /> <add name="ConnectionString" connectionString="XpoProvider=MySql;server=localhost;user id=root; password=pcl718; database=3c;persist security info=true;CharSet=utf8;"/>
<!--XPO Profiler MS SQL--> <!--XPO Profiler MS SQL-->
<!--<add name="ConnectionString" connectionString="User ID=sa; Application Name=FM System; Password=pcl718; Pooling=false; Data Source=SISI5SSD2\SQLEXPRESS; Initial Catalog=FM"/>--> <!--<add name="ConnectionString" connectionString="User ID=sa; Application Name=FM System; Password=pcl718; Pooling=false; Data Source=SISI5SSD2\SQLEXPRESS; Initial Catalog=FM"/>-->
<!--XPO Profiler Postgre SQL--> <!--XPO Profiler Postgre SQL-->
@@ -25,9 +24,9 @@
<system.diagnostics> <system.diagnostics>
<switches> <switches>
<!-- Use the one of predefined values: 0-Off, 1-Errors, 2-Warnings, 3-Info, 4-Verbose. The default value is 3. --> <!-- Use the one of predefined values: 0-Off, 1-Errors, 2-Warnings, 3-Info, 4-Verbose. The default value is 3. -->
<add name="eXpressAppFramework" value="3" /> <add name="eXpressAppFramework" value="3"/>
<!--<add name="XPO" value="3" />--> <!--<add name="XPO" value="3" />-->
<add name="AllowDebugXtraReportScripts" value="False" /> <add name="AllowDebugXtraReportScripts" value="False"/>
</switches> </switches>
</system.diagnostics> </system.diagnostics>
<!-- <!--
@@ -38,29 +37,27 @@
<system.serviceModel> <system.serviceModel>
<bindings> <bindings>
<basicHttpBinding> <basicHttpBinding>
<binding name="BasicHttpBinding_MNBArfolyamServiceSoap" /> <binding name="BasicHttpBinding_MNBArfolyamServiceSoap"/>
</basicHttpBinding> </basicHttpBinding>
</bindings> </bindings>
<client> <client>
<endpoint address="http://www.mnb.hu/arfolyamok.asmx" binding="basicHttpBinding" <endpoint address="http://www.mnb.hu/arfolyamok.asmx" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_MNBArfolyamServiceSoap" contract="MNBArfolyamService.MNBArfolyamServiceSoap" name="BasicHttpBinding_MNBArfolyamServiceSoap"/>
bindingConfiguration="BasicHttpBinding_MNBArfolyamServiceSoap"
contract="MNBArfolyamService.MNBArfolyamServiceSoap" name="BasicHttpBinding_MNBArfolyamServiceSoap" />
</client> </client>
</system.serviceModel> </system.serviceModel>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" /> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup> </startup>
<system.web> <system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider"> <membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers> <providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" /> <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri=""/>
</providers> </providers>
</membership> </membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true"> <roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers> <providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" /> <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400"/>
</providers> </providers>
</roleManager> </roleManager>
</system.web> </system.web>
<DevExpressXpoProfiler serverType="DevExpress.Xpo.Logger.Transport.LogServer" serverAssembly="DevExpress.Xpo.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" categories="SQL;Session;DataCache" port="52934" /> <DevExpressXpoProfiler serverType="DevExpress.Xpo.Logger.Transport.LogServer" serverAssembly="DevExpress.Xpo.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" categories="SQL;Session;DataCache" port="52934"/>
</configuration> </configuration>
+1 -1
View File
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<packages> <packages>
<package id="Npgsql" version="2.2.7" targetFramework="net40" /> <package id="Npgsql" version="2.2.7" targetFramework="net40" requireReinstallation="true" />
</packages> </packages>
+1 -1
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.34003 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
+13 -12
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.34003 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -11,6 +11,7 @@
Option Strict On Option Strict On
Option Explicit On Option Explicit On
Imports System
Namespace My.Resources Namespace My.Resources
@@ -21,20 +22,20 @@ Namespace My.Resources
'''<summary> '''<summary>
''' A strongly-typed resource class, for looking up localized strings, etc. ''' A strongly-typed resource class, for looking up localized strings, etc.
'''</summary> '''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _ <Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0"), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _ Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _ Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
Friend Module Resources Friend Module Resources
Private resourceMan As Global.System.Resources.ResourceManager Private resourceMan As Global.System.Resources.ResourceManager
Private resourceCulture As Global.System.Globalization.CultureInfo Private resourceCulture As Global.System.Globalization.CultureInfo
'''<summary> '''<summary>
''' Returns the cached ResourceManager instance used by this class. ''' Returns the cached ResourceManager instance used by this class.
'''</summary> '''</summary>
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ <Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
Get Get
If Object.ReferenceEquals(resourceMan, Nothing) Then If Object.ReferenceEquals(resourceMan, Nothing) Then
@@ -44,17 +45,17 @@ Namespace My.Resources
Return resourceMan Return resourceMan
End Get End Get
End Property End Property
'''<summary> '''<summary>
''' Overrides the current thread's CurrentUICulture property for all ''' Overrides the current thread's CurrentUICulture property for all
''' resource lookups using this strongly typed resource class. ''' resource lookups using this strongly typed resource class.
'''</summary> '''</summary>
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ <Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Friend Property Culture() As Global.System.Globalization.CultureInfo Friend Property Culture() As Global.System.Globalization.CultureInfo
Get Get
Return resourceCulture Return resourceCulture
End Get End Get
Set(ByVal value As Global.System.Globalization.CultureInfo) Set
resourceCulture = value resourceCulture = value
End Set End Set
End Property End Property
+26 -26
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' This code was generated by a tool.
' Runtime Version:4.0.30319.34003 ' Runtime Version:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated. ' the code is regenerated.
@@ -13,42 +13,42 @@ Option Explicit On
Namespace My Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ <Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _ Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase Inherits Global.System.Configuration.ApplicationSettingsBase
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings) Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings)
#Region "My.Settings Auto-Save Functionality" #Region "My.Settings Auto-Save Functionality"
#If _MyType = "WindowsForms" Then #If _MyType = "WindowsForms" Then
Private Shared addedHandler As Boolean Private Shared addedHandler As Boolean
Private Shared addedHandlerLockObject As New Object Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ <Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then If My.Application.SaveMySettingsOnExit Then
My.Settings.Save() My.Settings.Save()
End If End If
End Sub End Sub
#End If #End If
#End Region #End Region
Public Shared ReadOnly Property [Default]() As MySettings Public Shared ReadOnly Property [Default]() As MySettings
Get Get
#If _MyType = "WindowsForms" Then #If _MyType = "WindowsForms" Then
If Not addedHandler Then If Not addedHandler Then
SyncLock addedHandlerLockObject SyncLock addedHandlerLockObject
If Not addedHandler Then If Not addedHandler Then
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
addedHandler = True addedHandler = True
End If End If
End SyncLock End SyncLock
End If End If
#End If #End If
Return defaultInstance Return defaultInstance
End Get End Get
+4 -2
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform> <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
@@ -14,7 +14,7 @@
<AssemblyName>SISService</AssemblyName> <AssemblyName>SISService</AssemblyName>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<MyType>Console</MyType> <MyType>Console</MyType>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFrameworkProfile> <TargetFrameworkProfile>
</TargetFrameworkProfile> </TargetFrameworkProfile>
<SccProjectName>SAK</SccProjectName> <SccProjectName>SAK</SccProjectName>
@@ -31,6 +31,7 @@
<OutputPath>bin\Debug\</OutputPath> <OutputPath>bin\Debug\</OutputPath>
<DocumentationFile>SISService.xml</DocumentationFile> <DocumentationFile>SISService.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn> <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget> <PlatformTarget>x86</PlatformTarget>
@@ -41,6 +42,7 @@
<OutputPath>bin\Release\</OutputPath> <OutputPath>bin\Release\</OutputPath>
<DocumentationFile>SISService.xml</DocumentationFile> <DocumentationFile>SISService.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn> <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<OptionExplicit>On</OptionExplicit> <OptionExplicit>On</OptionExplicit>
+10 -10
View File
@@ -1,30 +1,30 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<configuration> <configuration>
<appSettings> <appSettings>
<add key="InstanceName" value="SISService$Main" /> <add key="InstanceName" value="SISService$Main"/>
<add key="Period" value="10000" /> <add key="Period" value="10000"/>
<add key="ReconfigurePCI" value="20:00" /> <add key="ReconfigurePCI" value="20:00"/>
<add key="AssetsHandling" value="22:00" /> <add key="AssetsHandling" value="22:00"/>
<add key="ClientSettingsProvider.ServiceUri" value="" /> <add key="ClientSettingsProvider.ServiceUri" value=""/>
</appSettings> </appSettings>
<connectionStrings> <connectionStrings>
<add name="ConnectionString" connectionString="" /> <add name="ConnectionString" connectionString=""/>
</connectionStrings> </connectionStrings>
<system.diagnostics> <system.diagnostics>
</system.diagnostics> </system.diagnostics>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" /> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup> </startup>
<system.web> <system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider"> <membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers> <providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" /> <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri=""/>
</providers> </providers>
</membership> </membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true"> <roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers> <providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" /> <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400"/>
</providers> </providers>
</roleManager> </roleManager>
</system.web> </system.web>
</configuration> </configuration>