Compare commits
2 Commits
6eedcc687f
...
4e3b08038a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4e3b08038a | ||
|
|
7c683cf13e |
@ -12,7 +12,7 @@ Imports System.Runtime.InteropServices
|
|||||||
<Assembly: AssemblyDescription("")>
|
<Assembly: AssemblyDescription("")>
|
||||||
<Assembly: AssemblyCompany("")>
|
<Assembly: AssemblyCompany("")>
|
||||||
<Assembly: AssemblyProduct("MultiTool.Common")>
|
<Assembly: AssemblyProduct("MultiTool.Common")>
|
||||||
<Assembly: AssemblyCopyright("Copyright © 2023")>
|
<Assembly: AssemblyCopyright("Copyright © 2024")>
|
||||||
<Assembly: AssemblyTrademark("1.0.0.0")>
|
<Assembly: AssemblyTrademark("1.0.0.0")>
|
||||||
|
|
||||||
<Assembly: ComVisible(False)>
|
<Assembly: ComVisible(False)>
|
||||||
|
|||||||
@ -7,6 +7,7 @@ Imports MultiTool.Common.Constants
|
|||||||
Imports MultiTool.Common.Templates
|
Imports MultiTool.Common.Templates
|
||||||
Imports MultiTool.Common.Exceptions
|
Imports MultiTool.Common.Exceptions
|
||||||
Imports MultiTool.Common.Documents
|
Imports MultiTool.Common.Documents
|
||||||
|
Imports System.Data.SqlClient
|
||||||
|
|
||||||
Namespace Winline
|
Namespace Winline
|
||||||
Public Class WinlineData
|
Public Class WinlineData
|
||||||
@ -436,7 +437,11 @@ Namespace Winline
|
|||||||
@pResultType = 'CalcPricing';
|
@pResultType = 'CalcPricing';
|
||||||
SET NOCOUNT OFF;
|
SET NOCOUNT OFF;
|
||||||
"
|
"
|
||||||
Dim oTable As DataTable = Await Database.GetDatatableAsync(oSQL)
|
|
||||||
|
Dim oTable As DataTable
|
||||||
|
Using oConnection As SqlConnection = Database.GetConnection()
|
||||||
|
oTable = Await Database.GetDatatableWithConnectionObjectAsync(oSQL, oConnection, MSSQLServer.TransactionMode.NoTransaction)
|
||||||
|
End Using
|
||||||
|
|
||||||
If oTable.Rows.Count = 0 Then
|
If oTable.Rows.Count = 0 Then
|
||||||
Logger.Debug("Price for article [{0}] and Account [{1}] was not found in Mandator: [{2}]", pArticle, pAccountNumber, pMandator.Id)
|
Logger.Debug("Price for article [{0}] and Account [{1}] was not found in Mandator: [{2}]", pArticle, pAccountNumber, pMandator.Id)
|
||||||
|
|||||||
@ -12,8 +12,8 @@ Imports System.Runtime.InteropServices
|
|||||||
<Assembly: AssemblyDescription("WebService Multitool für WinLine")>
|
<Assembly: AssemblyDescription("WebService Multitool für WinLine")>
|
||||||
<Assembly: AssemblyCompany("Digital Data")>
|
<Assembly: AssemblyCompany("Digital Data")>
|
||||||
<Assembly: AssemblyProduct("WebService Multitool")>
|
<Assembly: AssemblyProduct("WebService Multitool")>
|
||||||
<Assembly: AssemblyCopyright("Copyright © 2023")>
|
<Assembly: AssemblyCopyright("Copyright © 2024")>
|
||||||
<Assembly: AssemblyTrademark("1.4.4.2")>
|
<Assembly: AssemblyTrademark("1.4.4.3")>
|
||||||
|
|
||||||
<Assembly: ComVisible(False)>
|
<Assembly: ComVisible(False)>
|
||||||
|
|
||||||
@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
|||||||
' indem Sie "*" wie unten gezeigt eingeben:
|
' indem Sie "*" wie unten gezeigt eingeben:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("1.4.4.2")>
|
<Assembly: AssemblyVersion("1.4.4.3")>
|
||||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user