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
@@ -146,6 +146,7 @@ Public Class InvoiceHeader
Private _NAV_transactionId As String
Private _NAV_InvoiceStatus As String
Private _NAV_queryDate As DateTime
Private _NAV_statusInfo As String
'-- Nonpersistent objektumok a számla sor rögzítéséhez
Private _row_CustomsTariffs As CustomsTariffs 'ITJ, SZJ, Vámtarifaszám stb.
@@ -1094,7 +1095,19 @@ Public Class InvoiceHeader
SetPropertyValue("NAV_queryDate", _NAV_queryDate, value)
End Set
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()>
<VisibleInListView(False)>
@@ -25,6 +25,7 @@ Public Class Customers
Private _CustomerNumber As String = "" 'Ügyfél azonosítója
Private _VATNumber As String 'Adószám (belföldi)
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 _CustomersNG As CustomersNG 'Ügyfél sorszám generátor
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_valid As Boolean
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)
MyBase.New(session)
@@ -178,7 +181,7 @@ Public Class Customers
SetPropertyValue("VATNumber", _VATNumber, value)
End Set
End Property
<RuleUniqueValue("Customers-VATNumberEU", DefaultContexts.Save, skipnulloremptyvalues:=True)> _
<RuleUniqueValue("Customers-VATNumberEU", DefaultContexts.Save, skipnulloremptyvalues:=True)>
Property VATNumberEU As String
Get
Return _VATNumberEU
@@ -187,6 +190,19 @@ Public Class Customers
SetPropertyValue("VATNumberEU", _VATNumberEU, value)
End Set
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)> _
<VisibleInDetailView(False)> _
<VisibleInListView(False)> _
@@ -687,6 +703,30 @@ Public Class Customers
SetPropertyValue("NAV_queryDate", _NAV_queryDate, value)
End Set
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---------------
Overloads ReadOnly Property IsDeleted As Boolean
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_password As String
Private _NAV_exchangeKey As String
Private _NAV_NumberGenerator As NumberGenerator
Public Overrides Sub 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)
End Set
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
Get
Dim _CustomerBankAccounts As CustomerBankAccounts = Nothing
@@ -9,8 +9,9 @@ Imports DevExpress.Persistent.Base
Imports DevExpress.Persistent.BaseImpl
Imports DevExpress.Persistent.Validation
<DefaultClassOptions()> _
<NavigationItem("GeneralStock")> _
<DefaultClassOptions()>
<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
Inherits BaseObject
Private _ShortName As String
@@ -18,6 +19,8 @@ Public Class Units
Private _Shortname_De As String
Private _Description As String
Private _DefaultForBusinnes As Boolean = False
Private _ShortName_NAV As String
Public Sub New(ByVal session As Session)
MyBase.New(session)
End Sub
@@ -65,6 +68,18 @@ Public Class Units
SetPropertyValue("DefaultForBusinnes", _DefaultForBusinnes, value)
End Set
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
@@ -43,7 +43,7 @@ Public Class NumberGenerator
Private _CurrentDay As Boolean
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
If _YearString = "" Or _YearString Is Nothing Then
@@ -2781,7 +2781,6 @@
<Class Name="SISBusiness.Module.CustomersOrder" Caption="Beszállítók">
<OwnMembers>
<Member Name="CustomersOrderDocuments" Caption="Dokumentumok, paraméterek" />
<Member Name="DocumentPath" Caption="Könyvtár (Path)" />
</OwnMembers>
</Class>
<Class Name="SISBusiness.Module.CustomersOrderDocuments" Caption="Beszállítói dokumentációk">
+26 -21
View File
@@ -4545,8 +4545,8 @@
</NavigationItems>
<Options NAVProgramPath="c:\NAV\abevjava_start.bat" />
<SchemaModules>
<SchemaModule Name="CloneObjectModule" Version="15.2.5.0" IsNewNode="True" />
<SchemaModule Name="SystemModule" Version="15.2.5.0" IsNewNode="True" />
<SchemaModule Name="CloneObjectModule" Version="17.2.3.0" IsNewNode="True" />
<SchemaModule Name="SystemModule" Version="17.2.3.0" IsNewNode="True" />
</SchemaModules>
<Validation>
<Contexts>
@@ -11157,21 +11157,21 @@
</Items>
<Layout>
<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="Autod257e2eb-d1ce-4fce-9922-dea39f6d87ed" ShowCaption="False" Direction="Horizontal" Index="0" RelativeSize="61" IsNewNode="True">
<LayoutGroup Id="Customers_col1" ShowCaption="False" Index="0" RelativeSize="47" IsNewNode="True">
<LayoutItem Id="CustomerNumber" ViewItem="CustomerNumber" SizeConstraintsType="Default" Index="0" RelativeSize="24" IsNewNode="True" />
<LayoutItem Id="Name" ViewItem="Name" SizeConstraintsType="Default" Index="1" RelativeSize="18" IsNewNode="True" />
<LayoutItem Id="FullName" ViewItem="FullName" SizeConstraintsType="Default" Index="2" RelativeSize="18" IsNewNode="True" />
<LayoutItem Id="CustomersNG" ViewItem="CustomersNG" SizeConstraintsType="Default" Index="3" RelativeSize="18" IsNewNode="True" />
<LayoutItem Id="Email" ViewItem="Email" SizeConstraintsType="Default" Index="4" RelativeSize="20" IsNewNode="True" />
<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="70.157068062827221" 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="23.880597014925375" 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="17.910447761194028" 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="22.388059701492537" IsNewNode="True" />
</LayoutGroup>
<LayoutGroup Id="Customers_col2" ShowCaption="False" Index="1" RelativeSize="52" IsNewNode="True">
<LayoutItem Id="IsDefault" ViewItem="IsDefault" SizeConstraintsType="Default" Index="0" RelativeSize="24" IsNewNode="True" />
<LayoutItem Id="VATNumber" ViewItem="VATNumber" SizeConstraintsType="Default" Index="1" RelativeSize="18" IsNewNode="True" />
<LayoutItem Id="VATNumberEU" ViewItem="VATNumberEU" SizeConstraintsType="Default" Index="2" RelativeSize="18" IsNewNode="True" />
<LayoutItem Id="WebSite" ViewItem="WebSite" SizeConstraintsType="Default" Index="3" RelativeSize="18" IsNewNode="True" />
<LayoutItem Id="CompanyRegistrationNumber" ViewItem="CompanyRegistrationNumber" SizeConstraintsType="Default" Index="4" RelativeSize="20" 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="23.880597014925375" 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="17.910447761194028" 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="22.388059701492537" IsNewNode="True" />
</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">
@@ -11221,17 +11221,16 @@
<LayoutItem Id="QualityOption" SizeConstraintsType="Default" RelativeSize="7" ViewItem="QualityOption" Removed="True" />
</LayoutGroup>
</LayoutGroup>
<LayoutGroup Id="Party" Index="1" RelativeSize="38" 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="Address2" Index="1" RelativeSize="29" 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" />
<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="47.368421052631582" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" SizeConstraintsType="Default" ViewItem="Address1" />
<LayoutItem Id="Address2" Index="1" RelativeSize="52.631578947368418" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" SizeConstraintsType="Default" ViewItem="Address2" />
<LayoutItem Id="DisplayName" ViewItem="DisplayName" Removed="True" />
<LayoutItem Id="Photo" ViewItem="Photo" Removed="True" />
</LayoutGroup>
<LayoutGroup Id="CustomersFrom" Removed="True" />
<LayoutGroup Id="Organization" Removed="True" />
</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">
<LayoutItem Id="CustomersAddress" ViewItem="CustomersAddress" Index="0" RelativeSize="100" ShowCaption="False" SizeConstraintsType="Default" IsNewNode="True" />
</LayoutGroup>
@@ -11256,9 +11255,15 @@
<LayoutGroup Id="ContractProductsCredit" Index="5" RelativeSize="100" ImageName="creditcards" Removed="True">
<LayoutItem Id="ContractProductsCredit" SizeConstraintsType="Default" RelativeSize="100" ViewItem="ContractProductsCredit" />
</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">
<LayoutItem Id="CustomersCCustomers" SizeConstraintsType="Default" RelativeSize="100" ViewItem="CustomersCCustomers" />
</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">
<LayoutItem Id="CRM_Opportunities" RelativeSize="100" ViewItem="CRM_Opportunities" CaptionLocation="Default" CaptionWordWrap="Default" CaptionHorizontalAlignment="Default" CaptionVerticalAlignment="Default" />
</LayoutGroup>
+1 -1
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------
' <auto-generated>
' 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
' the code is regenerated.
@@ -28,5 +28,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <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>
' 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
' the code is regenerated.
@@ -22,7 +22,7 @@ Namespace My.Resources
'''<summary>
''' A strongly-typed resource class, for looking up localized strings, etc.
'''</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.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
+3 -3
View File
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------
' <auto-generated>
' 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
' the code is regenerated.
@@ -15,7 +15,7 @@ Option Explicit On
Namespace My
<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)> _
Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase
@@ -29,7 +29,7 @@ Namespace My
Private Shared addedHandlerLockObject As New Object
<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
My.Settings.Save()
End If
@@ -1 +1,3 @@
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"?>
<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>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -18,7 +18,7 @@
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>4.0</OldToolsVersion>
@@ -113,6 +113,7 @@
<DebugType>None</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="DevExpress.ExpressApp.Chart.v17.2, Version=17.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
@@ -2571,6 +2572,10 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="UnusableNodes_hu.xml">
<DependentUpon>Model.DesignedDiffs.xafml</DependentUpon>
<SubType>Designer</SubType>
</None>
<None Include="packages.config" />
<None Include="Service References\MNBArfolyamService\Reference.svcmap">
<Generator>WCF Proxy Generator</Generator>
@@ -6,5 +6,5 @@
cause the file to be unrecognizable by the program.
-->
<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>
@@ -6,5 +6,5 @@
cause the file to be unrecognizable by the program.
-->
<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>
@@ -6,5 +6,5 @@
cause the file to be unrecognizable by the program.
-->
<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>
@@ -6,5 +6,5 @@
cause the file to be unrecognizable by the program.
-->
<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>
@@ -6,5 +6,5 @@
cause the file to be unrecognizable by the program.
-->
<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>
@@ -6,5 +6,5 @@
cause the file to be unrecognizable by the program.
-->
<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>
+3 -5
View File
@@ -26,19 +26,17 @@
</sharedListeners>
</system.diagnostics>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_MNBArfolyamServiceSoap" />
<binding name="BasicHttpBinding_MNBArfolyamServiceSoap"/>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://www.mnb.hu/arfolyamok.asmx" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_MNBArfolyamServiceSoap"
contract="MNBArfolyamService.MNBArfolyamServiceSoap" name="BasicHttpBinding_MNBArfolyamServiceSoap" />
<endpoint address="http://www.mnb.hu/arfolyamok.asmx" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_MNBArfolyamServiceSoap" contract="MNBArfolyamService.MNBArfolyamServiceSoap" name="BasicHttpBinding_MNBArfolyamServiceSoap"/>
</client>
</system.serviceModel>
</configuration>